diff --git a/CHANGELOG.txt b/CHANGELOG.txt index cd3f386b63..3d3f1cafd4 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -12,6 +12,7 @@ Changelog * Preserve links when copy-pasting rich text content from Wagtail to other tools (Thibaud Colas) * Rich text to contentstate conversion now prioritises more specific rules, to accommodate `
` and `
` elements with attributes (Matt Westcott)
* Added limit image upload size by number of pixels (Thomas Elliott)
+ * Added `manage.py wagtail_update_index` alias to avoid clashes with `update_index` commands from other packages (Matt Westcott)
* Fix: Set `SERVER_PORT` to 443 in `Page.dummy_request()` for HTTPS sites (Sergey Fedoseev)
* Fix: Include port number in `Host` header of `Page.dummy_request()` (Sergey Fedoseev)
* Fix: Validation error messages in `InlinePanel` no longer count towards `max_num` when disabling the 'add' button (Todd Dembrey, Thibaud Colas)
diff --git a/docs/reference/management_commands.rst b/docs/reference/management_commands.rst
index 8a897d3e82..3b9e212501 100644
--- a/docs/reference/management_commands.rst
+++ b/docs/reference/management_commands.rst
@@ -93,6 +93,14 @@ You can prevent the ``update_index`` command from indexing any data by using the
$ python manage.py update_index --schema-only
+.. _wagtail_update_index:
+
+wagtail_update_index
+--------------------
+
+An alias for the ``update_index`` command that can be used when another installed package (such as `Haystack
`` and ``
`` elements with attributes (Matt Westcott)
* Added limit image upload size by number of pixels (Thomas Elliott)
+ * Added ``manage.py wagtail_update_index`` alias to avoid clashes with ``update_index`` commands from other packages (Matt Westcott)
Bug fixes
diff --git a/docs/topics/search/indexing.rst b/docs/topics/search/indexing.rst
index ba136f094f..ad787dde12 100644
--- a/docs/topics/search/indexing.rst
+++ b/docs/topics/search/indexing.rst
@@ -56,6 +56,10 @@ It is recommended to run this command once a week and at the following times:
The search may not return any results while this command is running, so avoid running it at peak times.
+.. note::
+
+ The ``update_index`` command is also aliased as ``wagtail_update_index``, for use when another installed package (such as `Haystack