diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 8b0275841b..5114deb85d 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -14,6 +14,7 @@ Changelog * Cloudflare frontend cache invalidation requests are now sent in chunks of 30 to fit within API limits (Tom Usher) * Added `ancestors` field to pages endpoint in admin API (Karl Hobley) * Removed Django admin management of `Page` & `Site` models (Andreas Bernacca) + * Cleaned up Django docs URLs in documentation (Pete Andrew) * Fix: Rename documents listing column 'uploaded' to 'created' (LB (Ben Johnston)) * Fix: Submenu items longer then the page height are no longer broken by the submenu footer (Igor van Spengen) * Fix: Unbundle the l18n library as it was bundled to avoid installation errors which have been resolved (Matt Westcott) diff --git a/CONTRIBUTORS.rst b/CONTRIBUTORS.rst index 8ea688adfc..87d6323ba3 100644 --- a/CONTRIBUTORS.rst +++ b/CONTRIBUTORS.rst @@ -424,6 +424,7 @@ Contributors * Andrey Smirnov * Tim Gates * Timothy Bautista +* Pete Andrew Translators =========== diff --git a/docs/advanced_topics/add_to_django_project.rst b/docs/advanced_topics/add_to_django_project.rst index edfd608863..15f573e8f8 100644 --- a/docs/advanced_topics/add_to_django_project.rst +++ b/docs/advanced_topics/add_to_django_project.rst @@ -298,7 +298,7 @@ These two files should reside in your project directory (``myproject/myproject/` MANAGERS = ADMINS # Default to dummy email backend. Configure dev/production/local backend - # as per https://docs.djangoproject.com/en/dev/topics/email/#email-backends + # as per https://docs.djangoproject.com/en/stable/topics/email/#email-backends EMAIL_BACKEND = 'django.core.mail.backends.dummy.EmailBackend' # Hosts/domain names that are valid for this site; required if DEBUG is False @@ -314,7 +314,7 @@ These two files should reside in your project directory (``myproject/myproject/` # A sample logging configuration. The only tangible logging # performed by this configuration is to send an email to # the site admins on every HTTP 500 error when DEBUG=False. - # See https://docs.djangoproject.com/en/dev/topics/logging for + # See https://docs.djangoproject.com/en/stable/topics/logging for # more details on how to customize your logging configuration. LOGGING = { 'version': 1, diff --git a/docs/advanced_topics/customisation/custom_user_models.rst b/docs/advanced_topics/customisation/custom_user_models.rst index 9650342d3a..32263d8c12 100644 --- a/docs/advanced_topics/customisation/custom_user_models.rst +++ b/docs/advanced_topics/customisation/custom_user_models.rst @@ -85,4 +85,4 @@ Add the wagtail settings to your project to reference the user form additions: WAGTAIL_USER_CUSTOM_FIELDS = ['country', 'status'] -.. _AUTH_USER_MODEL: https://docs.djangoproject.com/en/dev/topics/auth/customizing/#substituting-a-custom-user-model +.. _AUTH_USER_MODEL: https://docs.djangoproject.com/en/stable/topics/auth/customizing/#substituting-a-custom-user-model diff --git a/docs/advanced_topics/testing.rst b/docs/advanced_topics/testing.rst index 5088e271c8..6597c61b5e 100644 --- a/docs/advanced_topics/testing.rst +++ b/docs/advanced_topics/testing.rst @@ -162,5 +162,5 @@ Filling in the ``path`` / ``numchild`` / ``depth`` fields is necessary in order The `Treebeard docs`_ might help in understanding how this works. -.. _dumpdata: https://docs.djangoproject.com/en/2.0/ref/django-admin/#django-admin-dumpdata +.. _dumpdata: https://docs.djangoproject.com/en/stable/ref/django-admin/#django-admin-dumpdata .. _Treebeard docs: https://django-treebeard.readthedocs.io/en/latest/mp_tree.html diff --git a/docs/releases/2.8.rst b/docs/releases/2.8.rst index eec71d3fbc..c621485f65 100644 --- a/docs/releases/2.8.rst +++ b/docs/releases/2.8.rst @@ -23,6 +23,7 @@ Other features * Cloudflare frontend cache invalidation requests are now sent in chunks of 30 to fit within API limits (Tom Usher) * Added ``ancestors`` field to pages endpoint in admin API (Karl Hobley) * Removed Django admin management of ``Page`` & ``Site`` models (Andreas Bernacca) + * Cleaned up Django docs URLs in documentation (Pete Andrew) Bug fixes