Skip to content

Commit 0e5e28d

Browse files
committed
Merge branch '7.1' into 7.2
* 7.1: remove outdated timezone warning [HttpFoundation] Mention issues with generated URL hashes
2 parents 19942b3 + 035e6b4 commit 0e5e28d

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

messenger.rst

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1636,12 +1636,6 @@ DSN by using the ``table_name`` option:
16361636
Or, to create the table yourself, set the ``auto_setup`` option to ``false`` and
16371637
:ref:`generate a migration <doctrine-creating-the-database-tables-schema>`.
16381638

1639-
.. warning::
1640-
1641-
The datetime property of the messages stored in the database uses the
1642-
timezone of the current system. This may cause issues if multiple machines
1643-
with different timezone configuration use the same storage.
1644-
16451639
The transport has a number of options:
16461640

16471641
``table_name`` (default: ``messenger_messages``)

routing.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2802,6 +2802,12 @@ argument of :method:`Symfony\\Component\\HttpFoundation\\UriSigner::sign`::
28022802

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

2805+
.. note::
2806+
2807+
The generated URI hashes may include the ``/`` and ``+`` characters, which
2808+
can cause issues with certain clients. If you encounter this problem, replace
2809+
them using the following: ``strtr($hash, ['/' => '_', '+' => '-'])``.
2810+
28052811
Troubleshooting
28062812
---------------
28072813

0 commit comments

Comments
 (0)