Skip to content
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/http-kernel
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 6073eae
Choose a base ref
...
head repository: symfony/http-kernel
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d47bb75
Choose a head ref
  • 19 commits
  • 10 files changed
  • 4 contributors

Commits on Nov 26, 2022

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

Commits on Nov 28, 2022

  1. Update VERSION for 5.4.16

    fabpot committed Nov 28, 2022
    Configuration menu
    Copy the full SHA
    b432c57 View commit details
    Browse the repository at this point in the history
  2. Bump Symfony version to 5.4.17

    fabpot committed Nov 28, 2022
    Configuration menu
    Copy the full SHA
    a14cb68 View commit details
    Browse the repository at this point in the history
  3. Update VERSION for 6.0.16

    fabpot committed Nov 28, 2022
    Configuration menu
    Copy the full SHA
    8ba1344 View commit details
    Browse the repository at this point in the history
  4. Bump Symfony version to 6.0.17

    fabpot committed Nov 28, 2022
    Configuration menu
    Copy the full SHA
    4567f7f View commit details
    Browse the repository at this point in the history
  5. Bump Symfony version to 6.1.9

    fabpot committed Nov 28, 2022
    Configuration menu
    Copy the full SHA
    ae3cd18 View commit details
    Browse the repository at this point in the history

Commits on Dec 4, 2022

  1. bug #48346 [HttpKernel] In DateTimeValueResolver, convert previously …

    …defined date attribute to the expected class (GromNaN)
    
    This PR was merged into the 6.1 branch.
    
    Discussion
    ----------
    
    [HttpKernel] In DateTimeValueResolver, convert previously defined date attribute to the expected class
    
    | Q             | A
    | ------------- | ---
    | Branch?       | 6.1
    | Bug fix?      | yes
    | New feature?  | no
    | Deprecations? | no
    | Tickets       | Fix https://github.com/symfony/symfony/pull/48098/files#r1013997729
    | License       | MIT
    
    Convert an instance of `DateTimeInterface` to the expected class if the value was predefined in the request attributes.
    
    ```php
    # in a request listener
    $request->attributes->set('date', new \DateTimeImmutable());
    ```
    
    ```php
    class MyController
    {
        public function index(\DateTime $date)
        {
            // Use the $date
        }
    }
    ```
    
    ```
    Uncaught TypeError: MyController::index(): Argument #1 ($date) must be of type DateTime, DateTimeImmutable given
    ```
    
    Commits
    -------
    
    22a1567d01 Convert previously defined date attribute to the expected class
    nicolas-grekas committed Dec 4, 2022
    Configuration menu
    Copy the full SHA
    5594256 View commit details
    Browse the repository at this point in the history

Commits on Dec 12, 2022

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

Commits on Dec 13, 2022

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

Commits on Dec 14, 2022

  1. Merge branch '5.4' into 6.0

    * 5.4:
      [Mailer] Include all transports' debug messages in RoundRobin transport exception
      [FrameworkBundle] fix: fix help message
      Use relative timestamps
      [Cache] Fix dealing with ext-redis' multi/exec returning a bool
      [Messenger][Amqp] Added missing rpc_timeout option
      [Serializer] Prevent GetSetMethodNormalizer from creating invalid magic method call
      [HttpFoundation] Fix dumping array cookies
      [WebProfilerBundle] Fix dump header not being displayed
      TraceableHttpClient: increase decorator's priority
      Use static methods inside data providers
      [FrameworkBundle] Allow configuring `framework.exceptions` with a config builder
      bug #48313 [Mime] Fix MessagePart serialization
      [ErrorHandler][DebugClassLoader] Fix some new return types support
      Fix getting the name of closures on PHP 8.1.11+
      [Translator] Fix typo "internal" / "interval"
      fix dumping top-level tagged values
    nicolas-grekas committed Dec 14, 2022
    Configuration menu
    Copy the full SHA
    3283277 View commit details
    Browse the repository at this point in the history
  2. Merge branch '6.0' into 6.1

    * 6.0:
      [Mailer] Include all transports' debug messages in RoundRobin transport exception
      [FrameworkBundle] fix: fix help message
      Use relative timestamps
      [Cache] Fix dealing with ext-redis' multi/exec returning a bool
      [Messenger][Amqp] Added missing rpc_timeout option
      [Serializer] Prevent GetSetMethodNormalizer from creating invalid magic method call
      [HttpFoundation] Fix dumping array cookies
      [WebProfilerBundle] Fix dump header not being displayed
      TraceableHttpClient: increase decorator's priority
      Use static methods inside data providers
      [FrameworkBundle] Allow configuring `framework.exceptions` with a config builder
      bug #48313 [Mime] Fix MessagePart serialization
      [ErrorHandler][DebugClassLoader] Fix some new return types support
      Fix getting the name of closures on PHP 8.1.11+
      [Translator] Fix typo "internal" / "interval"
      fix dumping top-level tagged values
    nicolas-grekas committed Dec 14, 2022
    Configuration menu
    Copy the full SHA
    2e5f877 View commit details
    Browse the repository at this point in the history

Commits on Dec 15, 2022

  1. [HttpKernel] AbstractSessionListener should not override the cache li…

    …fetime for private responses
    rodmen committed Dec 15, 2022
    Configuration menu
    Copy the full SHA
    2a91996 View commit details
    Browse the repository at this point in the history
  2. Merge branch '5.4' into 6.0

    * 5.4:
      [Notifier] composer.json cleanup
      [HttpKernel] AbstractSessionListener should not override the cache lifetime for private responses
      [DependencyInjection] Shared private services becomes public after a public service is accessed
      [DI] Fix undefined class in test
    nicolas-grekas committed Dec 15, 2022
    Configuration menu
    Copy the full SHA
    f81630f View commit details
    Browse the repository at this point in the history
  3. Merge branch '6.0' into 6.1

    * 6.0:
      [Notifier] composer.json cleanup
      [HttpKernel] AbstractSessionListener should not override the cache lifetime for private responses
      [DependencyInjection] Shared private services becomes public after a public service is accessed
      [DI] Fix undefined class in test
    nicolas-grekas committed Dec 15, 2022
    Configuration menu
    Copy the full SHA
    9fe958a View commit details
    Browse the repository at this point in the history

Commits on Dec 16, 2022

  1. [HttpKernel] fix merge

    nicolas-grekas committed Dec 16, 2022
    Configuration menu
    Copy the full SHA
    5529d29 View commit details
    Browse the repository at this point in the history
  2. Merge branch '6.0' into 6.1

    * 6.0:
      [HttpKernel] fix merge
    nicolas-grekas committed Dec 16, 2022
    Configuration menu
    Copy the full SHA
    8bd5c89 View commit details
    Browse the repository at this point in the history
  3. [HttpKernel] fix merge

    nicolas-grekas committed Dec 16, 2022
    Configuration menu
    Copy the full SHA
    5b0af9d View commit details
    Browse the repository at this point in the history

Commits on Dec 19, 2022

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

Commits on Dec 28, 2022

  1. Update VERSION for 6.1.9

    fabpot committed Dec 28, 2022
    Configuration menu
    Copy the full SHA
    d47bb75 View commit details
    Browse the repository at this point in the history
Loading