Skip to content
This repository was archived by the owner on Mar 20, 2023. It is now read-only.

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 13, 2023

Bumps axum-extra from 0.3.7 to 0.7.1.

Release notes

Sourced from axum-extra's releases.

axum-extra - v0.7.1

  • Updated to latest axum-macros

axum-extra - v0.7.0

  • breaking: Remove the spa feature which should have been removed in 0.6.0 (#1802)
  • added: Add Multipart. This is similar to axum::extract::Multipart except that it enforces field exclusivity at runtime instead of compile time, as this improves usability (#1692)
  • added: Implement Clone for CookieJar, PrivateCookieJar and SignedCookieJar (#1808)
  • fixed: Add #[must_use] attributes to types that do nothing unless used (#1809)

#1692: tokio-rs/axum#1692 #1802: tokio-rs/axum#1802 #1808: tokio-rs/axum#1808 #1809: tokio-rs/axum#1809

axum-extra - v0.6.0

  • breaking: Change casing of ProtoBuf to Protobuf (#1595)

  • breaking: SpaRouter has been removed. Use ServeDir and ServeFile from tower-http instead:

    // before
    Router::new().merge(SpaRouter::new("/assets", "dist"));
    // with ServeDir
    Router::new().nest_service("/assets", ServeDir::new("dist"));
    // before with index_file
    Router::new().merge(SpaRouter::new("/assets", "dist").index_file("index.html"));
    // with ServeDir + ServeFile
    Router::new().nest_service(
    "/assets",
    ServeDir::new("dist").not_found_service(ServeFile::new("dist/index.html")),
    );

    See the [static-file-server-example] for more examples (#1784)

#1595: tokio-rs/axum#1595 #1784: tokio-rs/axum#1784 [static-file-server-example]: https://github.com/tokio-rs/axum/blob/main/examples/static-file-server/src/main.rs

axum-extra - v0.5.0

  • added: Add option_layer for converting an Option<Layer> into a Layer (#1696)
  • added: Implement Layer and Service for Either (#1696)
  • added: Add TypedPath::with_query_params (#1744)
  • breaking: Update to [cookie] 0.17 (#1747)

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

@dependabot dependabot bot requested review from a team, bstrie and haraldh as code owners March 13, 2023 10:11
@dependabot dependabot bot added dependencies rust Pull requests that update Rust code labels Mar 13, 2023
@dependabot dependabot bot force-pushed the dependabot/cargo/axum-extra-0.7.1 branch from 784bad5 to 03ef6c6 Compare March 17, 2023 14:41
Bumps [axum-extra](https://github.com/tokio-rs/axum) from 0.3.7 to 0.7.1.
- [Release notes](https://github.com/tokio-rs/axum/releases)
- [Changelog](https://github.com/tokio-rs/axum/blob/main/CHANGELOG.md)
- [Commits](tokio-rs/axum@axum-extra-v0.3.7...axum-extra-v0.7.1)

---
updated-dependencies:
- dependency-name: axum-extra
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/cargo/axum-extra-0.7.1 branch from 03ef6c6 to 02cd7cf Compare March 20, 2023 15:18
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

dependencies rust Pull requests that update Rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant