1. 01 Apr, 2022 1 commit
  2. 29 Oct, 2017 1 commit
  3. 24 Oct, 2017 1 commit
  4. 30 Sep, 2017 2 commits
    • Fabien Potencier's avatar
      minor #24342 removed useless PHPDoc (OskarStark) · f4278d53
      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
      f4278d53
    • Oskar Stark's avatar
      removed useless PHPDoc · 9ae87e8c
      Oskar Stark authored
      9ae87e8c
  5. 15 Sep, 2017 1 commit
  6. 04 Jul, 2017 1 commit
  7. 01 Jun, 2017 1 commit
  8. 12 Apr, 2017 1 commit
  9. 18 Feb, 2017 2 commits
  10. 20 Jan, 2017 1 commit
  11. 09 Jan, 2017 1 commit
  12. 02 Jan, 2017 1 commit
  13. 29 Nov, 2016 1 commit
  14. 15 Nov, 2016 1 commit
  15. 27 Oct, 2016 1 commit
  16. 05 Sep, 2016 1 commit
  17. 23 Aug, 2016 1 commit
  18. 06 Jul, 2016 1 commit
  19. 28 Jun, 2016 1 commit
  20. 30 Mar, 2016 1 commit
    • Fabien Potencier's avatar
      Merge branch '2.3' into 2.7 · 7e758508
      Fabien Potencier authored
      * 2.3:
        [ci] Get ICU/intl from github instead of nebm.ist.utl.pt/~glopes
        [Debug] Fix handling of php7 throwables
        [Process] remove dead code
        [ClassLoader] Fix storing not-found classes in APC cache
        [Form] cs fixes in date types
      7e758508
  21. 28 Mar, 2016 1 commit
  22. 10 Mar, 2016 2 commits
    • Nicolas Grekas's avatar
      Merge branch '2.3' into 2.7 · f5df9e4d
      Nicolas Grekas authored
      * 2.3:
        [ci] use hirak/prestissimo
        [Filesystem] Fix transient tests
        [HttpFoundation] Avoid warnings when checking malicious IPs
        [HttpFoundation] Set the Content-Range header if the requested Range is unsatisfied
      
      Conflicts:
      	appveyor.yml
      	src/Symfony/Component/Filesystem/Tests/FilesystemTest.php
      f5df9e4d
    • Nicolas Grekas's avatar
      [Filesystem] Fix transient tests · d77ac7df
      Nicolas Grekas authored
      d77ac7df
  23. 04 Mar, 2016 2 commits
    • Fabien Potencier's avatar
      Merge branch '2.3' into 2.7 · eb9cd31d
      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
      eb9cd31d
    • Javier Eguiluz's avatar
      Updated all the README files · 355a6b3e
      Javier Eguiluz authored
      355a6b3e
  24. 30 Jan, 2016 1 commit
  25. 25 Jan, 2016 4 commits
  26. 18 Jan, 2016 1 commit
  27. 16 Jan, 2016 1 commit
    • Fabien Potencier's avatar
      Merge branch '2.3' into 2.7 · d7000582
      Fabien Potencier authored
      * 2.3:
        Fixed correct class name in thrown exception
        Add gc_mem_caches() call for PHP7 after itoken_get_all() as new memory manager will not release small buckets to OS automatically
        Removed a duplicated test in CardSchemeValidatorTest
        Fix perf and mem issue when using token_get_all
        [SecurityBundle] fix SecureRandom service constructor args
        Normalize params only when used.
      d7000582
  28. 15 Jan, 2016 3 commits
    • Fabien Potencier's avatar
      bug #17377 Fix performance (PHP5) and memory (PHP7) issues when using... · 136d7133
      Fabien Potencier authored
      bug #17377 Fix performance (PHP5) and memory (PHP7) issues when using token_get_all (nicolas-grekas, peteward)
      
      This PR was merged into the 2.3 branch.
      
      Discussion
      ----------
      
      Fix performance (PHP5) and memory (PHP7) issues when using token_get_all
      
      | Q             | A
      | ------------- | ---
      | Bug fix?      | yes
      | New feature?  | no
      | BC breaks?    | no
      | Deprecations? | no
      | Tests pass?   | yes
      | Fixed tickets | #16868
      | License       | MIT
      | Doc PR        | -
      
      Although it's not the case anymore on PHP 7, on PHP 5, `is_array` checks are much slower than `isset` checks.
      
      Also from @peteward in #17384:
      >  New PHP7 memory manager will not release small buckets to OS automatically in cases exposed by `token_get_all()`. This function call addition specifically for PHP7 will reclaim this memory to keep the footprint down of long processe
      
      > See above ticket and suggested actions by PHP internals team for long-running tasks (https://bugs.php.net/70098) - I think `cache:clear/warmup` on a heavy app justifies this.
      
      > We're running on cloud-based hosting platforms under memory limitations (Platform.sh). When memory is exceeded we're into swap and the cache clearing process goes from seconds to minutes for the initial deployment, which really slows our development workflow and also causes holding page delays.
      
      Commits
      -------
      
      e555aad Add gc_mem_caches() call for PHP7 after itoken_get_all() as new memory manager will not release small buckets to OS automatically
      d1f72d8 Fix perf and mem issue when using token_get_all
      136d7133
    • Nicolas Grekas's avatar
      Merge branch '2.3' into 2.7 · 252b21d7
      Nicolas Grekas authored
      * 2.3:
        [ClassLoader] Use symfony/polyfill-apcu
        [HttpFoundation][Cookie] Cookie DateTimeInterface fix
        bumped Symfony version to 2.3.38
        updated VERSION for 2.3.37
        update CONTRIBUTORS for 2.3.37
        updated CHANGELOG for 2.3.37
      
      Conflicts:
      	.travis.yml
      	src/Symfony/Component/ClassLoader/composer.json
      	src/Symfony/Component/HttpKernel/Kernel.php
      252b21d7
    • Peter Ward's avatar
      Add gc_mem_caches() call for PHP7 after itoken_get_all() as new memory manager... · 72df2d45
      Peter Ward authored
      Add gc_mem_caches() call for PHP7 after itoken_get_all() as new memory manager will not release small buckets to OS automatically
      
      72df2d45
  29. 14 Jan, 2016 2 commits
  30. 03 Jan, 2016 1 commit