Skip to content

Bump the php-prod group across 1 directory with 15 updates - #2104

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/composer/php-prod-2ff3465543
Open

dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/composer/php-prod-2ff3465543

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 18, 2026

Copy link
Copy Markdown
Contributor

Bumps the php-prod group with 15 updates in the / directory:

Package From To
beberlei/assert 3.3.3 3.3.4
doctrine/dbal 4.4.3 4.4.4
doctrine/orm 3.6.7 3.6.8
monolog/monolog 3.10.0 3.11.0
ramsey/uuid 4.9.2 4.9.3
symfony/console 7.4.11 7.4.19
symfony/dotenv 7.4.11 7.4.18
symfony/expression-language 7.4.8 7.4.18
symfony/mailer 7.4.12 7.4.17
symfony/security-bundle 7.4.12 7.4.18
symfony/translation 7.4.10 7.4.17
symfony/twig-bundle 7.4.8 7.4.15
symfony/validator 7.4.10 7.4.18
symfony/yaml 7.4.12 7.4.18
twig/twig 3.26.0 3.29.0

Updates beberlei/assert from 3.3.3 to 3.3.4

Release notes

Sourced from beberlei/assert's releases.

v3.3.4

What's Changed

Full Changelog: beberlei/assert@v3.3.3...v3.3.4

Commits

Updates doctrine/dbal from 4.4.3 to 4.4.4

Release notes

Sourced from doctrine/dbal's releases.

4.4.4

Release Notes for 4.4.4

4.4.4

  • Total issues resolved: 1
  • Total pull requests resolved: 18
  • Total contributors: 6

Bug,Error Handling,PostgreSQL

Bug,MySQL,Schema Introspection

Schema Definition,Test Suite

Bug,Indexes,Schema Definition

Static Analysis,Test Suite

Connections,Error Handling,Test Suite

Identifiers,Schema Introspection,Schema Management,Test Suite

Connections,Drivers,Results,Test Suite

Documentation,Test Suite

Platforms,Test Suite

... (truncated)

