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
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,31 @@

## Unreleased

## [0.7.1] - 2025-07-24

### What's Changed

- 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):
- Retry on 429s and equivalents (https://github.com/apache/arrow-rs-object-store/issues/309)
- Support `container@account.dfs.core.windows.net/path` URL style for `az` protocol (https://github.com/apache/arrow-rs-object-store/issues/285)

### Documentation :book:

- docs: Add Cloudflare R2 example by @kylebarron in https://github.com/developmentseed/obstore/pull/504
- docs: Improve documentation about URL path handling in `from_url` class methods by @kylebarron in https://github.com/developmentseed/obstore/pull/512
- docs: Clarify that `return_arrow` is only a performance optimization by @kylebarron in https://github.com/developmentseed/obstore/pull/513

### Other

- fix: fix pyright config by @pjonsson in https://github.com/developmentseed/obstore/pull/505
- ci: reinstate pyright check by @pjonsson in https://github.com/developmentseed/obstore/pull/510

## New Contributors

- @pjonsson made their first contribution in https://github.com/developmentseed/obstore/pull/505

**Full Changelog**: https://github.com/developmentseed/obstore/compare/py-v0.7.0...py-v0.7.1

## [0.7.0] - 2025-06-25

### New Features :magic_wand:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion obstore/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "obstore"
version = "0.7.0"
version = "0.7.1"
authors = { workspace = true }
edition = { workspace = true }
description = "The simplest, highest-throughput interface to Amazon S3, Google Cloud Storage, Azure Blob Storage, and S3-compliant APIs like Cloudflare R2."
Expand Down
4 changes: 2 additions & 2 deletions pyo3-object_store/src/azure/store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -405,10 +405,10 @@ fn parse_url(config: Option<PyAzureConfig>, parsed: &Url) -> object_store::Resul
};

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