Skip to content

Commit a663c46

Browse files
committed
chore: Merge branch 'release/5.11.1' into develop
2 parents e99c84a + bf45394 commit a663c46

File tree

36 files changed

+99
-88
lines changed

36 files changed

+99
-88
lines changed

.github/copilot-instructions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Always reference these instructions first and fallback to search or bash command
6565
- **CRITICAL**: Always manually test server functionality after making changes by starting the server and verifying it responds to HTTP requests
6666
- Test server startup: Start server with `--database-type sqlite --sqlite-path /tmp/test-db`
6767
- Test API responses: `curl -s -X POST -H "Content-Type: application/json" -d '{}' http://localhost:9998/kmip/2_1` should return KMIP validation error (confirms server is working)
68-
- Test server version: `./target/release/cosmian_kms --version` should show version 5.11.0
68+
- Test server version: `./target/release/cosmian_kms --version` should show version 5.11.1
6969
- OpenSSL validation: `./target/release/cosmian_kms --info` should show OpenSSL 3.2.0
7070
- Static linking check: `ldd ./target/release/cosmian_kms | grep ssl` should return empty (no dynamic OpenSSL)
7171
- Always run `cargo fmt --check` before committing (takes 3 seconds)
@@ -157,7 +157,7 @@ curl -s -X POST -H "Content-Type: application/json" -d '{}' http://localhost:999
157157

158158
# Check version and OpenSSL
159159
./target/release/cosmian_kms --version
160-
# Expected: "cosmian_kms_server 5.11.0"
160+
# Expected: "cosmian_kms_server 5.11.1"
161161

162162
./target/release/cosmian_kms --info
163163
# Expected: Output containing "OpenSSL 3.2.0"

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [5.11.1] - 2025-11-04
6+
7+
### 📚 Documentation
8+
9+
- Rework KMIP support documentation (#595)
10+
- Remove double entry on KMIP Support
11+
12+
### 🧪 Testing
13+
14+
- *(windows)*: Enable test on whole workspace(#593)
15+
516
## [5.11.0] - 2025-10-28
617

718
### 🚀 Features

Cargo.lock

Lines changed: 18 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ map_err_ignore = "deny"
8585
redundant_clone = "deny"
8686

8787
[workspace.package]
88-
version = "5.11.0"
88+
version = "5.11.1"
8989
edition = "2024"
9090
rust-version = "1.87.0"
9191
authors = [

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
FROM rust:1.86.0-bookworm AS builder
55

6-
LABEL version="5.11.0"
6+
LABEL version="5.11.1"
77
LABEL name="Cosmian KMS docker container"
88
LABEL org.opencontainers.image.description="Cosmian KMS docker container"
99
LABEL org.opencontainers.image.title="Cosmian KMS"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ The KMS has extensive online [documentation](https://docs.cosmian.com/key_manage
9393

9494
## Quick start
9595

96-
Pre-built binaries [are available](https://package.cosmian.com/kms/5.11.0/)
96+
Pre-built binaries [are available](https://package.cosmian.com/kms/5.11.1/)
9797
for Linux, MacOS, and Windows, as well as Docker images. To run the server binary, OpenSSL must be
9898
available in your path (see "building the KMS" below for details); other binaries do not have this
9999
requirement.

crate/access/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ doctest = false
2121
[features]
2222

2323
[dependencies]
24-
cosmian_kmip = { path = "../kmip", version = "5.11.0", default-features = true }
24+
cosmian_kmip = { path = "../kmip", version = "5.11.1", default-features = true }
2525
serde = { workspace = true }

crate/cli/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ clap = { workspace = true, features = [
4343
"cargo",
4444
] }
4545
cosmian_config_utils = { workspace = true }
46-
cosmian_kmip = { path = "../kmip", version = "5.11.0" } # only to be reexported, not used directly
47-
cosmian_kms_client = { path = "../kms_client", version = "5.11.0" }
48-
cosmian_kms_crypto = { path = "../crypto", version = "5.11.0" }
46+
cosmian_kmip = { path = "../kmip", version = "5.11.1" } # only to be reexported, not used directly
47+
cosmian_kms_client = { path = "../kms_client", version = "5.11.1" }
48+
cosmian_kms_crypto = { path = "../crypto", version = "5.11.1" }
4949
cosmian_logger = { workspace = true }
5050
der = { workspace = true, features = ["pem"] }
5151
hex = { workspace = true }

crate/client_utils/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ non-fips = ["cosmian_kmip/non-fips"]
2626
base64 = { workspace = true }
2727
clap = { workspace = true, features = ["std", "derive"] }
2828
cosmian_config_utils = { workspace = true }
29-
cosmian_kmip = { path = "../kmip", version = "5.11.0" }
30-
cosmian_kms_access = { path = "../access", version = "5.11.0" }
29+
cosmian_kmip = { path = "../kmip", version = "5.11.1" }
30+
cosmian_kms_access = { path = "../access", version = "5.11.1" }
3131
cosmian_logger = { workspace = true }
3232
pem = { workspace = true }
3333
serde = { workspace = true }

crate/crypto/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ argon2 = { version = "0.5", optional = true }
3636
base64 = { workspace = true }
3737
cosmian_cover_crypt = { version = "15.0", optional = true }
3838
cosmian_crypto_core = { workspace = true }
39-
cosmian_kmip = { path = "../kmip", version = "5.11.0" }
39+
cosmian_kmip = { path = "../kmip", version = "5.11.1" }
4040
cosmian_logger = { workspace = true }
4141
hex = { workspace = true }
4242
num-bigint-dig = { workspace = true, features = [

0 commit comments

Comments
 (0)