File tree Expand file tree Collapse file tree 10 files changed +1
-45
lines changed Expand file tree Collapse file tree 10 files changed +1
-45
lines changed Original file line number Diff line number Diff line change 1
1
The JsonPath Component
2
2
======================
3
3
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
-
9
4
The JsonPath component lets you query and extract data from JSON structures.
10
5
It implements the `RFC 9535 – JSONPath `_ standard, allowing you to navigate
11
6
complex JSON data.
Original file line number Diff line number Diff line change @@ -226,11 +226,6 @@ command name; the others are aliases that can also be used to run the command::
226
226
// ...
227
227
}
228
228
229
- .. versionadded :: 7.4
230
-
231
- The ability to define aliases through the command name was introduced in
232
- Symfony 7.4.
233
-
234
229
Console Output
235
230
--------------
236
231
Original file line number Diff line number Diff line change @@ -38,10 +38,6 @@ of the aliases and leave the main command name (the part before the ``|``) empty
38
38
// ...
39
39
}
40
40
41
- .. versionadded :: 7.4
42
-
43
- Support for hidding commands using the pipe syntax was introduced in Symfony 7.4.
44
-
45
41
.. note ::
46
42
47
43
Hidden commands are still available using the JSON or XML descriptor.
Original file line number Diff line number Diff line change @@ -1272,7 +1272,6 @@ is dispatched. Listeners receive a
1272
1272
.. _`SMSFactor` : https://github.com/symfony/symfony/blob/{version}/src/Symfony/Component/Notifier/Bridge/SmsFactor/README.md
1273
1273
.. _`Sendberry` : https://github.com/symfony/symfony/blob/{version}/src/Symfony/Component/Notifier/Bridge/Sendberry/README.md
1274
1274
.. _`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
1276
1275
.. _`SimpleTextin` : https://github.com/symfony/symfony/blob/{version}/src/Symfony/Component/Notifier/Bridge/SimpleTextin/README.md
1277
1276
.. _`Sinch` : https://github.com/symfony/symfony/blob/{version}/src/Symfony/Component/Notifier/Bridge/Sinch/README.md
1278
1277
.. _`Sipgate` : https://github.com/symfony/symfony/blob/{version}/src/Symfony/Component/Notifier/Bridge/Sipgate/README.md
Original file line number Diff line number Diff line change @@ -2359,11 +2359,6 @@ collect_serializer_data
2359
2359
When this option is ``true ``, all normalizers and encoders are
2360
2360
decorated by traceable implementations that collect profiling information about them.
2361
2361
2362
- .. deprecated :: 7.3
2363
-
2364
- Setting the ``collect_serializer_data `` option to ``false `` is deprecated
2365
- since Symfony 7.3.
2366
-
2367
2362
.. _profiler-dsn :
2368
2363
2369
2364
dsn
Original file line number Diff line number Diff line change @@ -311,12 +311,7 @@ also relative URLs that contain no protocol (e.g. ``//example.com``).
311
311
``requireTld ``
312
312
~~~~~~~~~~~~~~
313
313
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 ``
320
315
321
316
By default, URLs like ``https://aaa `` or ``https://foobar `` are considered valid
322
317
because they are technically correct according to the `URL spec `_. If you set this option
Original file line number Diff line number Diff line change @@ -310,10 +310,6 @@ its configuration key::
310
310
When injecting a specific hasher by its name, you should type-hint the generic
311
311
:class: `Symfony\\ Component\\ PasswordHasher\\ PasswordHasherInterface `.
312
312
313
- .. versionadded :: 7.4
314
-
315
- The feature to inject specific password hashers was introduced in Symfony 7.4.
316
-
317
313
.. _security-password-migration :
318
314
319
315
Password Migration
Original file line number Diff line number Diff line change 1
1
Streaming JSON
2
2
==============
3
3
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
-
9
4
Symfony can encode PHP data structures to JSON streams and decode JSON streams
10
5
back into PHP data structures.
11
6
Original file line number Diff line number Diff line change @@ -51,9 +51,3 @@ its id:
51
51
.. code-block :: terminal
52
52
53
53
$ 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.
Original file line number Diff line number Diff line change @@ -1119,10 +1119,6 @@ Mailer Assertions
1119
1119
Asserts that the subject of the given email does (not) contain the
1120
1120
expected subject.
1121
1121
1122
- .. versionadded :: 7.4
1123
-
1124
- The ``assertEmailAddressNotContains() `` assertion was introduced in Symfony 7.4.
1125
-
1126
1122
Notifier Assertions
1127
1123
...................
1128
1124
You can’t perform that action at this time.
0 commit comments