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
4 changes: 2 additions & 2 deletions Cargo.lock

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

12 changes: 12 additions & 0 deletions Changelog.python.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## Python Icechunk Library 1.1.16

### Features

- Extend storage stats calculation to include virtual and inline chunks.
- New methods `Session.chunk_type` and `Session.chunk_type_async` for returning the chunk type (native, inline, virtual, and uninitialized).

### Fixes

- Anonymous GCS credentials when setting `icechunk.gcs_credentials(anonymous=True)` now works.
- Fix anonymous S3 storage access for public buckets.

## Python Icechunk Library 1.1.15

### Features
Expand Down
4 changes: 2 additions & 2 deletions icechunk-python/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "icechunk-python"
version = "1.1.15"
version = "1.1.16"
description = "Transactional storage engine for Zarr designed for use on cloud object storage"
readme = "../README.md"
repository = "https://github.com/earth-mover/icechunk"
Expand All @@ -21,7 +21,7 @@ crate-type = ["cdylib"]
bytes = "1.11.0"
chrono = { version = "0.4.42" }
futures = "0.3.31"
icechunk = { path = "../icechunk", version = "0.3.18", features = ["logs"] }
icechunk = { path = "../icechunk", version = "0.3.19", features = ["logs"] }
itertools = "0.14.0"
pyo3 = { version = "0.27.2", features = [
"chrono",
Expand Down
1 change: 1 addition & 0 deletions icechunk-python/python/icechunk/storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ def s3_store(
region=region,
endpoint_url=endpoint_url,
allow_http=allow_http,
anonymous=anonymous,
force_path_style=force_path_style,
network_stream_timeout_seconds=network_stream_timeout_seconds,
requester_pays=requester_pays,
Expand Down
2 changes: 1 addition & 1 deletion icechunk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "icechunk"
version = "0.3.18"
version = "0.3.19"
description = "Transactional storage engine for Zarr designed for use on cloud object storage"
readme = "../README.md"
repository = "https://github.com/earth-mover/icechunk"
Expand Down
Loading