From 8f6bdb1f122e3cbb7b06eb0fd8ff76829e2c4b43 Mon Sep 17 00:00:00 2001 From: LB Johnston Date: Tue, 30 Jan 2024 22:49:11 +1000 Subject: [PATCH] Update Sphinx Wagtail Theme to v6.2.0 #11552 - Fixes favicon and Python compatibility issues --- CHANGELOG.txt | 1 + docs/releases/6.0.md | 1 + setup.py | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index c22eaba9d0..8b0185cd9d 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -107,6 +107,7 @@ Changelog * Docs: Enforce CI build checks for documentation so that malformed links or missing images will not be allowed (Neeraj Yetheendran) * Docs: Update spelling on customizing admin template and page model section from British to American English (Victoria Poromon) * Docs: Add documentation for how to override the file locations for custom image models via `get_upload_to` methods (Osaf AliSayed, Dharmik Gangani) + * Docs: Update documentation theme (Sphinx Wagtail Theme) to 6.2.0, fixing the incorrect favicon (LB (Ben) Johnston, Sahil Jangra) * Maintenance: Update BeautifulSoup upper bound to 4.12.x (scott-8) * Maintenance: Migrate initialization of classes (such as `body.ready`) from multiple JavaScript implementations to one Stimulus controller `w-init` (Chiemezuo Akujobi) * Maintenance: Adopt the usage of translate string literals using `arg=_('...')` in all `wagtailadmin` module templates (Chiemezuo Akujobi) diff --git a/docs/releases/6.0.md b/docs/releases/6.0.md index 41b73eae42..51e82094c1 100644 --- a/docs/releases/6.0.md +++ b/docs/releases/6.0.md @@ -147,6 +147,7 @@ This feature was implemented by Nick Lee, Thibaud Colas, and Sage Abdullah. * Enforce CI build checks for documentation so that malformed links or missing images will not be allowed (Neeraj Yetheendran) * Update spelling on customizing admin template and page model section from British to American English (Victoria Poromon) * Add documentation for how to override the file locations for custom image models [](custom_image_model_upload_location) (Osaf AliSayed, Dharmik Gangani) + * Update documentation theme (Sphinx Wagtail Theme) to 6.2.0, fixing the incorrect favicon (LB (Ben) Johnston, Sahil Jangra) ### Maintenance diff --git a/setup.py b/setup.py index ea28f6e889..001a126419 100755 --- a/setup.py +++ b/setup.py @@ -74,7 +74,7 @@ documentation_extras = [ "sphinxcontrib-spelling>=7,<8", "Sphinx>=1.5.2", "sphinx-autobuild>=0.6.0", - "sphinx-wagtail-theme==6.1.1", + "sphinx-wagtail-theme==6.2.0", "myst_parser==2.0.0", "sphinx_copybutton>=0.5,<1.0", ]