Skip to content

Commit c2a93ad

Browse files
committed
Merge branch 'snapshot-summary' of https://github.com/jonathanc-n/iceberg-rust into snapshot-summary
2 parents 27d4057 + 7f7b540 commit c2a93ad

File tree

5 files changed

+16
-18
lines changed

5 files changed

+16
-18
lines changed

Diff for: .github/workflows/ci_typos.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,4 @@ jobs:
4242
steps:
4343
- uses: actions/checkout@v4
4444
- name: Check typos
45-
uses: crate-ci/[email protected].4
45+
uses: crate-ci/[email protected].5

Diff for: Cargo.lock

+10-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ arrow-cast = { version = "53.4.0" }
4747
arrow-ord = { version = "53.4.0" }
4848
arrow-schema = { version = "53.4.0" }
4949
arrow-select = { version = "53.4.0" }
50-
arrow-string = { version = "53.3.0" }
50+
arrow-string = { version = "53.4.0" }
5151
async-stream = "0.3.5"
52-
async-trait = "0.1.85"
52+
async-trait = "0.1.86"
5353
async-std = "1.12"
5454
aws-config = "1"
5555
aws-sdk-glue = "1.39"
@@ -77,7 +77,7 @@ num-bigint = "0.4.6"
7777
once_cell = "1.19"
7878
opendal = "0.51.1"
7979
ordered-float = "4"
80-
parquet = "53.3.0"
80+
parquet = "53.4.0"
8181
paste = "1.0.15"
8282
pilota = "0.11.2"
8383
pretty_assertions = "1.4"

Diff for: crates/catalog/s3tables/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ keywords = ["iceberg", "sql", "catalog"]
3232
anyhow = { workspace = true }
3333
async-trait = { workspace = true }
3434
aws-config = { workspace = true }
35-
aws-sdk-s3tables = "1.7.0"
35+
aws-sdk-s3tables = "1.8.0"
3636
iceberg = { workspace = true }
3737
serde_json = { workspace = true }
3838
uuid = { workspace = true, features = ["v4"] }

Diff for: crates/iceberg/src/io/storage_s3.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,7 @@ pub(crate) fn s3_config_parse(mut m: HashMap<String, String>) -> Result<S3Config
8989
cfg.region = Some(region);
9090
};
9191
if let Some(path_style_access) = m.remove(S3_PATH_STYLE_ACCESS) {
92-
if is_truthy(path_style_access.to_lowercase().as_str()) {
93-
cfg.enable_virtual_host_style = true;
94-
}
92+
cfg.enable_virtual_host_style = !is_truthy(path_style_access.to_lowercase().as_str());
9593
};
9694
if let Some(arn) = m.remove(S3_ASSUME_ROLE_ARN) {
9795
cfg.role_arn = Some(arn);

0 commit comments

Comments
 (0)