Skip to content

Commit

Permalink
Merge branch '7.1' into 7.2
Browse files Browse the repository at this point in the history
* 7.1:
  remove outdated timezone warning
  [HttpFoundation] Mention issues with generated URL hashes
  • Loading branch information
javiereguiluz committed Jan 8, 2025
2 parents 19942b3 + 035e6b4 commit 0e5e28d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 0 additions & 6 deletions messenger.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1636,12 +1636,6 @@ DSN by using the ``table_name`` option:
Or, to create the table yourself, set the ``auto_setup`` option to ``false`` and
:ref:`generate a migration <doctrine-creating-the-database-tables-schema>`.

.. warning::

The datetime property of the messages stored in the database uses the
timezone of the current system. This may cause issues if multiple machines
with different timezone configuration use the same storage.

The transport has a number of options:

``table_name`` (default: ``messenger_messages``)
Expand Down
6 changes: 6 additions & 0 deletions routing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2802,6 +2802,12 @@ argument of :method:`Symfony\\Component\\HttpFoundation\\UriSigner::sign`::

The feature to add an expiration date for a signed URI was introduced in Symfony 7.1.

.. note::

The generated URI hashes may include the ``/`` and ``+`` characters, which
can cause issues with certain clients. If you encounter this problem, replace
them using the following: ``strtr($hash, ['/' => '_', '+' => '-'])``.

Troubleshooting
---------------

Expand Down

0 comments on commit 0e5e28d

Please sign in to comment.