Skip to content

Commit 2c25723

Browse files
committed
Update documentation for stable authenticator security
1 parent 6168693 commit 2c25723

File tree

5 files changed

+7
-8
lines changed

5 files changed

+7
-8
lines changed

_build/redirection_map

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -515,3 +515,4 @@
515515
/frontend/encore/shared-entry /frontend/encore/split-chunks
516516
/testing/functional_tests_assertions /testing#testing-application-assertions
517517
/security/named_encoders /security/named_hashers
518+
/security/experimental_authenticators /security/authenticator_manager

event_dispatcher.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ or can get everything which partial matches the event name:
335335

336336
The ability to match partial event names was introduced in Symfony 5.3.
337337

338-
The :doc:`new experimental Security </security/experimental_authenticators>`
338+
The :doc:`new authenticator-based Security </security/authenticator_manager>`
339339
system adds an event dispatcher per firewall. Use the ``--dispatcher`` option to
340340
get the registered listeners for a particular event dispatcher:
341341

security.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ install the security feature before using it:
4040
4141
.. tip::
4242

43-
A :doc:`new experimental Security </security/experimental_authenticators>`
43+
A :doc:`new authenticator-based Security </security/authenticator_manager>`
4444
was introduced in Symfony 5.1, which will eventually replace security in
4545
Symfony 6.0. This system is almost fully backwards compatible with the
4646
current Symfony security, add this line to your security configuration to start
@@ -478,7 +478,7 @@ Limiting Login Attempts
478478
Login throttling was introduced in Symfony 5.2.
479479

480480
Symfony provides basic protection against `brute force login attacks`_ if
481-
you're using the :doc:`experimental authenticators </security/experimental_authenticators>`.
481+
you're using the :doc:`authenticator-based authenticators </security/authenticator_manager>`.
482482
You must enable this using the ``login_throttling`` setting:
483483

484484
.. configuration-block::
@@ -1501,7 +1501,7 @@ Authentication (Identifying/Logging in the User)
15011501
.. toctree::
15021502
:maxdepth: 1
15031503

1504-
security/experimental_authenticators
1504+
security/authenticator_manager
15051505
security/form_login_setup
15061506
security/reset_password
15071507
security/json_login_setup

security/experimental_authenticators.rst renamed to security/authenticator_manager.rst

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@ Using the new Authenticator-based Security
33

44
.. versionadded:: 5.1
55

6-
Authenticator-based security was introduced as an
7-
:doc:`experimental feature </contributing/code/experimental>` in
8-
Symfony 5.1.
6+
Authenticator-based security was introduced in Symfony 5.1.
97

108
In Symfony 5.1, a new authentication system was introduced. This system
119
changes the internals of Symfony Security, to make it more extensible

security/guard_authentication.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ system, so we can learn more about Guard in detail.
1616

1717
.. tip::
1818

19-
A :doc:`new experimental authenticator-based system </security/experimental_authenticators>`
19+
A :doc:`new authenticator-based system </security/authenticator_manager>`
2020
was introduced in Symfony 5.1, which will eventually replace Guards in Symfony 6.0.
2121

2222
Step 1) Prepare your User Class

0 commit comments

Comments
 (0)