Skip to content
This repository was archived by the owner on Jan 30, 2026. It is now read-only.

Commit 0e6c056

Browse files
committed
bump sdk version, opt-out of ignoring deleted resources in pagination
1 parent f684ab4 commit 0e6c056

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-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.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ indicatif = "0.18.3"
2828
json_to_table = "0.12.0"
2929
miette = { version = "7.6.0", features = ["fancy"] }
3030
rand = "0.9.2"
31-
s2-sdk = { version = "0.22.4", features = ["_hidden"] }
31+
s2-sdk = { version = "0.22.5", features = ["_hidden"] }
3232
serde = { version = "1.0.228", features = ["derive"] }
3333
serde_json = { version = "1.0.149", features = ["preserve_order"] }
3434
strum = { version = "0.27", features = ["derive"] }

src/ops.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ pub async fn list_basins<'a>(
5959

6060
Ok(Box::pin(stream::iter(page.values.into_iter().map(Ok))))
6161
} else {
62-
let mut input = ListAllBasinsInput::new();
62+
let mut input = ListAllBasinsInput::new().with_ignore_pending_deletions(false);
6363
if let Some(p) = prefix {
6464
input = input.with_prefix(p);
6565
}
@@ -320,7 +320,7 @@ pub async fn list_streams<'a>(
320320

321321
Ok(Box::pin(stream::iter(page.values.into_iter().map(Ok))))
322322
} else {
323-
let mut input = ListAllStreamsInput::new();
323+
let mut input = ListAllStreamsInput::new().with_ignore_pending_deletions(false);
324324
if let Some(p) = prefix {
325325
input = input.with_prefix(p);
326326
}

0 commit comments

Comments
 (0)