1. 06 Apr, 2022 1 commit
  2. 07 May, 2021 1 commit
  3. 03 May, 2021 1 commit
  4. 29 Apr, 2021 2 commits
    • Alexander M. Turek's avatar
      Merge branch '5.2' into 5.x · 6b300fc7
      Alexander M. Turek authored
      * 5.2:
        [Security/Core] fix checking for bcrypt
        [HttpFoundation] Fixes for PHP 8.1 deprecations
        [Mime] DataPart: remove confusing fix-me comment
        expose references detected in inline notation structures
      6b300fc7
    • Alexander M. Turek's avatar
      Merge branch '4.4' into 5.2 · 7af452bf
      Alexander M. Turek authored
      * 4.4:
        [Security/Core] fix checking for bcrypt
        [HttpFoundation] Fixes for PHP 8.1 deprecations
        [Mime] DataPart: remove confusing fix-me comment
        expose references detected in inline notation structures
      7af452bf
  5. 27 Apr, 2021 1 commit
  6. 08 Apr, 2021 2 commits
  7. 07 Apr, 2021 1 commit
  8. 28 Mar, 2021 1 commit
  9. 15 Mar, 2021 1 commit
  10. 12 Mar, 2021 2 commits
    • Christian Flothmann's avatar
      Merge branch '4.4' into 5.2 · 1b209224
      Christian Flothmann authored
      * 4.4:
        [Mailer] fix lowest allowed dependencies
        Refresh original user in SwitchUserListener.
        check if templating engine supports view
        [Mime] Escape commas in address names
      1b209224
    • Fabien Potencier's avatar
      bug #39866 [Mime] Escape commas in address names (YaFou) · 50d7a1d5
      Fabien Potencier authored
      This PR was merged into the 4.4 branch.
      
      Discussion
      ----------
      
      [Mime] Escape commas in address names
      
      | Q             | A
      | ------------- | ---
      | Branch?       | 4.4
      | Bug fix?      | yes
      | New feature?  | no
      | Deprecations? | no
      | Tickets       | Fix #39416
      | License       | MIT
      | Doc PR        | --
      <!--
      Replace this notice by a short README for your feature/bugfix. This will help people
      understand your PR and can be used as a start for the documentation.
      
      Additionally (see https://symfony.com/releases):
       - Always add tests and ensure they pass.
       - Never break backward compatibility (see https://symfony.com/bc).
       - Bug fixes must be submitted against the lowest maintained branch where they apply
         (lowest branches are regularly merged to upper ones so they get the fixes too.)
       - Features and deprecations must be submitted against branch 5.x.
      -->
      
      Before:
      ```php
      $address = new Address('fabien@symfony.com', 'Fabien, Potencier');
      $address->toString(); // Fabien, Potencier <fabien@symfony.com> -> Interpreted like two emails
      ```
      
      After:
      ```php
      $address = new Address('fabien@symfony.com', 'Fabien, Potencier');
      $address->toString(); // "Fabien, Potencier" <fabien@symfony.com>
      ```
      
      Commits
      -------
      
      39e9158999 [Mime] Escape commas in address names
      50d7a1d5
  11. 07 Mar, 2021 2 commits
  12. 15 Feb, 2021 1 commit
    • Robin Chalas's avatar
      Merge branch '4.4' into 5.2 · 5155d2fe
      Robin Chalas authored
      * 4.4:
        Fix PHP 8.1 null values
        [Console] Fix PHP 8.1 null error for preg_match flag
        Fix: Article
        Definition::removeMethodCall should remove all matching calls
        mark the LazyIterator class as internal
        fix extracting mixed type-hinted property types
        keep valid submitted choices when additional choices are submitted
      5155d2fe
  13. 14 Feb, 2021 1 commit
  14. 05 Feb, 2021 2 commits
    • Nicolas Grekas's avatar
      Merge branch '4.4' into 5.2 · e826d507
      Nicolas Grekas authored
      * 4.4:
        Allow psr/cache v3 but on symfony/cache
        [DI] fix tracking of changes to vendor/ dirs
        Remove EOLed 5.1 branch from PR template
        [HttpKernel] [Kernel] Silence deprecations logs writes
        Update PULL_REQUEST_TEMPLATE.md
        [Mailer][Mime] Update inline part names with newly generated ContentId
        Fixed updating catalogue metadata from intl domain
        [HttpFoundation] Setting `REQUEST_TIME_FLOAT` when constructing a Request object
      e826d507
    • ddegentesh's avatar
  15. 02 Feb, 2021 2 commits
  16. 01 Feb, 2021 1 commit
  17. 27 Jan, 2021 1 commit
  18. 25 Jan, 2021 2 commits
  19. 24 Jan, 2021 1 commit
  20. 19 Jan, 2021 1 commit
  21. 14 Jan, 2021 1 commit
  22. 12 Jan, 2021 4 commits
    • Nicolas Grekas's avatar
      Merge branch '5.1' into 5.2 · e00ce208
      Nicolas Grekas authored
      * 5.1:
        Dont allow unserializing classes with a destructor
        Dont allow unserializing classes with a destructor - 4.4
        [Cache] fix possible collision when writing tmp file in filesystem adapter
        a colon followed by spaces exclusively separates mapping keys and values
        Contracts: Remove ellipsis
        fix handling float-like key attribute values
        Fix missing BCC recipients in SES bridge
        Dont allow unserializing classes with a destructor - 5.1
      e00ce208
    • Nicolas Grekas's avatar
      Merge branch '4.4' into 5.1 · f05d5051
      Nicolas Grekas authored
      * 4.4:
        Dont allow unserializing classes with a destructor
        Dont allow unserializing classes with a destructor - 4.4
        [Cache] fix possible collision when writing tmp file in filesystem adapter
        a colon followed by spaces exclusively separates mapping keys and values
        Contracts: Remove ellipsis
        fix handling float-like key attribute values
        Fix missing BCC recipients in SES bridge
      f05d5051
    • Nicolas Grekas's avatar
      bug #39794 Dont allow unserializing classes with a destructor - 4.4 (jderusse) · 6a34516a
      Nicolas Grekas authored
      This PR was merged into the 4.4 branch.
      
      Discussion
      ----------
      
      Dont allow unserializing classes with a destructor - 4.4
      
      | Q             | A
      | ------------- | ---
      | Branch?       | 4.4
      | Bug fix?      | yes
      | New feature?  | no
      | Deprecations? | no
      | Tickets       | -
      | License       | MIT
      | Doc PR        | -
      
      Prevent destructors with side-effects from being unserialized
      
      Commits
      -------
      
      955395c999 Dont allow unserializing classes with a destructor - 4.4
      6a34516a
    • Jérémy Derussé's avatar
  23. 11 Jan, 2021 8 commits