mirror of
https://github.com/qdrant/qdrant.git
synced 2026-07-23 11:11:00 -05:00
v0.7.0 - upd version and docs (#462)
* upd version and docs * fix clippy
This commit is contained in:
2
Cargo.lock
generated
2
Cargo.lock
generated
@@ -2465,7 +2465,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "qdrant"
|
||||
version = "0.6.0"
|
||||
version = "0.7.0"
|
||||
dependencies = [
|
||||
"actix-web",
|
||||
"api",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "qdrant"
|
||||
version = "0.6.0"
|
||||
version = "0.7.0"
|
||||
authors = ["Andrey Vasnetsov <andrey@vasnetsov.com>"]
|
||||
edition = "2021"
|
||||
doctest = false
|
||||
|
||||
@@ -1 +1 @@
|
||||
const defaultApiVersion = 'v0.6.0';
|
||||
const defaultApiVersion = 'v0.7.0';
|
||||
@@ -39,6 +39,7 @@
|
||||
</button>
|
||||
<div class="dropdown-menu dropdown-menu-right">
|
||||
<a href="?v=master" class="dropdown-item" type="button">master</a>
|
||||
<a href="?v=v0.7.0" class="dropdown-item" type="button">v0.7.0</a>
|
||||
<a href="?v=v0.6.0" class="dropdown-item" type="button">v0.6.0</a>
|
||||
<a href="?v=v0.5.1" class="dropdown-item" type="button">v0.5.1</a>
|
||||
<a href="?v=v0.5.0" class="dropdown-item" type="button">v0.5.0</a>
|
||||
|
||||
3595
docs/redoc/v0.7.0/openapi.json
Normal file
3595
docs/redoc/v0.7.0/openapi.json
Normal file
File diff suppressed because it is too large
Load Diff
@@ -357,6 +357,7 @@ mod tests {
|
||||
blocks[0]
|
||||
.condition
|
||||
.range
|
||||
.as_ref()
|
||||
.expect("range condition")
|
||||
.gte
|
||||
.expect("gte"),
|
||||
@@ -366,6 +367,7 @@ mod tests {
|
||||
blocks[0]
|
||||
.condition
|
||||
.range
|
||||
.as_ref()
|
||||
.expect("range condition")
|
||||
.lte
|
||||
.expect("lte"),
|
||||
|
||||
@@ -158,7 +158,7 @@ fn get_match_checkers(index: &FieldIndex, cond_match: Match) -> Option<Condition
|
||||
impl<'a> FilterContext for StructFilterContext<'a> {
|
||||
fn check(&self, point_id: PointOffsetType) -> bool {
|
||||
// At least one primary condition should be satisfied - that is necessary, but not sufficient condition
|
||||
if !self.checkers.is_empty() && !self.checkers.iter().any(|foo| foo(point_id)) {
|
||||
if !self.checkers.is_empty() && !self.checkers.iter().any(|check| check(point_id)) {
|
||||
false
|
||||
} else {
|
||||
self.condition_checker.check(point_id, self.filter)
|
||||
|
||||
@@ -590,7 +590,7 @@ impl From<IntPayloadType> for Match {
|
||||
}
|
||||
|
||||
/// Range filter request
|
||||
#[derive(Debug, Deserialize, Serialize, JsonSchema, Copy, Clone, PartialEq)]
|
||||
#[derive(Debug, Deserialize, Serialize, JsonSchema, Clone, PartialEq)]
|
||||
#[serde(rename_all = "snake_case")]
|
||||
pub struct Range {
|
||||
/// point.key < range.lt
|
||||
|
||||
Reference in New Issue
Block a user