Fix bug in style changes for the Use cases on the live site.
[yaffs-website] / vendor / symfony / dependency-injection / CHANGELOG.md
1 CHANGELOG
2 =========
3
4 2.8.0
5 -----
6
7  * deprecated the abstract ContainerAware class in favor of ContainerAwareTrait
8  * deprecated IntrospectableContainerInterface, to be merged with ContainerInterface in 3.0
9  * allowed specifying a directory to recursively load all configuration files it contains
10  * deprecated the concept of scopes
11  * added `Definition::setShared()` and `Definition::isShared()`
12  * added ResettableContainerInterface to be able to reset the container to release memory on shutdown
13  * added a way to define the priority of service decoration
14  * added support for service autowiring
15
16 2.7.0
17 -----
18
19  * deprecated synchronized services
20
21 2.6.0
22 -----
23
24  * added new factory syntax and deprecated the old one
25
26 2.5.0
27 -----
28
29 * added DecoratorServicePass and a way to override a service definition (Definition::setDecoratedService())
30 * deprecated SimpleXMLElement class.
31
32 2.4.0
33 -----
34
35  * added support for expressions in service definitions
36  * added ContainerAwareTrait to add default container aware behavior to a class
37
38 2.2.0
39 -----
40
41  * added Extension::isConfigEnabled() to ease working with enableable configurations
42  * added an Extension base class with sensible defaults to be used in conjunction
43    with the Config component.
44  * added PrependExtensionInterface (to be able to allow extensions to prepend
45    application configuration settings for any Bundle)
46
47 2.1.0
48 -----
49
50  * added IntrospectableContainerInterface (to be able to check if a service
51    has been initialized or not)
52  * added ConfigurationExtensionInterface
53  * added Definition::clearTag()
54  * component exceptions that inherit base SPL classes are now used exclusively
55    (this includes dumped containers)
56  * [BC BREAK] fixed unescaping of class arguments, method
57    ParameterBag::unescapeValue() was made public