Skip to content

Commit 035e6b4

Browse files
committed
Merge branch '6.4' into 7.1
* 6.4: remove outdated timezone warning [HttpFoundation] Mention issues with generated URL hashes
2 parents 133ce56 + 2199b6b commit 035e6b4

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

messenger.rst

-6
Original file line numberDiff line numberDiff line change
@@ -1567,12 +1567,6 @@ DSN by using the ``table_name`` option:
15671567
Or, to create the table yourself, set the ``auto_setup`` option to ``false`` and
15681568
:ref:`generate a migration <doctrine-creating-the-database-tables-schema>`.
15691569

1570-
.. warning::
1571-
1572-
The datetime property of the messages stored in the database uses the
1573-
timezone of the current system. This may cause issues if multiple machines
1574-
with different timezone configuration use the same storage.
1575-
15761570
The transport has a number of options:
15771571

15781572
``table_name`` (default: ``messenger_messages``)

routing.rst

+6
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)