File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,8 @@ CHANGELOG
7
7
* Added ` Controller::json ` to simplify creating JSON responses when using the Serializer component
8
8
* Deprecated absolute template paths support in the template name parser
9
9
* Deprecated using core form types without dependencies as services
10
- * added ` Symfony\Bundle\FrameworkBundle\DataCollector\RequestDataCollector `
10
+ * Added ` Symfony\Bundle\FrameworkBundle\DataCollector\RequestDataCollector `
11
+ * Deprecated service ` serializer.mapping.cache.apc ` (use ` serializer.mapping.cache.doctrine.apc ` instead)
11
12
12
13
3.0.0
13
14
-----
Original file line number Diff line number Diff line change 38
38
</service >
39
39
40
40
<!-- Cache -->
41
- <service id =" serializer.mapping.cache.apc" class =" Doctrine\Common\Cache\ApcCache" public =" false" >
41
+ <service id =" serializer.mapping.cache.doctrine. apc" class =" Doctrine\Common\Cache\ApcCache" public =" false" >
42
42
<call method =" setNamespace" >
43
43
<argument >%serializer.mapping.cache.prefix%</argument >
44
44
</call >
45
45
</service >
46
46
47
+ <service id =" serializer.mapping.cache.apc" parent =" serializer.mapping.cache.doctrine.apc" >
48
+ <deprecated >The "%service_id%" service is deprecated since Symfony 3.1 and will be removed in 4.0. Use "serializer.mapping.cache.doctrine.apc" instead</deprecated >
49
+ </service >
50
+
47
51
<!-- Encoders -->
48
52
<service id =" serializer.encoder.xml" class =" Symfony\Component\Serializer\Encoder\XmlEncoder" public =" false" >
49
53
<tag name =" serializer.encoder" />
You can’t perform that action at this time.
0 commit comments