Skip to content

chore(deps): bump the composer-version-updates group across 1 directory with 13 updates#24

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/composer/composer-version-updates-19957950e7
Open

chore(deps): bump the composer-version-updates group across 1 directory with 13 updates#24
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/composer/composer-version-updates-19957950e7

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Apr 15, 2026

Bumps the composer-version-updates group with 7 updates in the / directory:

Package From To
doctrine/orm 2.20.0 3.6.3
drenso/symfony-oidc-bundle 2.13.2 4.3.1
symfony/flex 2.4.7 2.10.0
symfony/monolog-bundle 3.10.0 4.0.2
twig/extra-bundle 3.13.0 3.24.0
symfony/maker-bundle 1.61.0 1.67.0
symfony/phpunit-bridge 7.1.6 8.0.8

Updates doctrine/orm from 2.20.0 to 3.6.3

Release notes

Sourced from doctrine/orm's releases.

3.6.3

Release Notes for 3.6.3

3.6.x bugfix release (patch)

3.6.3

  • Total issues resolved: 0
  • Total pull requests resolved: 1
  • Total contributors: 1

CI

This release also contains changes from https://github.com/doctrine/orm/releases/tag/2.20.10

3.6.2

Release Notes for 3.6.2

3.6.x bugfix release (patch)

3.6.2

  • Total issues resolved: 0
  • Total pull requests resolved: 2
  • Total contributors: 2

Bugfix

Improvement

3.6.1

Release Notes for 3.6.1

3.6.x bugfix release (patch)

3.6.1

  • Total issues resolved: 0
  • Total pull requests resolved: 5
  • Total contributors: 4

Bugfixes

... (truncated)

Upgrade guide

Sourced from doctrine/orm's upgrade guide.

Note about upgrading: Doctrine uses static and runtime mechanisms to raise awareness about deprecated code.

  • Use of @deprecated docblock that is detected by IDEs (like PHPStorm) or Static Analysis tools (like Psalm, phpstan)
  • Use of our low-overhead runtime deprecation API, details: https://github.com/doctrine/deprecations/

Upgrade to 3.x General Notes

We recommend you upgrade to DBAL 3 first before upgrading to ORM 3. See the DBAL upgrade docs: https://github.com/doctrine/dbal/blob/3.10.x/UPGRADE.md

Rather than doing several major upgrades at once, we recommend you do the following:

  • upgrade to DBAL 3
  • deploy and monitor
  • upgrade to ORM 3
  • deploy and monitor
  • upgrade to DBAL 4
  • deploy and monitor

If you are using Symfony, the recommended minimal Doctrine Bundle version is 2.15 to run with ORM 3.

At this point, we recommend upgrading to PHP 8.4 first and then directly from ORM 2.19 to 3.5 and up so that you can skip the lazy ghost proxy generation and directly start using native lazy objects.

Upgrade to 3.6

Deprecate using string expression for default values in mappings

Using a string expression for default values in field mappings is deprecated. Use Doctrine\DBAL\Schema\DefaultExpression instances instead.

Here is how to address this deprecation when mapping entities using PHP attributes:

 use DateTime;
+use Doctrine\DBAL\Schema\DefaultExpression\CurrentDate;
+use Doctrine\DBAL\Schema\DefaultExpression\CurrentTime;
+use Doctrine\DBAL\Schema\DefaultExpression\CurrentTimestamp;
 use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity]
