Skip to content

Bump the dependencies group with 44 updates #245

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 1, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 1, 2024

Bumps the dependencies group with 44 updates:

Package From To
twig/twig 3.9.3 3.10.3
twig/extra-bundle 3.9.3 3.10.0
api-platform/core 3.3.0 3.3.5
phpstan/phpdoc-parser 1.28.0 1.29.1
easycorp/easyadmin-bundle 4.10.0 4.10.2
phpdocumentor/reflection-docblock 5.4.0 5.4.1
doctrine/doctrine-migrations-bundle 3.3.0 3.3.1
symfony/lock 7.0.7 7.1.0
symfony/form 7.0.7 7.1.0
symfony/mime 7.0.7 7.1.0
symfony/yaml 7.0.7 7.1.0
symfony/cache 7.0.7 7.1.0
symfony/asset 7.0.7 7.1.0
symfony/finder 7.0.7 7.1.0
symfony/dotenv 7.0.7 7.1.0
symfony/mailer 7.0.7 7.1.0
symfony/string 7.0.7 7.1.0
symfony/process 7.0.7 7.1.0
symfony/console 7.0.7 7.1.0
symfony/runtime 7.0.7 7.1.0
symfony/web-link 7.0.7 7.1.0
symfony/validator 7.0.7 7.1.0
symfony/serializer 7.0.7 7.1.0
symfony/filesystem 7.0.7 7.1.0
symfony/translation 7.0.7 7.1.0
symfony/twig-bundle 7.0.7 7.1.0
symfony/http-client 7.0.7 7.1.0
symfony/browser-kit 7.0.7 7.1.0
symfony/css-selector 7.0.7 7.1.0
symfony/rate-limiter 7.0.7 7.1.0
symfony/property-info 7.0.7 7.1.0
symfony/property-access 7.0.7 7.1.0
symfony/security-bundle 7.0.7 7.1.0
symfony/framework-bundle 7.0.7 7.1.0
symfony/expression-language 7.0.7 7.1.0
phpstan/phpstan 1.10.67 1.11.3
symfony/debug-bundle 7.0.7 7.1.0
symfony/maker-bundle 1.59.0 1.59.1
symfony/phpunit-bridge 7.0.7 7.1.0
phpstan/phpstan-symfony 1.3.12 1.4.3
phpstan/phpstan-doctrine 1.3.69 1.4.1
squizlabs/php_codesniffer 3.9.2 3.10.1
symfony/web-profiler-bundle 7.0.7 7.1.0
doctrine/doctrine-fixtures-bundle 3.5.1 3.6.1

Updates twig/twig from 3.9.3 to 3.10.3

Changelog

Sourced from twig/twig's changelog.

3.10.3 (2024-05-16)

  • Fix missing ; in generated code

3.10.2 (2024-05-14)

  • Fix support for the deprecated escaper signature

3.10.1 (2024-05-12)

  • Fix BC break on escaper extension
  • Fix constant return type

3.10.0 (2024-05-11)

  • Make CoreExtension::formatDate, CoreExtension::convertDate, and CoreExtension::formatNumber part of the public API

  • Add needs_charset option for filters and functions

  • Extract the escaping logic from the EscaperExtension class to a new EscaperRuntime class.

    The following methods from Twig\\Extension\\EscaperExtension are deprecated: setEscaper(), getEscapers(), setSafeClasses, addSafeClasses(). Use the same methods on the Twig\\Runtime\\EscaperRuntime class instead.

  • Fix capturing output from extensions that still use echo

  • Fix a PHP warning in the Lexer on malformed templates

  • Fix blocks not available under some circumstances

  • Synchronize source context in templates when setting a Node on a Node

Commits
  • 67f2978 Prepare the 3.10.3 release
  • 75fc9b9 bug #4093 Fix parse error in generated code when using CaptureNode (nicolas-g...
  • 5042528 Fix parse error in generated code when using CaptureNode
  • 7069d82 Bump version
  • 7aaed0b Prepare the 3.10.2 release
  • f553f16 bug #4091 Fix old escaper signature + add docs (fabpot)
  • 04b1ad3 Fix old escaper signature + add docs
  • 0bdc73a Bump version
  • 3af5ab2 Prepare the 3.10.1 release
  • 1de5736 bug #4083 Fix BC break on escaper extension (fabpot)
  • Additional commits viewable in compare view

Updates twig/extra-bundle from 3.9.3 to 3.10.0

Commits

Updates api-platform/core from 3.3.0 to 3.3.5

Release notes

Sourced from api-platform/core's releases.

v3.3.5

What's Changed

Full Changelog: api-platform/core@v3.3.4...v3.3.5

v3.3.4

What's Changed

New Contributors

Full Changelog: api-platform/core@v3.3.3...v3.3.4

v3.3.3

What's Changed

Full Changelog: api-platform/core@v3.3.2...v3.3.3

v3.3.2

What's Changed

Notes

You can remove the event_listeners_backward_compatibility_layer flag and set use_symfony_listeners instead. The use_symfony_listeners should be true if you use controllers or if you rely on Symfony event listeners.

Note that now flags like read can be forced to true if you want to call a Provider even on POST operations. These are the rules we set up on runtime if no value has been set:

