From 83c2bc52c2bf6da682989867b09c753ec1a2e5b3 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Mon, 4 Feb 2019 18:53:11 -0500 Subject: Refs #27753 -- Deprecated django.utils.http urllib aliases. --- docs/internals/deprecation.txt | 3 +++ docs/releases/3.0.txt | 6 +++++- 2 files changed, 8 insertions(+), 1 deletion(-) (limited to 'docs') diff --git a/docs/internals/deprecation.txt b/docs/internals/deprecation.txt index 1a5b98df33..0550c10ec7 100644 --- a/docs/internals/deprecation.txt +++ b/docs/internals/deprecation.txt @@ -15,6 +15,9 @@ about each item can often be found in the release notes of two versions prior. See the :ref:`Django 3.0 release notes ` for more details on these changes. +* ``django.utils.http.urlquote()``, ``urlquote_plus()``, ``urlunquote()``, and + ``urlunquote_plus()`` will be removed. + .. _deprecation-removed-in-3.1: 3.1 diff --git a/docs/releases/3.0.txt b/docs/releases/3.0.txt index 4eca26bbca..4dda131dbc 100644 --- a/docs/releases/3.0.txt +++ b/docs/releases/3.0.txt @@ -248,7 +248,11 @@ Features deprecated in 3.0 Miscellaneous ------------- -* ... +* ``django.utils.http.urlquote()``, ``urlquote_plus()``, ``urlunquote()``, and + ``urlunquote_plus()`` are deprecated in favor of the functions that they're + aliases for: :func:`urllib.parse.quote`, :func:`~urllib.parse.quote_plus`, + :func:`~urllib.parse.unquote`, and :func:`~urllib.parse.unquote_plus`. + .. _removed-features-3.0: -- cgit v1.3