final class TimeEntity
{
#[ORM\Id]
#[ORM\Column]
</tr></table>

... (truncated)

Commits
  • e88cd59 Merge pull request #12423 from greg0ire/3.6.x
  • 88a8f75 Merge remote-tracking branch 'origin/2.20.x' into 3.6.x
  • 9fe8ce4 Merge pull request #12373 from tomme87/12225-fix-hydration-issue
  • a46ff16 Merge pull request #12414 from ahmed-bhs/docs/enum-type-mapping
  • 94e60e4 Merge pull request #12419 from greg0ire/backport-12222
  • f59cd40 Add ORDER BY clause to SELECT query
  • 81558a8 Merge pull request #12418 from doctrine/dependabot/github_actions/2.20.x/code...
  • e431ee1 Bump codecov/codecov-action from 5 to 6
  • de4ec20 Mention PostgreSQL jsonb as a reason to favor json over simple_array
  • df014a7 Update docs/en/reference/basic-mapping.rst
  • Additional commits viewable in compare view

Updates drenso/symfony-oidc-bundle from 2.13.2 to 4.3.1

Release notes

Sourced from drenso/symfony-oidc-bundle's releases.

v4.3.0

What's Changed

New Contributors

Full Changelog: Drenso/symfony-oidc@v4.2.0...v4.3.0

v4.2.0

What's Changed

New Contributors

Full Changelog: Drenso/symfony-oidc@v4.1.0...v4.2.0

v4.1.0

What's Changed

New Contributors

Full Changelog: Drenso/symfony-oidc@v4.0.0...v4.1.0

v4.0.0

What's Changed

New Contributors

Full Changelog: Drenso/symfony-oidc@v3.6.0...v4.0.0

v3.6.0

What's Changed

New Contributors

Full Changelog: Drenso/symfony-oidc@v3.5.0...v3.6.0

v3.5.0

What's Changed

... (truncated)

Upgrade guide

Sourced from drenso/symfony-oidc-bundle's upgrade guide.

This file describes the steps you will need to make when upgrading this bundle.

From 3.x to 4.0

  • OidcTokens is added as a parameter to Drenso\OidcBundle\Security\UserProvider\OidcUserProviderInterface::ensureUserExists() method. To upgrade please add this parameter to your implementation of OidcUserProviderInterface::ensureUserExists().
  • Explicit return types have been added where they were missing. You will need to adjust your implementations accordingly.
  • PHPStan typing has been added: this can impact you if you are using static analysis.

From 3.0 to 3.1

  • The iss, iat, nbf and exp claims set in the access token are only validated when they are actually available. While this is strictly speaking not according to the JWT specification, we have decided to handle these cases gracefully.

From 2.0 to 3.0

  • ES signing algorithms are now supported
  • Token validity verification now uses a configured leeway seconds value, which by default is 300
    • Configurable with token_leeway_seconds client option
    • The iat claim is now also taken into account
  • Additional cache has been added for JWK results caching
    • Cache can be disabled by setting the jwks_cache_time client option to null
  • Internal cache keys have been updated
  • OidcJwtHelper has been rewritten: if you were not calling this class yourself, you should be fine
    • Only a new verifyTokens function is now available which combines the old verifyJwtSignature and verifyJwtClaims methods
    • decodeJwt and getIdTokenClaims are no longer available, but you can get a decoded token object with JwtHelper::parseToken()
  • Support for phpseclib/phpseclib 2 has been dropped
  • The getJwktUri method typo in OidcClient has been fixed, it is now getJwksUri
  • The OidcJwtHelper is no longer passed to the OidcAuthenticator instance

From 2.0 to 2.1

The following has changed:

  • Constructor parameters of a couple of classes (should all be managed by the bundle dependency injection)
    • Drenso\OidcBundle\OidcClient
    • Drenso\OidcBundle\OidcJwtHelper
    • Drenso\OidcBundle\Security\OidcAuthenticator
  • Session information is now stored per configured client, using a dedicated class
  • Remember me support has been added (disabled by default)

From 1.x to 2.x

As 2.x is a major rewrite which actually leverages the Symfony configuration component, you will need to remove most of your previous configuration.

What hasn't changed?

The oidc key and its options remain the same in your firewall configuration 🎉

Configuration to remove

... (truncated)

Commits
  • 9836361 Update PHPStan baseline
  • 142801a use ->query->get instead of ->get for rememberMeParameter
  • 4a0f7a8 [RenovateBot] Update dependency rector/rector to v2.2.14
  • 3de8b55 [RenovateBot] Update dependency rector/rector to v2.2.13
  • 5678220 [RenovateBot] Update dependency rector/rector to v2.2.12
  • 84e8c2c [RenovateBot] Update dependency friendsofphp/php-cs-fixer to v3.91.3
  • 44c81c5 [RenovateBot] Update dependency phpstan/phpstan to v2.1.33
  • b8ed29d [RenovateBot] Update dependency rector/rector to v2.2.11
  • f41641f [RenovateBot] Update dependency rector/rector to v2.2.10
  • e9bec73 [RenovateBot] Update dependency friendsofphp/php-cs-fixer to v3.91.2
  • Additional commits viewable in compare view

Updates symfony/console from 7.1.7 to 7.1.10

Release notes

Sourced from symfony/console's releases.

v7.1.10

Changelog (symfony/console@v7.1.9...v7.1.10)

v7.1.8

Changelog (symfony/console@v7.1.7...v7.1.8)

