Skip to content

Releases: wagtail/wagtail-autocomplete

Version 0.11.0

28 Nov 19:22
v0.11.0
0cfc28d
Compare
Choose a tag to compare
  • Add handling of validation errors during creation of objects. This means when you write an autocomplete_create method on one of your Django models, you can raise a ValidationError during that method and wagtail-autocomplete will catch it and return a 400 response to the client, which gives the end-user a more informative error message.
  • Fix bug where searches failed if Django's CSRF cookie was configured with CSRF_COOKIE_HTTPONLY set to True
  • Update Javascript dependencies to remove security vulnerabilities.

Version 0.10.0

22 Mar 15:42
c16d917
Compare
Choose a tag to compare
  • 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.

Version 0.9.0

01 Sep 19:34
482eb0a
Compare
Choose a tag to compare
  • Add Wagtail 3.x compatibility

Version 0.8.1

17 May 15:21
6d1bb98
Compare
Choose a tag to compare
  • Change in behavior: the autocomplete endpoint will return a 404 response if no objects are found.
  • Update Javascript dependencies to remove security vulnerabilities

Version 0.7.0

27 Sep 15:17
44a7d09
Compare
Choose a tag to compare
  • 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
  • Security updates of NPM dependencies
  • Update use of deprecated django.conf.urls.url function.

Version 0.6.3

12 Apr 20:45
v0.6.3
3fc999f
Compare
Choose a tag to compare
  • Remove native browser autocomplete from field

Version 0.6

16 Jun 21:59
v0.6
8446870
Compare
Choose a tag to compare
* Add Wagtail 2.8 support

v0.5: v.0.5: Version 0.5

21 Feb 21:45
v0.5
c5774ee
Compare
Choose a tag to compare
* Add Django 3.0 support
* Remove Wagtail 1.x support (Wagtail 2.3 or later now required)
* Documentation fixes

v0.4: Version 0.4

21 Feb 21:44
v0.4
8610356
Compare
Choose a tag to compare
* Deprecate is_single option, make target_model optional. AutocompletePanel will now automatically derive these attributes from the field. (#48)
* Remove compatibility for all Python 2.x and Wagtail 1.x versions (#53)

v0.3.1

11 Mar 19:17
v0.3.1
065be8b
Compare
Choose a tag to compare
  • Correct documentation for installing tests
  • Correct errors raised by endpoints