File tree Expand file tree Collapse file tree 2 files changed +56
-0
lines changed Expand file tree Collapse file tree 2 files changed +56
-0
lines changed Original file line number Diff line number Diff line change @@ -646,6 +646,34 @@ FrameworkBundle
646
646
}
647
647
```
648
648
649
+ * The assets settings under ` framework.templating ` were deprecated and will be removed in Symfony 3.0. Use ` framework.assets ` instead.
650
+
651
+ Before:
652
+
653
+ ``` yml
654
+ framework :
655
+ templating :
656
+ assets_version : ' v123'
657
+ assets_version_format : ' %%s?version=%%s'
658
+ assets_base_urls :
659
+ http : ['http://cdn.examp
8000
le.com']
660
+ ssl : ['https://secure.example.com']
661
+ packages :
662
+ # ...
663
+ ```
664
+
665
+ After:
666
+
667
+ ``` yml
668
+ framework :
669
+ assets :
670
+ version : ' v123'
671
+ version_format : ' %%s?version=%%s'
672
+ base_urls : ['http://cdn.example.com', 'https://secure.example.com']
673
+ packages :
674
+ # ...
675
+ ```
676
+
649
677
Security
650
678
---------------
651
679
Original file line number Diff line number Diff line change @@ -883,6 +883,34 @@ UPGRADE FROM 2.x to 3.0
883
883
engines : ['php']
884
884
` ` `
885
885
886
+ * The assets settings under ` framework.templating` were moved to `framework.assets`.
887
+
888
+ Before :
889
+
890
+ ` ` ` yml
891
+ framework:
892
+ templating:
893
+ assets_version: 'v123'
894
+ assets_version_format: '%%s?version=%%s'
895
+ assets_base_urls:
896
+ http: ['http://cdn.example.com']
897
+ ssl: ['https://secure.example.com']
898
+ packages:
899
+ # ...
900
+ ` ` `
901
+
902
+ After :
903
+
904
+ ` ` ` yml
905
+ framework:
906
+ assets:
907
+ version: 'v123'
908
+ version_format: '%%s?version=%%s'
909
+ base_urls: ['http://cdn.example.com', 'https://secure.example.com']
910
+ packages:
911
+ # ...
912
+ ` ` `
913
+
886
914
* The `form.csrf_provider` service is removed as it implements an adapter for
887
915
the new token manager to the deprecated
888
916
` Symfony\C omponent\F orm\E xtension\C srf\C srfProvider\C srfProviderInterface`
You can’t perform that action at this time.
0 commit comments