  • no significant changes
Commits
  • bb06e2d Merge branch '6.4' into 7.1
  • 799445d fix risky test that doesn't perform any assertions
  • d205904 Merge branch '6.4' into 7.1
  • 67191f7 [Console] Fix division by 0 error
  • ff04e5b Merge branch '6.4' into 7.1
  • f1fc6f4 Merge branch '5.4' into 6.4
  • c4ba980 skip autocomplete test when stty is not available
  • See full diff in compare view

Updates symfony/flex from 2.4.7 to 2.10.0

Release notes

Sourced from symfony/flex's releases.

v2.10.0

What's Changed

Full Changelog: symfony/flex@v2.9.0...v2.10.0

v2.9.0

What's Changed

Full Changelog: symfony/flex@v2.8.2...v2.9.0

v2.7.1

What's Changed

Full Changelog: symfony/flex@v2.7.0...v2.7.1

v2.7.0

What's Changed

New Contributors

Full Changelog: symfony/flex@v2.6.0...v2.7.0

v2.6.0

What's Changed

New Contributors

... (truncated)

Commits
  • 9cd3847 feature #1070 Fix dump-env command when .env files reference other env vars (...
  • 2b99ec7 feature #1071 Bump symfony/dotenv to v5.4 minimum (nicolas-grekas)
  • fec65a9 Bump symfony/dotenv to v5.4 minimum
  • ed41273 Fix dump-env command when .env files reference other env vars
  • 9df660e Fix CS
  • 94b3797 minor #1068 Leverage COMPOSER_PREFER_DEV_OVER_PRERELEASE when possible (nicol...
  • cc37c66 Leverage COMPOSER_PREFER_DEV_OVER_PRERELEASE when possible
  • 556ab3b Bump deps, PHP >= 8.1
  • 2d3822e bug #1066 Fix ignoring unstable releases with --prefer-lowest and --prefer-st...
  • 73537e7 Fix ignoring unstable releases with --prefer-lowest and --prefer-stable
  • Additional commits viewable in compare view

Updates symfony/monolog-bundle from 3.10.0 to 4.0.2

Release notes

Sourced from symfony/monolog-bundle's releases.

v4.0.2

What's Changed

New Contributors

Full Changelog: symfony/monolog-bundle@v4.0.1...v4.0.2

4.0.1

  • Fix rollbar handler to use RollbarLogger
  • Fix monolog.processor tag attributes to use consecutive keys

4.0.0

  • Add support for Symfony 8.0
  • Drop support for PHP < 8.2
  • Drop support for Symfony < 7.3
  • Drop support for Monolog < 3.5
  • Remove abstract monolog.activation_strategy.not_found and monolog.handler.fingers_crossed.error_level_activation_strategy service definitions
  • Remove excluded_404s option, use excluded_http_codes instead
  • Remove console_formater_options option, use console_formatter_options instead
  • Remove elasticsearch type, use elastica or elastic_search instead
  • Remove mongo type, use mongodb instead
  • Remove sentry and raven types, use a service type with sentry/sentry-symfony instead
  • Remove DebugHandlerPass
  • Remove support for the DebugHandler

v3.11.2

What's Changed

Full Changelog: symfony/monolog-bundle@v3.11.1...v3.11.2

3.11.1

  • Fix rollbar handler to use RollbarLogger with Monolog 2+
  • Fix monolog.processor tag attributes to use consecutive keys

3.11.0

  • Reorganize files to match the "Reusable Bundles" structure
  • Migrate services configuration to PHP
  • Add console.interactive_only flag
  • Add slack.exclude_fields and slackwebhook.exclude_fields configuration
  • Add a processor to all loggers only when tags do not specify a channel or handler
  • Deprecate abstract monolog.activation_strategy.not_found and monolog.handler.fingers_crossed.error_level_activation_strategy service definitions
  • Drop support for PHP < 8.1

... (truncated)

Changelog

Sourced from symfony/monolog-bundle's changelog.

4.0.2 (2026-04-02)

