Skip to content

Releases: wallneradam/esorm

v0.6.7

23 Nov 10:57
Compare
Choose a tag to compare

You can now raise esorm.error.ConflictError to retry in retry_on_conflict decorated functions and methods. It is useful if you want to force retry by your logic not just with an ES conflict.

v0.6.6

21 Nov 21:20
Compare
Choose a tag to compare

Make Sort and Pagination wrapped classes serializable (by pickle)

v0.6.5

21 Nov 19:07
Compare
Choose a tag to compare

Fixed watcher naming

v0.6.4

20 Nov 10:45
Compare
Choose a tag to compare
  • Auto reload in retry_on_conflict if it decorates a model method
  • Fixed concurrency check in bulk operations, when _seq_no=0

v0.6.3

08 Nov 15:43
Compare
Choose a tag to compare
  • Float types no longer show Pydantic warnings on save
  • Fix index argument of Field
  • Added tests for ES fields

v0.6.2

06 Nov 14:49
Compare
Choose a tag to compare
  • Add support for 7.x elasticsearch lib
  • support Python 3.8 again

v0.6.1

03 Oct 16:25
Compare
Choose a tag to compare

The connect function accepts None in hosts argument. This solves #21.

v0.6.0

03 Oct 15:23
Compare
Choose a tag to compare
  • Field alias support: you can name a field other than the name in ES
  • IP addresses (IPvAddressAny) support
  • Enum field support

v0.5.2

02 Aug 18:53
Compare
Choose a tag to compare

Fixed: list of ES primitives now works

v0.5.1

02 Aug 13:43
Compare
Choose a tag to compare

Support list of primitives

  • Updated documentation
  • Added tests