Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
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/framework-bundle
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v7.0.6
Choose a base ref
Loading
...
head repository: symfony/framework-bundle
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v7.0.7
Choose a head ref
Loading
  • 17 commits
  • 12 files changed
  • 7 contributors

Commits on Feb 26, 2024

  1. [FrameworkBundle] Fix registration of the bundle path to translation

    Fixup for 31d7a09bf5c423ad2003d6863d7372e49a195af1
    FlyingDR committed Feb 26, 2024
    Configuration menu
    Copy the full SHA
    83a056e View commit details
    Browse the repository at this point in the history

Commits on Mar 19, 2024

  1. Configuration menu
    Copy the full SHA
    1b9da97 View commit details
    Browse the repository at this point in the history

Commits on Apr 3, 2024

  1. [FrameworkBundle] fixes #54402: Suppress PHP warning when is_readable…

    …() tries to access dirs outside of open_basedir restrictions
    Jeldrik Geraedts authored and xabbuh committed Apr 3, 2024
    Configuration menu
    Copy the full SHA
    2d10752 View commit details
    Browse the repository at this point in the history
  2. Merge branch '5.4' into 6.4

    * 5.4:
      [FrameworkBundle] fixes #54402: Suppress PHP warning when is_readable() tries to access dirs outside of open_basedir restrictions
      return null when message with name is not set
      use local PHP web server to test HTTP stream wrappers
      Bump Symfony version to 5.4.39
      Update VERSION for 5.4.38
      Update CONTRIBUTORS for 5.4.38
      Update CHANGELOG for 5.4.38
    xabbuh committed Apr 3, 2024
    Configuration menu
    Copy the full SHA
    efe230c View commit details
    Browse the repository at this point in the history
  3. Merge branch '6.4' into 7.0

    * 6.4:
      [FrameworkBundle] fixes #54402: Suppress PHP warning when is_readable() tries to access dirs outside of open_basedir restrictions
      return null when message with name is not set
      use local PHP web server to test HTTP stream wrappers
      [Translation] Silence error when intl not loaded
      Bump Symfony version to 6.4.7
      Update VERSION for 6.4.6
      Update CHANGELOG for 6.4.6
      Bump Symfony version to 5.4.39
      Update VERSION for 5.4.38
      Update CONTRIBUTORS for 5.4.38
      Update CHANGELOG for 5.4.38
    xabbuh committed Apr 3, 2024
    Configuration menu
    Copy the full SHA
    b5a08d1 View commit details
    Browse the repository at this point in the history

Commits on Apr 4, 2024

  1. Configuration menu
    Copy the full SHA
    d17b520 View commit details
    Browse the repository at this point in the history

Commits on Apr 5, 2024

  1. Merge branch '6.4' into 7.0

    * 6.4:
      fix merge
      fix syntax for PHP 7.2
      [Security] Fix Danish translations
      [Messenger] Improve deadlock handling on `ack()` and `reject()`
      [DomCrawler] Encode html entities only if nessecary
      [Serializer] reset backed_enum priority, and re-prioritise translatable
      [Validator] Accept `Stringable` in `ExecutionContext::build/addViolation()`
      [Serializer] Ignore when using #[Ignore] on a non-accessor
      [Filesystem] Strengthen the check of file permissions in `dumpFile`
      [Serializer] Fix XML scalar to object denormalization
      [HttpClient][EventSourceHttpClient] Fix consuming SSEs with \r\n separator
    xabbuh committed Apr 5, 2024
    Configuration menu
    Copy the full SHA
    cb97c0e View commit details
    Browse the repository at this point in the history

