Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: symfony/var-dumper
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v5.4.11
Choose a base ref
...
head repository: symfony/var-dumper
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v5.4.13
Choose a head ref
  • 4 commits
  • 2 files changed
  • 2 contributors

Commits on Sep 2, 2022

  1. Copy the full SHA
    99a6270 View commit details

Commits on Sep 3, 2022

  1. Merge branch '4.4' into 5.4

    * 4.4:
      tweak the factory class description for inlined factory services
      skip a transient test on Windows
    xabbuh committed Sep 3, 2022
    Copy the full SHA
    89a1c52 View commit details
  2. Copy the full SHA
    90425fd View commit details

Commits on Sep 6, 2022

  1. Merge branch '4.4' into 5.4

    * 4.4:
      [Bridge] Fix mkdir() race condition in ProxyCacheWarmer
      [Cache] update readme
      Psr18Client ignore invalid HTTP headers
      skip a transient test on AppVeyor
    nicolas-grekas committed Sep 6, 2022
    Copy the full SHA
    2bf2cca View commit details
Showing with 8 additions and 0 deletions.
  1. +4 −0 Tests/Dumper/ServerDumperTest.php
  2. +4 −0 Tests/Server/ConnectionTest.php
4 changes: 4 additions & 0 deletions Tests/Dumper/ServerDumperTest.php
Original file line number Diff line number Diff line change
@@ -39,6 +39,10 @@ public function testDumpForwardsToWrappedDumperWhenServerIsUnavailable()

public function testDump()
{
if ('True' === getenv('APPVEYOR')) {
$this->markTestSkipped('Skip transient test on AppVeyor');
}

$wrappedDumper = $this->createMock(DataDumperInterface::class);
$wrappedDumper->expects($this->never())->method('dump'); // test wrapped dumper is not used

4 changes: 4 additions & 0 deletions Tests/Server/ConnectionTest.php
Original file line number Diff line number Diff line change
@@ -24,6 +24,10 @@ class ConnectionTest extends TestCase

public function testDump()
{
if ('True' === getenv('APPVEYOR')) {
$this->markTestSkipped('Skip transient test on AppVeyor');
}

$cloner = new VarCloner();
$data = $cloner->cloneVar('foo');
$connection = new Connection(self::VAR_DUMPER_SERVER, [