diff options
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/ref/utils.txt | 6 | ||||
| -rw-r--r-- | docs/releases/4.2.15.txt | 14 | ||||
| -rw-r--r-- | docs/releases/5.0.8.txt | 4 | ||||
| -rw-r--r-- | docs/releases/index.txt | 1 |
4 files changed, 22 insertions, 3 deletions
diff --git a/docs/ref/utils.txt b/docs/ref/utils.txt index a493ec9dbf..3806581811 100644 --- a/docs/ref/utils.txt +++ b/docs/ref/utils.txt @@ -1108,7 +1108,7 @@ For a complete discussion on the usage of the following see the ``'es-ar'`` isn't. ``lang_code`` has a maximum accepted length of 500 characters. A - :exc:`ValueError` is raised if ``lang_code`` exceeds this limit and + :exc:`LookupError` is raised if ``lang_code`` exceeds this limit and ``strict`` is ``True``, or if there is no generic variant and ``strict`` is ``False``. @@ -1120,10 +1120,10 @@ For a complete discussion on the usage of the following see the Raises :exc:`LookupError` if nothing is found. - .. versionchanged:: 4.2.14 + .. versionchanged:: 4.2.15 In older versions, ``lang_code`` values over 500 characters were - processed without raising a :exc:`ValueError`. + processed without raising a :exc:`LookupError`. .. function:: to_locale(language) diff --git a/docs/releases/4.2.15.txt b/docs/releases/4.2.15.txt new file mode 100644 index 0000000000..a15eced1a3 --- /dev/null +++ b/docs/releases/4.2.15.txt @@ -0,0 +1,14 @@ +=========================== +Django 4.2.15 release notes +=========================== + +*Expected August 6, 2024* + +Django 4.2.15 fixes a regression in 4.2.14. + +Bugfixes +======== + +* Fixed a regression in Django 4.2.14 that caused a crash in + ``LocaleMiddleware`` when processing a language code over 500 characters + (:ticket:`35627`). diff --git a/docs/releases/5.0.8.txt b/docs/releases/5.0.8.txt index 7bdb5488b2..0f5123f68f 100644 --- a/docs/releases/5.0.8.txt +++ b/docs/releases/5.0.8.txt @@ -19,3 +19,7 @@ Bugfixes * Fixed a crash when creating a model with a ``Field.db_default`` and a ``Meta.constraints`` constraint composed of ``__endswith``, ``__startswith``, or ``__contains`` lookups (:ticket:`35625`). + +* Fixed a regression in Django 5.0.7 that caused a crash in + ``LocaleMiddleware`` when processing a language code over 500 characters + (:ticket:`35627`). diff --git a/docs/releases/index.txt b/docs/releases/index.txt index 8e4be0ef20..2a001eb8e0 100644 --- a/docs/releases/index.txt +++ b/docs/releases/index.txt @@ -48,6 +48,7 @@ versions of the documentation contain the release notes for any later releases. .. toctree:: :maxdepth: 1 + 4.2.15 4.2.14 4.2.13 4.2.12 |
