Skip to content

Commit f543433

Browse files
authored
chore: Prepare 0.8 (#528)
1 parent b19f880 commit f543433

File tree

4 files changed

+15
-2
lines changed

4 files changed

+15
-2
lines changed

CHANGELOG.md

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

33
## Unreleased
44

5+
## [0.8.0] - 2025-08-07
6+
7+
### What's Changed
8+
9+
- **Breaking:** Don't double percent-encode paths by @kylebarron in https://github.com/developmentseed/obstore/pull/524
10+
- This changes the internals from using [`Path` "encoding"](https://docs.rs/object_store/latest/object_store/path/struct.Path.html#encode) to [`Path` "parsing"](https://docs.rs/object_store/latest/object_store/path/struct.Path.html#parse). This avoids issues where paths could be unintentionally double-encoded. But this means that the user must ensure that paths are valid.
11+
- fix: Only SHA256 is supported for S3 checksum algorithm by @kylebarron in https://github.com/developmentseed/obstore/pull/527
12+
513
## [0.7.3] - 2025-08-01
614

715
### What's Changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/integrations/index.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,9 @@ Various integrations with external libraries exist:
66
- [`fsspec`](https://github.com/fsspec/filesystem_spec): Use the [`obstore.fsspec`][obstore.fsspec] module.
77
- [`zarr-python`](https://zarr.readthedocs.io/en/stable/): Use [`zarr.storage.ObjectStore`](https://zarr.readthedocs.io/en/stable/user-guide/storage.html#object-store), included as of Zarr version `3.0.7` and later. See also the [Obstore-Zarr example](../examples/zarr.md).
88

9+
And obstore is used internally in more projects:
10+
11+
- [litData](https://github.com/Lightning-AI/litData)
12+
- [VirtualiZarr](https://github.com/zarr-developers/VirtualiZarr)
13+
914
Know of an integration that doesn't exist here? [Edit this document](https://github.com/developmentseed/obstore/edit/main/docs/integrations.md).

obstore/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "obstore"
3-
version = "0.7.3"
3+
version = "0.8.0"
44
authors = { workspace = true }
55
edition = { workspace = true }
66
description = "The simplest, highest-throughput interface to Amazon S3, Google Cloud Storage, Azure Blob Storage, and S3-compliant APIs like Cloudflare R2."

0 commit comments

Comments
 (0)