diff --git a/.github/release-please/release-please-manifest.json b/.github/release-please/release-please-manifest.json index 9aebd4d50c..ebbf8c7359 100644 --- a/.github/release-please/release-please-manifest.json +++ b/.github/release-please/release-please-manifest.json @@ -5,6 +5,6 @@ "lib/identifier": "0.4.0", "otdfctl": "0.33.0", "protocol/go": "0.34.0", - "sdk": "0.23.0", + "sdk": "0.24.0", "service": "0.17.0" } \ No newline at end of file diff --git a/sdk/CHANGELOG.md b/sdk/CHANGELOG.md index ab84018332..20e169b465 100644 --- a/sdk/CHANGELOG.md +++ b/sdk/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## [0.24.0](https://github.com/opentdf/platform/compare/sdk/v0.23.0...sdk/v0.24.0) (2026-06-23) + + +### ⚠ BREAKING CHANGES + +* **core:** conform hybrid PQ/T key formats to IETF drafts ([#3563](https://github.com/opentdf/platform/issues/3563)) + +### Features + +* **core:** Adds comprehensive DPoP (RFC 9449) support ([#3582](https://github.com/opentdf/platform/issues/3582)) ([8a00646](https://github.com/opentdf/platform/commit/8a006469dc6e55455a2ce4715415671d39670ef6)) +* **core:** conform hybrid PQ/T key formats to IETF drafts ([#3563](https://github.com/opentdf/platform/issues/3563)) ([dc18568](https://github.com/opentdf/platform/commit/dc1856831383de1c5880121518c0fb83c429a5a5)) + + +### Bug Fixes + +* **deps:** bump github.com/opentdf/platform/lib/ocrypto from 0.12.0 to 0.13.0 in /sdk ([#3654](https://github.com/opentdf/platform/issues/3654)) ([67c4992](https://github.com/opentdf/platform/commit/67c499259f646727e7127e20fe1174010477b2d0)) + ## [0.23.0](https://github.com/opentdf/platform/compare/sdk/v0.22.0...sdk/v0.23.0) (2026-06-18) diff --git a/sdk/version.go b/sdk/version.go index b878979efc..52a0a3a195 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.23.0" // x-release-please-version + Version = "0.24.0" // x-release-please-version )