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: v6.1.3
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: v6.1.5
Choose a head ref
  • 8 commits
  • 2 files changed
  • 2 contributors

Commits on Sep 2, 2022

  1. Verified

    This commit was signed with the committer’s verified signature.
    ssbarnea Sorin Sbarnea
    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

    Verified

    This commit was signed with the committer’s verified signature.
    ssbarnea Sorin Sbarnea
    Copy the full SHA
    89a1c52 View commit details
  2. Merge branch '5.4' into 6.0

    * 5.4:
      tweak the factory class description for inlined factory services
      skip a transient test on Windows
      Make bash completion run in non interactive mode
    xabbuh committed Sep 3, 2022
    Copy the full SHA
    3cb8e09 View commit details
  3. Merge branch '6.0' into 6.1

    * 6.0:
      tweak the factory class description for inlined factory services
      skip a transient test on Windows
      Make bash completion run in non interactive mode
    xabbuh committed Sep 3, 2022
    Copy the full SHA
    4e74362 View commit details
  4. 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

Commits on Sep 8, 2022

  1. Merge branch '5.4' into 6.0

    * 5.4:
      [HttpClient] Fix computing retry delay when using RetryableHttpClient
      [Uid] Fix validating UUID variant bits
      [Validator][UID] Stop to first ULID format violation
      [Bridge] Fix mkdir() race condition in ProxyCacheWarmer
      [Cache] update readme
      Bug #42343 [Security] Fix valid remember-me token exposure to the second consequent request
      Prevent exception if request stack is empty
      Psr18Client ignore invalid HTTP headers
      skip a transient test on AppVeyor
    nicolas-grekas committed Sep 8, 2022
    Copy the full SHA
    367522d View commit details
  2. Merge branch '6.0' into 6.1

    * 6.0:
      [HttpClient] Fix computing retry delay when using RetryableHttpClient
      [Uid] Fix validating UUID variant bits
      [Validator][UID] Stop to first ULID format violation
      [Bridge] Fix mkdir() race condition in ProxyCacheWarmer
      [Cache] update readme
      Bug #42343 [Security] Fix valid remember-me token exposure to the second consequent request
      Prevent exception if request stack is empty
      Psr18Client ignore invalid HTTP headers
      skip a transient test on AppVeyor
    nicolas-grekas committed Sep 8, 2022
    Copy the full SHA
    d083349 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, [