From 2eef0ce016d41454dd4f231da84915974e1dcaaf Mon Sep 17 00:00:00 2001 From: "ds-release-bot[bot]" <116609932+ds-release-bot[bot]@users.noreply.github.com> Date: Thu, 25 Jun 2026 04:32:33 +0000 Subject: [PATCH] chore(main): release 0.6.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 17 +++++++++++++++++ Cargo.toml | 16 ++++++++-------- 3 files changed, 26 insertions(+), 9 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 210d290..bcd0522 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.5.1" + ".": "0.6.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index a06c262..03b7159 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## [0.6.0](https://github.com/developmentseed/multistore/compare/v0.5.1...v0.6.0) (2026-06-25) + + +### ⚠ BREAKING CHANGES + +* RoleConfig.required_audience renamed to required_audiences. Code constructing RoleConfig must update the field; serialized configs using `required_audience` continue to work. + +### Features + +* accept multiple audiences for STS role validation ([#90](https://github.com/developmentseed/multistore/issues/90)) ([1fb09fa](https://github.com/developmentseed/multistore/commit/1fb09facf13c2822f59955734a7c5bbd76cc5b51)) +* data edit operations — batch delete, copy rejection, wider write headers ([#88](https://github.com/developmentseed/multistore/issues/88)) ([55e3a32](https://github.com/developmentseed/multistore/commit/55e3a32277ce707fed2b3825e28a0bd4f988c891)) + + +### Miscellaneous Chores + +* release 0.6.0 ([072544d](https://github.com/developmentseed/multistore/commit/072544d57759dc94e6c6c0b30cd8fef68f7ec523)) + ## [0.5.1](https://github.com/developmentseed/multistore/compare/v0.5.0...v0.5.1) (2026-06-23) diff --git a/Cargo.toml b/Cargo.toml index d82df70..b31582e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,7 +24,7 @@ default-members = [ resolver = "2" [workspace.package] -version = "0.5.1" +version = "0.6.0" edition = "2021" license = "MIT" @@ -102,10 +102,10 @@ console_error_panic_hook = "0.1.7" lambda_http = "0.13" # Internal crates -multistore = { path = "crates/core", version = "0.5.1" } -multistore-static-config = { path = "crates/static-config", version = "0.5.1" } -multistore-sts = { path = "crates/sts", version = "0.5.1" } -multistore-metering = { path = "crates/metering", version = "0.5.1" } -multistore-cf-workers = { path = "crates/cf-workers", version = "0.5.1" } -multistore-oidc-provider = { path = "crates/oidc-provider", version = "0.5.1" } -multistore-path-mapping = { path = "crates/path-mapping", version = "0.5.1" } +multistore = { path = "crates/core", version = "0.6.0" } +multistore-static-config = { path = "crates/static-config", version = "0.6.0" } +multistore-sts = { path = "crates/sts", version = "0.6.0" } +multistore-metering = { path = "crates/metering", version = "0.6.0" } +multistore-cf-workers = { path = "crates/cf-workers", version = "0.6.0" } +multistore-oidc-provider = { path = "crates/oidc-provider", version = "0.6.0" } +multistore-path-mapping = { path = "crates/path-mapping", version = "0.6.0" }