From 2c5f8797b89a46c3d9c45092b46b22f5e4f9b4c8 Mon Sep 17 00:00:00 2001 From: David Buchmann Date: Sat, 18 Feb 2017 18:21:29 +0100 Subject: [PATCH] add missing changelog for deprecated strict attribute --- UPGRADE-3.3.md | 3 +++ UPGRADE-4.0.md | 3 +++ 2 files changed, 6 insertions(+) diff --git a/UPGRADE-3.3.md b/UPGRADE-3.3.md index cce38f4b00..2253bea93b 100644 --- a/UPGRADE-3.3.md +++ b/UPGRADE-3.3.md @@ -44,6 +44,9 @@ DependencyInjection * The `DefinitionDecorator` class is deprecated and will be removed in 4.0, use the `ChildDefinition` class instead. + * The ``strict`` attribute in service arguments has been deprecated and will be removed in 4.0. + The attribute is ignored since 3.0, so you can simply remove it. + EventDispatcher --------------- diff --git a/UPGRADE-4.0.md b/UPGRADE-4.0.md index 4768ba1242..1335b0e6e0 100644 --- a/UPGRADE-4.0.md +++ b/UPGRADE-4.0.md @@ -68,6 +68,9 @@ DependencyInjection * Requesting a private service with the `Container::get()` method is no longer supported. + * The ``strict`` attribute in service arguments has been removed. + The attribute is ignored since 3.0, so you can simply remove it. + EventDispatcher ---------------