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/yaml
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v4.4.6
Choose a base ref
...
head repository: symfony/yaml
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v4.4.7
Choose a head ref
  • 3 commits
  • 2 files changed
  • 3 contributors

Commits on Mar 25, 2020

  1. Fixed some typos

    javiereguiluz committed Mar 25, 2020
    Copy the full SHA
    e701b47 View commit details

Commits on Mar 27, 2020

  1. Copy the full SHA
    b404374 View commit details

Commits on Mar 30, 2020

  1. Merge branch '3.4' into 4.4

    * 3.4:
      Fix versions
      [Security/Http] Allow setting cookie security settings for delete_cookies
      [FrameworkBundle] revert to legacy wiring of the session when circular refs are detected
      bumped Symfony version to 3.4.40
      updated VERSION for 3.4.39
      update CONTRIBUTORS for 3.4.39
      updated CHANGELOG for 3.4.39
      update Italian translation
      [Validator] Add missing Hungarian translations
      [Validator] Add the missing translations for the Arabic (ar) locale
      [Validator] Add missing vietnamese translations
      [Console] Fix OutputStream for PHP 7.4
      add German translations
      bug #36157 [Validator] Assert Valid with many groups
      [Validator] Add missing Lithuanian translations
      Fixed some typos
      Add french "at least" constraint translations
    nicolas-grekas committed Mar 30, 2020
    Copy the full SHA
    ef16689 View commit details
Showing with 2 additions and 1 deletion.
  1. +1 −0 .gitattributes
  2. +1 −1 Tests/ParserTest.php
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/Tests export-ignore
/phpunit.xml.dist export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore
2 changes: 1 addition & 1 deletion Tests/ParserTest.php
Original file line number Diff line number Diff line change
@@ -1900,7 +1900,7 @@ public function testUnsupportedBuiltInTagWithScalar()
$this->parser->parse('!!iterator foo');
}

public function testExceptionWhenUsingUnsuportedBuiltInTags()
public function testExceptionWhenUsingUnsupportedBuiltInTags()
{
$this->expectException('Symfony\Component\Yaml\Exception\ParseException');
$this->expectExceptionMessage('The built-in tag "!!foo" is not implemented at line 1 (near "!!foo").');