diff --git a/components/json_path.rst b/components/json_path.rst index 9db8e48885e..b63934a7c50 100644 --- a/components/json_path.rst +++ b/components/json_path.rst @@ -1,11 +1,6 @@ The JsonPath Component ====================== -.. versionadded:: 7.3 - - The JsonPath component was introduced in Symfony 7.3 as an - :doc:`experimental feature `. - The JsonPath component lets you query and extract data from JSON structures. It implements the `RFC 9535 – JSONPath`_ standard, allowing you to navigate complex JSON data. diff --git a/console.rst b/console.rst index a9457c1620f..1458eadf175 100644 --- a/console.rst +++ b/console.rst @@ -226,11 +226,6 @@ command name; the others are aliases that can also be used to run the command:: // ... } -.. versionadded:: 7.4 - - The ability to define aliases through the command name was introduced in - Symfony 7.4. - Console Output -------------- diff --git a/console/hide_commands.rst b/console/hide_commands.rst index aad4b6d45a4..f7f7139290d 100644 --- a/console/hide_commands.rst +++ b/console/hide_commands.rst @@ -38,10 +38,6 @@ of the aliases and leave the main command name (the part before the ``|``) empty // ... } -.. versionadded:: 7.4 - - Support for hidding commands using the pipe syntax was introduced in Symfony 7.4. - .. note:: Hidden commands are still available using the JSON or XML descriptor. diff --git a/notifier.rst b/notifier.rst index 461eefa331a..c359c79f477 100644 --- a/notifier.rst +++ b/notifier.rst @@ -1272,7 +1272,6 @@ is dispatched. Listeners receive a .. _`SMSFactor`: https://github.com/symfony/symfony/blob/{version}/src/Symfony/Component/Notifier/Bridge/SmsFactor/README.md .. _`Sendberry`: https://github.com/symfony/symfony/blob/{version}/src/Symfony/Component/Notifier/Bridge/Sendberry/README.md .. _`Sendinblue`: https://github.com/symfony/symfony/blob/{version}/src/Symfony/Component/Notifier/Bridge/Sendinblue/README.md -.. _`Seven.io`: https://github.com/symfony/symfony/blob/{version}/src/Symfony/Component/Notifier/Bridge/Sevenio/README.md .. _`SimpleTextin`: https://github.com/symfony/symfony/blob/{version}/src/Symfony/Component/Notifier/Bridge/SimpleTextin/README.md .. _`Sinch`: https://github.com/symfony/symfony/blob/{version}/src/Symfony/Component/Notifier/Bridge/Sinch/README.md .. _`Sipgate`: https://github.com/symfony/symfony/blob/{version}/src/Symfony/Component/Notifier/Bridge/Sipgate/README.md diff --git a/reference/configuration/framework.rst b/reference/configuration/framework.rst index 3cb42543afe..1c10d5ef518 100644 --- a/reference/configuration/framework.rst +++ b/reference/configuration/framework.rst @@ -2349,21 +2349,6 @@ Combine it with the ``collect`` option to enable/disable the profiler on demand: request and has value of ``true``, ``yes``, ``on`` or ``1``, the request data will be collected. -.. _collect_serializer_data: - -collect_serializer_data -....................... - -**type**: ``boolean`` **default**: ``false`` - -When this option is ``true``, all normalizers and encoders are -decorated by traceable implementations that collect profiling information about them. - -.. deprecated:: 7.3 - - Setting the ``collect_serializer_data`` option to ``false`` is deprecated - since Symfony 7.3. - .. _profiler-dsn: dsn diff --git a/reference/constraints/Url.rst b/reference/constraints/Url.rst index a939141e575..e86658421aa 100644 --- a/reference/constraints/Url.rst +++ b/reference/constraints/Url.rst @@ -311,12 +311,7 @@ also relative URLs that contain no protocol (e.g. ``//example.com``). ``requireTld`` ~~~~~~~~~~~~~~ -**type**: ``boolean`` **default**: ``false`` - -.. deprecated:: 7.1 - - Not setting the ``requireTld`` option is deprecated since Symfony 7.1 - and will default to ``true`` in Symfony 8.0. +**type**: ``boolean`` **default**: ``true`` By default, URLs like ``https://aaa`` or ``https://foobar`` are considered valid because they are technically correct according to the `URL spec`_. If you set this option diff --git a/security/passwords.rst b/security/passwords.rst index 5de5d4b7b24..e49fc0a6ce5 100644 --- a/security/passwords.rst +++ b/security/passwords.rst @@ -310,10 +310,6 @@ its configuration key:: When injecting a specific hasher by its name, you should type-hint the generic :class:`Symfony\\Component\\PasswordHasher\\PasswordHasherInterface`. -.. versionadded:: 7.4 - - The feature to inject specific password hashers was introduced in Symfony 7.4. - .. _security-password-migration: Password Migration diff --git a/serializer/streaming_json.rst b/serializer/streaming_json.rst index 3fd44824bc6..01da8f072ba 100644 --- a/serializer/streaming_json.rst +++ b/serializer/streaming_json.rst @@ -1,11 +1,6 @@ Streaming JSON ============== -.. versionadded:: 7.3 - - The JsonStreamer component was introduced in Symfony 7.3 as an - :doc:`experimental feature `. - Symfony can encode PHP data structures to JSON streams and decode JSON streams back into PHP data structures. diff --git a/service_container/debug.rst b/service_container/debug.rst index 9e3e28a5343..0a7898108fb 100644 --- a/service_container/debug.rst +++ b/service_container/debug.rst @@ -51,9 +51,3 @@ its id: .. code-block:: terminal $ php bin/console debug:container App\Service\Mailer - -.. deprecated:: 7.3 - - Starting in Symfony 7.3, this command displays the service arguments by default. - In earlier Symfony versions, you needed to use the ``--show-arguments`` option, - which is now deprecated. diff --git a/testing.rst b/testing.rst index 38a598f8b29..ee617e9248c 100644 --- a/testing.rst +++ b/testing.rst @@ -1119,10 +1119,6 @@ Mailer Assertions Asserts that the subject of the given email does (not) contain the expected subject. -.. versionadded:: 7.4 - - The ``assertEmailAddressNotContains()`` assertion was introduced in Symfony 7.4. - Notifier Assertions ...................