Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.2.0"
".": "0.3.0"
}
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## [0.3.0](https://github.com/developmentseed/multistore/compare/v0.2.0...v0.3.0) (2026-03-24)


### Features

* **cf-workers:** streamline response handling and header conversion ([80f8543](https://github.com/developmentseed/multistore/commit/80f8543122a43367f1341329eb7d57104692bcb3))
* **core:** support ListObjectsV1 ([1d61dfc](https://github.com/developmentseed/multistore/commit/1d61dfc401110776e53be80ace1dfd0bf2bb793c))
* **path-mapping:** add more convenience tooling ([9c4f5bb](https://github.com/developmentseed/multistore/commit/9c4f5bbb84d903845f50af059efcc55288a788b9))


### Bug Fixes

* **cf-workers:** disable retry on buckets to avoid WASM panic ([804b0bb](https://github.com/developmentseed/multistore/commit/804b0bb9903b3c958f0f50f78de53fe934270ce9))
* **core:** support custom backend response headers ([a5c5b9f](https://github.com/developmentseed/multistore/commit/a5c5b9f794fd113b66df11d0302c0490b02b6160))

## [0.2.0](https://github.com/developmentseed/multistore/compare/multistore-v0.1.1...multistore-v0.2.0) (2026-03-19)


Expand Down
16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ default-members = [
resolver = "2"

[workspace.package]
version = "0.2.0"
version = "0.3.0"
edition = "2021"
license = "MIT"

Expand Down Expand Up @@ -100,10 +100,10 @@ console_error_panic_hook = "0.1.7"
lambda_http = "0.13"

# Internal crates
multistore = { path = "crates/core", version = "0.2.0" }
multistore-static-config = { path = "crates/static-config", version = "0.2.0" }
multistore-sts = { path = "crates/sts", version = "0.2.0" }
multistore-metering = { path = "crates/metering", version = "0.2.0" }
multistore-cf-workers = { path = "crates/cf-workers", version = "0.2.0" }
multistore-oidc-provider = { path = "crates/oidc-provider", version = "0.2.0" }
multistore-path-mapping = { path = "crates/path-mapping", version = "0.2.0" }
multistore = { path = "crates/core", version = "0.3.0" }
multistore-static-config = { path = "crates/static-config", version = "0.3.0" }
multistore-sts = { path = "crates/sts", version = "0.3.0" }
multistore-metering = { path = "crates/metering", version = "0.3.0" }
multistore-cf-workers = { path = "crates/cf-workers", version = "0.3.0" }
multistore-oidc-provider = { path = "crates/oidc-provider", version = "0.3.0" }
multistore-path-mapping = { path = "crates/path-mapping", version = "0.3.0" }
Loading