From 030830937b08ed66d45b2ca67cd54ca97bbbf78c Mon Sep 17 00:00:00 2001 From: Matt Westcott Date: Mon, 13 Aug 2018 14:46:57 +0100 Subject: [PATCH] Add release notes for 1.12.4 - 1.12.6 and 1.13.2 - 1.13.4 --- CHANGELOG.txt | 44 ++++++++++++++++++++++++++++++++++++++++ docs/releases/1.12.4.rst | 19 +++++++++++++++++ docs/releases/1.12.5.rst | 17 ++++++++++++++++ docs/releases/1.12.6.rst | 16 +++++++++++++++ docs/releases/1.13.2.rst | 19 +++++++++++++++++ docs/releases/1.13.3.rst | 17 ++++++++++++++++ docs/releases/1.13.4.rst | 16 +++++++++++++++ docs/releases/index.rst | 6 ++++++ 8 files changed, 154 insertions(+) create mode 100644 docs/releases/1.12.4.rst create mode 100644 docs/releases/1.12.5.rst create mode 100644 docs/releases/1.12.6.rst create mode 100644 docs/releases/1.13.2.rst create mode 100644 docs/releases/1.13.3.rst create mode 100644 docs/releases/1.13.4.rst diff --git a/CHANGELOG.txt b/CHANGELOG.txt index c93d7c7b4..452025e19 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -99,6 +99,28 @@ Changelog * Fix: Prevent style leak of Wagtail panel icons in widgets using ``h2`` elements (THibaud Colas) +1.13.4 (13.08.2018) +~~~~~~~~~~~~~~~~~~~ + + * Fix: Pin Beautiful Soup to 4.6.0 due to further regressions in formatting empty elements (Matt Westcott) + + +1.13.3 (13.08.2018) +~~~~~~~~~~~~~~~~~~~ + + * Fix: Pin django-taggit to <0.23 to restore Django 1.8 compatibility (Matt Westcott) + * Fix: Mark Beautiful Soup 4.6.1 as incompatible due to bug in formatting empty elements (Matt Westcott) + + +1.13.2 (04.07.2018) +~~~~~~~~~~~~~~~~~~~ + + * Fix: Fix support of `ATOMIC_REBUILD` for projects with Elasticsearch client >=1.7.0 (Mikalai Radchuk) + * Fix: Logging an indexing failure on an object with a non-ASCII representation no longer crashes on Python 2 (Aram Dulyan) + * Fix: Rich text image chooser no longer skips format selection after a validation error (Matt Westcott) + * Fix: Null characters in URLs no longer crash the redirect middleware on PostgreSQL (Matt Westcott) + + 1.13.1 (17.11.2017) ~~~~~~~~~~~~~~~~~~~ @@ -143,6 +165,28 @@ Changelog * Fix: API listing views no longer fail when no site records are defined (Karl Hobley) +1.12.6 (13.08.2018) +~~~~~~~~~~~~~~~~~~~ + + * Fix: Pin Beautiful Soup to 4.6.0 due to further regressions in formatting empty elements (Matt Westcott) + + +1.12.5 (13.08.2018) +~~~~~~~~~~~~~~~~~~~ + + * Fix: Pin django-taggit to <0.23 to restore Django 1.8 compatibility (Matt Westcott) + * Fix: Mark Beautiful Soup 4.6.1 as incompatible due to bug in formatting empty elements (Matt Westcott) + + +1.12.4 (04.07.2018) +~~~~~~~~~~~~~~~~~~~ + + * Fix: Fix support of `ATOMIC_REBUILD` for projects with Elasticsearch client >=1.7.0 (Mikalai Radchuk) + * Fix: Logging an indexing failure on an object with a non-ASCII representation no longer crashes on Python 2 (Aram Dulyan) + * Fix: Rich text image chooser no longer skips format selection after a validation error (Matt Westcott) + * Fix: Null characters in URLs no longer crash the redirect middleware on PostgreSQL (Matt Westcott) + + 1.12.3 (17.11.2017) ~~~~~~~~~~~~~~~~~~~ diff --git a/docs/releases/1.12.4.rst b/docs/releases/1.12.4.rst new file mode 100644 index 000000000..2746a5475 --- /dev/null +++ b/docs/releases/1.12.4.rst @@ -0,0 +1,19 @@ +============================ +Wagtail 1.12.4 release notes +============================ + +.. contents:: + :local: + :depth: 1 + + +What's new +========== + +Bug fixes +~~~~~~~~~ + + * Fix support of ``ATOMIC_REBUILD`` for projects with Elasticsearch client ``>=1.7.0`` (Mikalai Radchuk) + * Logging an indexing failure on an object with a non-ASCII representation no longer crashes on Python 2 (Aram Dulyan) + * Rich text image chooser no longer skips format selection after a validation error (Matt Westcott) + * Null characters in URLs no longer crash the redirect middleware on PostgreSQL (Andrew Crewdson, Matt Westcott) diff --git a/docs/releases/1.12.5.rst b/docs/releases/1.12.5.rst new file mode 100644 index 000000000..1b77483ce --- /dev/null +++ b/docs/releases/1.12.5.rst @@ -0,0 +1,17 @@ +============================ +Wagtail 1.12.5 release notes +============================ + +.. contents:: + :local: + :depth: 1 + + +What's new +========== + +Bug fixes +~~~~~~~~~ + + * Pin django-taggit to <0.23 to restore Django 1.8 compatibility (Matt Westcott) + * Mark Beautiful Soup 4.6.1 as incompatible due to bug in formatting empty elements (Matt Westcott) diff --git a/docs/releases/1.12.6.rst b/docs/releases/1.12.6.rst new file mode 100644 index 000000000..5c0e0928c --- /dev/null +++ b/docs/releases/1.12.6.rst @@ -0,0 +1,16 @@ +============================ +Wagtail 1.12.6 release notes +============================ + +.. contents:: + :local: + :depth: 1 + + +What's new +========== + +Bug fixes +~~~~~~~~~ + + * Pin Beautiful Soup to 4.6.0 due to further regressions in formatting empty elements (Matt Westcott) diff --git a/docs/releases/1.13.2.rst b/docs/releases/1.13.2.rst new file mode 100644 index 000000000..f1d638b6a --- /dev/null +++ b/docs/releases/1.13.2.rst @@ -0,0 +1,19 @@ +============================ +Wagtail 1.13.2 release notes +============================ + +.. contents:: + :local: + :depth: 1 + + +What's new +========== + +Bug fixes +~~~~~~~~~ + + * Fix support of ``ATOMIC_REBUILD`` for projects with Elasticsearch client ``>=1.7.0`` (Mikalai Radchuk) + * Logging an indexing failure on an object with a non-ASCII representation no longer crashes on Python 2 (Aram Dulyan) + * Rich text image chooser no longer skips format selection after a validation error (Matt Westcott) + * Null characters in URLs no longer crash the redirect middleware on PostgreSQL (Matt Westcott) diff --git a/docs/releases/1.13.3.rst b/docs/releases/1.13.3.rst new file mode 100644 index 000000000..6b14242d7 --- /dev/null +++ b/docs/releases/1.13.3.rst @@ -0,0 +1,17 @@ +============================ +Wagtail 1.13.3 release notes +============================ + +.. contents:: + :local: + :depth: 1 + + +What's new +========== + +Bug fixes +~~~~~~~~~ + + * Pin django-taggit to <0.23 to restore Django 1.8 compatibility (Matt Westcott) + * Mark Beautiful Soup 4.6.1 as incompatible due to bug in formatting empty elements (Matt Westcott) diff --git a/docs/releases/1.13.4.rst b/docs/releases/1.13.4.rst new file mode 100644 index 000000000..5d491e864 --- /dev/null +++ b/docs/releases/1.13.4.rst @@ -0,0 +1,16 @@ +============================ +Wagtail 1.13.4 release notes +============================ + +.. contents:: + :local: + :depth: 1 + + +What's new +========== + +Bug fixes +~~~~~~~~~ + + * Pin Beautiful Soup to 4.6.0 due to further regressions in formatting empty elements (Matt Westcott) diff --git a/docs/releases/index.rst b/docs/releases/index.rst index c9220ebc9..303c48087 100644 --- a/docs/releases/index.rst +++ b/docs/releases/index.rst @@ -8,8 +8,14 @@ Release notes 2.0.2 2.0.1 2.0 + 1.13.4 + 1.13.3 + 1.13.2 1.13.1 1.13 + 1.12.6 + 1.12.5 + 1.12.4 1.12.3 1.12.2 1.12.1