Skip to content

Commit

Permalink
Merge pull request #146 from wagtail/release-prep
Browse files Browse the repository at this point in the history
Release prep
  • Loading branch information
harrislapiroff authored Mar 22, 2023
2 parents 86fd940 + 2ad7f84 commit c16d917
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 1 deletion.
30 changes: 30 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,36 @@
Changelog
=========

0.10 Release
------------

* Change the search view to use the HTTP POST method, which can prevent the request URI from becoming too long.
* New feature: add the possibility of a custom filter function.

0.9 Release
-----------

* Add Wagtail 3.x compatibility

0.8.1 Release
-------------

* Change in behavior: the autocomplete endpoint will return a 404 response if no objects are found.
* Update Javascript dependencies to remove security vulnerabilities.

0.7 Release
-----------

* Breaking change: Drop deprecated ``page_type`` and ``is_single`` arguments from ``AutocompletePanel``.
* Update the panel and widget codes based on panels of ``wagtail.admin.edit_handlers`` -- mainly ``PageChooserPanel``.
* Update Javascript dependencies to remove security vulnerabilities.
* Update use of deprecated ``django.conf.urls.url`` function.

0.6.3 Release
-------------

* Remove native browser autocomplete form field.

0.6 Release
-----------

Expand Down
2 changes: 1 addition & 1 deletion wagtailautocomplete/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
VERSION = (0, 9, 0)
VERSION = (0, 10, 0)
__version__ = '.'.join([str(x) for x in VERSION])

0 comments on commit c16d917

Please sign in to comment.