File tree 4 files changed +15
-2
lines changed
src/Symfony/Bundle/FrameworkBundle
4 files changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -83,6 +83,11 @@ FrameworkBundle
83
83
- ` "form.type.submit" `
84
84
- ` "form.type.reset" `
85
85
86
+ * The service ` serializer.mapping.cache.apc ` has been renamed to
87
+ ` serializer.mapping.cache.doctrine.apc ` to be consistent with the validator
88
+ cache service. If you are using ` serializer.mapping.cache.apc ` , use
89
+ ` serializer.mapping.cache.doctrine.apc ` instead.
90
+
86
91
HttpKernel
87
92
----------
88
93
Original file line number Diff line number Diff line change @@ -75,6 +75,9 @@ FrameworkBundle
75
75
- ` "form.type.submit" `
76
76
- ` "form.type.reset" `
77
77
78
+ * The service ` serializer.mapping.cache.apc ` has been removed; use
79
+ ` serializer.mapping.cache.doctrine.apc ` instead.
80
+
78
81
HttpKernel
79
82
----------
80
83
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