Commits
  • fb9e0ff Merge branch '3.10.x' into 4.4.x
  • c95589d fix(MariaDb): add support of new reserved word TO_DATE (12.3+) (#7391)
  • ff5c186 Merge tag '4.2.5' into 4.4.x
  • 6ea4f27 Merge pull request #7462 from morozov/fix-introspection-of-table-names-differ...
  • 7e086ed Distinguish table names differing only in case
  • 20af8cd Merge pull request #7458 from morozov/implicit-indexes-docs
  • fdec68d Explain the real reason implicit indexes exist
  • 1c8bfc4 Merge pull request #7453 from morozov/cover-core-value-objects
  • 28fd6b2 Cover renameColumn reuse of unaffected objects
  • 00276ae Test object set re-keying on rename and removal
  • Additional commits viewable in compare view

Updates doctrine/orm from 3.6.7 to 3.6.8

Release notes

Sourced from doctrine/orm's releases.

3.6.8

Release Notes for 3.6.8

3.6.8

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

Bugfixes

Improvements

Static Analysis

Test Suite

Commits
  • a4d13ed Merge pull request #12545 from greg0ire/3.6.x
  • 0254bc7 Merge remote-tracking branch 'origin/2.20.x' into 3.6.x
  • 6544249 Merge pull request #12491 from demiankatz/fix-issue-11418
  • d9923c2 Merge pull request #12516 from ruudk/fix-lock-mode
  • 8c15dcd Rename variable as per review.
  • 2bae808 Merge pull request #12534 from greg0ire/mocks-stubs
  • 1cebc45 Use stubs when appropriate
  • 0314881 Merge pull request #12532 from greg0ire/towards-phpunit-12
  • 6e78e5d Remove deprecated attribute
  • 4656213 Address deprecation about argument count mismatch
  • Additional commits viewable in compare view

Updates monolog/monolog from 3.10.0 to 3.11.0

Release notes

Sourced from monolog/monolog's releases.

3.11.0

  • Security: Fixed potential XSS in BrowserConsoleHandler when logging user provided content
  • Added RedactingFormatter to automatically redact sensitive data from records, based on key names, #[SensitiveParameter] constructor params and/or regex patterns (#2041)
  • Added FrankenPhpHandler to log records via FrankenPHP's frankenphp_log() function (#2056)
  • Added LogMonsterHandler which complains if the code did not log enough records before the process/request ends, like a dead man's switch for logs (#2039)
  • Added FILE_PER_HOUR rotation mode to RotatingFileHandler (#2040)
  • Added ErrorHandler::captureStackTraces() to attach the stack trace of PHP errors to the records it generates (#2060)
  • Added NormalizerFormatter::setMaxTraceLength() to limit how many stack trace frames are included when normalizing exceptions (#2015)
  • Added extension points to TelegramBotHandler to change the API URL (e.g. for a self-hosted Bot API server) and to send extra curl headers (#2029)
  • Added ability to override IntrospectionProcessor's SKIP_FUNCTIONS in subclasses (#2050)
  • Added $maxLength param to SyslogUdpHandler/UdpSocket to keep datagrams below the path MTU, as fragmented UDP packets are often dropped (#2049)
  • Fixed StreamHandler truncating writes on non-blocking streams, it now loops until the whole record is written (#2016)
  • Fixed stack trace frames without file/line being skipped, they are now reported as internal[function] entries so traces are not truncated or empty (#2061)
  • Fixed RotatingFileHandler cleanup not finding files behind stream wrappers (e.g. private://) as glob() cannot see through those (#2058)
  • Fixed RotatingFileHandler not using the configured timezone when computing the next rotation time (#2022)
  • Fixed scalars being replaced by the "Over N levels deep" message instead of being output when the max normalization depth is reached (#2042)
  • Fixed DeduplicationHandler failing with an undefined array key error when the store file is written to concurrently (#2020)
  • Fixed TelegramBotHandler swallowing errors when the API returns a non-JSON response (#2030)
  • Fixed AbstractProcessingHandler::handle() reading $bubble directly instead of calling getBubble(), so overrides of it were ignored (#2031)
  • Fixed warning on PHP 8.5 when ErrorHandler sets the HTTP response code and a status line was already registered (#2027)

Full Changelog: Seldaek/monolog@3.10.0...3.11.0

Changelog

Sourced from monolog/monolog's changelog.

3.11.0 (2026-09-02)

  • Security: Fixed potential XSS in BrowserConsoleHandler when logging user provided content
  • Added RedactingFormatter to automatically redact sensitive data from records, based on key names, #[SensitiveParameter] constructor params and/or regex patterns (#2041)
  • Added FrankenPhpHandler to log records via FrankenPHP's frankenphp_log() function (#2056)
  • Added LogMonsterHandler which complains if the code did not log enough records before the process/request ends, like a dead man's switch for logs (#2039)
  • Added FILE_PER_HOUR rotation mode to RotatingFileHandler (#2040)
  • Added ErrorHandler::captureStackTraces() to attach the stack trace of PHP errors to the records it generates (#2060)
  • Added NormalizerFormatter::setMaxTraceLength() to limit how many stack trace frames are included when normalizing exceptions (#2015)
  • Added extension points to TelegramBotHandler to change the API URL (e.g. for a self-hosted Bot API server) and to send extra curl headers (#2029)
  • Added ability to override IntrospectionProcessor's SKIP_FUNCTIONS in subclasses (#2050)
  • Added $maxLength param to SyslogUdpHandler/UdpSocket to keep datagrams below the path MTU, as fragmented UDP packets are often dropped (#2049)
  • Fixed StreamHandler truncating writes on non-blocking streams, it now loops until the whole record is written (#2016)
  • Fixed stack trace frames without file/line being skipped, they are now reported as internal[function] entries so traces are not truncated or empty (#2061)
  • Fixed RotatingFileHandler cleanup not finding files behind stream wrappers (e.g. private://) as glob() cannot see through those (#2058)
  • Fixed RotatingFileHandler not using the configured timezone when computing the next rotation time (#2022)
  • Fixed scalars being replaced by the "Over N levels deep" message instead of being output when the max normalization depth is reached (#2042)
  • Fixed DeduplicationHandler failing with an undefined array key error when the store file is written to concurrently (#2020)
  • Fixed TelegramBotHandler swallowing errors when the API returns a non-JSON response (#2030)
  • Fixed AbstractProcessingHandler::handle() reading $bubble directly instead of calling getBubble(), so overrides of it were ignored (#2031)
  • Fixed warning on PHP 8.5 when ErrorHandler sets the HTTP response code and a status line was already registered (#2027)
Commits
  • 147f303 Update changelog
  • 7bbffd0 Report stack trace frames that have no file/line instead of skipping them (#2...
  • 567b630 Bump zizmorcore/zizmor-action from 0.6.1 to 0.6.2 (#2063)
  • a3a2046 Align FrankenPhpHandler's level scale with OpenTelemetry's mapping (#2062)
  • d1d7def Fix warning when setting the http response code in case a status has already ...
  • 6949404 Add a way to turn on stack traces for ErrorHandler-generated records (#2060)
  • a4c5f65 Add LogMonsterHandler that requires at least some amount of logging or it log...
  • e7508d8 Replace glob() with RecursiveDirectoryIterator in RotatingFileHandler cleanup...
  • 9435605 Add RedactingFormatter to automatically redact keys/sensitive data before log...
  • fde8b93 Add FrankenPhpHandler (#2056)
  • Additional commits viewable in compare view

Updates ramsey/uuid from 4.9.2 to 4.9.3

Release notes

Sourced from ramsey/uuid's releases.

4.9.3

Fixed

  • Upgrade brick/math to support versions ^0.14 to ^0.17; fixed in #638.
  • Add support for brick/math ^0.18.

New Contributors

Full Changelog: ramsey/uuid@4.9.2...4.9.3

Changelog

Sourced from ramsey/uuid's changelog.

4.9.3 - 2026-06-18

Fixed

  • Upgrade brick/math to support versions ^0.14 to ^0.17; fixed in #638.
  • Add support for brick/math ^0.18.
Commits
  • 1df1584 Prepare release 4.9.3
  • 5525d34 Upgrade PHPStan to 2.2 and remove superfluous assertion
  • 0d95f9e Support brick/math 0.18
  • 1a1f98b [4.x] Upgrade brick/math to support versions ^0.14–^0.17 (#638)
  • 3d1c6d9 chore(deps): bump codecov/codecov-action from 5 to 6
  • 39d47ce chore(deps): bump ramsey/composer-install from 3 to 4
  • See full diff in compare view

Updates symfony/console from 7.4.11 to 7.4.19

Release notes

Sourced from symfony/console's releases.

v7.4.19

Changelog (symfony/console@v7.4.18...v7.4.19)

v7.4.18

Changelog (symfony/console@v7.4.17...v7.4.18)

v7.4.17

Changelog (symfony/console@v7.4.16...v7.4.17)

v7.4.16

Changelog (symfony/console@v7.4.15...v7.4.16)

v7.4.15

Changelog (symfony/console@v7.4.14...v7.4.15)

v7.4.14

Changelog (symfony/console@v7.4.13...v7.4.14)

v7.4.13

Changelog (symfony/console@v7.4.11...v7.4.13)

... (truncated)

Commits
  • 3a19734 [Console] Report a validation error instead of a TypeError on numeric argumen...
  • 9553be3 [Console] [FrameworkBundle] Adapt merged tests to the 7.4 APIs
  • 30dc1f2 Merge branch '6.4' into 7.4
  • 9e118dd [Console] Keep messages containing malformed UTF-8 when wrapping
  • 2e7eaed [Console] Type the autocompleter callback as returning a list
  • 9e7bbe1 [Console] Disambiguate the autocompleter callback return type
  • a3ae4ce Merge branch '6.4' into 7.4
  • 91860d4 [Console] Cover the zsh completion against running the typed command line
  • fef95ef [Console] Do not evaluate the command line in the zsh completion
  • 7e9e790 Merge branch '6.4' into 7.4
  • Additional commits viewable in compare view

Updates symfony/dotenv from 7.4.11 to 7.4.18

Release notes

Sourced from symfony/dotenv's releases.

v7.4.18

Changelog (symfony/dotenv@v7.4.15...v7.4.18)

v7.4.15

Changelog (symfony/dotenv@v7.4.14...v7.4.15)

v7.4.14

Changelog (symfony/dotenv@v7.4.11...v7.4.14)

Commits
  • 99b5b14 Merge branch '6.4' into 7.4
  • 9b82700 [Dotenv] Don't collapse backslashes of external env var values
  • 23f6c99 [Dotenv] Don't truncate external env vars containing $ when only reachable vi...
  • 045d497 Merge branch '6.4' into 7.4
  • c7cce4c [Dotenv] Allow multiple underscores at start
  • 9b9c7a0 Merge branch '6.4' into 7.4
  • d71597d Drop PR warning and auto-closing on subtree splits
  • 1506847 Merge branch '6.4' into 7.4
  • fccc03c [Dotenv] Don't truncate external env vars containing $ when referenced via ${...
  • See full diff in compare view

Updates symfony/expression-language from 7.4.8 to 7.4.18

Release notes

Sourced from symfony/expression-language's releases.

v7.4.18

Changelog (symfony/expression-language@v7.4.14...v7.4.18)

v7.4.14

Changelog (symfony/expression-language@v7.4.9...v7.4.14)

Commits
  • b738665 Merge branch '6.4' into 7.4
  • 91edabb Merge branch '5.4' into 6.4
  • 5a4915a [ExpressionLanguage] Bound the nesting level of parsed expressions
  • 517821b Check arrays and bools directly instead of comparing them to count()/true/fal...
  • 92c24e8 Merge branch '6.4' into 7.4
  • d033441 Check arrays and bools directly instead of comparing them to count()/true/fal...
  • bd5763f Merge branch '6.4' into 7.4
  • 728f0c4 Unsafe unserialize phpstan rule
  • da18576 Merge branch '6.4' into 7.4
  • 04007e7 Drop PR warning and auto-closing on subtree splits
  • Additional commits viewable in compare view

Updates symfony/mailer from 7.4.12 to 7.4.17

Release notes

Sourced from symfony/mailer's releases.

v7.4.17

Changelog (symfony/mailer@v7.4.15...v7.4.17)

v7.4.15

Changelog (symfony/mailer@v7.4.14...v7.4.15)

  • bug #64985 Fix fatal TypeError when sending a RawMessage via an API transport (@​Baylox)
  • bug #64710 Reject control characters in SmtpTransport::setLocalDomain() (@​iliaal)

v7.4.14

Changelog (symfony/mailer@v7.4.12...v7.4.14)

  • bug #64605 Register MicrosoftGraphTransportFactory in Transport::FACTORY_CLASSES (@​Amoifr)
Commits
  • b17c9bf Merge branch '6.4' into 7.4
  • cea6ee2 bug #65527 [Mailer] Fix emails reported twice when they are queued and sent i...
  • e41bf16 Merge branch '6.4' into 7.4
  • 0032e81 [Mailer] Fix the SMTP scheme check in the transport factory test case
  • cb508fa [Mailer] Fix emails reported twice when they are queued and sent in the same ...
  • 2f294d3 Merge branch '6.4' into 7.4
  • 492f364 [Mailer] Reconnect after a timeout to avoid SMTP response desync
  • 6e400a6 Check arrays and bools directly instead of comparing them to count()/true/fal...
  • ea035d9 Merge branch '6.4' into 7.4
  • a95d9bd Check arrays and bools directly instead of comparing them to count()/true/fal...
  • Additional commits viewable in compare view

Updates symfony/security-bundle from 7.4.12 to 7.4.18

Release notes

Sourced from symfony/security-bundle's releases.

v7.4.18

Changelog (symfony/security-bundle@v7.4.15...v7.4.18)

v7.4.15

Changelog (symfony/security-bundle@v7.4.14...v7.4.15)

v7.4.14

Changelog (symfony/security-bundle@v7.4.13...v7.4.14)

v7.4.13

Changelog (symfony/security-bundle@v7.4.12...v7.4.13)

Commits
  • caaa8b9 [Security] Stop calling the APIs that web-token/jwt-framework 4.3 deprecates
  • e9b3f2b Merge branch '6.4' into 7.4
  • de06cd0 [SecurityBundle] Un-skip the explicit lock factory login throttling test
  • 524649d Merge branch '6.4' into 7.4
  • 7984320 Merge branch '5.4' into 6.4
  • 06c3aba [SecurityBundle] Use a lock for login throttling by default
  • 7b0c144 [SecurityBundle] Make the remember-me cookie follow the session cookie defaults
  • e1a2295 [Security] Apply "signature_properties" when a remember-me token provider is ...
  • 4ec887a Merge branch '6.4' into 7.4
  • f60e680 Check arrays and bools directly instead of comparing them to count()/true/fal...
  • Additional commits viewable in compare view

Updates symfony/translation from 7.4.10 to 7.4.17

Release notes

Sourced from symfony/translation's releases.

v7.4.17

Changelog (symfony/translation@v7.4.16...v7.4.17)

v7.4.16

Changelog (symfony/translation@v7.4.14...v7.4.16)

v7.4.14

Changelog (symfony/translation@v7.4.13...v7.4.14)

Commits
  • 2ee1e4a Merge branch '6.4' into 7.4
  • fa22355 [Translation] Stop leaking a copy of the xml.xsd schema per validated file in...
  • c85687f Merge branch '6.4' into 7.4
  • 6cce7cb [Translation] Fix extracting TranslatableMessage with nikic/php-parser 4
  • f621e40 Merge branch '6.4' into 7.4
  • acc8658 [Translation] Read CSV translations without SplFileObject
  • 5f4cb20 Merge branch '6.4' into 7.4
  • 889e806 Check arrays and bools directly instead of comparing them to count()/true/fal...
  • fc1a12f Merge branch '6.4' into 7.4
  • 9a565ad [Translation] Do not extract messages from classes merely named TranslatableM...
  • Additional commits viewable in compare view

Updates symfony/twig-bundle from 7.4.8 to 7.4.15

Release notes

Sourced from symfony/twig-bundle's releases.

v7.4.15

Changelog (symfony/twig-bundle@v7.4.14...v7.4.15)

v7.4.14

Changelog (symfony/twig-bundle@v7.4.9...v7.4.14)

Commits
  • e3d2bea Merge branch '6.4' into 7.4
  • 15bad71 allow Twig 4
  • 11b69c6 Merge branch '6.4' into 7.4
  • 9175957 Drop PR warning and auto-closing on subtree splits
  • 83990ef Remove usage of Kernel::VERSION
  • 745f184 Update XSD references in phpunit.xml.dist files
  • 6b92609 Merge branch '6.4' into 7.4
  • 130749f CS fixes - native_function_invocation & static_lambda
  • 36ff13b [CS] Back config from 8.1 and apply heredoc_indentation rule
  • 174e6b0 Add deprecationTrigger ignoreUndefinedTriggers="true" in phpunit.xml.dist files
  • See full diff in compare view

Updates symfony/validator from 7.4.10 to 7.4.18

Release notes

Sourced from symfony/validator's releases.

v7.4.18

Changelog (symfony/validator@v7.4.17...v7.4.18)

Bumps the php-prod group with 15 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [beberlei/assert](https://github.com/beberlei/assert) | `3.3.3` | `3.3.4` |
| [doctrine/dbal](https://github.com/doctrine/dbal) | `4.4.3` | `4.4.4` |
| [doctrine/orm](https://github.com/doctrine/orm) | `3.6.7` | `3.6.8` |
| [monolog/monolog](https://github.com/Seldaek/monolog) | `3.10.0` | `3.11.0` |
| [ramsey/uuid](https://github.com/ramsey/uuid) | `4.9.2` | `4.9.3` |
| [symfony/console](https://github.com/symfony/console) | `7.4.11` | `7.4.19` |
| [symfony/dotenv](https://github.com/symfony/dotenv) | `7.4.11` | `7.4.18` |
| [symfony/expression-language](https://github.com/symfony/expression-language) | `7.4.8` | `7.4.18` |
| [symfony/mailer](https://github.com/symfony/mailer) | `7.4.12` | `7.4.17` |
| [symfony/security-bundle](https://github.com/symfony/security-bundle) | `7.4.12` | `7.4.18` |
| [symfony/translation](https://github.com/symfony/translation) | `7.4.10` | `7.4.17` |
| [symfony/twig-bundle](https://github.com/symfony/twig-bundle) | `7.4.8` | `7.4.15` |
| [symfony/validator](https://github.com/symfony/validator) | `7.4.10` | `7.4.18` |
| [symfony/yaml](https://github.com/symfony/yaml) | `7.4.12` | `7.4.18` |
| [twig/twig](https://github.com/twigphp/Twig) | `3.26.0` | `3.29.0` |



Updates `beberlei/assert` from 3.3.3 to 3.3.4
- [Release notes](https://github.com/beberlei/assert/releases)
- [Changelog](https://github.com/beberlei/assert/blob/master/CHANGELOG.md)
- [Commits](beberlei/assert@v3.3.3...v3.3.4)

Updates `doctrine/dbal` from 4.4.3 to 4.4.4
- [Release notes](https://github.com/doctrine/dbal/releases)
- [Commits](doctrine/dbal@4.4.3...4.4.4)

Updates `doctrine/orm` from 3.6.7 to 3.6.8
- [Release notes](https://github.com/doctrine/orm/releases)
- [Commits](doctrine/orm@3.6.7...3.6.8)

Updates `monolog/monolog` from 3.10.0 to 3.11.0
- [Release notes](https://github.com/Seldaek/monolog/releases)
- [Changelog](https://github.com/Seldaek/monolog/blob/main/CHANGELOG.md)
- [Commits](Seldaek/monolog@3.10.0...3.11.0)

Updates `ramsey/uuid` from 4.9.2 to 4.9.3
- [Release notes](https://github.com/ramsey/uuid/releases)
- [Changelog](https://github.com/ramsey/uuid/blob/4.x/CHANGELOG.md)
- [Commits](ramsey/uuid@4.9.2...4.9.3)

Updates `symfony/console` from 7.4.11 to 7.4.19
- [Release notes](https://github.com/symfony/console/releases)
- [Changelog](https://github.com/symfony/console/blob/8.2/CHANGELOG.md)
- [Commits](symfony/console@v7.4.11...v7.4.19)

Updates `symfony/dotenv` from 7.4.11 to 7.4.18
- [Release notes](https://github.com/symfony/dotenv/releases)
- [Changelog](https://github.com/symfony/dotenv/blob/8.2/CHANGELOG.md)
- [Commits](symfony/dotenv@v7.4.11...v7.4.18)

Updates `symfony/expression-language` from 7.4.8 to 7.4.18
- [Release notes](https://github.com/symfony/expression-language/releases)
- [Changelog](https://github.com/symfony/expression-language/blob/8.2/CHANGELOG.md)
- [Commits](symfony/expression-language@v7.4.8...v7.4.18)

Updates `symfony/mailer` from 7.4.12 to 7.4.17
- [Release notes](https://github.com/symfony/mailer/releases)
- [Changelog](https://github.com/symfony/mailer/blob/8.2/CHANGELOG.md)
- [Commits](symfony/mailer@v7.4.12...v7.4.17)

Updates `symfony/security-bundle` from 7.4.12 to 7.4.18
- [Release notes](https://github.com/symfony/security-bundle/releases)
- [Changelog](https://github.com/symfony/security-bundle/blob/8.2/CHANGELOG.md)
- [Commits](symfony/security-bundle@v7.4.12...v7.4.18)

Updates `symfony/translation` from 7.4.10 to 7.4.17
- [Release notes](https://github.com/symfony/translation/releases)
- [Changelog](https://github.com/symfony/translation/blob/8.2/CHANGELOG.md)
- [Commits](symfony/translation@v7.4.10...v7.4.17)

Updates `symfony/twig-bundle` from 7.4.8 to 7.4.15
- [Release notes](https://github.com/symfony/twig-bundle/releases)
- [Changelog](https://github.com/symfony/twig-bundle/blob/8.2/CHANGELOG.md)
- [Commits](symfony/twig-bundle@v7.4.8...v7.4.15)

Updates `symfony/validator` from 7.4.10 to 7.4.18
- [Release notes](https://github.com/symfony/validator/releases)
- [Changelog](https://github.com/symfony/validator/blob/8.2/CHANGELOG.md)
- [Commits](symfony/validator@v7.4.10...v7.4.18)

Updates `symfony/yaml` from 7.4.12 to 7.4.18
- [Release notes](https://github.com/symfony/yaml/releases)
- [Changelog](https://github.com/symfony/yaml/blob/8.2/CHANGELOG.md)
- [Commits](symfony/yaml@v7.4.12...v7.4.18)

Updates `twig/twig` from 3.26.0 to 3.29.0
- [Release notes](https://github.com/twigphp/Twig/releases)
- [Changelog](https://github.com/twigphp/Twig/blob/3.x/CHANGELOG)
- [Commits](twigphp/Twig@v3.26.0...v3.29.0)

---
updated-dependencies:
- dependency-name: beberlei/assert
  dependency-version: 3.3.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: php-prod
- dependency-name: doctrine/dbal
  dependency-version: 4.4.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: php-prod
- dependency-name: doctrine/orm
  dependency-version: 3.6.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: php-prod
- dependency-name: monolog/monolog
  dependency-version: 3.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: php-prod
- dependency-name: ramsey/uuid
  dependency-version: 4.9.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: php-prod
- dependency-name: symfony/console
  dependency-version: 7.4.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: php-prod
- dependency-name: symfony/dotenv
  dependency-version: 7.4.18
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: php-prod
- dependency-name: symfony/expression-language
  dependency-version: 7.4.18
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: php-prod
- dependency-name: symfony/mailer
  dependency-version: 7.4.17
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: php-prod
- dependency-name: symfony/security-bundle
  dependency-version: 7.4.18
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: php-prod
- dependency-name: symfony/translation
  dependency-version: 7.4.17
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: php-prod
- dependency-name: symfony/twig-bundle
  dependency-version: 7.4.15
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: php-prod
- dependency-name: symfony/validator
  dependency-version: 7.4.18
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: php-prod
- dependency-name: symfony/yaml
  dependency-version: 7.4.18
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: php-prod
- dependency-name: twig/twig
  dependency-version: 3.29.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: php-prod
...

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 Sep 18, 2026
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