Releases: qdrant/rust-client
Releases · qdrant/rust-client
1.1.2
This is a minor release with two important changes
- Payload can be built from JSON
- Protoc is no longer required to build the project
Improvements
- Update README.md by @ccqpein in #34
- Fix(doc):
config
must be mutable toset_api_key
by @paulotten in #31 - Payload serde-json support by @agourlay in #37
- Move build script to test by @llogiq in #39
- Update to tonic 0.9 by @agourlay in #40
- Check linting on CI by @agourlay in #42
New Contributors
- @ccqpein made their first contribution in #34
- @paulotten made their first contribution in #31
- @llogiq made their first contribution in #39
Full Changelog: v1.1.1...v1.1.2
v0.10.1
Backward compatibility release
Proposed update process with minimal downtime:
- Update qdrant from
v0.9.1
->v0.10.0
- Update qdrant client to
v0.10.0
- Update qdrant to
v0.10.1
- Update qdrant client to
v0.10.1
Version compatibility | client v0.9.x | client v0.10.0 | client v0.10.1 |
---|---|---|---|
qdrant v0.9.1 | + | - | - |
qdrant v0.10.0 | + | + | |
qdrant v0.10.1 | - | + | + |
v0.10.0
Changelog
- Support for qdrant v0.10.0 and v0.10.1
Version compatibility | client v0.9.x | client v0.10.0 | client v0.10.1 |
---|---|---|---|
qdrant v0.9.1 | + | - | - |
qdrant v0.10.0 | + | + | |
qdrant v0.10.1 | - | + | + |
API changes:
API changes:
vector_size
anddistance
are replaced withvectors_config
field_type
replaced withfield_schema
in payload indexing requestwith_vector
param replaced withwith_vectors
, allowing to specify which exact vector to returnvector
replaced withvectors
and according data structure in point update APIs
impl Into
conversion is available for Vector
, Vectors
, WithVectorsSelector
, which makes usage of higher level API esier.