  • Fix TaggedIteratorArgument deprecation warning when using symfony/dependency-injection 8.1
  • Import Extension from the DependencyInjection component rather than HttpKernel
  • Add missing target to named autowiring alias
  • Add info to the monolog.channels config

4.0.1 (2025-12-09)

  • Fix rollbar handler to use RollbarLogger
  • Fix monolog.processor attributes to use consecutive keys

4.0.0 (2025-11-27)

  • Add support for Symfony 8.0
  • Drop support for PHP < 8.2
  • Drop support for Symfony < 7.3
  • Drop support for Monolog < 3.5
  • Remove abstract monolog.activation_strategy.not_found and monolog.handler.fingers_crossed.error_level_activation_strategy service definitions
  • Remove excluded_404s option, use excluded_http_codes instead
  • Remove console_formater_options option, use console_formatter_options instead
  • Remove elasticsearch type, use elastica or elastic_search instead
  • Remove mongo type, use mongodb instead
  • Remove sentry and raven types, use a service type with sentry/sentry-symfony instead
  • Remove DebugHandlerPass
  • Remove support for the DebugHandler

3.11.2 (2026-04-02)

  • Add missing target to named autowiring alias

3.11.1 (2025-12-09)

  • Fix rollbar handler to use RollbarLogger with Monolog 2+
  • Fix monolog.processor attributes to use consecutive keys

3.11.0 (2025-11-27)

  • Reorganize files to match the "Reusable Bundles" structure
  • Migrate services configuration to PHP
  • Add console.interactive_only flag
  • Add slack.exclude_fields and slackwebhook.exclude_fields configuration
  • Add a processor to all loggers only when tags do not specify a channel or handler
  • Deprecate abstract monolog.activation_strategy.not_found and monolog.handler.fingers_crossed.error_level_activation_strategy service definitions
  • Drop support for PHP < 8.1
  • Drop support for Symfony < 6.4
  • Add TelegramBotHandler topic support
  • Deprecate sentry and raven handler, use a service handler with sentry/sentry-symfony instead
  • Add configuration for Gelf encoders
  • Fix host configuration for elastic_search handler

... (truncated)

Commits
  • c012c6a Update changelog for 4.0.2
  • 47555c5 Merge branch '3.x' into 4.x
  • d874680 Update changelog for 3.11.2
  • dfdbfd7 Merge branch '3.x' into 4.x
  • 1b4fde0 minor #566 Add info to the monolog.channels config (GromNaN)
  • 9bceb15 Add info to the monolog.channels config
  • 2dba924 minor #576 Add PHP 8.5 to CI workflow matrix (GromNaN)
  • 00afe44 bug #572 Add missing target to named autowiring alias (nicolas-grekas)
  • 1c0a809 Add missing target to named autowiring alias
  • 0062fff Add PHP 8.5 to CI workflow matrix
  • Additional commits viewable in compare view

Updates symfony/process from 7.1.7 to 7.1.8

Release notes

Sourced from symfony/process's releases.

v7.1.8

Changelog (symfony/process@v7.1.7...v7.1.8)

