Skip to content

Commit 2ee61d6

Browse files
committed
minor #21253 clean up versionadded/deprecated directives (xabbuh)
This PR was merged into the 8.0 branch. Discussion ---------- clean up `versionadded`/`deprecated` directives Commits ------- 4e59c87 clean up versionadded/deprecated directives
2 parents 9f4c24a + 4e59c87 commit 2ee61d6

File tree

10 files changed

+1
-55
lines changed

10 files changed

+1
-55
lines changed

components/json_path.rst

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
11
The JsonPath Component
22
======================
33

4-
.. versionadded:: 7.3
5-
6-
The JsonPath component was introduced in Symfony 7.3 as an
7-
:doc:`experimental feature </contributing/code/experimental>`.
8-
94
The JsonPath component lets you query and extract data from JSON structures.
105
It implements the `RFC 9535 – JSONPath`_ standard, allowing you to navigate
116
complex JSON data.

console.rst

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -226,11 +226,6 @@ command name; the others are aliases that can also be used to run the command::
226226
// ...
227227
}
228228

229-
.. versionadded:: 7.4
230-
231-
The ability to define aliases through the command name was introduced in
232-
Symfony 7.4.
233-
234229
Console Output
235230
--------------
236231

console/hide_commands.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,6 @@ of the aliases and leave the main command name (the part before the ``|``) empty
3838
// ...
3939
}
4040

41-
.. versionadded:: 7.4
42-
43-
Support for hidding commands using the pipe syntax was introduced in Symfony 7.4.
44-
4541
.. note::
4642

4743
Hidden commands are still available using the JSON or XML descriptor.

notifier.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1272,7 +1272,6 @@ is dispatched. Listeners receive a
12721272
.. _`SMSFactor`: https://github.com/symfony/symfony/blob/{version}/src/Symfony/Component/Notifier/Bridge/SmsFactor/README.md
12731273
.. _`Sendberry`: https://github.com/symfony/symfony/blob/{version}/src/Symfony/Component/Notifier/Bridge/Sendberry/README.md
12741274
.. _`Sendinblue`: https://github.com/symfony/symfony/blob/{version}/src/Symfony/Component/Notifier/Bridge/Sendinblue/README.md
1275-
.. _`Seven.io`: https://github.com/symfony/symfony/blob/{version}/src/Symfony/Component/Notifier/Bridge/Sevenio/README.md
12761275
.. _`SimpleTextin`: https://github.com/symfony/symfony/blob/{version}/src/Symfony/Component/Notifier/Bridge/SimpleTextin/README.md
12771276
.. _`Sinch`: https://github.com/symfony/symfony/blob/{version}/src/Symfony/Component/Notifier/Bridge/Sinch/README.md
12781277
.. _`Sipgate`: https://github.com/symfony/symfony/blob/{version}/src/Symfony/Component/Notifier/Bridge/Sipgate/README.md

reference/configuration/framework.rst

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -2349,21 +2349,6 @@ Combine it with the ``collect`` option to enable/disable the profiler on demand:
23492349
request and has value of ``true``, ``yes``, ``on`` or ``1``, the request data
23502350
will be collected.
23512351

2352-
.. _collect_serializer_data:
2353-
2354-
collect_serializer_data
2355-
.......................
2356-
2357-
**type**: ``boolean`` **default**: ``false``
2358-
2359-
When this option is ``true``, all normalizers and encoders are
2360-
decorated by traceable implementations that collect profiling information about them.
2361-
2362-
.. deprecated:: 7.3
2363-
2364-
Setting the ``collect_serializer_data`` option to ``false`` is deprecated
2365-
since Symfony 7.3.
2366-
23672352
.. _profiler-dsn:
23682353

23692354
dsn

reference/constraints/Url.rst

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -311,12 +311,7 @@ also relative URLs that contain no protocol (e.g. ``//example.com``).
311311
``requireTld``
312312
~~~~~~~~~~~~~~
313313

314-
**type**: ``boolean`` **default**: ``false``
315-
316-
.. deprecated:: 7.1
317-
318-
Not setting the ``requireTld`` option is deprecated since Symfony 7.1
319-
and will default to ``true`` in Symfony 8.0.
314+
**type**: ``boolean`` **default**: ``true``
320315

321316
By default, URLs like ``https://aaa`` or ``https://foobar`` are considered valid
322317
because they are technically correct according to the `URL spec`_. If you set this option

security/passwords.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -310,10 +310,6 @@ its configuration key::
310310
When injecting a specific hasher by its name, you should type-hint the generic
311311
:class:`Symfony\\Component\\PasswordHasher\\PasswordHasherInterface`.
312312

313-
.. versionadded:: 7.4
314-
315-
The feature to inject specific password hashers was introduced in Symfony 7.4.
316-
317313
.. _security-password-migration:
318314

319315
Password Migration

serializer/streaming_json.rst

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
11
Streaming JSON
22
==============
33

4-
.. versionadded:: 7.3
5-
6-
The JsonStreamer component was introduced in Symfony 7.3 as an
7-
:doc:`experimental feature </contributing/code/experimental>`.
8-
94
Symfony can encode PHP data structures to JSON streams and decode JSON streams
105
back into PHP data structures.
116

service_container/debug.rst

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,3 @@ its id:
5151
.. code-block:: terminal
5252
5353
$ php bin/console debug:container App\Service\Mailer
54-
55-
.. deprecated:: 7.3
56-
57-
Starting in Symfony 7.3, this command displays the service arguments by default.
58-
In earlier Symfony versions, you needed to use the ``--show-arguments`` option,
59-
which is now deprecated.

testing.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1127,10 +1127,6 @@ Mailer Assertions
11271127
Asserts that the subject of the given email does (not) contain the
11281128
expected subject.
11291129

1130-
.. versionadded:: 7.4
1131-
1132-
The ``assertEmailAddressNotContains()`` assertion was introduced in Symfony 7.4.
1133-
11341130
Notifier Assertions
11351131
...................
11361132

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy