minor #21662 add missing changelog for deprecated strict attribute (dbu)

This PR was merged into the 3.3-dev branch.

Discussion
----------

add missing changelog for deprecated strict attribute

| Q             | A
| ------------- | ---
| Branch?       | master
| Bug fix?      | no
| New feature?  | no
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| Fixed tickets | -
| License       | MIT
| Doc PR        | -

since #21058, 3.3 triggers a deprecation when using the strict attribute. luckily wouter managed to find the reason and we figured out we can simply delete the attribute. having an upgrade file entry would make it easier to find the reason for the deprecation and be sure what to do. (assuming i understood the implications correctly)

Commits
-------

2c5f8797b8 add missing changelog for deprecated strict attribute
This commit is contained in:
Fabien Potencier 2017-02-20 09:04:18 -08:00
commit fd65bcccef
2 changed files with 6 additions and 0 deletions

View File

@ -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
---------------

View File

@ -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
---------------