Skip to content

Bump the composer group across 1 directory with 2 updates#16

Merged
Programie merged 1 commit into
mainfrom
dependabot/composer/composer-b8516a5bd0
May 28, 2026
Merged

Bump the composer group across 1 directory with 2 updates#16
Programie merged 1 commit into
mainfrom
dependabot/composer/composer-b8516a5bd0

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 27, 2026

Bumps the composer group with 2 updates in the / directory: symfony/cache and symfony/http-foundation.

Updates symfony/cache from 6.2.8 to 6.4.40

Release notes

Sourced from symfony/cache's releases.

v6.4.40

Changelog (symfony/cache@v6.4.38...v6.4.40)

v6.4.38

Changelog (symfony/cache@v6.4.37...v6.4.38)

v6.4.37

Changelog (symfony/cache@v6.4.36...v6.4.37)

v6.4.36

Changelog (symfony/cache@v6.4.35...v6.4.36)

  • bug #63818 Ensure compatibility with Relay extension 0.21.0 (@​lyrixx)
  • bug #63747 Fix Psr16Cache::getMultiple() returning ValueWrapper with TagAwareAdapter (@​pcescon)
  • bug #63736 Fix undefined array key when tag save fails in AbstractTagAwareAdapter (@​pcescon)
  • bug #63655 Fix ChainAdapter ignoring item expiry when propagating to earlier adapters (@​guillaumeVDP)

v6.4.35

Changelog (symfony/cache@v6.4.34...v6.4.35)

v6.4.34

Changelog (symfony/cache@v6.4.33...v6.4.34)

v6.4.33

Changelog (symfony/cache@v6.4.32...v6.4.33)

v6.4.32

Changelog (symfony/cache@v6.4.31...v6.4.32)

v6.4.31

... (truncated)

Changelog

Sourced from symfony/cache's changelog.

CHANGELOG

8.0

  • Remove CouchbaseBucketAdapter, use CouchbaseCollectionAdapter instead

7.4

  • Bump ext-redis to 6.1 and ext-relay to 0.12 minimum

7.3

  • Add support for \Relay\Cluster in RedisAdapter
  • Add support for valkey: / valkeys: schemes
  • Add support for namespace-based invalidation
  • Rename options "redis_cluster" and "redis_sentinel" to "cluster" and "sentinel" respectively

7.2

  • igbinary_serialize() is no longer used instead of serialize() by default when the igbinary extension is installed, due to behavior compatibilities between the two
  • Add optional Psr\Clock\ClockInterface parameter to ArrayAdapter

7.1

  • Add option sentinel_master as an alias for redis_sentinel
  • Deprecate CouchbaseBucketAdapter, use CouchbaseCollectionAdapter
  • Add support for URL encoded characters in Couchbase DSN
  • Add support for using DSN with PDOAdapter
  • The algorithm for the default cache namespace changed from SHA256 to XXH128

7.0

  • Add parameter $isSameDatabase to DoctrineDbalAdapter::configureSchema()
  • Drop support for Postgres < 9.5 and SQL Server < 2008 in DoctrineDbalAdapter

6.4

  • EarlyExpirationHandler no longer implements MessageHandlerInterface, rely on AsMessageHandler instead

6.3

... (truncated)

Commits
  • 8f9b022 Merge branch '5.4' into 6.4
  • 03b191d [Cache] Validate the prefix given to AbstractAdapter::clear()
  • 6ae5a11 [Cache] More relay traits fixes
  • a9fee75 Fix up
  • 02ac570 [Cache] Ensure compatibility with Relay extension 0.22.0
  • 15115ae [Cache] Normalize default_lifetime for pools wrapped by ChainAdapter
  • 3a6b043 [Cache] Ensure internal state is cleared in TagAwareAdapter::reset() even on ...
  • 0392e93 PHP CS Fixer: backports changes toward 6.4 branch
  • 9f88b62 More CS fixes
  • 7983bdc CS fixes - native_function_invocation & static_lambda
  • Additional commits viewable in compare view

Updates symfony/http-foundation from 6.3.5 to 6.4.41

Release notes

Sourced from symfony/http-foundation's releases.

v6.4.41

Changelog (symfony/http-foundation@v6.4.35...v6.4.41)

  • security #cve-2026-48736 Block IPv6 transition forms in IpUtils::PRIVATE_SUBNETS (@​nicolas-grekas)

v6.4.35

Changelog (symfony/http-foundation@v6.4.34...v6.4.35)

v6.4.34

Changelog (symfony/http-foundation@v6.4.33...v6.4.34)

v6.4.33

Changelog (symfony/http-foundation@v6.4.32...v6.4.33)

v6.4.32

Changelog (symfony/http-foundation@v6.4.31...v6.4.32)

v6.4.31

Changelog (symfony/http-foundation@v6.4.30...v6.4.31)

v6.4.30

Changelog (symfony/http-foundation@v6.4.29...v6.4.30)

v6.4.29