  • no significant changes
Commits
  • 4278337 Merge branch '6.4' into 7.1
  • 3cb242f Merge branch '5.4' into 6.4
  • 5d1662f normalize paths to avoid failures if a path is referenced by different names
  • See full diff in compare view

Updates symfony/property-access from 7.1.6 to 7.1.11

Release notes

Sourced from symfony/property-access's releases.

v7.1.11

Changelog (symfony/property-access@v7.1.10...v7.1.11)

Commits
  • 83e46f0 chore: PropertyAccess - fix typo in DocBlock
  • e0fc978 Merge branch '6.4' into 7.1
  • 80e0378 [PropertyAccess] Fix compatibility with PHP 8.4 asymmetric visibility
  • See full diff in compare view

Updates symfony/property-info from 7.1.8 to 7.1.11

Release notes

Sourced from symfony/property-info's releases.

v7.1.11

Changelog (symfony/property-info@v7.1.10...v7.1.11)

v7.1.10

Changelog (symfony/property-info@v7.1.9...v7.1.10)

v7.1.9

Changelog (symfony/property-info@v7.1.8...v7.1.9)

Commits
  • df9002f Merge branch '6.4' into 7.1
  • 94d18e5 [PropertyInfo] Fix TypeTest duplicated assert
  • fbefa50 convert legacy types to TypeInfo types if getType() is not implemented
  • a32a992 Merge branch '6.4' into 7.1
  • 7a0518d [PropertyInfo] Add missing test
  • a9369a7 Merge branch '6.4' into 7.1
  • b95312d Merge branch '6.4' into 7.1
  • ff6dda2 fix(property-info): make sure that SerializerExtractor returns null for inval...
  • 466811d bug #59245 [PropertyInfo] Fix add missing composer conflict (mtarld)
  • 2b3a74c [PropertyInfo] Fix add missing composer conflict
  • Additional commits viewable in compare view

Updates symfony/security-bundle from 7.1.6 to 7.1.11

Release notes

Sourced from symfony/security-bundle's releases.

v7.1.11

Changelog (symfony/security-bundle@v7.1.10...v7.1.11)

Commits

Updates twig/extra-bundle from 3.13.0 to 3.24.0

Release notes

Sourced from twig/extra-bundle's releases.

v3.24.0

Changelog (twigphp/twig-extra-bundle@v3.23.0...v3.24.0)

  • no significant changes

v3.23.0

No release notes provided.

Commits
  • 6a621fc Fix CS
  • 7a27e78 minor #4718 Add .gitignore & .gitattributes to all .gitattributes (jmsche)
  • 09de9be use getShareDir as an indicator of Symfony version
  • 8f6488a Add .gitignore & .gitattributes to all .gitattributes
  • b6534bc Allow Symfony 8 packages in Twig extra packages
  • 6d253f0 Bump minimum Commonmark requirement
  • f22e82d minor #4664 CS fixes (nicolas-grekas)
  • f047eb6 CS fixes
  • d48133c Fix compatibility with Symfony 8
  • 614922f Update configuration keys + allow extra keys for extensions
  • Additional commits viewable in compare view

Updates twig/twig from 3.14.2 to 3.24.0

Release notes

Sourced from twig/twig's releases.

v3.24.0

Changelog (twigphp/Twig@v3.23.0...v3.24.0)

  • feature #3930 Add an html_attr function to make outputting HTML attributes easier (@​mpdude, @​polarbirke)
  • bug #4778 Fix null coalescing operator with imported macros (@​fabpot)
  • feature #4775 Add getOperatorTokens() to ExpressionParserInterface to separate operator token registration from parser identity (@​fabpot)
  • bug #4774 Ensure filters/attributes aren't mistaken for operators (@​brandonkelly)
  • feature #4771 Deprecate passing non AbstractExpression nodes to MatchesBinary (@​fabpot)
  • feature #4769 Deprecate passing a non-AbstractExpression node to Parser::setParent() (@​fabpot)
  • feature #4748 Support short-circuiting in null-safe operator chains (@​HypeMC)
  • feature #4743 Add html_attr_relaxed escaping strategy (@​mpdude)
  • feature #4759 Add support for renaming variables in object destructuring (@​fabpot)
Changelog

Sourced from twig/twig's changelog.

3.24.0 (2026-03-17)

  • Deprecate not implementing the getOperatorTokens() method in ExpressionParserInterface implementations
  • Deprecate passing a non-AbstractExpression node to Twig\Node\Expression\Binary\MatchesBinary constructor
  • Deprecate passing a non-AbstractExpression node to Parser::setParent()
  • Add support for renaming variables in object destructuring ({name: userName} = user)
  • Add html_attr_relaxed escaping strategy that preserves :, @, [, and ] for front-end framework attribute names
  • Add support for short-circuiting in null-safe operator chains
  • Add the html_attr function and html_attr_merge as well as html_attr_type filters

3.23.0 (2026-01-23)

  • Add = assignment operator (allows to set variables in expression or to replace the short-form of the set tag)
  • Add sequence, mapping, and object destructuring
  • Add ?. null-safe operator
  • Add === and !== operators (equivalent to the same as and not same as tests)
  • Fix opcache preload warning for unlinked anonymous class
  • Fix spread operator behavior

3.22.2 (2025-12-14)

