Skip to content

Releases: weaviate/weaviate-python-client

v3.5.1

18 May 10:25
aed91df

Choose a tag to compare

This patch version fixes:

  • the rerank not being set bug in client.query.get().with_ask().
  • the bug when using double quotes(") in question field in client.query.get().with_ask().
  • the bug where nearText filter checks for objects in moveXXX clause but never sets it.

v3.5.0

08 May 14:11
2d51804

Choose a tag to compare

This minor version contains functionality for the new features introduced in Weaviate v1.13.0.

  • New Batch method .delete_objects(...) to delete all objects that match a particular expression (where filter).

  • New GetBuilder method .with_sort(...) that allows sorting data on a particular field/s.

  • New AggregateBuilder method .with_near_text(...) that allows to aggregate data that is matching nearText filter.

  • New AggregateBuilder method .with_near_object(...) that allows to aggregate data that is matching nearObject filter.

  • New AggregateBuilder method .with_near_vector(...) that allows to aggregate data that is matching nearVector filter.

v3.4.2

12 Apr 14:55
75ca461

Choose a tag to compare

Another bug fix in DataObject.exists.

v3.4.1

06 Apr 09:38
036886b

Choose a tag to compare

bug fix in DataObject.exists.

v3.4.0

04 Apr 12:23
e22ac42

Choose a tag to compare

Version 3.4.0

  • This minor version fixes the bug in setting the Schema's invertedIndexConfig field.
  • New method client.chema.get_class_shards() to get all shards configuration of a particular class.
  • New method client.schema.update_class_shard() to update one/all shard/s configuration of a particular class.
  • Support for new Property field: tokenization.

v3.2.5

26 Oct 15:49
af36926

Choose a tag to compare

This patch fixes the 'Batch' object is not callable error.

v3.2.4

26 Oct 10:08
30d5808

Choose a tag to compare

All class_name and cross-refs dataType are implicitly capitalized. (This functionality is added because if class_name is not capitalized then Weaviate server does it for you, and this was leading to errors where the client and server have different configurations.)

Fixes/updates in Schema class:

  • This patch fixes the contains() to accept separate class schemas as argument i.e. it does not expect to have only this format: {"classes": [CLASS_1, CLASS_2, ...]}; now it is possible to pass just CLASS_X as well.

v3.2.3

13 Oct 07:54
646e8a4

Choose a tag to compare

This patch fixes the with_near_object() method. It uses now explicit string literals for id/beacon in nearoOject clauses.

v3.2.2

27 Sep 14:17
7a0f018

Choose a tag to compare

This patch adds support for array data types: boolean[] and date[].

v3.2.1

02 Sep 10:27

Choose a tag to compare

This patch adds support for array data types: int[], number[], text[], string[].