From c585fbac7200b9ce1ae42719ee0863f94c90d86d Mon Sep 17 00:00:00 2001 From: sre-ci-robot <56469371+sre-ci-robot@users.noreply.github.com> Date: Sun, 4 Jan 2026 12:01:22 +0800 Subject: [PATCH] [automated] Bump milvus version to v2.6.8 (#46732) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bump milvus version to v2.6.8 Signed-off-by: sre-ci-robot sre-ci-robot@users.noreply.github.com **Core Invariant**: This PR assumes the Milvus v2.6.8 Docker image is a stable, compatible release that can transparently replace v2.6.7 in standalone embed configurations without breaking backward compatibility. **What Changed**: Updated the Milvus Docker image tag from `v2.6.7` to `v2.6.8` in two standalone embedding configuration scripts: - `scripts/standalone_embed.bat` (line 83) - `scripts/standalone_embed.sh` (line 62) **Why This Is Safe**: These scripts only specify the container image version and pass through pre-existing configuration files (`embedEtcd.yaml`, `user.yaml`) to the container. No local logic, data schemas, or API contracts are modified—the container startup behavior remains identical, just pulling a newer upstream image tag. Version increments within the same major.minor series (v2.6.x) follow semantic versioning conventions ensuring no breaking changes. **Impact**: Users pulling or running these standalone embed scripts will automatically use the newer v2.6.8 Milvus release, receiving bug fixes and enhancements from the patch version bump while maintaining compatible behavior with existing configurations. Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- scripts/standalone_embed.bat | 2 +- scripts/standalone_embed.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/standalone_embed.bat b/scripts/standalone_embed.bat index 0e64ff5921..6379d24af0 100644 --- a/scripts/standalone_embed.bat +++ b/scripts/standalone_embed.bat @@ -80,7 +80,7 @@ docker run -d ^ --health-start-period=90s ^ --health-timeout=20s ^ --health-retries=3 ^ - milvusdb/milvus:v2.6.7 ^ + milvusdb/milvus:v2.6.8 ^ milvus run standalone >nul if %errorlevel% neq 0 ( echo Failed to start Milvus container. diff --git a/scripts/standalone_embed.sh b/scripts/standalone_embed.sh index a39532f806..9c218c0579 100644 --- a/scripts/standalone_embed.sh +++ b/scripts/standalone_embed.sh @@ -59,7 +59,7 @@ EOF --health-start-period=90s \ --health-timeout=20s \ --health-retries=3 \ - milvusdb/milvus:v2.6.7 \ + milvusdb/milvus:v2.6.8 \ milvus run standalone 1> /dev/null }