From 055892d7d3a1f2a0d6a8409d1d212ead44f5f24a Mon Sep 17 00:00:00 2001 From: Oskar Stark Date: Wed, 3 Apr 2024 22:24:59 +0200 Subject: [PATCH] [DependencyInjection] Document BC break in UPGRADE file --- UPGRADE-7.1.md | 5 +++++ src/Symfony/Component/DependencyInjection/CHANGELOG.md | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/UPGRADE-7.1.md b/UPGRADE-7.1.md index 21d3997501631..fca6dbb4a8547 100644 --- a/UPGRADE-7.1.md +++ b/UPGRADE-7.1.md @@ -11,6 +11,11 @@ Cache * Deprecate `CouchbaseBucketAdapter`, use `CouchbaseCollectionAdapter` instead +DependencyInjection +------------------- + + * [BC BREAK] When used in the `prependExtension()` method, the `ContainerConfigurator::import()` method now prepends the configuration instead of appending it + DoctrineBridge -------------- diff --git a/src/Symfony/Component/DependencyInjection/CHANGELOG.md b/src/Symfony/Component/DependencyInjection/CHANGELOG.md index afc87d925f305..1cd1f043f4757 100644 --- a/src/Symfony/Component/DependencyInjection/CHANGELOG.md +++ b/src/Symfony/Component/DependencyInjection/CHANGELOG.md @@ -11,7 +11,7 @@ CHANGELOG * 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()` methods, the `ContainerConfigurator::import()` method now prepends the 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 7.0 ---