1. 04 Apr, 2022 1 commit
  2. 16 Mar, 2018 4 commits
  3. 03 Jan, 2018 1 commit
  4. 02 Jan, 2018 2 commits
    • Nicolas Grekas's avatar
      minor #25646 Update LICENSE year... forever (dunglas) · 1faaba81
      Nicolas Grekas authored
      This PR was merged into the 2.7 branch.
      
      Discussion
      ----------
      
      Update LICENSE year... forever
      
      | Q             | A
      | ------------- | ---
      | Branch?       | 2.7
      | Bug fix?      | no
      | New feature?  | no <!-- don't forget to update src/**/CHANGELOG.md files -->
      | BC breaks?    | no
      | Deprecations? | no <!-- don't forget to update UPGRADE-*.md files -->
      | Tests pass?   | yes| Fixed tickets | #... <!-- #-prefixed issue number(s), if any -->
      | License       | MIT
      | Doc PR        | n/a
      
      By using the same trick than Facebook: https://github.com/facebook/react/blob/master/LICENSE
      
      Commits
      -------
      
      8ce8bd5 Update LICENSE year... forever
      1faaba81
    • Gabriel Caruso's avatar
      Clean up · 70e84f36
      Gabriel Caruso authored
      70e84f36
  5. 31 Dec, 2017 1 commit
  6. 07 Nov, 2017 1 commit
  7. 26 Oct, 2017 1 commit
    • Tobias Schultze's avatar
      minor #24613 Remove redundant sprintf argument. (Aliance) · 2c6ea08e
      Tobias Schultze authored
      This PR was merged into the 2.7 branch.
      
      Discussion
      ----------
      
      Remove redundant sprintf argument.
      
      | Q             | A
      | ------------- | ---
      | Branch?       | 2.7
      | Bug fix?      | yes
      | New feature?  | no
      | BC breaks?    | no
      | Deprecations? | no
      | Tests pass?   | yes
      | Fixed tickets | #22820
      | License       | MIT
      | Doc PR        | –
      
      cc @fabpot @ogizanagi
      
      Commits
      -------
      
      c8012f0448 Remove redundant sprintf arguments.
      2c6ea08e
  8. 24 Oct, 2017 1 commit
  9. 20 Oct, 2017 1 commit
  10. 30 Sep, 2017 2 commits
    • Fabien Potencier's avatar
      minor #24342 removed useless PHPDoc (OskarStark) · 0b5f6b3d
      Fabien Potencier authored
      This PR was squashed before being merged into the 2.7 branch (closes #24342).
      
      Discussion
      ----------
      
      removed useless PHPDoc
      
      | Q             | A
      | ------------- | ---
      | Branch?       | 2.7
      | Bug fix?      | no
      | New feature?  | no <!-- don't forget updating src/**/CHANGELOG.md files -->
      | BC breaks?    | no
      | Deprecations? | no <!-- don't forget updating UPGRADE-*.md files -->
      | Tests pass?   | yes
      | Fixed tickets |
      | License       | MIT
      | Doc PR        | n/a
      
      Commits
      -------
      
      5ee9043d8b removed useless PHPDoc
      0b5f6b3d
    • Oskar Stark's avatar
      removed useless PHPDoc · 8ee96118
      Oskar Stark authored
      8ee96118
  11. 15 Sep, 2017 1 commit
  12. 11 Jul, 2017 1 commit
  13. 15 Jun, 2017 1 commit
  14. 12 Apr, 2017 1 commit
  15. 21 Feb, 2017 1 commit
  16. 18 Feb, 2017 2 commits
  17. 30 Jan, 2017 1 commit
  18. 02 Jan, 2017 1 commit
  19. 27 Dec, 2016 1 commit
  20. 06 Sep, 2016 2 commits
    • Nicolas Grekas's avatar
      minor #19830 Code enhancement and cleanup (yceruto) · f274ce7f
      Nicolas Grekas authored
      This PR was squashed before being merged into the 2.7 branch (closes #19830).
      
      Discussion
      ----------
      
      Code enhancement and cleanup
      
      | Q             | A
      | ------------- | ---
      | Branch?       | 2.7
      | Bug fix?      | no
      | New feature?  | no
      | BC breaks?    | no
      | Deprecations? | no
      | Tests pass?   | yes
      | Fixed tickets | -
      | License       | MIT
      | Doc PR        | -
      
      Commits
      -------
      
      325da3c Code enhancement and cleanup
      f274ce7f
    • Yonel Ceruto's avatar
      Code enhancement and cleanup · bee130f3
      Yonel Ceruto authored
      bee130f3
  21. 02 Sep, 2016 1 commit
    • James Halsall's avatar
      [BrowserKit] Fix cookie expiration on 32 bit systems · 46915452
      James Halsall authored
      On 32-bit systems the cookie expiration value was not being calculated
      correctly as it was being fetched as an integer. When the timestamp exceeded
      the PHP_INT_MAX size it would return an invalid value, breaking the cookie
      construction.
      
      The BrowserKit cookie has now been updated to get the timestamp as a string
      which works around this platform limitation.
      46915452
  22. 25 Jul, 2016 3 commits
    • Nicolas Grekas's avatar
      minor #19392 [BrowserKit] Added test for followRedirect method (POST method) (zomberg) · a7995d82
      Nicolas Grekas authored
      This PR was squashed before being merged into the 2.7 branch (closes #19392).
      
      Discussion
      ----------
      
      [BrowserKit] Added test for followRedirect method (POST method)
      
      | Q             | A
      | ------------- | ---
      | Branch?       | 2.7
      | Bug fix?      | no
      | New feature?  | no
      | BC breaks?    | no
      | Deprecations? | no
      | Tests pass?   | yes
      | Fixed tickets | ~
      | License       | MIT
      | Doc PR        | ~
      
      Test covers 'else' branches in these conditions:
      ```php
      if (in_array($this->internalResponse->getStatus(), array(302, 303))) {
          $method = 'get';
          $files = array();
          $content = null;
      } else {
          $method = $request->getMethod();
          $files = $request->getFiles();
          $content = $request->getContent();
      }
      
      if ('get' === strtolower($method)) {
          // Don't forward parameters for GET request as it should reach the redirection URI
          $parameters = array();
      } else {
          $parameters = $request->getParameters();
      }
      ```
      
      Commits
      -------
      
      2ace5d8 [BrowserKit] Added test for followRedirect method (POST method)
      a7995d82
    • Vyacheslav Pavlov's avatar
    • Jakub Zalas's avatar
      d3f285a1
  23. 08 Jul, 2016 1 commit
  24. 28 Jun, 2016 1 commit
  25. 06 Jun, 2016 1 commit
  26. 04 Mar, 2016 2 commits
    • Fabien Potencier's avatar
      Merge branch '2.3' into 2.7 · 3905b75d
      Fabien Potencier authored
      * 2.3:
        Updated all the README files
        [TwigBundle] Fix failing test on appveyor
        [FrameworkBundle] Fix a regression in handling absolute and namespaced template paths
        Allow to normalize \Traversable
        Remove _path from query parameters when fragment is a subrequest and request attributes are already set Added tests for _path removal in FragmentListener
        Simplified everything
        Added a test
        Fixed the problem in an easier way
        Fixed a syntax issue
        Improved the error message when a template is not found
        [CodingStandards] Conformed to coding standards
        [TwigBundle] fixed Include file locations in "Template could not be found" exception
      3905b75d
    • Javier Eguiluz's avatar
      Updated all the README files · 0fca8e34
      Javier Eguiluz authored
      0fca8e34
  27. 27 Jan, 2016 3 commits
  28. 12 Jan, 2016 1 commit
    • Fabien Potencier's avatar
      Merge branch '2.3' into 2.7 · cdf4f814
      Fabien Potencier authored
      * 2.3:
        Typo fix
        [2.3] Static Code Analysis for Components
        Added support \IteratorAggregate for UniqueEntityValidator
        Fix #17306 Paths with % in it are note allowed (like urlencoded)
        Added sort order SORT_STRING for params in UriSigner
        Remove normalizer cache in Serializer class
      cdf4f814