Bump version to 1.17.0 (#8160)

* Bump version to 1.17.0

* Update missed cherry picks

* Add OpenAPI spec for v1.17.x
This commit is contained in:
Tim Visée
2026-02-19 13:35:11 +01:00
committed by GitHub
parent 38b5a9aaf0
commit 4ab6d2ee0f
8 changed files with 17276 additions and 7 deletions

4
Cargo.lock generated
View File

@@ -483,7 +483,7 @@ checksum = "5f0e0fee31ef5ed1ba1316088939cea399010ed7731dba877ed44aeb407a75ea"
[[package]]
name = "api"
version = "1.16.3"
version = "1.17.0"
dependencies = [
"ahash",
"chrono",
@@ -5398,7 +5398,7 @@ dependencies = [
[[package]]
name = "qdrant"
version = "1.16.3"
version = "1.17.0"
dependencies = [
"actix-cors",
"actix-files",

View File

@@ -1,6 +1,6 @@
[package]
name = "qdrant"
version = "1.16.3"
version = "1.17.0"
description = "Qdrant - Vector Search engine"
authors = [
"Andrey Vasnetsov <andrey@vasnetsov.com>",

View File

@@ -1 +1 @@
const defaultApiVersion = 'v1.16.x';
const defaultApiVersion = 'v1.17.x';

View File

@@ -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=v1.17.x" class="dropdown-item" type="button">v1.17.x</a>
<a href="?v=v1.16.x" class="dropdown-item" type="button">v1.16.x</a>
<a href="?v=v1.15.x" class="dropdown-item" type="button">v1.15.x</a>
<a href="?v=v1.14.x" class="dropdown-item" type="button">v1.14.x</a>

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
[package]
name = "api"
version = "1.16.3"
version = "1.17.0"
authors = [
"Andrey Vasnetsov <andrey@vasnetsov.com>",
"Qdrant Team <info@qdrant.tech>",

View File

@@ -6,7 +6,7 @@ use semver::Version;
use crate::cpu;
/// Current Qdrant version string
pub const QDRANT_VERSION_STRING: &str = "1.16.3";
pub const QDRANT_VERSION_STRING: &str = "1.17.0";
/// Current Qdrant semver version
pub static QDRANT_VERSION: LazyLock<Version> =

View File

@@ -8,7 +8,7 @@
set -euo pipefail
# Ignore all commits upto and including this commit hash on dev
IGNORE_UPTO=d523d9fb991092557a235805305bb5a1ace94b4a
IGNORE_UPTO=aa8740ff2304a9669a77aaff710dac304e0d3135
# Fetch latest branch info from remote
git fetch -q origin master