From eefe30b77f60d7f1684a2b1bb8c96704781145e2 Mon Sep 17 00:00:00 2001 From: "opentdf-automation[bot]" <149537512+opentdf-automation[bot]@users.noreply.github.com> Date: Fri, 21 Nov 2025 21:42:49 +0000 Subject: [PATCH] chore(main): release sdk 0.11.0 --- .../release-please/release-please-manifest.json | 2 +- sdk/CHANGELOG.md | 14 ++++++++++++++ sdk/version.go | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/.github/release-please/release-please-manifest.json b/.github/release-please/release-please-manifest.json index dfc6542ab7..11569fc60f 100644 --- a/.github/release-please/release-please-manifest.json +++ b/.github/release-please/release-please-manifest.json @@ -4,6 +4,6 @@ "lib/flattening": "0.1.3", "lib/identifier": "0.2.0", "protocol/go": "0.13.0", - "sdk": "0.10.0", + "sdk": "0.11.0", "service": "0.11.0" } \ No newline at end of file diff --git a/sdk/CHANGELOG.md b/sdk/CHANGELOG.md index aabcbc9044..81389ebfa3 100644 --- a/sdk/CHANGELOG.md +++ b/sdk/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [0.11.0](https://github.com/opentdf/platform/compare/sdk/v0.10.0...sdk/v0.11.0) (2025-11-21) + + +### Features + +* **sdk:** adds configurable max manifest sizes ([#2906](https://github.com/opentdf/platform/issues/2906)) ([e418a4b](https://github.com/opentdf/platform/commit/e418a4b675f34c0cc3aafbe5ca4c8c9ba93187b5)) +* **sdk:** Expose policy binding hash from Nano. ([#2857](https://github.com/opentdf/platform/issues/2857)) ([5221cf4](https://github.com/opentdf/platform/commit/5221cf41079fc43a3966e17c6f3e0d3cf8a16730)) + + +### Bug Fixes + +* **deps:** bump toolchain to go1.24.9 for CVEs found by govulncheck ([#2849](https://github.com/opentdf/platform/issues/2849)) ([23f76c0](https://github.com/opentdf/platform/commit/23f76c034cfb4c325d868eb96c95ba616e362db4)) +* **sdk:** more efficient encryption in experiment TDF Writer ([#2904](https://github.com/opentdf/platform/issues/2904)) ([3ec0518](https://github.com/opentdf/platform/commit/3ec05180ab567e78def51be90b10dd137f3a1f61)) + ## [0.10.0](https://github.com/opentdf/platform/compare/sdk/v0.9.0...sdk/v0.10.0) (2025-10-21) diff --git a/sdk/version.go b/sdk/version.go index a8c399be95..c9a4209a05 100644 --- a/sdk/version.go +++ b/sdk/version.go @@ -7,5 +7,5 @@ const ( TDFSpecVersion = "4.3.0" // The three-part semantic version number of this SDK - Version = "0.10.0" // x-release-please-version + Version = "0.11.0" // x-release-please-version )