Skip to content

Commit 55fcee9

Browse files
committed
Applied comments
1 parent 99c5075 commit 55fcee9

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

cookbook/upgrade/_update_all_packages.rst.inc

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ this safely by running:
88
99
.. caution::
1010
11-
Beware, if you have some bad `version constraints`_ in your
11+
Beware, if you have some unspecific `version constraints`_ in your
1212
``composer.json`` (e.g. ``dev-master``), this could upgrade some
1313
non-Symfony libraries to new versions that contain backwards-compatibility
1414
breaking changes.

cookbook/upgrade/major_version.rst

+6-4
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,12 @@ old API will still work, while the new feature is used internally. This BC
3131
layer is then marked as *deprecated*, indicating that it will be
3232
removed/changed in the future.
3333

34-
The major version is the only time all existing BC layers are removed. The last
35-
minor version before a new major version (i.e. 2.7 is the last minor version of
36-
the 2 releases, 3.0 is the next version) will trigger deprecation notices when a
37-
BC layer is used.
34+
The major version is the only time all existing BC layers are removed. However,
35+
if you make sure you've fixed all deprecated usages in the last version of the
36+
previous major version, you should be able to upgrade to the new major version
37+
without problems. To help you with this, the last minor releases will trigger
38+
deprecated notices. For example, 2.7 and 2.8 trigger deprecated notices and if
39+
you do not have any notice while using 2.8, you can savely upgrade to 3.0.
3840

3941
When visiting your application in the
4042
:doc:`dev environment </cookbook/configuration/environments>` in your browser,

cookbook/upgrade/minor_version.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Next, use Composer to download new versions of the libraries:
4545

4646
.. _`upgrade-minor-symfony-code`:
4747

48-
2) Updating Your Code to Work with the new Version
48+
2) Updating your Code to Work with the new Version
4949
--------------------------------------------------
5050

5151
In theory, you should be done! However, you *may* need to make a few changes

0 commit comments

Comments
 (0)