8000 [Security] Update documentation for stable authenticator security by wouterj · Pull Request #15405 · symfony/symfony-docs · GitHub
[go: up one dir, main page]

Skip to content

[Security] Update documentation for stable authenticator security #15405

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 3, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions _build/redirection_map
Original file line number Diff line number Diff line change
Expand Up @@ -515,3 +515,4 @@
/frontend/encore/shared-entry /frontend/encore/split-chunks
/testing/functional_tests_assertions /testing#testing-application-assertions
/security/named_encoders /security/named_hashers
/security/experimental_authenticators /security/authenticator_manager
2 changes: 1 addition & 1 deletion event_dispatcher.rst
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ or can get everything which partial matches the event name:

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

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

Expand Down
6 changes: 3 additions & 3 deletions security.rst
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ install the security feature before using it:

.. tip::

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

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

.. configuration-block::
Expand Down Expand Up @@ -1501,7 +1501,7 @@ Authentication (Identifying/Logging in the User)
.. toctree::
:maxdepth: 1

security/experimental_authenticators
security/authenticator_manager
security/form_login_setup
security/reset_password
security/json_login_setup
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@ Using the new Authenticator-based Security

.. versionadded:: 5.1

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

In Symfony 5.1, a new authentication system was introduced. This system
changes the internals of Symfony Security, to make it more extensible
Expand Down
2 changes: 1 addition & 1 deletion security/guard_authentication.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ system, so we can learn more about Guard in detail.

.. tip::

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

Step 1) Prepare your User Class
Expand Down
0