feat(storage): mark signed url stable#4185
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #4185 +/- ##
=======================================
Coverage 94.77% 94.77%
=======================================
Files 187 187
Lines 7116 7116
=======================================
Hits 6744 6744
Misses 372 372 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
…oogleapis#4198) tokio::sync::SetOnce required newer version of tokio. Move to `std` lib alternative. Towards googleapis#3645 and fix minimal-version check on googleapis#4185
src/auth/Cargo.toml
Outdated
| # https://github.com/googleapis/google-cloud-rust/issues/3237 | ||
| # https://github.com/googleapis/google-cloud-rust/issues/3265 | ||
| version = "1.4.0" | ||
| version = "1.5.0" |
There was a problem hiding this comment.
I'm trying to find why minimal-version check was failing https://github.com/googleapis/google-cloud-rust/runs/59931178068. I can't repro locally
There was a problem hiding this comment.
Your change to make the workspace version of auth 1.4 in Cargo.toml is probably the fix.
The build was failing because it tried to build storage against auth 1.3 which didn't have any of the new signer stuff.
There was a problem hiding this comment.
yeah, I thought that bumping was gonna solve the issue, I just missed that auth was already bumped before. Thanks
Towards #3645