Skip to content
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

chore: composer(deps): bump the all group across 1 directory with 25 updates #59

Closed

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Dec 27, 2024

Bumps the all group with 5 updates in the /webservice directory:

Package From To
doctrine/orm 3.3.0 3.3.1
twig/extra-bundle 3.16.0 3.17.0
phpunit/phpunit 11.4.4 11.5.2
monolog/monolog 3.8.0 3.8.1
symfony/http-client-contracts 3.5.1 3.5.2

Updates doctrine/orm from 3.3.0 to 3.3.1

Release notes

Sourced from doctrine/orm's releases.

3.3.1

Release Notes for 3.3.1

3.3.1

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

Bugfixes

Improvement

Documentation

CI

Test Suite

This release includes all the changes from https://github.com/doctrine/orm/releases/tag/2.20.1

Commits
  • b1f8253 Merge pull request #11772 from doctrine/2.20.x
  • e3cabad Merge pull request #11768 from pbreteche/HINT_READ_ONLY-use-its-boolean-value
  • 9402f9e Fix docs examples for mappings overrides (#11770)
  • 4a9101f Check hint value before considering instance read-only
  • f91da5b Merge pull request #11767 from doctrine/dependabot/github_actions/2.20.x/doct...
  • 66f654d Bump doctrine/.github from 6.0.0 to 7.1.0
  • 7b9c0d9 Create website schema validation workflow (#11763)
  • 53b51ae Merge pull request #11613 from alexander-schranz/patch-2
  • 95b0f5c Add missing generated option
  • 46c94e3 Merge pull request #11760 from greg0ire/fix-merge-up
  • Additional commits viewable in compare view

Updates twig/extra-bundle from 3.16.0 to 3.17.0

Commits

Updates twig/twig from 3.16.0 to 3.17.1

Changelog

Sourced from twig/twig's changelog.

3.17.1 (2024-12-12)

  • Fix the null coalescing operator when the test returns null
  • Fix the Elvis operator when used as '? :' instead of '?:'
  • Support for invoking closures

3.17.0 (2024-12-10)

  • Fix ArrayAccess with objects as keys
  • Support underscores in number literals
  • Deprecate ConditionalExpression and NullCoalesceExpression (use ConditionalTernary and NullCoalesceBinary instead)
Commits
  • 677ef8d Prepare the 3.17.1 release
  • 243f5f5 bug #4500 Fix the null coalescing operator when the test returns null (fabpot)
  • 4c5467f Fix the null coalescing operator when the test returns null
  • 47f527e bug #4498 Fix the Elvis operator when there is some space between ? and : (fa...
  • 1af334b Fix the Elvis operator when there is some space between ? and :
  • 31f61bd Bump version
  • d3a64b7 Prepare the 3.17.0 release
  • e24078c Update CHANGELOG
  • d8a798c bug #4496 Fix ArrayAccess with objects as keys (gharlan)
  • 32a75b7 Fix ArrayAccess with objects as keys
  • Additional commits viewable in compare view

Updates phpunit/phpunit from 11.4.4 to 11.5.2

Release notes

Sourced from phpunit/phpunit's releases.

PHPUnit 11.5.2

Fixed

  • #6082: assertArrayHasKey(), assertArrayNotHasKey(), arrayHasKey(), and ArrayHasKey::__construct() do not support all possible key types
  • #6087: --migrate-configuration does not remove beStrictAboutTodoAnnotatedTests attribute from XML configuration file

How to install or update PHPUnit

PHPUnit 11.5.1

Added

  • #6081: DefaultResultCache::mergeWith() for merging result cache instances

Fixed

  • #6066: TeamCity logger does not handle error/skipped events in before-class methods correctly

How to install or update PHPUnit

PHPUnit 11.5.0

Added

  • #5948: Support for Property Hooks in Test Doubles
  • #5954: Provide a way to stop execution at a particular deprecation
  • Method assertContainsNotOnlyInstancesOf() in the PHPUnit\Framework\Assert class as the inverse of the assertContainsOnlyInstancesOf() method
  • Methods assertContainsOnlyArray(), assertContainsOnlyBool(), assertContainsOnlyCallable(), assertContainsOnlyFloat(), assertContainsOnlyInt(), assertContainsOnlyIterable(), assertContainsOnlyNull(), assertContainsOnlyNumeric(), assertContainsOnlyObject(), assertContainsOnlyResource(), assertContainsOnlyClosedResource(), assertContainsOnlyScalar(), and assertContainsOnlyString() in the PHPUnit\Framework\Assert class as specialized alternatives for the generic assertContainsOnly() method
  • Methods assertContainsNotOnlyArray(), assertContainsNotOnlyBool(), assertContainsNotOnlyCallable(), assertContainsNotOnlyFloat(), assertContainsNotOnlyInt(), assertContainsNotOnlyIterable(), assertContainsNotOnlyNull(), assertContainsNotOnlyNumeric(), assertContainsNotOnlyObject(), assertContainsNotOnlyResource(), assertContainsNotOnlyClosedResource(), assertContainsNotOnlyScalar(), and assertContainsNotOnlyString() in the PHPUnit\Framework\Assert class as specialized alternatives for the generic assertNotContainsOnly() method
  • Methods containsOnlyArray(), containsOnlyBool(), containsOnlyCallable(), containsOnlyFloat(), containsOnlyInt(), containsOnlyIterable(), containsOnlyNull(), containsOnlyNumeric(), containsOnlyObject(), containsOnlyResource(), containsOnlyClosedResource(), containsOnlyScalar(), and containsOnlyString() in the PHPUnit\Framework\Assert class as specialized alternatives for the generic containsOnly() method
  • Methods isArray(), isBool(), isCallable(), isFloat(), isInt(), isIterable(), isNumeric(), isObject(), isResource(), isClosedResource(), isScalar(), isString() in the PHPUnit\Framework\Assert class as specialized alternatives for the generic isType() method
  • TestRunner\ChildProcessStarted and TestRunner\ChildProcessFinished events

Changed

  • #5998: Do not run SKIPIF section of PHPT test in separate process when it is free of side effects
  • #5999: Do not run CLEAN section of PHPT test in separate process when it is free of side effects that modify the parent process

Deprecated

  • #6052: isType() (use isArray(), isBool(), isCallable(), isFloat(), isInt(), isIterable(), isNull(), isNumeric(), isObject(), isResource(), isClosedResource(), isScalar(), or isString() instead)
  • #6055: assertContainsOnly() (use assertContainsOnlyArray(), assertContainsOnlyBool(), assertContainsOnlyCallable(), assertContainsOnlyFloat(), assertContainsOnlyInt(), assertContainsOnlyIterable(), assertContainsOnlyNumeric(), assertContainsOnlyObject(), assertContainsOnlyResource(), assertContainsOnlyClosedResource(), assertContainsOnlyScalar(), or assertContainsOnlyString() instead)
  • #6055: assertNotContainsOnly() (use assertContainsNotOnlyArray(), assertContainsNotOnlyBool(), assertContainsNotOnlyCallable(), assertContainsNotOnlyFloat(), assertContainsNotOnlyInt(), assertContainsNotOnlyIterable(), assertContainsNotOnlyNumeric(), assertContainsNotOnlyObject(), assertContainsNotOnlyResource(), assertContainsNotOnlyClosedResource(), assertContainsNotOnlyScalar(), or assertContainsNotOnlyString() instead)
  • #6059: containsOnly() (use containsOnlyArray(), containsOnlyBool(), containsOnlyCallable(), containsOnlyFloat(), containsOnlyInt(), containsOnlyIterable(), containsOnlyNumeric(), containsOnlyObject(), containsOnlyResource(), containsOnlyClosedResource(), containsOnlyScalar(), or containsOnlyString() instead)

How to install or update PHPUnit

Changelog

Sourced from phpunit/phpunit's changelog.

11.5.2 - 2024-12-21

Fixed

  • #6082: assertArrayHasKey(), assertArrayNotHasKey(), arrayHasKey(), and ArrayHasKey::__construct() do not support all possible key types
  • #6087: --migrate-configuration does not remove beStrictAboutTodoAnnotatedTests attribute from XML configuration file

11.5.1 - 2024-12-11

Added

  • #6081: DefaultResultCache::mergeWith() for merging result cache instances

Fixed

  • #6066: TeamCity logger does not handle error/skipped events in before-class methods correctly

11.5.0 - 2024-12-06

Added

  • #5948: Support for Property Hooks in Test Doubles
  • #5954: Provide a way to stop execution at a particular deprecation
  • Method assertContainsNotOnlyInstancesOf() in the PHPUnit\Framework\Assert class as the inverse of the assertContainsOnlyInstancesOf() method
  • Methods assertContainsOnlyArray(), assertContainsOnlyBool(), assertContainsOnlyCallable(), assertContainsOnlyFloat(), assertContainsOnlyInt(), assertContainsOnlyIterable(), assertContainsOnlyNull(), assertContainsOnlyNumeric(), assertContainsOnlyObject(), assertContainsOnlyResource(), assertContainsOnlyClosedResource(), assertContainsOnlyScalar(), and assertContainsOnlyString() in the PHPUnit\Framework\Assert class as specialized alternatives for the generic assertContainsOnly() method
  • Methods assertContainsNotOnlyArray(), assertContainsNotOnlyBool(), assertContainsNotOnlyCallable(), assertContainsNotOnlyFloat(), assertContainsNotOnlyInt(), assertContainsNotOnlyIterable(), assertContainsNotOnlyNull(), assertContainsNotOnlyNumeric(), assertContainsNotOnlyObject(), assertContainsNotOnlyResource(), assertContainsNotOnlyClosedResource(), assertContainsNotOnlyScalar(), and assertContainsNotOnlyString() in the PHPUnit\Framework\Assert class as specialized alternatives for the generic assertNotContainsOnly() method
  • Methods containsOnlyArray(), containsOnlyBool(), containsOnlyCallable(), containsOnlyFloat(), containsOnlyInt(), containsOnlyIterable(), containsOnlyNull(), containsOnlyNumeric(), containsOnlyObject(), containsOnlyResource(), containsOnlyClosedResource(), containsOnlyScalar(), and containsOnlyString() in the PHPUnit\Framework\Assert class as specialized alternatives for the generic containsOnly() method
  • Methods isArray(), isBool(), isCallable(), isFloat(), isInt(), isIterable(), isNumeric(), isObject(), isResource(), isClosedResource(), isScalar(), isString() in the PHPUnit\Framework\Assert class as specialized alternatives for the generic isType() method
  • TestRunner\ChildProcessStarted and TestRunner\ChildProcessFinished events

Changed

  • #5998: Do not run SKIPIF section of PHPT test in separate process when it is free of side effects
  • #5999: Do not run CLEAN section of PHPT test in separate process when it is free of side effects that modify the parent process

Deprecated

  • #6052: isType() (use isArray(), isBool(), isCallable(), isFloat(), isInt(), isIterable(), isNull(), isNumeric(), isObject(), isResource(), isClosedResource(), isScalar(), or isString() instead)
  • #6055: assertContainsOnly() (use assertContainsOnlyArray(), assertContainsOnlyBool(), assertContainsOnlyCallable(), assertContainsOnlyFloat(), assertContainsOnlyInt(), assertContainsOnlyIterable(), assertContainsOnlyNumeric(), assertContainsOnlyObject(), assertContainsOnlyResource(), assertContainsOnlyClosedResource(), assertContainsOnlyScalar(), or assertContainsOnlyString() instead)
  • #6055: assertNotContainsOnly() (use assertContainsNotOnlyArray(), assertContainsNotOnlyBool(), assertContainsNotOnlyCallable(), assertContainsNotOnlyFloat(), assertContainsNotOnlyInt(), assertContainsNotOnlyIterable(), assertContainsNotOnlyNumeric(), assertContainsNotOnlyObject(), assertContainsNotOnlyResource(), assertContainsNotOnlyClosedResource(), assertContainsNotOnlyScalar(), or assertContainsNotOnlyString() instead)
  • #6059: containsOnly() (use containsOnlyArray(), containsOnlyBool(), containsOnlyCallable(), containsOnlyFloat(), containsOnlyInt(), containsOnlyIterable(), containsOnlyNumeric(), containsOnlyObject(), containsOnlyResource(), containsOnlyClosedResource(), containsOnlyScalar(), or containsOnlyString() instead)
Commits

Updates doctrine/deprecations from 1.1.3 to 1.1.4

Release notes

Sourced from doctrine/deprecations's releases.

1.1.4

Release Notes for 1.1.4

1.1.x bugfix release (patch)

1.1.4

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

bugfixes

Improvements

CI

Static Analysis

Commits
  • 31610db Merge pull request #66 from greg0ire/phpunit-integration
  • 02c4605 Merge pull request #71 from greg0ire/upgrade-cs
  • c80c8ed Merge pull request #70 from doctrine/dependabot/github_actions/doctrine/dot-g...
  • 409330d Upgrade to doctrine/coding-standard 12
  • 685727e Bump doctrine/.github from 3.0.0 to 6.0.0
  • 8f2336d Merge pull request #68 from greg0ire/drop-psalm
  • 729d36e Drop Psalm
  • a8a2989 Document how to integrate with PHPUnit
  • 0d0c25d Merge pull request #69 from greg0ire/dependabot
  • 5289058 Merge pull request #67 from greg0ire/shallow-tree
  • Additional commits viewable in compare view

Updates monolog/monolog from 3.8.0 to 3.8.1

Release notes

Sourced from monolog/monolog's releases.

3.8.1

  • Deprecated Monolog\DateTimeImmutable in favor of Monolog\JsonSerializableDateTimeImmutable (#1928)
  • Fixed gelf keys not being valid when context/extra data keys have spaces in them (#1927)
  • Fixed empty lines appearing in the stack traces when a custom formatter returned null (#1925)

Full Changelog: Seldaek/monolog@3.8.0...3.8.1

Changelog

Sourced from monolog/monolog's changelog.

3.8.1 (2024-12-05)

  • Deprecated Monolog\DateTimeImmutable in favor of Monolog\JsonSerializableDateTimeImmutable (#1928)
  • Fixed gelf keys not being valid when context/extra data keys have spaces in them (#1927)
  • Fixed empty lines appearing in the stack traces when a custom formatter returned null (#1925)
Commits

Updates symfony/cache from 7.1.9 to 7.2.1

Release notes

Sourced from symfony/cache's releases.

v7.2.1

Changelog (symfony/cache@v7.2.0...v7.2.1)

  • no significant changes

v7.2.0

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

v7.2.0-RC1

Changelog (symfony/cache@v7.2.0-BETA2...v7.2.0-RC1)

  • no significant changes

v7.2.0-BETA2

Changelog (symfony/cache@v7.2.0-BETA1...v7.2.0-BETA2)

v7.2.0-BETA1

Changelog (symfony/cache@v7.1.6...v7.2.0-BETA1)

Changelog

Sourced from symfony/cache's changelog.

CHANGELOG

7.2

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

7.1

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

7.0

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

6.4

  • EarlyExpirationHandler no longer implements MessageHandlerInterface, rely on AsMessageHandler instead

6.3

  • 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

... (truncated)

Commits

Updates symfony/config from 7.1.7 to 7.2.0

Release notes

Sourced from symfony/config's releases.

v7.2.0

Changelog (symfony/config@v7.2.0-RC1...v7.2.0)

  • no significant changes

v7.2.0-RC1

Changelog (symfony/config@v7.2.0-BETA2...v7.2.0-RC1)

  • no significant changes

v7.2.0-BETA2

Changelog (symfony/config@v7.2.0-BETA1...v7.2.0-BETA2)

v7.2.0-BETA1

Changelog (symfony/config@v7.1.6...v7.2.0-BETA1)

Changelog

Sourced from symfony/config's changelog.

CHANGELOG

7.2

  • Add #[WhenNot] attribute to prevent service from being registered in a specific environment
  • Generate a meta file in JSON format for resource tracking
  • Add SkippingResourceChecker
  • Add support for defaultNull() on BooleanNode
  • Add StringNode and StringNodeDefinition
  • Add ArrayNodeDefinition::stringPrototype() method
  • Add NodeBuilder::stringNode() method

7.1

  • Allow custom meta location in ResourceCheckerConfigCache
  • Allow custom meta location in ConfigCache

7.0

  • Require explicit argument when calling NodeBuilder::setParent()

6.3

  • Allow enum values in EnumNode

6.2

  • Deprecate calling NodeBuilder::setParent() without any arguments
  • Add a more accurate typehint in generated PHP config

6.1

  • Allow using environment variables in EnumNode
  • Add Node's information in generated Config
  • Add DefinitionFileLoader class to load a TreeBuilder definition from an external file
  • Add DefinitionConfigurator helper

6.0

  • Remove BaseNode::getDeprecationMessage()

5.3.0

... (truncated)

Commits
  • bcd3c4a Merge branch '7.1' into 7.2
  • 75cfe49 Merge branch '7.1' into 7.2
  • d54d451 feature #58428 [Config] Add StringNode (raffaelecarelle)
  • 0cd83b2 [Config] Add StringNode
  • 7d1c2fc Remove always true/false occurrences
  • 4e59caa [Config] Allow using defaultNull() on BooleanNodeDefinition
  • 8957818 minor #58374 Remove useless parent method calls in tests (alexandre-daubois)
  • b162557 Merge branch '7.1' into 7.2
  • 92c7a6f Remove useless parent method calls in tests
  • 6cbbca1 minor #57949 [Config] Generate a meta file in JSON format for resource tracki...
  • Additional commits viewable in compare view

Updates symfony/dependency-injection from 7.1.9 to 7.2.0

Release notes

Sourced from symfony/dependency-injection's releases.

v7.2.0

Changelog (symfony/dependency-injection@v7.2.0-RC1...v7.2.0)

v7.2.0-RC1

Changelog (symfony/dependency-injection@v7.2.0-BETA2...v7.2.0-RC1)

  • no significant changes

v7.2.0-BETA2

Changelog (symfony/dependency-injection@v7.2.0-BETA1...v7.2.0-BETA2)

v7.2.0-BETA1

Changelog (symfony/dependency-injection@v7.1.6...v7.2.0-BETA1)

Changelog

Sourced from symfony/dependency-injection's changelog.

CHANGELOG

7.2

  • Deprecate !tagged tag, use !tagged_iterator instead
  • Add a ContainerBuilder::registerChild() shortcut method for registering child definitions
  • Add support for key-type in XmlFileLoader
  • Enable non-empty parameters with ParameterBag::cannotBeEmpty() and ContainerBuilder::parameterCannotBeEmpty() methods
  • Resolve parameters found in index attribute of service tags

7.1

  • Add CheckAliasValidityPass to check service compatibility with aliased interface
  • Add argument $prepend to ContainerConfigurator::extension() to prepend the configuration instead of appending it
  • Have ServiceLocator implement ServiceCollectionInterface
  • Add #[Lazy] attribute as shortcut for #[Autowire(lazy: [bool|string])] and #[Autoconfigure(lazy: [bool|string])]
  • Add #[AutowireMethodOf] attribute to autowire a method of a service as a callable
  • Make ContainerBuilder::registerAttributeForAutoconfiguration() propagate to attribute classes that extend the registered class
  • Add argument $prepend to FileLoader::construct() to prepend loaded configuration instead of appending it
  • [BC BREAK] When used in the prependExtension() method, the ContainerConfigurator::import() method now prepends the configuration instead of appending it
  • Cast env vars to null or bool when referencing them using #[Autowire(env: '...')] depending on the signature of the corresponding parameter
  • Add #[AutowireInline] attribute to allow service definition at the class level
  • Add StaticEnvVarLoader

7.0

  • Remove #[MapDecorated], use #[AutowireDecorated] instead
  • Remove ProxyHelper, use Symfony\Component\VarExporter\ProxyHelper instead
  • Remove ReferenceSetArgumentTrait
  • Remove support of @required annotation, use the Symfony\Contracts\Service\Attribute\Required attribute instead
  • Require explicit argument when calling ContainerAwareTrait::setContainer()
  • Remove PhpDumper options inline_factories_parameter and inline_class_loader_parameter, use options inline_factories and inline_class_loader instead
  • Parameter names of ParameterBag cannot be numerics
  • Remove ContainerAwareInterface and ContainerAwareTrait, use dependency injection instead
  • Add argument $id and $asGhostObject to DumperInterface::isProxyCandidate() and getProxyCode()
  • Add argument $source to FileLoader::registerClasses()

6.4

  • Allow using #[Target] with no arguments to state that a parameter must match a named autowiring alias
  • Deprecate ContainerAwareInterface and ContainerAwareTrait, use dependency injection instead
  • Add defined env var processor that returns true for defined and neither null nor empty env vars
  • Add #[AutowireLocator] and #[AutowireIterator] attributes
  • Add urlencode env var processor that url encodes a string value

... (truncated)

Commits
  • a475747 Merge branch '7.1' into 7.2
  • 8d0486a Merge branch '7.1' into 7.2
  • 5f5dbba Merge branch '7.1' into 7.2
  • f5241ad [DependencyInjection][Routing][HttpClient] Reject URIs that contain invalid c...
  • 6d5c652 Merge branch '7.1' into 7.2
  • 550f5a5 Remove always true/false occurrences
  • 887061a Reduce common control flows
  • 0a0eb06 Merge branch '7.1' into 7.2
  • 808f752 [DependencyInjection] Sort PassConfig:TYPE_* by order of execution
  • 17eeffb CS: clean some whitespaces/indentation
  • Additional commits viewable in compare view

Updates symfony/error-handler from 7.1.7 to 7.2.1

Release notes

Sourced from symfony/error-handler's releases.

v7.2.1

Changelog (symfony/error-handler@v7.2.0...v7.2.1)

  • no significant changes

v7.2.0

Changelog (symfony/error-handler@v7.2.0-RC1...v7.2.0)

  • no significant changes

v7.2.0-RC1

Changelog (symfony/error-handler@v7.2.0-BETA2...v7.2.0-RC1)

  • no significant changes

v7.2.0-BETA2

Changelog (symfony/error-handler@v7.2.0-BETA1...v7.2.0-BETA2)

v7.2.0-BETA1

Changelog (symfony/error-handler@v7.1.6...v7.2.0-BETA1)

  • no significant changes
Commits
  • 6150b89 Merge branch '7.1' into 7.2
  • 12cada0 Merge branch '6.4' into 7.1
  • 37ad238 [ErrorHandler] Fix error message with PHP 8.5
  • 672b3dd Merge branch '7.1' into 7.2
  • ad57ca0 resolve class constant types when patching return types
  • 82ed889 Merge branch '7.1' into 7.2
  • 95d878c Remove no-op ReflectionProperty::setAccessible() calls
  • 4a831eb CS: re-apply trailing_comma_in_multiline
  • 29ae824 minor #58094 Use Stringable whenever possible (fabpot)
  • 04b8d14 Use Stringable whenever possible
  • Additional commits viewable in compare view

Updates symfony/event-dispatcher from 7.1.6 to 7.2.0

Release notes

Sourced from symfony/event-dispatcher's releases.

v7.2.0

Changelog (symfony/event-dispatcher@v7.2.0-RC1...v7.2.0)

  • no significant changes

v7.2.0-RC1

Changelog (symfony/event-dispatcher@v7.2.0-BETA2...v7.2.0-RC1)

  • no significant changes

v7.2.0-BETA1

Changelog (symfony/event-dispatcher@v7.1.6...v7.2.0-BETA1)

  • no significant changes
Commits
  • 910c5db Merge branch '7.1' into 7.2
  • 1b5d04e Code style change in @PER-CS2.0 affecting @Symfony (parentheses for anony...
  • 2bde43f Update .gitattributes
  • 8191468 Prefix all sprintf() calls
  • See full diff in compare view

Updates symfony/filesystem from 7.1.6 to 7.2.0

Release notes

Sourced from symfony/filesystem's releases.

v7.2.0

Changelog (symfony/filesystem@v7.2.0-RC1...v7.2.0)

  • no significant changes

v7.2.0-RC1

Changelog (symfony/filesystem@v7.2.0-BETA2...v7.2.0-RC1)

  • no significant changes

v7.2.0-BETA1

Changelog (symfony/filesystem@v7.1.6...v7.2.0-BETA1)

  • no significant changes
Commits
  • b8dce48 Merge branch '7.1' into 7.2
  • b8871af CS: clean some whitespaces/indentation
  • edd9588 Merge branch '7.1' into 7.2
  • b7ea899 Merge branch '7.1' into 7.2
  • 810b534 Merge branch '7.1' into 7.2
  • c46c178 stop using uniqid() to create temporary files
  • bea731a do not use uniqid() in tests
  • 454d22b Update .gitattributes
  • f655195 Merge branch '7.1' into 7.2
  • b75b609 Merge branch '7.1' into 7.2
  • See full diff in compare view

Updates symfony/finder from 7.1.6 to 7.2.0

Release notes

Sourced from symfony/finder's releases.

v7.2.0

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

  • no significant changes

v7.2.0-RC1

Changelog (symfony/finder@v7.2.0-BETA2...v7.2.0-RC1)

  • no significant changes

v7.2.0-BETA1

Changelog (symfony/finder@v7.1.6...v7.2.0-BETA1)

  • no significant changes
Commits
  • 6de263e Remove always true/false occurrences
  • b98a9af Merge branch '7.1' into 7.2
  • ebf4f31 Merge branch '7.1' into 7.2
  • afa87bc stop using TestCase::iniSet()
  • 0470b8d Merge branch '7.1' into 7.2
  • 51c0ff5 Merge branch '7.1' into 7.2
  • 9a54be4 Code style change in @PER-CS2.0 affecting @Symfony (parentheses for anony...
  • 0f7f413 minor

…updates

Bumps the all group with 5 updates in the /webservice directory:

| Package | From | To |
| --- | --- | --- |
| [doctrine/orm](https://github.com/doctrine/orm) | `3.3.0` | `3.3.1` |
| [twig/extra-bundle](https://github.com/twigphp/twig-extra-bundle) | `3.16.0` | `3.17.0` |
| [phpunit/phpunit](https://github.com/sebastianbergmann/phpunit) | `11.4.4` | `11.5.2` |
| [monolog/monolog](https://github.com/Seldaek/monolog) | `3.8.0` | `3.8.1` |
| [symfony/http-client-contracts](https://github.com/symfony/http-client-contracts) | `3.5.1` | `3.5.2` |



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

Updates `twig/extra-bundle` from 3.16.0 to 3.17.0
- [Commits](twigphp/twig-extra-bundle@v3.16.0...v3.17.0)

Updates `twig/twig` from 3.16.0 to 3.17.1
- [Changelog](https://github.com/twigphp/Twig/blob/3.x/CHANGELOG)
- [Commits](twigphp/Twig@v3.16.0...v3.17.1)

Updates `phpunit/phpunit` from 11.4.4 to 11.5.2
- [Release notes](https://github.com/sebastianbergmann/phpunit/releases)
- [Changelog](https://github.com/sebastianbergmann/phpunit/blob/11.5.2/ChangeLog-11.5.md)
- [Commits](sebastianbergmann/phpunit@11.4.4...11.5.2)

Updates `doctrine/deprecations` from 1.1.3 to 1.1.4
- [Release notes](https://github.com/doctrine/deprecations/releases)
- [Commits](doctrine/deprecations@1.1.3...1.1.4)

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

Updates `symfony/cache` from 7.1.9 to 7.2.1
- [Release notes](https://github.com/symfony/cache/releases)
- [Changelog](https://github.com/symfony/cache/blob/7.2/CHANGELOG.md)
- [Commits](symfony/cache@v7.1.9...v7.2.1)

Updates `symfony/config` from 7.1.7 to 7.2.0
- [Release notes](https://github.com/symfony/config/releases)
- [Changelog](https://github.com/symfony/config/blob/7.2/CHANGELOG.md)
- [Commits](symfony/config@v7.1.7...v7.2.0)

Updates `symfony/dependency-injection` from 7.1.9 to 7.2.0
- [Release notes](https://github.com/symfony/dependency-injection/releases)
- [Changelog](https://github.com/symfony/dependency-injection/blob/7.2/CHANGELOG.md)
- [Commits](symfony/dependency-injection@v7.1.9...v7.2.0)

Updates `symfony/error-handler` from 7.1.7 to 7.2.1
- [Release notes](https://github.com/symfony/error-handler/releases)
- [Changelog](https://github.com/symfony/error-handler/blob/7.2/CHANGELOG.md)
- [Commits](symfony/error-handler@v7.1.7...v7.2.1)

Updates `symfony/event-dispatcher` from 7.1.6 to 7.2.0
- [Release notes](https://github.com/symfony/event-dispatcher/releases)
- [Changelog](https://github.com/symfony/event-dispatcher/blob/7.2/CHANGELOG.md)
- [Commits](symfony/event-dispatcher@v7.1.6...v7.2.0)

Updates `symfony/filesystem` from 7.1.6 to 7.2.0
- [Release notes](https://github.com/symfony/filesystem/releases)
- [Changelog](https://github.com/symfony/filesystem/blob/7.2/CHANGELOG.md)
- [Commits](symfony/filesystem@v7.1.6...v7.2.0)

Updates `symfony/finder` from 7.1.6 to 7.2.0
- [Release notes](https://github.com/symfony/finder/releases)
- [Changelog](https://github.com/symfony/finder/blob/7.2/CHANGELOG.md)
- [Commits](symfony/finder@v7.1.6...v7.2.0)

Updates `symfony/http-client-contracts` from 3.5.1 to 3.5.2
- [Release notes](https://github.com/symfony/http-client-contracts/releases)
- [Changelog](https://github.com/symfony/http-client-contracts/blob/main/CHANGELOG.md)
- [Commits](symfony/http-client-contracts@v3.5.1...v3.5.2)

Updates `symfony/http-foundation` from 7.1.9 to 7.2.0
- [Release notes](https://github.com/symfony/http-foundation/releases)
- [Changelog](https://github.com/symfony/http-foundation/blob/7.2/CHANGELOG.md)
- [Commits](symfony/http-foundation@v7.1.9...v7.2.0)

Updates `symfony/http-kernel` from 7.1.9 to 7.2.1
- [Release notes](https://github.com/symfony/http-kernel/releases)
- [Changelog](https://github.com/symfony/http-kernel/blob/7.2/CHANGELOG.md)
- [Commits](symfony/http-kernel@v7.1.9...v7.2.1)

Updates `symfony/routing` from 7.1.9 to 7.2.0
- [Release notes](https://github.com/symfony/routing/releases)
- [Changelog](https://github.com/symfony/routing/blob/7.2/CHANGELOG.md)
- [Commits](symfony/routing@v7.1.9...v7.2.0)

Updates `symfony/string` from 7.1.8 to 7.2.0
- [Release notes](https://github.com/symfony/string/releases)
- [Changelog](https://github.com/symfony/string/blob/7.2/CHANGELOG.md)
- [Commits](symfony/string@v7.1.8...v7.2.0)

Updates `symfony/twig-bridge` from 7.1.9 to 7.2.1
- [Release notes](https://github.com/symfony/twig-bridge/releases)
- [Changelog](https://github.com/symfony/twig-bridge/blob/7.2/CHANGELOG.md)
- [Commits](symfony/twig-bridge@v7.1.9...v7.2.1)

Updates `symfony/var-dumper` from 7.1.8 to 7.2.0
- [Release notes](https://github.com/symfony/var-dumper/releases)
- [Changelog](https://github.com/symfony/var-dumper/blob/7.2/CHANGELOG.md)
- [Commits](symfony/var-dumper@v7.1.8...v7.2.0)

Updates `symfony/var-exporter` from 7.1.6 to 7.2.0
- [Release notes](https://github.com/symfony/var-exporter/releases)
- [Changelog](https://github.com/symfony/var-exporter/blob/7.2/CHANGELOG.md)
- [Commits](symfony/var-exporter@v7.1.6...v7.2.0)

Updates `phpunit/php-code-coverage` from 11.0.7 to 11.0.8
- [Release notes](https://github.com/sebastianbergmann/php-code-coverage/releases)
- [Changelog](https://github.com/sebastianbergmann/php-code-coverage/blob/11.0.8/ChangeLog-11.0.md)
- [Commits](sebastianbergmann/php-code-coverage@11.0.7...11.0.8)

Updates `sebastian/code-unit` from 3.0.1 to 3.0.2
- [Release notes](https://github.com/sebastianbergmann/code-unit/releases)
- [Changelog](https://github.com/sebastianbergmann/code-unit/blob/main/ChangeLog.md)
- [Commits](sebastianbergmann/code-unit@3.0.1...3.0.2)

Updates `sebastian/exporter` from 6.1.3 to 6.3.0
- [Release notes](https://github.com/sebastianbergmann/exporter/releases)
- [Changelog](https://github.com/sebastianbergmann/exporter/blob/main/ChangeLog.md)
- [Commits](sebastianbergmann/exporter@6.1.3...6.3.0)

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

---
updated-dependencies:
- dependency-name: doctrine/orm
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: twig/extra-bundle
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: twig/twig
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: phpunit/phpunit
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: doctrine/deprecations
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: monolog/monolog
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: symfony/cache
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: symfony/config
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: symfony/dependency-injection
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: symfony/error-handler
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: symfony/event-dispatcher
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: symfony/filesystem
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: symfony/finder
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: symfony/http-client-contracts
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: symfony/http-foundation
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: symfony/http-kernel
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: symfony/routing
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: symfony/string
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: symfony/twig-bridge
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: symfony/var-dumper
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: symfony/var-exporter
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: phpunit/php-code-coverage
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: sebastian/code-unit
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: sebastian/exporter
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: symfony/process
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
...

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 Dec 27, 2024
Copy link
Author

dependabot bot commented on behalf of github Jan 3, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Jan 3, 2025
@dependabot dependabot bot deleted the dependabot/composer/webservice/all-285553f036 branch January 3, 2025 06:00
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