  • Fix "cycle" with non-countable ArrayAccess + Traversable objects
  • Use "getShareDir" as an indicator of Symfony version in Symfony bundle
  • Fix escaper compatibility with PHP 8.5

3.22.1 (2025-11-16)

  • Add support for Symfony 8

3.22.0 (2025-10-29)

  • Add support for two words test in guard tag
  • Add Environment::registerUndefinedTestCallback()
  • Fix compatibility with Symfony 8
  • Fix accessing arrays with stringable objects as key
  • Avoid errors when failing to guess the template info for an error
  • Fix expression parser compatibility layer
  • Fix compiling 'index' with repr (not string) in EmbedNode
  • Update configuration keys + allow extra keys for CommonMark extensions
  • Allow usage of other Markdown converters than CommonMark in LeagueMarkdown

3.21.1 (2025-05-03)

  • Fix ExtensionSet usage of BinaryOperatorExpressionParser

3.21.0 (2025-05-02)

  • Fix wrong array index
  • Deprecate Template::loadTemplate()
  • Fix testing and expression when it evaluates to an instance of Markup

... (truncated)

Commits
  • a6769ae Prepare the 3.24.0 release
  • 8abec84 minor #4784 Add two tests for error conditions in #3930 (mpdude)
  • 2fcc939 Fix CS
  • 25bfb59 Add two tests for error conditions in #3930
  • 8b93364 feature #3930 Add an html_attr function to make outputting HTML attributes ...
  • 42c12fa Add an html_attr function to make outputting HTML attributes easier
  • 9c85915 minor #4779 fix MatchesBinary namespace in changelog (xabbuh)
  • 442bcd4 fix MatchesBinary namespace in changelog
  • e56cdfd bug #4778 Fix null coalescing operator with imported macros (fabpot)
  • faa7e87 feature #4775 Add getOperatorTokens() to ExpressionParserInterface to separat...
  • Additional commits viewable in compare view

Updates symfony/maker-bundle from 1.61.0 to 1.67.0

Release notes

Sourced from symfony/maker-bundle's releases.

v1.67.0

This version improves the use of MakerTestCase for testing maker classes in third-party projects and libraries.

What's Changed

Full Changelog: symfony/maker-bundle@v1.66.0...v1.67.0

1.66.0

What's Changed

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file php Pull requests that update php code labels Apr 15, 2026
…ry with 13 updates

Bumps the composer-version-updates group with 7 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [doctrine/orm](https://github.com/doctrine/orm) | `2.20.0` | `3.6.3` |
| [drenso/symfony-oidc-bundle](https://github.com/Drenso/symfony-oidc) | `2.13.2` | `4.3.1` |
| [symfony/flex](https://github.com/symfony/flex) | `2.4.7` | `2.10.0` |
| [symfony/monolog-bundle](https://github.com/symfony/monolog-bundle) | `3.10.0` | `4.0.2` |
| [twig/extra-bundle](https://github.com/twigphp/twig-extra-bundle) | `3.13.0` | `3.24.0` |
| [symfony/maker-bundle](https://github.com/symfony/maker-bundle) | `1.61.0` | `1.67.0` |
| [symfony/phpunit-bridge](https://github.com/symfony/phpunit-bridge) | `7.1.6` | `8.0.8` |



Updates `doctrine/orm` from 2.20.0 to 3.6.3
- [Release notes](https://github.com/doctrine/orm/releases)
- [Upgrade guide](https://github.com/doctrine/orm/blob/3.6.x/UPGRADE.md)
- [Commits](doctrine/orm@2.20.0...3.6.3)

Updates `drenso/symfony-oidc-bundle` from 2.13.2 to 4.3.1
- [Release notes](https://github.com/Drenso/symfony-oidc/releases)
- [Upgrade guide](https://github.com/Drenso/symfony-oidc/blob/main/UPGRADE.md)
- [Commits](Drenso/symfony-oidc@v2.13.2...v4.3.1)

Updates `symfony/console` from 7.1.7 to 7.1.10
- [Release notes](https://github.com/symfony/console/releases)
- [Changelog](https://github.com/symfony/console/blob/8.1/CHANGELOG.md)
- [Commits](symfony/console@v7.1.7...v7.1.10)

Updates `symfony/flex` from 2.4.7 to 2.10.0
- [Release notes](https://github.com/symfony/flex/releases)
- [Commits](symfony/flex@v2.4.7...v2.10.0)

Updates `symfony/monolog-bundle` from 3.10.0 to 4.0.2
- [Release notes](https://github.com/symfony/monolog-bundle/releases)
- [Changelog](https://github.com/symfony/monolog-bundle/blob/4.x/CHANGELOG.md)
- [Commits](symfony/monolog-bundle@v3.10.0...v4.0.2)

Updates `symfony/process` from 7.1.7 to 7.1.8
- [Release notes](https://github.com/symfony/process/releases)
- [Changelog](https://github.com/symfony/process/blob/8.1/CHANGELOG.md)
- [Commits](symfony/process@v7.1.7...v7.1.8)

Updates `symfony/property-access` from 7.1.6 to 7.1.11
- [Release notes](https://github.com/symfony/property-access/releases)
- [Changelog](https://github.com/symfony/property-access/blob/8.1/CHANGELOG.md)
- [Commits](symfony/property-access@v7.1.6...v7.1.11)

Updates `symfony/property-info` from 7.1.8 to 7.1.11
- [Release notes](https://github.com/symfony/property-info/releases)
- [Changelog](https://github.com/symfony/property-info/blob/8.1/CHANGELOG.md)
- [Commits](symfony/property-info@v7.1.8...v7.1.11)

Updates `symfony/security-bundle` from 7.1.6 to 7.1.11
- [Release notes](https://github.com/symfony/security-bundle/releases)
- [Changelog](https://github.com/symfony/security-bundle/blob/8.1/CHANGELOG.md)
- [Commits](symfony/security-bundle@v7.1.6...v7.1.11)

Updates `twig/extra-bundle` from 3.13.0 to 3.24.0
- [Release notes](https://github.com/twigphp/twig-extra-bundle/releases)
- [Commits](twigphp/twig-extra-bundle@v3.13.0...v3.24.0)

Updates `twig/twig` from 3.14.2 to 3.24.0
- [Release notes](https://github.com/twigphp/Twig/releases)
- [Changelog](https://github.com/twigphp/Twig/blob/3.x/CHANGELOG)
- [Commits](twigphp/Twig@v3.14.2...v3.24.0)

Updates `symfony/maker-bundle` from 1.61.0 to 1.67.0
- [Release notes](https://github.com/symfony/maker-bundle/releases)
- [Commits](symfony/maker-bundle@v1.61.0...v1.67.0)

Updates `symfony/phpunit-bridge` from 7.1.6 to 8.0.8
- [Release notes](https://github.com/symfony/phpunit-bridge/releases)
- [Changelog](https://github.com/symfony/phpunit-bridge/blob/8.1/CHANGELOG.md)
- [Commits](symfony/phpunit-bridge@v7.1.6...v8.0.8)

---
updated-dependencies:
- dependency-name: doctrine/orm
  dependency-version: 3.6.3
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: composer-version-updates
- dependency-name: drenso/symfony-oidc-bundle
  dependency-version: 4.3.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: composer-version-updates
- dependency-name: symfony/console
  dependency-version: 7.1.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: composer-version-updates
- dependency-name: symfony/flex
  dependency-version: 2.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: composer-version-updates
- dependency-name: symfony/monolog-bundle
  dependency-version: 4.0.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: composer-version-updates
- dependency-name: symfony/process
  dependency-version: 7.1.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: composer-version-updates
- dependency-name: symfony/property-access
  dependency-version: 7.1.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: composer-version-updates
- dependency-name: symfony/property-info
  dependency-version: 7.1.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: composer-version-updates
- dependency-name: symfony/security-bundle
  dependency-version: 7.1.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: composer-version-updates
- dependency-name: twig/extra-bundle
  dependency-version: 3.24.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: composer-version-updates
- dependency-name: twig/twig
  dependency-version: 3.24.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: composer-version-updates
- dependency-name: symfony/maker-bundle
  dependency-version: 1.67.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: composer-version-updates
- dependency-name: symfony/phpunit-bridge
  dependency-version: 8.0.8
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: composer-version-updates
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/composer/composer-version-updates-19957950e7 branch from 5e3f006 to 6f5e2b9 Compare April 22, 2026 18:35
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.

0 participants