Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@
Changelog
=========

Version 4.20.0
--------------
This minor version includes:
- Support for new 1.36 features:
- Server-side batching (SSB) is now GA via ``batch.stream`` (``batch.experimental`` is deprecated)
- Add ``collection.data.ingest`` as a new entry point for SSB usage in sync and async clients
- Add support for the new HFresh index type
- Add support for async replication configuration
- Add support for cancelling backup restore operations
- Add ``collection.config.delete_property_index`` to drop filterable, searchable, or range filter indices from properties
- Add ``client.cluster.statistics()`` method for retrieving cluster and Raft statistics
- Allow ``images`` and ``image_properties`` in Cohere generative config at runtime
- Provide options to specify custom gRPC SSL credentials for advanced connection setups
- Remove ``cache`` option from ``SQConfig`` and deprecate the field in the factory method
- Fix validation of nested object properties to allow ``id`` as a nested property name

Version 4.19.4
--------------
This patch version includes:
Expand Down
2 changes: 1 addition & 1 deletion weaviate/collections/classes/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@
_VectorIndexConfigCreate,
_VectorIndexConfigDynamicUpdate,
_VectorIndexConfigFlatUpdate,
_VectorIndexConfigHNSWUpdate,
_VectorIndexConfigHFreshUpdate,
_VectorIndexConfigHNSWUpdate,
_VectorIndexConfigUpdate,
)
from weaviate.collections.classes.config_vector_index import (
Expand Down
2 changes: 1 addition & 1 deletion weaviate/collections/classes/config_methods.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@
_StopwordsConfig,
_VectorIndexConfigDynamic,
_VectorIndexConfigFlat,
_VectorIndexConfigHNSW,
_VectorIndexConfigHFresh,
_VectorIndexConfigHNSW,
_VectorizerConfig,
)

Expand Down
2 changes: 1 addition & 1 deletion weaviate/collections/classes/config_named_vectors.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
_VectorIndexConfigCreate,
_VectorIndexConfigDynamicUpdate,
_VectorIndexConfigFlatUpdate,
_VectorIndexConfigHNSWUpdate,
_VectorIndexConfigHFreshUpdate,
_VectorIndexConfigHNSWUpdate,
_VectorIndexConfigUpdate,
)
from weaviate.collections.classes.config_vectorizers import (
Expand Down
4 changes: 2 additions & 2 deletions weaviate/collections/classes/config_vectors.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@
_VectorIndexConfigDynamicUpdate,
_VectorIndexConfigFlatCreate,
_VectorIndexConfigFlatUpdate,
_VectorIndexConfigHNSWCreate,
_VectorIndexConfigHNSWUpdate,
_VectorIndexConfigHFreshCreate,
_VectorIndexConfigHFreshUpdate,
_VectorIndexConfigHNSWCreate,
_VectorIndexConfigHNSWUpdate,
_VectorIndexConfigUpdate,
)
from weaviate.collections.classes.config_vectorizers import (
Expand Down
2 changes: 1 addition & 1 deletion weaviate/collections/config/async_.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ from weaviate.collections.classes.config import (
_VectorConfigCreate,
_VectorConfigUpdate,
_VectorIndexConfigFlatUpdate,
_VectorIndexConfigHNSWUpdate,
_VectorIndexConfigHFreshUpdate,
_VectorIndexConfigHNSWUpdate,
)
from weaviate.collections.classes.config_object_ttl import _ObjectTTLConfigUpdate
from weaviate.collections.classes.config_vector_index import _VectorIndexConfigDynamicUpdate
Expand Down
2 changes: 1 addition & 1 deletion weaviate/collections/config/executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@
_VectorConfigCreate,
_VectorConfigUpdate,
_VectorIndexConfigFlatUpdate,
_VectorIndexConfigHNSWUpdate,
_VectorIndexConfigHFreshUpdate,
_VectorIndexConfigHNSWUpdate,
)
from weaviate.collections.classes.config_methods import (
_collection_config_from_json,
Expand Down
2 changes: 1 addition & 1 deletion weaviate/collections/config/sync.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ from weaviate.collections.classes.config import (
_VectorConfigCreate,
_VectorConfigUpdate,
_VectorIndexConfigFlatUpdate,
_VectorIndexConfigHNSWUpdate,
_VectorIndexConfigHFreshUpdate,
_VectorIndexConfigHNSWUpdate,
)
from weaviate.collections.classes.config_object_ttl import _ObjectTTLConfigUpdate
from weaviate.collections.classes.config_vector_index import _VectorIndexConfigDynamicUpdate
Expand Down
2 changes: 1 addition & 1 deletion weaviate/outputs/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
ShardTypes,
VectorDistances,
VectorIndexConfigFlat,
VectorIndexConfigHNSW,
VectorIndexConfigHFresh,
VectorIndexConfigHNSW,
VectorIndexType,
VectorizerConfig,
Vectorizers,
Expand Down