Skip to content

Commit 98a48bf

Browse files
committed
Merge branch '4.2' into 4.3
* 4.2: Recommend FOSCKE instead of Ivory WYSIWYG editor Use current version for deprecated/versionadded examples
2 parents dd915a6 + bdece76 commit 98a48bf

File tree

2 files changed

+14
-15
lines changed

2 files changed

+14
-15
lines changed

contributing/documentation/format.rst

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -175,40 +175,39 @@ If you are documenting a brand new feature, a change or a deprecation that's
175175
been made in Symfony, you should precede your description of the change with
176176
the corresponding directive and a short description:
177177

178-
For a new feature or a behavior change use the ``.. versionadded:: 3.x``
178+
For a new feature or a behavior change use the ``.. versionadded:: 4.x``
179179
directive:
180180

181181
.. code-block:: rst
182182
183-
.. versionadded:: 3.4
183+
.. versionadded:: 4.2
184184
185-
The special ``!`` template prefix was introduced in Symfony 3.4.
185+
Named autowiring aliases have been introduced in Symfony 4.2.
186186
187187
If you are documenting a behavior change, it may be helpful to *briefly*
188188
describe how the behavior has changed:
189189

190190
.. code-block:: rst
191191
192-
.. versionadded:: 3.4
192+
.. versionadded:: 4.2
193193
194-
Support for annotation routing without an external bundle was introduced
195-
in Symfony 3.4. Prior, you needed to install the SensioFrameworkExtraBundle.
194+
Support for ICU MessageFormat was introduced in Symfony 4.2. Prior to this,
195+
pluralization was managed by the ``transChoice`` method.
196196
197-
For a deprecation use the ``.. deprecated:: 3.X`` directive:
197+
For a deprecation use the ``.. deprecated:: 4.X`` directive:
198198

199199
.. code-block:: rst
200200
201-
.. deprecated:: 3.3
201+
.. deprecated:: 4.2
202202
203-
This technique is discouraged and the ``addClassesToCompile()`` method was
204-
deprecated in Symfony 3.3 because modern PHP versions make it unnecessary.
203+
Not passing the root node name to ``TreeBuilder`` was deprecated in Symfony 4.2.
205204
206-
Whenever a new major version of Symfony is released (e.g. 3.0, 4.0, etc),
205+
Whenever a new major version of Symfony is released (e.g. 5.0, 6.0, etc),
207206
a new branch of the documentation is created from the ``master`` branch.
208207
At this point, all the ``versionadded`` and ``deprecated`` tags for Symfony
209208
versions that have a lower major version will be removed. For example, if
210-
Symfony 4.0 were released today, 3.0 to 3.4 ``versionadded`` and ``deprecated``
211-
tags would be removed from the new ``4.0`` branch.
209+
Symfony 5.0 were released today, 4.0 to 4.4 ``versionadded`` and ``deprecated``
210+
tags would be removed from the new ``5.0`` branch.
212211

213212
.. _reStructuredText: http://docutils.sourceforge.net/rst.html
214213
.. _Sphinx: http://sphinx-doc.org/

reference/forms/types/textarea.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Renders a ``textarea`` HTML element.
3535
.. tip::
3636

3737
If you prefer to use an **advanced WYSIWYG editor** instead of a plain
38-
textarea, consider using the IvoryCKEditorBundle community bundle. Read
38+
textarea, consider using the FOSCKEditorBundle community bundle. Read
3939
`its documentation`_ to learn how to integrate it in your Symfony application.
4040

4141
Inherited Options
@@ -79,4 +79,4 @@ The default value is ``''`` (the empty string).
7979

8080
.. include:: /reference/forms/types/options/trim.rst.inc
8181

82-
.. _`its documentation`: https://symfony.com/doc/current/bundles/IvoryCKEditorBundle/index.html
82+
.. _`its documentation`: https://symfony.com/doc/current/bundles/FOSCKEditorBundle/index.html

0 commit comments

Comments
 (0)