Skip to content

Commit c465130

Browse files
fix(deps): update rust crate axum-extra to 0.12.0 (#611)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [axum-extra](https://redirect.github.com/tokio-rs/axum) | dependencies | minor | `0.10.0` → `0.12.0` | --- ### Release Notes <details> <summary>tokio-rs/axum (axum-extra)</summary> ### [`v0.12.5`](https://redirect.github.com/tokio-rs/axum/compare/axum-extra-v0.12.4...axum-extra-v0.12.5) [Compare Source](https://redirect.github.com/tokio-rs/axum/compare/axum-extra-v0.12.4...axum-extra-v0.12.5) ### [`v0.12.4`](https://redirect.github.com/tokio-rs/axum/compare/axum-extra-v0.12.3...axum-extra-v0.12.4) [Compare Source](https://redirect.github.com/tokio-rs/axum/compare/axum-extra-v0.12.3...axum-extra-v0.12.4) ### [`v0.12.3`](https://redirect.github.com/tokio-rs/axum/releases/tag/axum-extra-v0.12.3): axum-extra v0.12.3 [Compare Source](https://redirect.github.com/tokio-rs/axum/compare/axum-extra-v0.12.2...axum-extra-v0.12.3) - **changed:** Make the `typed-routing` feature enable the `routing` feature ([#&#8203;3514]) - **changed:** Add trailing newline to `ErasedJson::pretty` response bodies ([#&#8203;3526]) - **fixed:** Fix integer underflow in `FileStream::try_range_response` for empty files ([#&#8203;3566]) [#&#8203;3514]: https://redirect.github.com/tokio-rs/axum/pull/3514 [#&#8203;3526]: https://redirect.github.com/tokio-rs/axum/pull/3526 [#&#8203;3566]: https://redirect.github.com/tokio-rs/axum/pull/3566 ### [`v0.12.2`](https://redirect.github.com/tokio-rs/axum/releases/tag/axum-extra-v0.12.2): axum-extra v0.12.2 - Make it easier to visually scan for default features ([#&#8203;3550]) [#&#8203;3550]: https://redirect.github.com/tokio-rs/axum/pull/3550 ### [`v0.12.0`](https://redirect.github.com/tokio-rs/axum/releases/tag/axum-extra-v0.12.0): axum-extra v0.12.0 [Compare Source](https://redirect.github.com/tokio-rs/axum/compare/axum-extra-v0.11.0...axum-extra-v0.12.0) - **breaking:** Remove unused `async-stream` feature, which was accidentally introduced as an implicit feature through an optional dependency which was no longer being used ([#&#8203;3298]) - **breaking:** `option_layer` now maps the `Response` body type to `axum::body::Body` ([#&#8203;3469]) - **breaking:** Some new features are added which need to be opted in ([#&#8203;3485]). - `Cached` extractor requires `cached` feature. - The handler utilities require `handler` feature. - The middleware utilities require `middleware` feature. - `OptionalPath` extractor requires `optional-path` feature. - The routing utilities require `routing` feature. - `WithRejection` extractor requires `with-rejection` feature. - **breaking:** Upgraded `prost` dependency to v0.14. ([#&#8203;3517]) [#&#8203;3298]: https://redirect.github.com/tokio-rs/axum/pull/3298 [#&#8203;3469]: https://redirect.github.com/tokio-rs/axum/pull/3469 [#&#8203;3485]: https://redirect.github.com/tokio-rs/axum/pull/3485 [#&#8203;3517]: https://redirect.github.com/tokio-rs/axum/pull/3517 ### [`v0.11.0`](https://redirect.github.com/tokio-rs/axum/releases/tag/axum-extra-v0.11.0): axum-extra v0.11.0 [Compare Source](https://redirect.github.com/tokio-rs/axum/compare/axum-extra-v0.10.3...axum-extra-v0.11.0) Yanked from crates.io due to unforeseen breaking change, see [#&#8203;3190](https://redirect.github.com/tokio-rs/axum/issues/3190) for details *** - **breaking:** Remove unused `async-stream` feature, which was accidentally introduced as an implicit feature through an optional dependency which was no longer being used ([#&#8203;3145]) - **fixed:** Fix a broken link in the documentation of `ErasedJson` ([#&#8203;3186]) - **changed:** Make the `status` function of rejections a `const` function, such as `FormRejection`, `QueryRejection` and `MultipartRejection` ([#&#8203;3168]) [#&#8203;3145]: https://redirect.github.com/tokio-rs/axum/pull/3145 [#&#8203;3168]: https://redirect.github.com/tokio-rs/axum/pull/3168 [#&#8203;3186]: https://redirect.github.com/tokio-rs/axum/pull/3186 </details> --- ### Configuration 📅 **Schedule**: Branch creation - "after 9pm,before 6am" in timezone Europe/Zurich, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/smartive/zitadel-rust). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNTkuNCIsInVwZGF0ZWRJblZlciI6IjQyLjY5LjEiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbImRlcGVuZGVuY2llcyJdfQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 9d38b14 commit c465130

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/zitadel/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ rocket_okapi = ["rocket", "dep:rocket_okapi", "dep:schemars"]
9898
actix-web = { version = "4.5.1", optional = true }
9999
async-trait = { version = "0.1.80", optional = true }
100100
axum = { version = "0.8.0", optional = true, features = ["macros"] }
101-
axum-extra = { version = "0.10.0", optional = true, features = ["typed-header"] } #0.11.0 is yanked
101+
axum-extra = { version = "0.12.0", optional = true, features = ["typed-header"] } #0.11.0 is yanked
102102
base64-compat = { version = "1", optional = true }
103103
custom_error = "1.9.2"
104104
document-features = { version = "0.2.8", optional = true }

0 commit comments

Comments
 (0)