Releases: weaviate/weaviate-python-client
v3.5.1
This patch version fixes:
- the
reranknot being set bug inclient.query.get().with_ask(). - the bug when using double quotes(
") inquestionfield inclient.query.get().with_ask(). - the bug where
nearTextfilter checks for objects inmoveXXXclause but never sets it.
v3.5.0
This minor version contains functionality for the new features introduced in Weaviate v1.13.0.
-
New
Batchmethod.delete_objects(...)to delete all objects that match a particular expression (wherefilter). -
New
GetBuildermethod.with_sort(...)that allows sorting data on a particular field/s. -
New
AggregateBuildermethod.with_near_text(...)that allows to aggregate data that is matchingnearTextfilter. -
New
AggregateBuildermethod.with_near_object(...)that allows to aggregate data that is matchingnearObjectfilter. -
New
AggregateBuildermethod.with_near_vector(...)that allows to aggregate data that is matchingnearVectorfilter.
v3.4.2
Another bug fix in DataObject.exists.
v3.4.1
bug fix in DataObject.exists.
v3.4.0
Version 3.4.0
- This minor version fixes the bug in setting the Schema's
invertedIndexConfigfield. - 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
This patch fixes the 'Batch' object is not callable error.
v3.2.4
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 justCLASS_Xas well.
v3.2.3
This patch fixes the with_near_object() method. It uses now explicit string literals for id/beacon in nearoOject clauses.
v3.2.2
This patch adds support for array data types: boolean[] and date[].
v3.2.1
This patch adds support for array data types: int[], number[], text[], string[].