Skip to content

Update Rust crate rocket to v0.5.1 - autoclosed

Óscar García Amor requested to merge renovate/rocket-0.x-lockfile into master

This MR contains the following updates:

Package Type Update Change
rocket (source) dependencies patch 0.5.0 -> 0.5.1

Release Notes

rwf2/Rocket (rocket)

v0.5.1

Compare Source

This release contains the following crate updates:

  • rocket 0.5.1
  • rocket_db_pools 0.2.0
  • rocket_dyn_templates 0.2.0
  • rocket_ws 0.1.1

rocket 0.5.1

  • The following char and std::ops::Range types now implement FromForm:

    • char
    • Range<T: FromForm> with start and end fields
    • RangeFrom<T: FromForm> with start field
    • RangeTo<T: FromForm> with end field
    • RangeToInclusive<T: FromForm> with end field
  • [T; N], Vec<T>, and [u8] can now be passed to uri!.

  • The guide now includes a deploying section.

  • The FromForm derive now properly records errors involving entire forms.

  • FromForm derive can now be used in code emitted by macro_rules! macros.

  • (fix #​2668 via 52de9a) [TempFile] now ensures it flushes before being persisted.

rocket_db_pools 0.2.0

  • SQLite extensions are now supported in sqlx_sqlite.

    Use a database configuration option of extensions to specify extensions:

    [default.databases.db_name]
    url = "db.sqlite"

This option is only supported by the sqlx_sqlite driver.

extensions = ["memvfs", "rot13"]
```
  • (breaking) deadpool was updated to 0.13.

  • (breaking) The Config structure has a new extensions field.

rocket_dyn_templates 0.2.0

  • Support for minijinja 2.0 templates was introduced.

    Templates with an extension of .j2 are recognized and rendered with Minijinja.

  • (breaking) handlebars was updated to 5.1.

rocket_ws 0.1.1

  • Introduced [WebSocket::accept_key()][WebSocket::accept_key()] method.

  • tungstenite was updated to 0.21.

General Changes

  • The rust-version for all crates was updated to 1.64.

    This reflects the correct MSRV required to build rocket 0.5.0.

  • License files are now present in all published crates.


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever MR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this MR and you won't be reminded about this update again.


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

This MR has been generated by Renovate Bot.

Merge request reports