if (null === $operation->canValidate()) {
    $operation = $operation->withValidate(!$request->isMethodSafe() && !$request->isMethod('DELETE'));
}
if (null === $operation->canRead()) {
</tr></table>

... (truncated)

Changelog

Sourced from api-platform/core's changelog.

v3.3.5

Bug fixes

v3.3.4

Bug fixes

  • 002d8e514 fix(validation): ValidationException causes TypeError exception when called with $code=null (#6375)
  • 77a917f2a fix(metadata): resource class php doc (#6381)
  • d809315fb fix(symfony): store original data without clone (#6367)
  • fb7c4658c fix(test): canonicalizing json arrays (#6386)

v3.3.3

Bug fixes

v3.3.2

Bug fixes

Notes

You can remove the event_listeners_backward_compatibility_layer flag and set use_symfony_listeners instead. The use_symfony_listeners should be true if you use controllers or if you rely on Symfony event listeners. Note that now flags like read can be forced to true if you want to call a Provider even on POST operations. These are the rules we set up on runtime if no value has been set:

if (null === $operation->canValidate()) {
    $operation = $operation->withValidate(!$request->isMethodSafe() && !$request->isMethod('DELETE'));
}
if (null === $operation->canRead()) {
$operation = $operation->withRead($operation->getUriVariables() || $request->isMethodSafe());
}
if (null === $operation->canDeserialize()) {
$operation = $operation->withDeserialize(\in_array($operation->getMethod(), ['POST', 'PUT', 'PATCH'], true));
}

... (truncated)

Commits

Updates phpstan/phpdoc-parser from 1.28.0 to 1.29.1

Release notes

Sourced from phpstan/phpdoc-parser's releases.

1.29.1

  • fcaefac - TemplateTagValueNode name cannot be empty string

1.29.0

  • 536889f - Support array and offset access on const types
  • 9bb3855 - Update lock-closed-issues.yml
  • 54b191f - Test pure-callable and pure-Closure
  • 793d146 - Update phpdoc-parser in phpstan-src:1.11.x
Commits
  • fcaefac TemplateTagValueNode name cannot be empty string
  • 536889f Support array and offset access on const types
  • 9bb3855 Update lock-closed-issues.yml
  • 54b191f Test pure-callable and pure-Closure
  • 793d146 Update phpdoc-parser in phpstan-src:1.11.x
  • See full diff in compare view

Updates easycorp/easyadmin-bundle from 4.10.0 to 4.10.2

Release notes

Sourced from easycorp/easyadmin-bundle's releases.

4.10.2

New features

[1fdacd63] Allow defining constraints in the file of the Image field (@​Seb33300)

Bug fixes

[0049b0d2] Slug field is now triggered also by select fields (@​Romaixn) [1ad08d9d] Misc. doc fixes (@​Romaixn)

4.10.1

Bug fixes

[91b5b08f] Fix search engine for PostgreSQL databases when querying numbers (@​gregGit)

Commits
  • a277535 Rebuild web assets
  • 614a6ca Prepare 4.10.2 release
  • 0049b0d bug #6282 feat: allow slug field to be triggered by select fields also (Romaixn)
  • b7c8c0d feat: allow slug field to be triggered by select fields also
  • 1ad08d9 minor #6283 typo(docs): fix double "of the" (Romaixn)
  • ed0faf9 Tweak docs
  • 1fdacd6 feature #6258 [ImageField] Support constraint validation (Seb33300)
  • 76a9e9d [ImageField] Support constraint validation
  • dabf649 bug #6288 Fix top border (Seb33300)
  • 6248349 Bump development version
  • Additional commits viewable in compare view

Updates phpdocumentor/reflection-docblock from 5.4.0 to 5.4.1

Release notes

Sourced from phpdocumentor/reflection-docblock's releases.

5.4.1

Address multiple bugs with long tag descriptions

In the previous release a regression was introduced regarding multiline tag descriptions. Part of the description was lost and the indenting wasn't reduced as we did before 5.4. If your application relies on docblock tags and uses the descriptions it is highly recommended to update immediately. And block version 5.4.0 from the allowed versions in your composer.json

   "conflict":
      "phpdocumentor/reflection-docblock": "5.4.0"

Thanks to phpDocumentor/ReflectionDocBlock#365 by @​szepeviktor and @​IanDelMar

Full Changelog: phpDocumentor/ReflectionDocBlock@5.4.0...5.4.1

Commits
  • 9d07b3f Merge pull request #370 from phpDocumentor/retry-parser-docblocs
  • 8c422ab Fix docblock tag descriptions
  • 88a07d2 Merge pull request #367 from phpDocumentor/fix/description-regression
  • 518be13 Bugfix: resolve issue with multiline descriptions
  • 2f7b34c Merge pull request #366 from phpDocumentor/dependabot/github_actions/phpDocum...
  • a3fc141 Bump phpDocumentor/.github from 0.5.0 to 0.6
  • See full diff in compare view

Updates doctrine/doctrine-migrations-bundle from 3.3.0 to 3.3.1

Release notes

Sourced from doctrine/doctrine-migrations-bundle's releases.

3.3.1

Release Notes for 3.3.1

3.3.x bugfix release (patch)

3.3.1

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

Bug

CI

Documentation

Static Analysis

Test Suite

CI,Static Analysis

Commits
  • 715b62c Switch to non-deprecated Extension class (#545)
  • fa16f0d Merge pull request #544 from doctrine/dependabot/github_actions/doctrine/dot-...
  • 6f22b9c Bump doctrine/.github from 3.1.0 to 5.0.1
  • 846238d Merge pull request #543 from greg0ire/maintenance
  • 51f2b44 Setup Dependabot for Github actions
  • d698c36 Upgrade CI workflow
  • d06c787 Merge pull request #541 from jaapio/patch-1
  • 13f3197 Use service name in the example
  • 4c0f5a4 Merge pull request #536 from greg0ire/different-doc-dir
  • 2b8faad Merge pull request #537 from greg0ire/remove-changelog
  • Additional commits viewable in compare view

Updates symfony/lock from 7.0.7 to 7.1.0

Release notes

Sourced from symfony/lock's releases.

v7.1.0

Changelog (symfony/lock@v7.1.0-RC1...v7.1.0)

  • no significant changes

v7.1.0-RC1

Changelog (symfony/lock@v7.1.0-BETA1...v7.1.0-RC1)

  • no significant changes

v7.1.0-BETA1

Changelog (symfony/lock@v7.0.7...v7.1.0-BETA1)

Commits
  • 464cf94 Merge branch '7.0' into 7.1
  • 44d1451 Merge branch '6.4' into 7.0
  • 3025152 Merge branch '5.4' into 6.4
  • 40c4c8a Remove calls to onConsecutiveCalls()
  • b38d394 Merge branch '7.0' into 7.1
  • db61c08 Merge branch '7.0' into 7.1
  • c4e598d Merge branch '7.0' into 7.1
  • 8e7ca64 Make NoLock implement the SharedLockInterface
  • See full diff in compare view

Updates symfony/form from 7.0.7 to 7.1.0

Release notes

Sourced from symfony/form's releases.

v7.1.0

Changelog (symfony/form@v7.1.0-RC1...v7.1.0)

  • no significant changes

v7.1.0-RC1

Changelog (symfony/form@v7.1.0-BETA1...v7.1.0-RC1)

  • no significant changes

v7.1.0-BETA1

Changelog (symfony/form@v7.0.7...v7.1.0-BETA1)

Changelog

Sourced from symfony/form's changelog.

CHANGELOG

7.1

  • Add option separator to ChoiceType to use a custom separator after preferred choices (use the new separator_html option to display the separator text as HTML)
  • Deprecate not configuring the default_protocol option of the UrlType, it will default to null in 8.0 (the current default is 'http')
  • Add a keep_as_list option to CollectionType
  • Add an input option to MoneyType, to be able to cast the transformed value to integer

7.0

  • Throw when using DateTime or DateTimeImmutable model data with a different timezone than configured with the model_timezone option in DateType, DateTimeType, and TimeType
  • Make the "widget" option of date/time form types default to "single_text"
  • Require explicit argument when calling Button/Form::setParent(), ButtonBuilder/FormConfigBuilder::setDataMapper(), TransformationFailedException::setInvalidMessage()

6.4

  • Deprecate using DateTime or DateTimeImmutable model data with a different timezone than configured with the model_timezone option in DateType, DateTimeType, and TimeType
  • Deprecate PostSetDataEvent::setData(), use PreSetDataEvent::setData() instead
  • Deprecate PostSubmitEvent::setData(), use PreSubmitDataEvent::setData() or SubmitDataEvent::setData() instead
  • Add duplicate_preferred_choices option in ChoiceType
  • Add $duplicatePreferredChoices parameter to ChoiceListFactoryInterface::createView()

6.3

  • Don't render seconds for HTML5 date pickers unless "with_seconds" is explicitly set
  • Add a placeholder_attr option to ChoiceType
  • Deprecate not configuring the "widget" option of date/time form types, it will default to "single_text" in v7

6.2

  • Allow passing TranslatableInterface objects to the ChoiceView label
  • Allow passing TranslatableInterface objects to the help option
  • Deprecate calling Button/Form::setParent(), ButtonBuilder/FormConfigBuilder::setDataMapper(), TransformationFailedException::setInvalidMessage() without arguments
  • Change the signature of FormConfigBuilderInterface::setDataMapper() to setDataMapper(?DataMapperInterface)
  • Change the signature of FormInterface::setParent() to setParent(?self)
  • Add PasswordHasherExtension with support for hash_property_path option in PasswordType

6.1

  • Add a prototype_options option to CollectionType

... (truncated)

Commits
  • 50a9e64 Fix singular phpdoc
  • 89d535a Merge branch '7.0' into 7.1
  • 41695c0 Merge branch '6.4' into 7.0
  • be383b6 Merge branch '5.4' into 6.4
  • 08c924b Remove calls to TestCase::iniSet() and calls to deprecated methods of `Mock...
  • a492b5c rename the model_type option to input and rework it
  • 706fe13 Merge branch '7.0' into 7.1
  • ba441cc Merge branch '7.0' into 7.1
  • 5a7886b Proofread UPGRADE guide
  • 2d1c888 Remove unnecessary empty usages
  • Additional commits viewable in compare view

Updates symfony/mime from 7.0.7 to 7.1.0

Release notes

Sourced from symfony/mime's releases.

v7.1.0

Changelog (symfony/mime@v7.1.0-RC1...v7.1.0)

v7.1.0-RC1

Changelog (symfony/mime@v7.1.0-BETA1...v7.1.0-RC1)

  • no significant changes
Commits
  • 92d6b9b Merge branch '7.0' into 7.1
  • 51d6a7f Merge branch '6.4' into 7.0
  • 99add8a Revert "fix PHP 7 compatibility"
  • be07d1d Merge branch '6.4' into 7.0
  • 35f0ff4 Merge branch '5.4' into 6.4
  • 98f9671 fix PHP 7 compatibility
  • a8ba365 [Mime] Fixed Mime\Message::ensureValidity() when a required header is set, ...
  • b796381 Merge branch '7.0' into 7.1
  • c537f46 Merge branch '7.0' into 7.1
  • 08cb7c9 Merge branch '7.0' into 7.1
  • Additional commits viewable in compare view

Updates symfony/yaml from 7.0.7 to 7.1.0

Release notes

Sourced from symfony/yaml's releases.

v7.1.0

Changelog (symfony/yaml@v7.1.0-RC1...v7.1.0)

  • no significant changes

v7.1.0-RC1

Changelog (symfony/yaml@v7.1.0-BETA1...v7.1.0-RC1)

  • no significant changes

v7.1.0-BETA1

Changelog (symfony/yaml@v7.0.7...v7.1.0-BETA1)

Changelog

Sourced from symfony/yaml's changelog.

CHANGELOG

7.1

  • Add support for getting all the enum cases with !php/enum Foo

7.0

  • Remove the !php/const: tag, use !php/const instead (without the colon)

6.3

  • Add support to dump int keys as strings by using the Yaml::DUMP_NUMERIC_KEY_AS_STRING flag

6.2

  • Add support for !php/enum and !php/enum *->value
  • Deprecate the !php/const: tag in key which will be replaced by the !php/const tag (without the colon) since 3.4

6.1

  • In cases where it will likely improve readability, strings containing single quotes will be double-quoted

5.4

  • Add new lint:yaml dirname --exclude=/dirname/foo.yaml --exclude=/dirname/bar.yaml option to exclude one or more specific files from multiple file list
  • Allow negatable for the parse tags option with --no-parse-tags

5.3

  • Added github format support & autodetection to render errors as annotations when running the YAML linter command in a Github Action environment.

5.1.0

  • Added support for parsing numbers prefixed with 0o as octal numbers.

  • Deprecated support for parsing numbers starting with 0 as octal numbers. They will be parsed as strings as of Symfony 6.0. Prefix numbers with 0o so that they are parsed as octal numbers.

    Before:

... (truncated)

Commits
  • c5f718c Merge branch '7.0' into 7.1
  • c1e0024 Merge branch '7.0' into 7.1
  • 08a7843 Remove unnecessary empty usages
  • e5e14c8 use constructor property promotion
  • 7fc548d feature #52230 [Yaml] Allow to get all the enum cases (phansys)
  • d56caa8 dump enums with the !php/enum tag
  • 16eb674 Merge branch '7.0' into 7.1
  • 5d2b2a5 [Tests] Streamline
  • 2c98dad Code updates
  • dd03330 [Yaml] Allow Yaml component to get all the enum cases
  • See full diff in compare view

Updates symfony/cache from 7.0.7 to 7.1.0

Release notes

Sourced from symfony/cache's releases.

v7.1.0

Changelog (symfony/cache@v7.1.0-RC1...v7.1.0)

v7.1.0-RC1

Changelog (symfony/cache@v7.1.0-BETA1...v7.1.0-RC1)

  • no significant changes

v7.1.0-BETA1

Changelog (symfony/cache@v7.0.7...v7.1.0-BETA1)

Changelog

Sourced from symfony/cache's changelog.

CHANGELOG

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

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

  • Add support for Relay PHP extension for Redis
  • Updates to allow Redis cluster connections using predis/predis:^2.0
  • Add optional parameter $isSameDatabase to DoctrineDbalAdapter::configureSchema()

6.1

  • Add support for ACL auth in RedisAdapter
  • Improve reliability and performance of TagAwareAdapter by making tag versions an integral part of item value

6.0

  • Remove DoctrineProvider and DoctrineAdapter
  • Remove support of Doctrine DBAL in PdoAdapter

5.4

  • Deprecate DoctrineProvider and DoctrineAdapter because these classes have been added to the doctrine/cache package
  • Add DoctrineDbalAdapter identical to PdoAdapter for Doctrine\DBAL\Connection or DBAL URL
  • Deprecate usage of PdoAdapter with Doctrine\DBAL\Connection or DBAL URL

5.3

... (truncated)

Commits

Updates symfony/asset from 7.0.7 to 7.1.0

Release notes

Sourced from symfony/asset's releases.

v7.1.0

Changelog (symfony/asset@v7.1.0-RC1...v7.1.0)

  • no significant changes

v7.1.0-RC1

Changelog (symfony/asset@v7.1.0-BETA1...v7.1.0-RC1)

  • no significant changes

v7.1.0-BETA1

Changelog (symfony/asset@v7.0.7...v7.1.0-BETA1)

  • no significant changes
Commits
  • dd4dc37 Merge branch '7.0' into 7.1
  • 330d0da Merge branch '7.0' into 7.1
  • 32869f4 do not mock the RequestStack class
  • f30ae07 [Asset][BrowserKit][Cache][Console][CssSelector] Use CPP
  • See full diff in compare view

Updates symfony/finder from 7.0.7 to 7.1.0

Release notes

Sourced from symfony/finder's releases.

v7.1.0

Changelog (symfony/finder@v7.1.0-RC1...v7.1.0)

  • no significant changes

v7.1.0-RC1

Changelog (symfony/finder@v7.1.0-BETA1...v7.1.0-RC1)

  • no significant changes

v7.1.0-BETA1

Changelog (symfony/finder@v7.0.7...v7.1.0-BETA1)

  • no significant changes
Commits

Updates symfony/dotenv from 7.0.7 to 7.1.0

Release notes

Sourced from symfony/dotenv's releases.

v7.1.0

Changelog (symfony/dotenv@v7.1.0-RC1...v7.1.0)

  • no significant changes

v7.1.0-RC1

Changelog (symfony/dotenv@v7.1.0-BETA1...v7.1.0-RC1)

  • no significant changes

v7.1.0-BETA1

Changelog (symfony/dotenv@v7.0.7...v7.1.0-BETA1)

Changelog

Sourced from symfony/dotenv's changelog.

CHANGELOG

7.1

  • Add SYMFONY_DOTENV_PATH variable with the path to the .env file loaded by Dotenv::loadEnv() or Dotenv::bootEnv()

6.2

  • Add a new filter argument to debug:dotenv command to filter variable names

5.4

  • Add dotenv:dumpDescription has been truncated

Bumps the dependencies group with 44 updates:

| Package | From | To |
| --- | --- | --- |
| [twig/twig](https://github.com/twigphp/Twig) | `3.9.3` | `3.10.3` |
| [twig/extra-bundle](https://github.com/twigphp/twig-extra-bundle) | `3.9.3` | `3.10.0` |
| [api-platform/core](https://github.com/api-platform/core) | `3.3.0` | `3.3.5` |
| [phpstan/phpdoc-parser](https://github.com/phpstan/phpdoc-parser) | `1.28.0` | `1.29.1` |
| [easycorp/easyadmin-bundle](https://github.com/EasyCorp/EasyAdminBundle) | `4.10.0` | `4.10.2` |
| [phpdocumentor/reflection-docblock](https://github.com/phpDocumentor/ReflectionDocBlock) | `5.4.0` | `5.4.1` |
| [doctrine/doctrine-migrations-bundle](https://github.com/doctrine/DoctrineMigrationsBundle) | `3.3.0` | `3.3.1` |
| [symfony/lock](https://github.com/symfony/lock) | `7.0.7` | `7.1.0` |
| [symfony/form](https://github.com/symfony/form) | `7.0.7` | `7.1.0` |
| [symfony/mime](https://github.com/symfony/mime) | `7.0.7` | `7.1.0` |
| [symfony/yaml](https://github.com/symfony/yaml) | `7.0.7` | `7.1.0` |
| [symfony/cache](https://github.com/symfony/cache) | `7.0.7` | `7.1.0` |
| [symfony/asset](https://github.com/symfony/asset) | `7.0.7` | `7.1.0` |
| [symfony/finder](https://github.com/symfony/finder) | `7.0.7` | `7.1.0` |
| [symfony/dotenv](https://github.com/symfony/dotenv) | `7.0.7` | `7.1.0` |
| [symfony/mailer](https://github.com/symfony/mailer) | `7.0.7` | `7.1.0` |
| [symfony/string](https://github.com/symfony/string) | `7.0.7` | `7.1.0` |
| [symfony/process](https://github.com/symfony/process) | `7.0.7` | `7.1.0` |
| [symfony/console](https://github.com/symfony/console) | `7.0.7` | `7.1.0` |
| [symfony/runtime](https://github.com/symfony/runtime) | `7.0.7` | `7.1.0` |
| [symfony/web-link](https://github.com/symfony/web-link) | `7.0.7` | `7.1.0` |
| [symfony/validator](https://github.com/symfony/validator) | `7.0.7` | `7.1.0` |
| [symfony/serializer](https://github.com/symfony/serializer) | `7.0.7` | `7.1.0` |
| [symfony/filesystem](https://github.com/symfony/filesystem) | `7.0.7` | `7.1.0` |
| [symfony/translation](https://github.com/symfony/translation) | `7.0.7` | `7.1.0` |
| [symfony/twig-bundle](https://github.com/symfony/twig-bundle) | `7.0.7` | `7.1.0` |
| [symfony/http-client](https://github.com/symfony/http-client) | `7.0.7` | `7.1.0` |
| [symfony/browser-kit](https://github.com/symfony/browser-kit) | `7.0.7` | `7.1.0` |
| [symfony/css-selector](https://github.com/symfony/css-selector) | `7.0.7` | `7.1.0` |
| [symfony/rate-limiter](https://github.com/symfony/rate-limiter) | `7.0.7` | `7.1.0` |
| [symfony/property-info](https://github.com/symfony/property-info) | `7.0.7` | `7.1.0` |
| [symfony/property-access](https://github.com/symfony/property-access) | `7.0.7` | `7.1.0` |
| [symfony/security-bundle](https://github.com/symfony/security-bundle) | `7.0.7` | `7.1.0` |
| [symfony/framework-bundle](https://github.com/symfony/framework-bundle) | `7.0.7` | `7.1.0` |
| [symfony/expression-language](https://github.com/symfony/expression-language) | `7.0.7` | `7.1.0` |
| [phpstan/phpstan](https://github.com/phpstan/phpstan) | `1.10.67` | `1.11.3` |
| [symfony/debug-bundle](https://github.com/symfony/debug-bundle) | `7.0.7` | `7.1.0` |
| [symfony/maker-bundle](https://github.com/symfony/maker-bundle) | `1.59.0` | `1.59.1` |
| [symfony/phpunit-bridge](https://github.com/symfony/phpunit-bridge) | `7.0.7` | `7.1.0` |
| [phpstan/phpstan-symfony](https://github.com/phpstan/phpstan-symfony) | `1.3.12` | `1.4.3` |
| [phpstan/phpstan-doctrine](https://github.com/phpstan/phpstan-doctrine) | `1.3.69` | `1.4.1` |
| [squizlabs/php_codesniffer](https://github.com/PHPCSStandards/PHP_CodeSniffer) | `3.9.2` | `3.10.1` |
| [symfony/web-profiler-bundle](https://github.com/symfony/web-profiler-bundle) | `7.0.7` | `7.1.0` |
| [doctrine/doctrine-fixtures-bundle](https://github.com/doctrine/DoctrineFixturesBundle) | `3.5.1` | `3.6.1` |


Updates `twig/twig` from 3.9.3 to 3.10.3
- [Changelog](https://github.com/twigphp/Twig/blob/3.x/CHANGELOG)
- [Commits](twigphp/Twig@v3.9.3...v3.10.3)

Updates `twig/extra-bundle` from 3.9.3 to 3.10.0
- [Commits](twigphp/twig-extra-bundle@v3.9.3...v3.10.0)

Updates `api-platform/core` from 3.3.0 to 3.3.5
- [Release notes](https://github.com/api-platform/core/releases)
- [Changelog](https://github.com/api-platform/core/blob/main/CHANGELOG.md)
- [Commits](api-platform/core@v3.3.0...v3.3.5)

Updates `phpstan/phpdoc-parser` from 1.28.0 to 1.29.1
- [Release notes](https://github.com/phpstan/phpdoc-parser/releases)
- [Commits](phpstan/phpdoc-parser@1.28.0...1.29.1)

Updates `easycorp/easyadmin-bundle` from 4.10.0 to 4.10.2
- [Release notes](https://github.com/EasyCorp/EasyAdminBundle/releases)
- [Commits](EasyCorp/EasyAdminBundle@v4.10.0...v4.10.2)

Updates `phpdocumentor/reflection-docblock` from 5.4.0 to 5.4.1
- [Release notes](https://github.com/phpDocumentor/ReflectionDocBlock/releases)
- [Commits](phpDocumentor/ReflectionDocBlock@5.4.0...5.4.1)

Updates `doctrine/doctrine-migrations-bundle` from 3.3.0 to 3.3.1
- [Release notes](https://github.com/doctrine/DoctrineMigrationsBundle/releases)
- [Commits](doctrine/DoctrineMigrationsBundle@3.3.0...3.3.1)

Updates `symfony/lock` from 7.0.7 to 7.1.0
- [Release notes](https://github.com/symfony/lock/releases)
- [Changelog](https://github.com/symfony/lock/blob/7.1/CHANGELOG.md)
- [Commits](symfony/lock@v7.0.7...v7.1.0)

Updates `symfony/form` from 7.0.7 to 7.1.0
- [Release notes](https://github.com/symfony/form/releases)
- [Changelog](https://github.com/symfony/form/blob/7.1/CHANGELOG.md)
- [Commits](symfony/form@v7.0.7...v7.1.0)

Updates `symfony/mime` from 7.0.7 to 7.1.0
- [Release notes](https://github.com/symfony/mime/releases)
- [Changelog](https://github.com/symfony/mime/blob/7.1/CHANGELOG.md)
- [Commits](symfony/mime@v7.0.7...v7.1.0)

Updates `symfony/yaml` from 7.0.7 to 7.1.0
- [Release notes](https://github.com/symfony/yaml/releases)
- [Changelog](https://github.com/symfony/yaml/blob/7.1/CHANGELOG.md)
- [Commits](symfony/yaml@v7.0.7...v7.1.0)

Updates `symfony/cache` from 7.0.7 to 7.1.0
- [Release notes](https://github.com/symfony/cache/releases)
- [Changelog](https://github.com/symfony/cache/blob/7.1/CHANGELOG.md)
- [Commits](symfony/cache@v7.0.7...v7.1.0)

Updates `symfony/asset` from 7.0.7 to 7.1.0
- [Release notes](https://github.com/symfony/asset/releases)
- [Changelog](https://github.com/symfony/asset/blob/7.1/CHANGELOG.md)
- [Commits](symfony/asset@v7.0.7...v7.1.0)

Updates `symfony/finder` from 7.0.7 to 7.1.0
- [Release notes](https://github.com/symfony/finder/releases)
- [Changelog](https://github.com/symfony/finder/blob/7.1/CHANGELOG.md)
- [Commits](symfony/finder@v7.0.7...v7.1.0)

Updates `symfony/dotenv` from 7.0.7 to 7.1.0
- [Release notes](https://github.com/symfony/dotenv/releases)
- [Changelog](https://github.com/symfony/dotenv/blob/7.1/CHANGELOG.md)
- [Commits](symfony/dotenv@v7.0.7...v7.1.0)

Updates `symfony/mailer` from 7.0.7 to 7.1.0
- [Release notes](https://github.com/symfony/mailer/releases)
- [Changelog](https://github.com/symfony/mailer/blob/7.1/CHANGELOG.md)
- [Commits](symfony/mailer@v7.0.7...v7.1.0)

Updates `symfony/string` from 7.0.7 to 7.1.0
- [Release notes](https://github.com/symfony/string/releases)
- [Changelog](https://github.com/symfony/string/blob/7.1/CHANGELOG.md)
- [Commits](symfony/string@v7.0.7...v7.1.0)

Updates `symfony/process` from 7.0.7 to 7.1.0
- [Release notes](https://github.com/symfony/process/releases)
- [Changelog](https://github.com/symfony/process/blob/7.1/CHANGELOG.md)
- [Commits](symfony/process@v7.0.7...v7.1.0)

Updates `symfony/console` from 7.0.7 to 7.1.0
- [Release notes](https://github.com/symfony/console/releases)
- [Changelog](https://github.com/symfony/console/blob/7.1/CHANGELOG.md)
- [Commits](symfony/console@v7.0.7...v7.1.0)

Updates `symfony/runtime` from 7.0.7 to 7.1.0
- [Release notes](https://github.com/symfony/runtime/releases)
- [Changelog](https://github.com/symfony/runtime/blob/7.1/CHANGELOG.md)
- [Commits](symfony/runtime@v7.0.7...v7.1.0)

Updates `symfony/web-link` from 7.0.7 to 7.1.0
- [Release notes](https://github.com/symfony/web-link/releases)
- [Changelog](https://github.com/symfony/web-link/blob/7.1/CHANGELOG.md)
- [Commits](symfony/web-link@v7.0.7...v7.1.0)

Updates `symfony/validator` from 7.0.7 to 7.1.0
- [Release notes](https://github.com/symfony/validator/releases)
- [Changelog](https://github.com/symfony/validator/blob/7.1/CHANGELOG.md)
- [Commits](symfony/validator@v7.0.7...v7.1.0)

Updates `symfony/serializer` from 7.0.7 to 7.1.0
- [Release notes](https://github.com/symfony/serializer/releases)
- [Changelog](https://github.com/symfony/serializer/blob/7.1/CHANGELOG.md)
- [Commits](symfony/serializer@v7.0.7...v7.1.0)

Updates `symfony/filesystem` from 7.0.7 to 7.1.0
- [Release notes](https://github.com/symfony/filesystem/releases)
- [Changelog](https://github.com/symfony/filesystem/blob/7.1/CHANGELOG.md)
- [Commits](symfony/filesystem@v7.0.7...v7.1.0)

Updates `symfony/translation` from 7.0.7 to 7.1.0
- [Release notes](https://github.com/symfony/translation/releases)
- [Changelog](https://github.com/symfony/translation/blob/7.1/CHANGELOG.md)
- [Commits](symfony/translation@v7.0.7...v7.1.0)

Updates `symfony/twig-bundle` from 7.0.7 to 7.1.0
- [Release notes](https://github.com/symfony/twig-bundle/releases)
- [Changelog](https://github.com/symfony/twig-bundle/blob/7.1/CHANGELOG.md)
- [Commits](symfony/twig-bundle@v7.0.7...v7.1.0)

Updates `symfony/http-client` from 7.0.7 to 7.1.0
- [Release notes](https://github.com/symfony/http-client/releases)
- [Changelog](https://github.com/symfony/http-client/blob/7.1/CHANGELOG.md)
- [Commits](symfony/http-client@v7.0.7...v7.1.0)

Updates `symfony/browser-kit` from 7.0.7 to 7.1.0
- [Release notes](https://github.com/symfony/browser-kit/releases)
- [Changelog](https://github.com/symfony/browser-kit/blob/7.1/CHANGELOG.md)
- [Commits](symfony/browser-kit@v7.0.7...v7.1.0)

Updates `symfony/css-selector` from 7.0.7 to 7.1.0
- [Release notes](https://github.com/symfony/css-selector/releases)
- [Changelog](https://github.com/symfony/css-selector/blob/7.1/CHANGELOG.md)
- [Commits](symfony/css-selector@v7.0.7...v7.1.0)

Updates `symfony/rate-limiter` from 7.0.7 to 7.1.0
- [Release notes](https://github.com/symfony/rate-limiter/releases)
- [Changelog](https://github.com/symfony/rate-limiter/blob/7.1/CHANGELOG.md)
- [Commits](symfony/rate-limiter@v7.0.7...v7.1.0)

Updates `symfony/property-info` from 7.0.7 to 7.1.0
- [Release notes](https://github.com/symfony/property-info/releases)
- [Changelog](https://github.com/symfony/property-info/blob/7.1/CHANGELOG.md)
- [Commits](symfony/property-info@v7.0.7...v7.1.0)

Updates `symfony/property-access` from 7.0.7 to 7.1.0
- [Release notes](https://github.com/symfony/property-access/releases)
- [Changelog](https://github.com/symfony/property-access/blob/7.1/CHANGELOG.md)
- [Commits](symfony/property-access@v7.0.7...v7.1.0)

Updates `symfony/security-bundle` from 7.0.7 to 7.1.0
- [Release notes](https://github.com/symfony/security-bundle/releases)
- [Changelog](https://github.com/symfony/security-bundle/blob/7.1/CHANGELOG.md)
- [Commits](symfony/security-bundle@v7.0.7...v7.1.0)

Updates `symfony/framework-bundle` from 7.0.7 to 7.1.0
- [Release notes](https://github.com/symfony/framework-bundle/releases)
- [Changelog](https://github.com/symfony/framework-bundle/blob/7.1/CHANGELOG.md)
- [Commits](symfony/framework-bundle@v7.0.7...v7.1.0)

Updates `symfony/expression-language` from 7.0.7 to 7.1.0
- [Release notes](https://github.com/symfony/expression-language/releases)
- [Changelog](https://github.com/symfony/expression-language/blob/7.1/CHANGELOG.md)
- [Commits](symfony/expression-language@v7.0.7...v7.1.0)

Updates `phpstan/phpstan` from 1.10.67 to 1.11.3
- [Release notes](https://github.com/phpstan/phpstan/releases)
- [Changelog](https://github.com/phpstan/phpstan/blob/1.11.x/CHANGELOG.md)
- [Commits](phpstan/phpstan@1.10.67...1.11.3)

Updates `symfony/debug-bundle` from 7.0.7 to 7.1.0
- [Release notes](https://github.com/symfony/debug-bundle/releases)
- [Changelog](https://github.com/symfony/debug-bundle/blob/7.1/CHANGELOG.md)
- [Commits](symfony/debug-bundle@v7.0.7...v7.1.0)

Updates `symfony/maker-bundle` from 1.59.0 to 1.59.1
- [Release notes](https://github.com/symfony/maker-bundle/releases)
- [Changelog](https://github.com/symfony/maker-bundle/blob/main/CHANGELOG.md)
- [Commits](symfony/maker-bundle@v1.59.0...v1.59.1)

Updates `symfony/phpunit-bridge` from 7.0.7 to 7.1.0
- [Release notes](https://github.com/symfony/phpunit-bridge/releases)
- [Changelog](https://github.com/symfony/phpunit-bridge/blob/7.0/CHANGELOG.md)
- [Commits](symfony/phpunit-bridge@v7.0.7...v7.1.0)

Updates `phpstan/phpstan-symfony` from 1.3.12 to 1.4.3
- [Release notes](https://github.com/phpstan/phpstan-symfony/releases)
- [Commits](phpstan/phpstan-symfony@1.3.12...1.4.3)

Updates `phpstan/phpstan-doctrine` from 1.3.69 to 1.4.1
- [Release notes](https://github.com/phpstan/phpstan-doctrine/releases)
- [Commits](phpstan/phpstan-doctrine@1.3.69...1.4.1)

Updates `squizlabs/php_codesniffer` from 3.9.2 to 3.10.1
- [Release notes](https://github.com/PHPCSStandards/PHP_CodeSniffer/releases)
- [Changelog](https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/CHANGELOG.md)
- [Commits](PHPCSStandards/PHP_CodeSniffer@3.9.2...3.10.1)

Updates `symfony/web-profiler-bundle` from 7.0.7 to 7.1.0
- [Release notes](https://github.com/symfony/web-profiler-bundle/releases)
- [Changelog](https://github.com/symfony/web-profiler-bundle/blob/7.1/CHANGELOG.md)
- [Commits](symfony/web-profiler-bundle@v7.0.7...v7.1.0)

Updates `doctrine/doctrine-fixtures-bundle` from 3.5.1 to 3.6.1
- [Release notes](https://github.com/doctrine/DoctrineFixturesBundle/releases)
- [Commits](doctrine/DoctrineFixturesBundle@3.5.1...3.6.1)

---
updated-dependencies:
- dependency-name: twig/twig
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: twig/extra-bundle
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: api-platform/core
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: phpstan/phpdoc-parser
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: easycorp/easyadmin-bundle
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: phpdocumentor/reflection-docblock
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: doctrine/doctrine-migrations-bundle
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: symfony/lock
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: symfony/form
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: symfony/mime
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: symfony/yaml
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: symfony/cache
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: symfony/asset
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: symfony/finder
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: symfony/dotenv
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: symfony/mailer
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: symfony/string
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: symfony/process
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: symfony/console
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: symfony/runtime
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: symfony/web-link
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: symfony/validator
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: symfony/serializer
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: symfony/filesystem
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: symfony/translation
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: symfony/twig-bundle
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: symfony/http-client
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: symfony/browser-kit
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: symfony/css-selector
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: symfony/rate-limiter
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: symfony/property-info
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: symfony/property-access
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: symfony/security-bundle
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: symfony/framework-bundle
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: symfony/expression-language
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: phpstan/phpstan
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: symfony/debug-bundle
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: symfony/maker-bundle
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: symfony/phpunit-bridge
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: phpstan/phpstan-symfony
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: phpstan/phpstan-doctrine
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: squizlabs/php_codesniffer
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: symfony/web-profiler-bundle
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: doctrine/doctrine-fixtures-bundle
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file php Pull requests that update Php code labels Jun 1, 2024
@github-actions github-actions bot merged commit 82cb13f into master Jun 1, 2024
6 of 8 checks passed
@dependabot dependabot bot deleted the dependabot/composer/dependencies-e935f8a128 branch June 1, 2024 02:17
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