chore(deps): update rust crate axum to v0.8.7 #114

Open
kjuulh wants to merge 1 commits from renovate/axum-monorepo into main
Owner

This PR contains the following updates:

Package Type Update Change
axum workspace.dependencies patch 0.8.1 -> 0.8.7

⚠️ Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

tokio-rs/axum (axum)

v0.8.7: axum v0.8.7

Compare Source

  • Relax implicit Send / Sync bounds on RouterAsService, RouterIntoService (#​3555)
  • Make it easier to visually scan for default features (#​3550)
  • Fix some documentation typos

v0.8.6

Compare Source

v0.8.5: axum v0.8.5

Compare Source

  • fixed: Reject JSON request bodies with trailing characters after the JSON document (#​3453)
  • added: Implement OptionalFromRequest for Multipart (#​3220)
  • added: Getter methods Location::{status_code, location}
  • added: Support for writing arbitrary binary data into server-sent events (#​3425)]
  • added: middleware::ResponseAxumBodyLayer for mapping response body to axum::body::Body (#​3469)
  • added: impl FusedStream for WebSocket (#​3443)
  • changed: The sse module and Sse type no longer depend on the tokio feature (#​3154)
  • changed: If the location given to one of Redirects constructors is not a valid header value, instead of panicking on construction, the IntoResponse impl now returns an HTTP 500, just like Json does when serialization fails (#​3377)
  • changed: Update minimum rust version to 1.78 (#​3412)

v0.8.4: axum v0.8.4

Compare Source

  • added: Router::reset_fallback (#​3320)
  • added: WebSocketUpgrade::selected_protocol (#​3248)
  • fixed: Panic location for overlapping method routes (#​3319)
  • fixed: Don't leak a tokio task when using serve without graceful shutdown (#​3129)

v0.8.3: axum v0.8.3

Compare Source

  • added: Implement From<Bytes> for Message (#​3273)
  • added: Implement OptionalFromRequest for Json (#​3142)
  • added: Implement OptionalFromRequest for Extension (#​3157)
  • added: Allow setting the read buffer capacity of WebSocketUpgrade (#​3178)
  • changed: Improved code size / compile time of dependent crates (#​3285, #​3294)

v0.8.2: axum v0.8.2

Yanked from crates.io due to unforeseen breaking change, see #​3190 for details


  • added: Implement OptionalFromRequest for Json (#​3142)
  • added: Implement OptionalFromRequest for Extension (#​3157)
  • changed: Make the status function of rejections a const function, such
    as JsonRejection, QueryRejection and PathRejection (#​3168)

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [axum](https://github.com/tokio-rs/axum) | workspace.dependencies | patch | `0.8.1` -> `0.8.7` | --- > ⚠️ **Warning** > > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>tokio-rs/axum (axum)</summary> ### [`v0.8.7`](https://github.com/tokio-rs/axum/releases/tag/axum-v0.8.7): axum v0.8.7 [Compare Source](https://github.com/tokio-rs/axum/compare/axum-v0.8.6...axum-v0.8.7) - Relax implicit `Send` / `Sync` bounds on `RouterAsService`, `RouterIntoService` ([#&#8203;3555]) - Make it easier to visually scan for default features ([#&#8203;3550]) - Fix some documentation typos [#&#8203;3550]: https://github.com/tokio-rs/axum/pull/3550 [#&#8203;3555]: https://github.com/tokio-rs/axum/pull/3555 ### [`v0.8.6`](https://github.com/tokio-rs/axum/compare/axum-v0.8.5...axum-v0.8.6) [Compare Source](https://github.com/tokio-rs/axum/compare/axum-v0.8.5...axum-v0.8.6) ### [`v0.8.5`](https://github.com/tokio-rs/axum/releases/tag/axum-v0.8.5): axum v0.8.5 [Compare Source](https://github.com/tokio-rs/axum/compare/axum-v0.8.4...axum-v0.8.5) - **fixed:** Reject JSON request bodies with trailing characters after the JSON document ([#&#8203;3453]) - **added:** Implement `OptionalFromRequest` for `Multipart` ([#&#8203;3220]) - **added:** Getter methods `Location::{status_code, location}` - **added:** Support for writing arbitrary binary data into server-sent events ([#&#8203;3425])] - **added:** `middleware::ResponseAxumBodyLayer` for mapping response body to `axum::body::Body` ([#&#8203;3469]) - **added:** `impl FusedStream for WebSocket` ([#&#8203;3443]) - **changed:** The `sse` module and `Sse` type no longer depend on the `tokio` feature ([#&#8203;3154]) - **changed:** If the location given to one of `Redirect`s constructors is not a valid header value, instead of panicking on construction, the `IntoResponse` impl now returns an HTTP 500, just like `Json` does when serialization fails ([#&#8203;3377]) - **changed:** Update minimum rust version to 1.78 ([#&#8203;3412]) [#&#8203;3154]: https://github.com/tokio-rs/axum/pull/3154 [#&#8203;3220]: https://github.com/tokio-rs/axum/pull/3220 [#&#8203;3377]: https://github.com/tokio-rs/axum/pull/3377 [#&#8203;3412]: https://github.com/tokio-rs/axum/pull/3412 [#&#8203;3425]: https://github.com/tokio-rs/axum/pull/3425 [#&#8203;3443]: https://github.com/tokio-rs/axum/pull/3443 [#&#8203;3453]: https://github.com/tokio-rs/axum/pull/3453 [#&#8203;3469]: https://github.com/tokio-rs/axum/pull/3469 ### [`v0.8.4`](https://github.com/tokio-rs/axum/releases/tag/axum-v0.8.4): axum v0.8.4 [Compare Source](https://github.com/tokio-rs/axum/compare/axum-v0.8.3...axum-v0.8.4) - **added:** `Router::reset_fallback` ([#&#8203;3320]) - **added:** `WebSocketUpgrade::selected_protocol` ([#&#8203;3248]) - **fixed:** Panic location for overlapping method routes ([#&#8203;3319]) - **fixed:** Don't leak a tokio task when using `serve` without graceful shutdown ([#&#8203;3129]) [#&#8203;3319]: https://github.com/tokio-rs/axum/pull/3319 [#&#8203;3320]: https://github.com/tokio-rs/axum/pull/3320 [#&#8203;3248]: https://github.com/tokio-rs/axum/pull/3248 [#&#8203;3129]: https://github.com/tokio-rs/axum/pull/3129 ### [`v0.8.3`](https://github.com/tokio-rs/axum/releases/tag/axum-v0.8.3): axum v0.8.3 [Compare Source](https://github.com/tokio-rs/axum/compare/axum-v0.8.2...axum-v0.8.3) - **added:** Implement `From<Bytes>` for `Message` ([#&#8203;3273]) - **added:** Implement `OptionalFromRequest` for `Json` ([#&#8203;3142]) - **added:** Implement `OptionalFromRequest` for `Extension` ([#&#8203;3157]) - **added:** Allow setting the read buffer capacity of `WebSocketUpgrade` ([#&#8203;3178]) - **changed:** Improved code size / compile time of dependent crates ([#&#8203;3285], [#&#8203;3294]) [#&#8203;3273]: https://github.com/tokio-rs/axum/pull/3273 [#&#8203;3142]: https://github.com/tokio-rs/axum/pull/3142 [#&#8203;3157]: https://github.com/tokio-rs/axum/pull/3157 [#&#8203;3178]: https://github.com/tokio-rs/axum/pull/3178 [#&#8203;3285]: https://github.com/tokio-rs/axum/pull/3285 [#&#8203;3294]: https://github.com/tokio-rs/axum/pull/3294 ### [`v0.8.2`](https://github.com/tokio-rs/axum/releases/tag/axum-v0.8.2): axum v0.8.2 Yanked from crates.io due to unforeseen breaking change, see [#&#8203;3190](https://github.com/tokio-rs/axum/issues/3190) for details *** - **added:** Implement `OptionalFromRequest` for `Json` ([#&#8203;3142]) - **added:** Implement `OptionalFromRequest` for `Extension` ([#&#8203;3157]) - **changed:** Make the `status` function of rejections a `const` function, such as `JsonRejection`, `QueryRejection` and `PathRejection` ([#&#8203;3168]) [#&#8203;3142]: https://github.com/tokio-rs/axum/pull/3142 [#&#8203;3157]: https://github.com/tokio-rs/axum/pull/3157 [#&#8203;3168]: https://github.com/tokio-rs/axum/pull/3168 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), 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 has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMjAuMyIsInVwZGF0ZWRJblZlciI6IjM5LjI2NC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
kjuulh added 1 commit 2025-03-28 23:28:18 +01:00
kjuulh changed title from chore(deps): update rust crate axum to v0.8.3 to chore(deps): update rust crate axum to v0.8.4 2025-05-01 02:24:17 +02:00
kjuulh force-pushed renovate/axum-monorepo from ccc758f49e to d5d3f29b9b 2025-05-01 02:24:19 +02:00 Compare
kjuulh changed title from chore(deps): update rust crate axum to v0.8.4 to chore(deps): update rust crate axum to v0.8.6 2025-11-13 02:55:50 +01:00
kjuulh force-pushed renovate/axum-monorepo from d5d3f29b9b to f6ab53aaf0 2025-11-13 02:55:51 +01:00 Compare
kjuulh force-pushed renovate/axum-monorepo from f6ab53aaf0 to 0124126c3b 2025-11-13 05:20:07 +01:00 Compare
kjuulh changed title from chore(deps): update rust crate axum to v0.8.6 to chore(deps): update rust crate axum to v0.8.7 2025-11-15 02:28:00 +01:00
kjuulh force-pushed renovate/axum-monorepo from 0124126c3b to 66e400bd70 2025-11-15 02:28:02 +01:00 Compare
kjuulh force-pushed renovate/axum-monorepo from 66e400bd70 to 69508f7143 2025-11-29 05:28:29 +01:00 Compare
This pull request can be merged automatically.
You are not authorized to merge this pull request.
View command line instructions

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/axum-monorepo:renovate/axum-monorepo
git checkout renovate/axum-monorepo
Sign in to join this conversation.
No Reviewers
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: kjuulh/flux-releaser#114
No description provided.