Bump version to 1.18.0 (#8959)

* Bump version to 1.18.0

* Update missed cherry picks

* Add OpenAPI spec for v1.18.x
This commit is contained in:
Tim Visée
2026-05-08 17:26:56 +02:00
committed by GitHub
parent ca1971ad4f
commit fd6746ea95
8 changed files with 17846 additions and 7 deletions

4
Cargo.lock generated
View File

@@ -478,7 +478,7 @@ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
[[package]]
name = "api"
version = "1.17.1"
version = "1.18.0"
dependencies = [
"ahash",
"chrono",
@@ -5784,7 +5784,7 @@ dependencies = [
[[package]]
name = "qdrant"
version = "1.17.1"
version = "1.18.0"
dependencies = [
"actix-cors",
"actix-files",

View File

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

View File

@@ -1 +1 @@
const defaultApiVersion = 'v1.17.x';
const defaultApiVersion = 'v1.18.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.18.x" class="dropdown-item" type="button">v1.18.x</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>

File diff suppressed because it is too large Load Diff

View File

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

View File

@@ -7,7 +7,7 @@ use semver::Version;
use crate::cpu;
/// Current Qdrant version string
pub const QDRANT_VERSION_STRING: &str = "1.17.1";
pub const QDRANT_VERSION_STRING: &str = "1.18.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=fb704e5d13854963fc1886220de88a9340bb9e30
IGNORE_UPTO=ca1971ad4ff71eb4f46686ca27ecff0e4147d94f
# Fetch latest branch info from remote
git fetch -q origin master