Commits on Apr 8, 2024

  1. bug #54063 [FrameworkBundle] Fix registration of the bundle path to t…

    …ranslation (FlyingDR)
    
    This PR was merged into the 5.4 branch.
    
    Discussion
    ----------
    
    [FrameworkBundle] Fix registration of the bundle path to translation
    
    | Q             | A
    | ------------- | ---
    | Branch?       | 5.4
    | Bug fix?      | yes
    | New feature?  | no
    | Deprecations? | no
    | License       | MIT
    
    31d7a09bf5c423ad2003d6863d7372e49a195af1 had a small issue resulting in a lack of proper registration of path to translation resources in installed bundles.
    
    The issue is caused by the incomplete update of the code where the newly added `$transPaths` variable was not updated in all code branches ([1](https://github.com/symfony/symfony/blob/85d01657a1a1aa65f57d0e0077fc7a10466acdd8/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/FrameworkExtension.php#L1330), [2](https://github.com/symfony/symfony/blob/85d01657a1a1aa65f57d0e0077fc7a10466acdd8/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/FrameworkExtension.php#L1335), [3](https://github.com/symfony/symfony/blob/85d01657a1a1aa65f57d0e0077fc7a10466acdd8/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/FrameworkExtension.php#L1340), but not [4](https://github.com/symfony/symfony/blob/85d01657a1a1aa65f57d0e0077fc7a10466acdd8/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/FrameworkExtension.php#L1345))
    
    The issue can be reproduced and tested like this:
    
    ```bash
    composer create-project symfony/skeleton test
    cd test
    composer require easycorp/easyadmin-bundle
    php bin/console debug:translation en --domain EasyAdminBundle
    ```
    
    It will result in unexpected:
    
    ```
    [WARNING] No defined or extracted messages for locale "en" and domain "EasyAdminBundle"
    ```
    
    After applying the fix, clearing the cache and running the same command list of messages will be returned properly.
    
    Commits
    -------
    
    ae9e07e3ae [FrameworkBundle] Fix registration of the bundle path to translation
    fabpot committed Apr 8, 2024
    Configuration menu
    Copy the full SHA
    a716163 View commit details
    Browse the repository at this point in the history
  2. bug #52917 [Serializer] Fix unexpected allowed attributes (mtarld)

    This PR was merged into the 5.4 branch.
    
    Discussion
    ----------
    
    [Serializer] Fix unexpected allowed attributes
    
    | Q             | A
    | ------------- | ---
    | Branch?       | 5.4
    | Bug fix?      | yes
    | New feature?  | no
    | Deprecations? | no
    | Issues        | Fix #52673 #49710
    | License       | MIT
    
    A more accurate approach than #52680
    
    Commits
    -------
    
    900d034003 [Serializer] Fix unexpected allowed attributes
    fabpot committed Apr 8, 2024
    Configuration menu
    Copy the full SHA
    fa8b095 View commit details
    Browse the repository at this point in the history

Commits on Apr 12, 2024

  1. Merge branch '5.4' into 6.4

    * 5.4:
      explicitly mark nullable parameters as nullable
      fix low deps tests
      [HttpKernel] Fix datacollector caster for reference object property
      bug #51578 [Cache] always select database for persistent redis connections
      [Security] Validate that CSRF token in form login is string similar to username/password
      [validator] validated Dutch translation
      Improve dutch translations
      [Translation] Skip state=needs-translation entries only when source == target
      [HttpKernel] Ensure controllers are not lazy
      [Validator] Fill in trans-unit id 113: This URL does not contain a TLD.
      [Validator] added missing Polish translation for unit 113
      [Validator] add missing lv translation
      [HttpClient] Let curl handle transfer encoding
      [Messenger] Make Doctrine connection ignore unrelated tables on setup
      [HttpFoundation] Set content-type header in RedirectResponse
      add translations for the requireTld constraint option message
      [Serializer] Fix unexpected allowed attributes
      [FrameworkBundle] Fix registration of the bundle path to translation
    xabbuh committed Apr 12, 2024
    Configuration menu
    Copy the full SHA
    e1aaae1 View commit details
    Browse the repository at this point in the history
  2. Merge branch '6.4' into 7.0

    * 6.4: (23 commits)
      fix merge
      add missing return type-hints
      fix merge
      explicitly mark nullable parameters as nullable
      fix low deps tests
      [HttpKernel] Fix datacollector caster for reference object property
      [Serializer] Fixing PHP warning in the ObjectNormalizer with MaxDepth enabled
      bug #51578 [Cache] always select database for persistent redis connections
      [Security] Validate that CSRF token in form login is string similar to username/password
      [Serializer] Use explicit nullable type
      [validator] validated Dutch translation
      Improve dutch translations
      [Translation] Skip state=needs-translation entries only when source == target
      [HttpKernel] Ensure controllers are not lazy
      [Validator] Fill in trans-unit id 113: This URL does not contain a TLD.
      [Validator] added missing Polish translation for unit 113
      [Validator] add missing lv translation
      [HttpClient] Let curl handle transfer encoding
      [Messenger] Make Doctrine connection ignore unrelated tables on setup
      [HttpFoundation] Set content-type header in RedirectResponse
      ...
    xabbuh committed Apr 12, 2024
    Configuration menu
    Copy the full SHA
    86e918d View commit details
    Browse the repository at this point in the history

Commits on Apr 16, 2024

  1. Configuration menu
    Copy the full SHA
    a1d4879 View commit details
    Browse the repository at this point in the history
  2. Merge branch '5.4' into 6.4

    * 5.4:
      Fix CI
      Bump ext-redis in CI on PHP >= 8.4
      Adjust pretty name of closures on PHP 8.4
      implement NodeVisitorInterface instead of extending AbstractNodeVisitor
    nicolas-grekas committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    58ea93b View commit details
    Browse the repository at this point in the history
  3. Merge branch '6.4' into 7.0

    * 6.4:
      Fix CI
      Bump ext-redis in CI on PHP >= 8.4
      Adjust pretty name of closures on PHP 8.4
      implement NodeVisitorInterface instead of extending AbstractNodeVisitor
      sync .github/expected-missing-return-types.diff
      skip test assertions that are no longer valid with PHP >= 8.2.18/8.3.5
    nicolas-grekas committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    a1b0779 View commit details
    Browse the repository at this point in the history

Commits on Apr 18, 2024

  1. Configuration menu
    Copy the full SHA
    52a2e98 View commit details
    Browse the repository at this point in the history
  2. Merge branch '5.4' into 6.4

    * 5.4:
      Auto-close PRs on subtree-splits
      review German translation
    nicolas-grekas committed Apr 18, 2024
    Configuration menu
    Copy the full SHA
    58196b8 View commit details
    Browse the repository at this point in the history
  3. Merge branch '6.4' into 7.0

    * 6.4:
      Auto-close PRs on subtree-splits
      review German translation
    nicolas-grekas committed Apr 18, 2024
    Configuration menu
    Copy the full SHA
    5d9cee3 View commit details
    Browse the repository at this point in the history
Loading
Morty Proxy This is a proxified and sanitized view of the page, visit original site.