Skip to content

Releases: docarray/docarray

💫 Patch v0.14.6

03 Aug 18:26
933ddf0
Compare
Choose a tag to compare

Release Note (0.14.6)

Release time: 2022-08-03 18:25:38

🙇 We'd like to thank all contributors for this new release! In particular,
Han Xiao, Jina Dev Bot, 🙇

🐞 Bug fixes

  • [933ddf02] - plot: convert uint8 before plotting (#472) (Han Xiao)

🍹 Other Improvements

  • [04c50a75] - version: the next version will be 0.14.6 (Jina Dev Bot)

💫 Patch v0.14.5

03 Aug 09:25
ccf8e74
Compare
Choose a tag to compare

Release Note (0.14.5)

Release time: 2022-08-03 09:21:19

🙇 We'd like to thank all contributors for this new release! In particular,
Michael Günther, Jina Dev Bot, 🙇

🧼 Code Refactoring

  • [ccf8e741] - remove lru_cache decorator from _get_auth_token (#469) (Michael Günther)

🍹 Other Improvements

  • [07123faf] - version: the next version will be 0.14.5 (Jina Dev Bot)

💫 Patch v0.14.4

02 Aug 15:35
30486b2
Compare
Choose a tag to compare

Release Note (0.14.4)

Release time: 2022-08-02 15:34:45

🙇 We'd like to thank all contributors for this new release! In particular,
Joan Fontanals, Jina Dev Bot, 🙇

🐞 Bug fixes

  • [30486b2a] - fix plot bug recompute size (#468) (Joan Fontanals)

🍹 Other Improvements

  • [f5887584] - version: the next version will be 0.14.4 (Jina Dev Bot)

💫 Patch v0.14.3

02 Aug 11:24
951004e
Compare
Choose a tag to compare

Release Note (0.14.3)

Release time: 2022-08-02 11:24:02

🙇 We'd like to thank all contributors for this new release! In particular,
Alvin Prayuda, Jina Dev Bot, 🙇

🐞 Bug fixes

  • [951004ee] - elastic: handle bulk operation error info for another op type (#465) (Alvin Prayuda)

🍹 Other Improvements

  • [889b2ad8] - version: the next version will be 0.14.3 (Jina Dev Bot)

💫 Patch v0.14.2

02 Aug 11:03
be3bf21
Compare
Choose a tag to compare

Release Note (0.14.2)

Release time: 2022-08-02 11:02:28

🙇 We'd like to thank all contributors for this new release! In particular,
Joan Fontanals, Jina Dev Bot, 🙇

🐞 Bug fixes

  • [be3bf214] - fix getitem by ellipsis (#467) (Joan Fontanals)

🍹 Other Improvements

  • [dadce129] - version: the next version will be 0.14.2 (Jina Dev Bot)

💫 Patch v0.14.1

01 Aug 11:23
fa8b3d0
Compare
Choose a tag to compare

Release Note (0.14.1)

Release time: 2022-08-01 11:22:58

🙇 We'd like to thank all contributors for this new release! In particular,
Han Xiao, Jina Dev Bot, 🙇

🐞 Bug fixes

  • [fa8b3d0e] - use os urandom to generate doc id (#464) (Han Xiao)

🍹 Other Improvements

  • [8d6d3d21] - version: the next version will be 0.14.1 (Jina Dev Bot)

💫 Release v0.14.0

29 Jul 09:45
aa7306d
Compare
Choose a tag to compare

Highlights 🌟

Easily access multi-modal attributes ⚡


Now you can access modalities that you defined in a @dataclass like any other Document attribute.
This also leads to native integration of multi-modality in Jina Executor.

@dataclass
class MyDoc:
  image: Image

d = Document(MyDoc(image='apple.png'))
d.image  # returns Document containing the image tensor
d.image.tensor  # return the loaded image tensor

#425

Filters in .match method 🔍

Document.match can now take a filter argument:

filter = {'price': {'eq': 30}}
doc.match(da, filter=filter)

#378

Document stores 📄

  • Filter in ANNLite #331, #4012
  • Filter in Weaviate #373
  • Filter in ElasticSearch #375
  • Updated Qdrant version #326
  • Added support for all Weaviate HNSW configuration parameters #341
  • Open weaviate functionalities to docarray #415

Other changes ⚙️

  • Hubble: add public parameter to da.push #318
  • Make distance metric configurable in Weaviate backend #359
  • Load jina auth token from environment #368
  • Added es data type for long, double, bool #420
  • Plot: keep aspect ratio #427
  • Add gif export #428

Performance improvements ⚡

  • DocumentArray: use less memory for apply #312
  • Batch update on sqlite extend #340

Bug fixes 🪲

  • Fix find by vector of n_dim=1 #315
  • Apply HNSW parameters to the main class not the meta class #337
  • filter_dict works with zero and empty string #332
  • Cryptographic random generator for weaviate classnames #357
  • Update Qdrant to support python 3.7 #367
  • Windows: fix windows newline issue #364
  • Cast column to its correct type before insertion in database #392
  • Convert mesh tensor to nparray #404
  • Customize metric fn expect no metric_name #405
  • Elastic: update offset2ids management #416
  • Plot: remove empty black sprites on nonsquare length #431
  • Post handles version properly #441
  • Keep metadata when serializing to dict and json #443
  • Elastic: fix inconsistent offset on bulk index error and improve bulk performance #422

💫 Patch v0.13.33

21 Jul 12:27
bb132b3
Compare
Choose a tag to compare

Release Note (0.13.33)

Release time: 2022-07-21 12:27:03

🙇 We'd like to thank all contributors for this new release! In particular,
Johannes Messner, Han Xiao, Jina Dev Bot, 🙇

🆕 New Features

  • [bb132b30] - allow modalities of multimodal docs to be accessed (#425) (Johannes Messner)

🐞 Bug fixes

  • [64721a62] - keep _metadata when serializing to dict and json (#443) (Johannes Messner)

🍹 Other Improvements

  • [69926d41] - fix readme (Han Xiao)
  • [3d75db4f] - version: the next version will be 0.13.33 (Jina Dev Bot)

💫 Patch v0.13.32

16 Jul 22:30
Compare
Choose a tag to compare

Release Note (0.13.32)

Release time: 2022-07-16 22:30:10

🙇 We'd like to thank all contributors for this new release! In particular,
Han Xiao, Sa Zhang, Jina Dev Bot, 🙇

🐞 Bug fixes

📗 Documentation

  • [b8b202e5] - remove the closed discussion (#442) (Sa Zhang)

🍹 Other Improvements

  • [138e7b30] - version: the next version will be 0.13.32 (Jina Dev Bot)

💫 Patch v0.13.31

15 Jul 09:35
d16f10e
Compare
Choose a tag to compare

Release Note (0.13.31)

Release time: 2022-07-15 09:35:22

🙇 We'd like to thank all contributors for this new release! In particular,
Wang Bo, Joan Fontanals, Jina Dev Bot, 🙇

🐞 Bug fixes

  • [d16f10e7] - post should handle version properly (#441) (Wang Bo)

📗 Documentation

🍹 Other Improvements

  • [ee310acc] - version: the next version will be 0.13.31 (Jina Dev Bot)