Skip to content

Commit 4271b4f

Browse files
authored
chore: Prepare 0.7.1 (#514)
1 parent eae29a4 commit 4271b4f

File tree

4 files changed

+29
-4
lines changed

4 files changed

+29
-4
lines changed

CHANGELOG.md

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

33
## Unreleased
44

5+
## [0.7.1] - 2025-07-24
6+
7+
### What's Changed
8+
9+
- chore: Bump object_store to 0.12.3 by @kylebarron in https://github.com/developmentseed/obstore/pull/501. [From upstream changelog](https://github.com/apache/arrow-rs-object-store/blob/v0.12.3/CHANGELOG.md):
10+
- Retry on 429s and equivalents (https://github.com/apache/arrow-rs-object-store/issues/309)
11+
- Support `[email protected]/path` URL style for `az` protocol (https://github.com/apache/arrow-rs-object-store/issues/285)
12+
13+
### Documentation :book:
14+
15+
- docs: Add Cloudflare R2 example by @kylebarron in https://github.com/developmentseed/obstore/pull/504
16+
- docs: Improve documentation about URL path handling in `from_url` class methods by @kylebarron in https://github.com/developmentseed/obstore/pull/512
17+
- docs: Clarify that `return_arrow` is only a performance optimization by @kylebarron in https://github.com/developmentseed/obstore/pull/513
18+
19+
### Other
20+
21+
- fix: fix pyright config by @pjonsson in https://github.com/developmentseed/obstore/pull/505
22+
- ci: reinstate pyright check by @pjonsson in https://github.com/developmentseed/obstore/pull/510
23+
24+
## New Contributors
25+
26+
- @pjonsson made their first contribution in https://github.com/developmentseed/obstore/pull/505
27+
28+
**Full Changelog**: https://github.com/developmentseed/obstore/compare/py-v0.7.0...py-v0.7.1
29+
530
## [0.7.0] - 2025-06-25
631

732
### New Features :magic_wand:

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.

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.0"
3+
version = "0.7.1"
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."

pyo3-object_store/src/azure/store.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -405,10 +405,10 @@ fn parse_url(config: Option<PyAzureConfig>, parsed: &Url) -> object_store::Resul
405405
};
406406

407407
match parsed.scheme() {
408-
"az" | "adl" | "azure" => {
408+
"adl" | "azure" => {
409409
config.insert_if_not_exists(AzureConfigKey::ContainerName, validate(host)?);
410410
}
411-
"abfs" | "abfss" => {
411+
"az" | "abfs" | "abfss" => {
412412
// abfs(s) might refer to the fsspec convention abfs://<container>/<path>
413413
// or the convention for the hadoop driver abfs[s]://<file_system>@<account_name>.dfs.core.windows.net/<path>
414414
if parsed.username().is_empty() {

0 commit comments

Comments
 (0)