1. 22 Mar, 2022 1 commit
  2. 12 Nov, 2019 1 commit
  3. 05 Nov, 2019 1 commit
    • Nicolas Grekas's avatar
      Merge branch '4.3' into 4.4 · 0ac14b0d
      Nicolas Grekas authored
      * 4.3: (26 commits)
        [Console] Fix #33915, Detect dimensions using mode CON if vt100 is supported
        [HttpKernel][DataCollectorInterface] Ease compatibility
        Add tests to ensure defaultLocale is properly passed to the URL generator
        [DependencyInjection] Fix broken references in tests
        [HttpClient] Retry safe requests when then fail before the body arrives
        Avoid using of kernel after shutdown
        Simplify PHP CS Fixer configuration
        [PropertyInfo] Fixed type extraction for nullable collections of non-nullable elements
        [FrameworkBundle] [HttpKernel] fixed correct EOL and EOM month
        [Serializer] Fix property name usage for denormalization
        Name test accordingly to the tested class
        Fix MockFileSessionStorageTest::sessionDir being used after it's unset
        bumped Symfony version to 4.3.7
        updated VERSION for 4.3.6
        updated CHANGELOG for 4.3.6
        bumped Symfony version to 3.4.34
        updated VERSION for 3.4.33
        update CONTRIBUTORS for 3.4.33
        updated CHANGELOG for 3.4.33
        [HttpClient] Fix perf issue when doing thousands of requests with curl
        ...
      0ac14b0d
  4. 04 Nov, 2019 2 commits
    • HypeMC's avatar
    • Nicolas Grekas's avatar
      feature #31587 [Routing][Config] Allow patterns of resources to be excluded... · 8ac2ebc2
      Nicolas Grekas authored
      feature #31587 [Routing][Config] Allow patterns of resources to be excluded from config loading (tristanbes)
      
      This PR was merged into the 4.4 branch.
      
      Discussion
      ----------
      
      [Routing][Config] Allow patterns of resources to be excluded from config loading
      
      | Q             | A
      | ------------- | ---
      | Branch?       | master
      | Bug fix?      | no
      | New feature?  | yes
      | BC breaks?    | no
      | Deprecations? | yes
      | Tests pass?   | yes
      | Fixed tickets | #31516
      | License       | MIT
      | Doc PR        | not yet
      
      The PR will fix the following RFC: #31516
      
      Like resource loading for services, this PR offers a way to exclude patterns of resources like:
      
      ```yml
      // config/routes/annotations.yaml
      controllers:
          resource: ../../src/Controller/*
          type: annotation
          exclude: '../src/Controller/{DebugEmailController}.php'
      ```
      
      All the annotation routes inside `Controller/` will be loaded in this example except all the one present inside the `Controller/DebugEmailController.php`
      
      Commits
      -------
      
      332ff8811c [Routing][Config] Allow patterns of resources to be excluded from config loading
      8ac2ebc2
  5. 30 Oct, 2019 3 commits
  6. 28 Oct, 2019 2 commits
    • Nicolas Grekas's avatar
      Merge branch '4.3' into 4.4 · 29c7679a
      Nicolas Grekas authored
      * 4.3:
        [OptionsResolve] Revert change in tests for a not-merged change in code
        [HttpClient] fix handling of 3xx with no Location header - ignore Content-Length when no body is expected
        [Workflow] Made the configuration more robust for the 'property' key
        [Security/Core] make NativePasswordEncoder use sodium to validate passwords when possible
        #30432 fix an error message
        fix paths to detect code owners
        [HttpClient] ignore the body of responses to HEAD requests
        [Validator] Ensure numeric subpaths do not cause errors on PHP 7.4
        [SecurityBundle] Fix wrong assertion
        Remove unused local variables in tests
        [Yaml][Parser] Remove the getLastLineNumberBeforeDeprecation() internal unused method
        Make sure to collect child forms created on *_SET_DATA events
        [WebProfilerBundle] Improve display in Email panel for dark theme
        do not render errors for checkboxes twice
      29c7679a
    • Nicolas Grekas's avatar
      Merge branch '3.4' into 4.3 · 855a02cb
      Nicolas Grekas authored
      * 3.4:
        #30432 fix an error message
        fix paths to detect code owners
        [Validator] Ensure numeric subpaths do not cause errors on PHP 7.4
        Remove unused local variables in tests
        Make sure to collect child forms created on *_SET_DATA events
        do not render errors for checkboxes twice
      855a02cb
  7. 24 Oct, 2019 2 commits
  8. 22 Oct, 2019 1 commit
    • Fabien Potencier's avatar
      minor #33963 Add .gitignore to .gitattributes (reedy) · 6ffda94c
      Fabien Potencier authored
      This PR was merged into the 4.4 branch.
      
      Discussion
      ----------
      
      Add .gitignore to .gitattributes
      
      | Q             | A
      | ------------- | ---
      | Branch?       | 4.4
      | Bug fix?      | yes
      | New feature?  | no
      | Deprecations? | no
      | Tickets       | #33946
      | License       | MIT
      
      Commits
      -------
      
      246c5fdf43 Add .gitignore to .gitattributes
      6ffda94c
  9. 20 Oct, 2019 1 commit
    • Fabien Potencier's avatar
      Merge branch '4.3' into 4.4 · 1446880c
      Fabien Potencier authored
      * 4.3:
        [HttpKernel] fix wrong removal of the just generated container dir
        bug #34024 [Routing] fix route loading with wildcard, but dir or file is empty (gseidel)
        [Routing] fix route loading with wildcard, but dir or file is empty
      1446880c
  10. 19 Oct, 2019 3 commits
    • Nicolas Grekas's avatar
      Merge branch '3.4' into 4.3 · 902593a6
      Nicolas Grekas authored
      * 3.4:
        bug #34024 [Routing] fix route loading with wildcard, but dir or file is empty (gseidel)
      902593a6
    • Nicolas Grekas's avatar
      bug #34024 [Routing] fix route loading with wildcard, but dir or file is empty (gseidel) · eb36d111
      Nicolas Grekas authored
      This PR was merged into the 4.3 branch.
      
      Discussion
      ----------
      
      [Routing] fix route loading with wildcard, but dir or file is empty
      
      | Q             | A
      | ------------- | ---
      | Branch?       |  4.3
      | Bug fix?      | yes
      | New feature?  | no
      | Deprecations? | no
      | Tickets       | no ticket i see so far
      | License       | MIT
      
      In my route config i have something like:
      
      ```yaml
      empty_wildcard:
          resource: ../controller/empty_wildcard/*
          prefix: /empty_wildcard
      ```
      
      But ``empty_wildcard`` is empty or has no route configured.
      
      So i had this error:
      
      ``Call to a member function addPrefix() on null``
      
      This PR take care if no route is configured, there will be no error.
      
      Commits
      -------
      
      217058b475 [Routing] fix route loading with wildcard, but dir or file is empty
      eb36d111
    • Gerhard Seidel's avatar
  11. 12 Oct, 2019 1 commit
  12. 07 Oct, 2019 1 commit
    • Nicolas Grekas's avatar
      Merge branch '4.3' into 4.4 · 9e472b47
      Nicolas Grekas authored
      * 4.3:
        [travis] Fix build-packages script
        [HttpClient] bugfix exploding values of headers
        Remove useless testCanCheckIfTerminalIsInteractive test case
        [Validator] Add the missing translations for the Thai (\"th\") locale
        [Routing] gracefully handle docref_root ini setting
        [Validator] Fix ValidValidator group cascading usage
      9e472b47
  13. 04 Oct, 2019 1 commit
  14. 03 Oct, 2019 1 commit
  15. 25 Sep, 2019 2 commits
  16. 24 Sep, 2019 6 commits
  17. 23 Sep, 2019 1 commit
  18. 16 Sep, 2019 1 commit
  19. 06 Sep, 2019 1 commit
    • Nicolas Grekas's avatar
      Merge branch '4.3' into 4.4 · 08b9ce3c
      Nicolas Grekas authored
      * 4.3:
        Fix more bad tests
        Fix test fixtures with deprecated method signatures.
        Fix 4.3 tests forward compat
        [Messenger] fix empty amqp body returned as false
        Fix routing cache broken when using generator_class
      08b9ce3c
  20. 01 Sep, 2019 1 commit
  21. 30 Aug, 2019 2 commits
  22. 26 Aug, 2019 3 commits
    • Nicolas Grekas's avatar
      Merge branch '4.3' into 4.4 · f688c8c1
      Nicolas Grekas authored
      * 4.3: (23 commits)
        fix merge
        [SecurityBundle] fix return type declarations
        [BrowserKit] fix return type declarations
        [PropertyInfo] fix return type declarations
        [Bridge/Doctrine] fix return type declarations
        [Form] fix return type declarations
        [Console] fix return type declarations
        [Intl] fix return type declarations
        [Templating] fix return type declarations
        [DomCrawler] fix return type declarations
        [Validator] fix return type declarations
        [Process] fix return type declarations
        [Workflow] fix return type declarations
        [Cache] fix return type declarations
        [Serializer] fix return type declarations
        [Translation] fix return type declarations
        [DI] fix return type declarations
        [Config] fix return type declarations
        [HttpKernel] Fix return type declarations
        [Security] Fix return type declarations
        ...
      f688c8c1
    • Nicolas Grekas's avatar
      Merge branch '3.4' into 4.3 · ff1049f6
      Nicolas Grekas authored
      * 3.4: (21 commits)
        [SecurityBundle] fix return type declarations
        [BrowserKit] fix return type declarations
        [PropertyInfo] fix return type declarations
        [Bridge/Doctrine] fix return type declarations
        [Form] fix return type declarations
        [Console] fix return type declarations
        [Intl] fix return type declarations
        [Templating] fix return type declarations
        [DomCrawler] fix return type declarations
        [Validator] fix return type declarations
        [Process] fix return type declarations
        [Workflow] fix return type declarations
        [Cache] fix return type declarations
        [Serializer] fix return type declarations
        [Translation] fix return type declarations
        [DI] fix return type declarations
        [Config] fix return type declarations
        [HttpKernel] Fix return type declarations
        [Security] Fix return type declarations
        [Routing] Fix return type declarations
        ...
      ff1049f6
    • Alexander M. Turek's avatar
      8b0faa68
  23. 22 Aug, 2019 1 commit
  24. 21 Aug, 2019 1 commit