Changelog (symfony/http-foundation@v6.4.28...v6.4.29)

  • no significant changes

v6.4.28

Changelog (symfony/http-foundation@v6.4.27...v6.4.28)

... (truncated)

Changelog

Sourced from symfony/http-foundation's changelog.

CHANGELOG

8.1

  • Add BinaryFileResponse::shouldDeleteFileAfterSend()
  • Deprecate setting public properties of Request and Response objects directly; use setters or constructor arguments instead
  • Add SessionHasFlashMessage test constraint
  • Response::__construct() now accepts a ResponseHeaderBag as its third argument
  • ParameterBag::getInt() and ParameterBag::getBoolean() now throw UnexpectedValueException instead of silently returning 0/false when the value cannot be converted

8.0

  • Drop HTTP method override support for methods GET, HEAD, CONNECT and TRACE
  • Add argument $subtypeFallback to Request::getFormat()
  • Remove the following deprecated session options from NativeSessionStorage: referer_check, use_only_cookies, use_trans_sid, sid_length, sid_bits_per_character, trans_sid_hosts, trans_sid_tags
  • Trigger PHP warning when using Request::sendHeaders() after headers have already been sent; use a StreamedResponse instead
  • Add arguments $v4Bytes and $v6Bytes to IpUtils::anonymize()
  • Add argument $partitioned to ResponseHeaderBag::clearCookie()
  • Add argument $expiration to UriSigner::sign()
  • Remove Request::get(), use properties ->attributes, query or request directly instead
  • Remove accepting null $format argument to Request::setFormat()

7.4

  • Add #[WithHttpStatus] to define status codes: 404 for SignedUriException and 403 for ExpiredSignedUriException
  • Add support for the QUERY HTTP method
  • Add support for structured MIME suffix
  • Add Request::set/getAllowedHttpMethodOverride() to list which HTTP methods can be overridden
  • Deprecate using Request::sendHeaders() after headers have already been sent; use a StreamedResponse instead
  • Deprecate method Request::get(), use properties ->attributes, query or request directly instead
  • Make Request::createFromGlobals() parse the body of PUT, DELETE, PATCH and QUERY requests
  • Deprecate HTTP method override for methods GET, HEAD, CONNECT and TRACE; it will be ignored in Symfony 8.0
  • Deprecate accepting null $format argument to Request::setFormat()

7.3

  • Add support for iterable of string in StreamedResponse
  • Add EventStreamResponse and ServerEvent classes to streamline server event streaming
  • Add support for valkey: / valkeys: schemes for sessions
  • Request::getPreferredLanguage() now favors a more preferred language above exactly matching a locale
  • Allow UriSigner to use a ClockInterface
  • Add UriSigner::verify()

7.2

... (truncated)

Commits
  • 48d76c2 security #cve-2026-48736 [HttpFoundation] Block IPv6 transition forms in IpUt...
  • 10d5daa [HttpFoundation] Fix tests for PHP 8.6: session.cookie_samesite=Lax
  • 3ebc78a [HttpFoundation] Block IPv6 transition forms in IpUtils::PRIVATE_SUBNETS
  • 5402ad1 Remove wrong documentation
  • 92eeee6 CS fixes - native_function_invocation & static_lambda
  • cffffd0 [HttpFoundation] Fix session cookie_lifetime not applied in mock session storage
  • 5bb346d [HttpFoundation] Handle empty session data in updateTimestamp() to fix compat...
  • 31b030e stop using with*() without expects()
  • 31e2a27 BinaryFileResponse: always return 206 if Range is valid
  • 2ed100b [HttpFoundation] Reject invalid paths
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps the composer group with 2 updates in the / directory: [symfony/cache](https://github.com/symfony/cache) and [symfony/http-foundation](https://github.com/symfony/http-foundation).


Updates `symfony/cache` from 6.2.8 to 6.4.40
- [Release notes](https://github.com/symfony/cache/releases)
- [Changelog](https://github.com/symfony/cache/blob/8.1/CHANGELOG.md)
- [Commits](symfony/cache@v6.2.8...v6.4.40)

Updates `symfony/http-foundation` from 6.3.5 to 6.4.41
- [Release notes](https://github.com/symfony/http-foundation/releases)
- [Changelog](https://github.com/symfony/http-foundation/blob/8.1/CHANGELOG.md)
- [Commits](symfony/http-foundation@v6.3.5...v6.4.41)

---
updated-dependencies:
- dependency-name: symfony/cache
  dependency-version: 6.4.40
  dependency-type: direct:production
  dependency-group: composer
- dependency-name: symfony/http-foundation
  dependency-version: 6.4.41
  dependency-type: indirect
  dependency-group: composer
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file php Pull requests that update Php code labels May 27, 2026
@Programie Programie merged commit 53ee6d7 into main May 28, 2026
2 of 3 checks passed
@dependabot dependabot Bot deleted the dependabot/composer/composer-b8516a5bd0 branch May 28, 2026 08:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file php Pull requests that update Php code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant