Skip to content

Releases: django-es/django-elasticsearch-dsl

8.0

01 Oct 19:13
44b25a4
Compare
Choose a tag to compare

New

Removed

  • Removing support for Python 2.7, 3.6 & 3.7 and Django 1.11, 2.0, 2.1, 2.2, 3.0, 3.1 & 4.0 by @irtazaakram in #460

New Contributors

Full Changelog: 7.4...8.0

7.4

01 Oct 17:53
18752d6
Compare
Choose a tag to compare
7.4

New Feature

What's Changed

New Contributors

Full Changelog: 7.3...7.4

7.3

03 Feb 11:51
6e7a3f9
Compare
Choose a tag to compare
7.3

New

What's Changed

New Contributors

Full Changelog: 7.2.2...7.3

7.2.2

11 Jan 20:19
278a0d0
Compare
Choose a tag to compare
  • Add output_field to preserved_order CASE #381, @dhvcc
  • [Upgrade] Add support for Django 4.0 #387 @bence92

7.2.1

18 Oct 23:56
1b33fb0
Compare
Choose a tag to compare

7.2.0

17 Apr 10:49
e337af5
Compare
Choose a tag to compare
  • Adding SearchAsYouType Field (#303)
  • Updated ObjectField to allow for unmapped keys (#302)
  • Improved support for refresh during updates (#323)
  • Adding API for filtering objects while indexing (#301)

6.5.0

09 Dec 13:48
5f388a6
Compare
Choose a tag to compare

Releasing backward compatible release for Elasticsearch 6.x

7.1.4

05 Jul 08:03
5ad0ee0
Compare
Choose a tag to compare
  • Configure Elasticsearch _id dynamically from document (#272)
  • Use chain.from_iterable in for performance improvement (#278)
  • Handle case where SimpleLazyObject being treated as an Iterable (#255)
  • Camelcase default value in management command (#254)
  • Various updates and fixup in docs (#250, #276)
  • Start testing against Python 3.8 (#266)

7.1.1

26 Dec 16:03
4167fd8
Compare
Choose a tag to compare
  • Adding detailed documentation and published to Read The Docs (#222). Thanks @alexgarel
  • Resolve name resolution while delete, create index (#228)
  • Added support for Django 3.0 (#230). Thanks @noamkush
  • Removing old Elasticsearc compatibility (#219)

7.1.0

28 Oct 19:16
c93e065
Compare
Choose a tag to compare
  • Support for Django DecimalField #141
  • Indexing speedup by using parallel indexing and using iterator. #213. thanks @mjl
    Its already faster to index now by default moreover if
    you want parallel indexing to get more performance boost,
    you can pass --parallel in management command
    or set ELASTICSEARCH_DSL_PARALLEL
    in your settings and it will chunk your data and index it with parallel request.
  • Fixing name resolution in management command #206
  • Small documentation fixes. #196