Skip to content

Commit e475c21

Browse files
authored
Update changelog for 1.1.16 release and fix anonymous S3 access to public buckets bug (#1559)
* Update changelog for 1.1.16 release * bump Rust crate version * Fix anonymous access to public S3 buckets * Fix version in icechunk-python/Cargo.toml * Cargo lock update
1 parent 62ba55d commit e475c21

File tree

5 files changed

+18
-5
lines changed

5 files changed

+18
-5
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Changelog.python.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## Python Icechunk Library 1.1.16
4+
5+
### Features
6+
7+
- Extend storage stats calculation to include virtual and inline chunks.
8+
- New methods `Session.chunk_type` and `Session.chunk_type_async` for returning the chunk type (native, inline, virtual, and uninitialized).
9+
10+
### Fixes
11+
12+
- Anonymous GCS credentials when setting `icechunk.gcs_credentials(anonymous=True)` now works.
13+
- Fix anonymous S3 storage access for public buckets.
14+
315
## Python Icechunk Library 1.1.15
416

517
### Features

icechunk-python/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "icechunk-python"
3-
version = "1.1.15"
3+
version = "1.1.16"
44
description = "Transactional storage engine for Zarr designed for use on cloud object storage"
55
readme = "../README.md"
66
repository = "https://github.com/earth-mover/icechunk"
@@ -21,7 +21,7 @@ crate-type = ["cdylib"]
2121
bytes = "1.11.0"
2222
chrono = { version = "0.4.42" }
2323
futures = "0.3.31"
24-
icechunk = { path = "../icechunk", version = "0.3.18", features = ["logs"] }
24+
icechunk = { path = "../icechunk", version = "0.3.19", features = ["logs"] }
2525
itertools = "0.14.0"
2626
pyo3 = { version = "0.27.2", features = [
2727
"chrono",

icechunk-python/python/icechunk/storage.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ def s3_store(
8282
region=region,
8383
endpoint_url=endpoint_url,
8484
allow_http=allow_http,
85+
anonymous=anonymous,
8586
force_path_style=force_path_style,
8687
network_stream_timeout_seconds=network_stream_timeout_seconds,
8788
requester_pays=requester_pays,

icechunk/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "icechunk"
3-
version = "0.3.18"
3+
version = "0.3.19"
44
description = "Transactional storage engine for Zarr designed for use on cloud object storage"
55
readme = "../README.md"
66
repository = "https://github.com/earth-mover/icechunk"

0 commit comments

Comments
 (0)