chore(deps): update all dependencies #1

Open
kjuulh wants to merge 1 commits from renovate/all into main
Owner

This PR contains the following updates:

Package Type Update Change
axum workspace.dependencies minor 0.7.9 -> 0.8.0
leptos workspace.dependencies patch 0.7.4 -> 0.7.7
leptos_axum workspace.dependencies patch 0.7.4 -> 0.7.7
leptos_meta workspace.dependencies patch 0.7.4 -> 0.7.7
leptos_router workspace.dependencies patch 0.7.4 -> 0.7.7
log workspace.dependencies patch 0.4.25 -> 0.4.26
serde_json dependencies patch 1.0.136 -> 1.0.139
server_fn workspace.dependencies patch 0.7.4 -> 0.7.7
uuid workspace.dependencies minor 1.12.0 -> 1.15.1

Release Notes

tokio-rs/axum (axum)

v0.8.0: axum v0.8.0

Compare Source

since rc.1

  • breaking: axum::extract::ws::Message now uses Bytes in place of Vec<u8>,
    and a new Utf8Bytes type in place of String, for its variants (#​3078)
  • breaking: Remove OptionalFromRequestParts impl for Query (#​3088)
  • changed: Upgraded tokio-tungstenite to 0.26 (#​3078)
  • changed: Query/Form: Use serde_path_to_error to report fields that failed to parse (#​3081)

full changelog

You can also read the blog post on tokio

Note: there are further relevant changes in axum-core's changelog

  • breaking: Upgrade matchit to 0.8, changing the path parameter syntax from /:single and /*many to /{single} and /{*many}; the old syntax produces a panic to avoid silent change in behavior (#​2645)
  • breaking: Require Sync for all handlers and services added to Router and MethodRouter (#​2473)
  • breaking: The tuple and tuple_struct Path extractor deserializers now check that the number of parameters matches the tuple length exactly (#​2931)
  • breaking: Move Host extractor to axum-extra (#​2956)
  • breaking: Remove WebSocket::close. Users should explicitly send close messages themselves. (#​2974)
  • breaking: Make serve generic over the listener and IO types (#​2941)
  • breaking: Remove Serve::tcp_nodelay and WithGracefulShutdown::tcp_nodelay.
    See serve::ListenerExt for an API that let you set arbitrary TCP stream properties. (#​2941)
  • breaking: Option<Path<T>> no longer swallows all error conditions,
    instead rejecting the request in many cases; see its documentation for details (#​2475)
  • breaking: axum::extract::ws::Message now uses Bytes in place of Vec<u8>,
    and a new Utf8Bytes type in place of String, for its variants (#​3078)
  • fixed: Skip SSE incompatible chars of serde_json::RawValue in Event::json_data (#​2992)
  • fixed: Don't panic when array type is used for path segment (#​3039)
  • fixed: Avoid setting content-length before middleware.
    This allows middleware to add bodies to requests without needing to manually set content-length (#​2897)
  • change: Update minimum rust version to 1.75 (#​2943)
  • changed: Upgraded tokio-tungstenite to 0.26 (#​3078)
  • changed: Query/Form: Use serde_path_to_error to report fields that failed to parse (#​3081)
  • added: Add method_not_allowed_fallback to set a fallback when a path matches but there is no handler for the given HTTP method (#​2903)
  • added: Add NoContent as a self-described shortcut for StatusCode::NO_CONTENT (#​2978)
  • added: Add support for WebSockets over HTTP/2. They can be enabled by changing get(ws_endpoint) handlers to any(ws_endpoint) (#​2894)
  • added: Add MethodFilter::CONNECT, routing::connect[_service] and MethodRouter::connect[_service] (#​2961)
  • added: Extend FailedToDeserializePathParams::kind enum with (ErrorKind::DeserializeError). This new variant captures both key, value, and message from named path parameters parse errors, instead of only deserialization error message in ErrorKind::Message. (#​2720)
leptos-rs/leptos (leptos)

v0.7.7

If you're migrating from 0.6 to 0.7, please see the 0.7.0 release notes here.

This is a small patch release including primarily bugfixes, and some small ergonomic improvements.

What's Changed
New Contributors

Full Changelog: https://github.com/leptos-rs/leptos/compare/v0.7.5...v0.7.7

v0.7.5

Compare Source

If you're migrating from 0.6 to 0.7, please see the 0.7.0 release notes here.

This is a small patch release including primarily bugfixes.

What's Changed
New Contributors

Full Changelog: https://github.com/leptos-rs/leptos/compare/v0.7.4...v0.7.5

rust-lang/log (log)

v0.4.26

Compare Source

serde-rs/json (serde_json)

v1.0.139

Compare Source

  • Documentation improvements

v1.0.138

Compare Source

  • Documentation improvements

v1.0.137

Compare Source

  • Turn on "float_roundtrip" and "unbounded_depth" features for serde_json in play.rust-lang.org (#​1231)
uuid-rs/uuid (uuid)

v1.15.1

Compare Source

What's Changed

Full Changelog: https://github.com/uuid-rs/uuid/compare/v1.15.0...v1.15.1

v1.15.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/uuid-rs/uuid/compare/v1.14.0...v1.15.0

v1.14.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/uuid-rs/uuid/compare/v1.13.2...v1.14.0

v1.13.2

Compare Source

What's Changed

Full Changelog: https://github.com/uuid-rs/uuid/compare/1.13.1...v1.13.2

v1.13.1

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/uuid-rs/uuid/compare/1.13.0...1.13.1

v1.13.0

Compare Source

⚠️ Potential Breakage

This release updates our version of getrandom to 0.3 and rand to 0.9. It is a potentially breaking change for the following users:

no-std users who enable the rng feature

uuid still uses getrandom by default on these platforms. Upgrade your version of getrandom and follow its new docs on configuring a custom backend.

wasm32-unknown-unknown users who enable the rng feature without the js feature

Upgrade your version of getrandom and follow its new docs on configuring a backend.

You'll also need to enable the rng-getrandom or rng-rand feature of uuid to force it to use getrandom as its backend:

[dependencies.uuid]
version = "1.13.0"
- features = ["v4"]
+ features = ["v4", "rng-getrandom"]

[dependencies.getrandom]
version = "0.3"

If you're on wasm32-unknown-unknown and using the js feature of uuid you shouldn't see any breakage. We've kept this behavior by vendoring in getrandom's web-based backend when the js feature is enabled.

What's Changed

Full Changelog: https://github.com/uuid-rs/uuid/compare/1.12.1...1.13.0

v1.12.1

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/uuid-rs/uuid/compare/1.12.0...1.12.1


Configuration

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

🚦 Automerge: Enabled.

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

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • 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 | minor | `0.7.9` -> `0.8.0` | | [leptos](https://github.com/leptos-rs/leptos) | workspace.dependencies | patch | `0.7.4` -> `0.7.7` | | [leptos_axum](https://github.com/leptos-rs/leptos) | workspace.dependencies | patch | `0.7.4` -> `0.7.7` | | [leptos_meta](https://github.com/leptos-rs/leptos) | workspace.dependencies | patch | `0.7.4` -> `0.7.7` | | [leptos_router](https://github.com/leptos-rs/leptos) | workspace.dependencies | patch | `0.7.4` -> `0.7.7` | | [log](https://github.com/rust-lang/log) | workspace.dependencies | patch | `0.4.25` -> `0.4.26` | | [serde_json](https://github.com/serde-rs/json) | dependencies | patch | `1.0.136` -> `1.0.139` | | [server_fn](https://github.com/leptos-rs/leptos) | workspace.dependencies | patch | `0.7.4` -> `0.7.7` | | [uuid](https://github.com/uuid-rs/uuid) | workspace.dependencies | minor | `1.12.0` -> `1.15.1` | --- ### Release Notes <details> <summary>tokio-rs/axum (axum)</summary> ### [`v0.8.0`](https://github.com/tokio-rs/axum/releases/tag/axum-v0.8.0): axum v0.8.0 [Compare Source](https://github.com/tokio-rs/axum/compare/axum-v0.7.9...axum-v0.8.0) #### since rc.1 <details> - **breaking:** `axum::extract::ws::Message` now uses `Bytes` in place of `Vec<u8>`, and a new `Utf8Bytes` type in place of `String`, for its variants ([#&#8203;3078]) - **breaking:** Remove `OptionalFromRequestParts` impl for `Query` ([#&#8203;3088]) - **changed:** Upgraded `tokio-tungstenite` to 0.26 ([#&#8203;3078]) - **changed:** Query/Form: Use `serde_path_to_error` to report fields that failed to parse ([#&#8203;3081]) </details> #### full changelog *You can also read the blog post on [tokio](https://tokio.rs/blog/2025-01-01-announcing-axum-0-8-0)* *Note: there are further relevant changes in [axum-core's changelog](https://github.com/tokio-rs/axum/releases/tag/axum-core-v0.5.0)* - **breaking:** Upgrade matchit to 0.8, changing the path parameter syntax from `/:single` and `/*many` to `/{single}` and `/{*many}`; the old syntax produces a panic to avoid silent change in behavior ([#&#8203;2645]) - **breaking:** Require `Sync` for all handlers and services added to `Router` and `MethodRouter` ([#&#8203;2473]) - **breaking:** The tuple and tuple_struct `Path` extractor deserializers now check that the number of parameters matches the tuple length exactly ([#&#8203;2931]) - **breaking:** Move `Host` extractor to `axum-extra` ([#&#8203;2956]) - **breaking:** Remove `WebSocket::close`. Users should explicitly send close messages themselves. ([#&#8203;2974]) - **breaking:** Make `serve` generic over the listener and IO types ([#&#8203;2941]) - **breaking:** Remove `Serve::tcp_nodelay` and `WithGracefulShutdown::tcp_nodelay`. See `serve::ListenerExt` for an API that let you set arbitrary TCP stream properties. ([#&#8203;2941]) - **breaking:** `Option<Path<T>>` no longer swallows all error conditions, instead rejecting the request in many cases; see its documentation for details ([#&#8203;2475]) - **breaking:** `axum::extract::ws::Message` now uses `Bytes` in place of `Vec<u8>`, and a new `Utf8Bytes` type in place of `String`, for its variants ([#&#8203;3078]) - **fixed:** Skip SSE incompatible chars of `serde_json::RawValue` in `Event::json_data` ([#&#8203;2992]) - **fixed:** Don't panic when array type is used for path segment ([#&#8203;3039]) - **fixed:** Avoid setting `content-length` before middleware. This allows middleware to add bodies to requests without needing to manually set `content-length` ([#&#8203;2897]) - **change:** Update minimum rust version to 1.75 ([#&#8203;2943]) - **changed:** Upgraded `tokio-tungstenite` to 0.26 ([#&#8203;3078]) - **changed:** Query/Form: Use `serde_path_to_error` to report fields that failed to parse ([#&#8203;3081]) - **added:** Add `method_not_allowed_fallback` to set a fallback when a path matches but there is no handler for the given HTTP method ([#&#8203;2903]) - **added:** Add `NoContent` as a self-described shortcut for `StatusCode::NO_CONTENT` ([#&#8203;2978]) - **added:** Add support for WebSockets over HTTP/2. They can be enabled by changing `get(ws_endpoint)` handlers to `any(ws_endpoint)` ([#&#8203;2894]) - **added:** Add `MethodFilter::CONNECT`, `routing::connect[_service]` and `MethodRouter::connect[_service]` ([#&#8203;2961]) - **added:** Extend `FailedToDeserializePathParams::kind` enum with (`ErrorKind::DeserializeError`). This new variant captures both `key`, `value`, and `message` from named path parameters parse errors, instead of only deserialization error message in `ErrorKind::Message`. ([#&#8203;2720]) [#&#8203;2475]: https://github.com/tokio-rs/axum/pull/2475 [#&#8203;2897]: https://github.com/tokio-rs/axum/pull/2897 [#&#8203;2903]: https://github.com/tokio-rs/axum/pull/2903 [#&#8203;2894]: https://github.com/tokio-rs/axum/pull/2894 [#&#8203;2956]: https://github.com/tokio-rs/axum/pull/2956 [#&#8203;2961]: https://github.com/tokio-rs/axum/pull/2961 [#&#8203;2974]: https://github.com/tokio-rs/axum/pull/2974 [#&#8203;2978]: https://github.com/tokio-rs/axum/pull/2978 [#&#8203;2992]: https://github.com/tokio-rs/axum/pull/2992 [#&#8203;2720]: https://github.com/tokio-rs/axum/pull/2720 [#&#8203;3039]: https://github.com/tokio-rs/axum/pull/3039 [#&#8203;2941]: https://github.com/tokio-rs/axum/pull/2941 [#&#8203;2473]: https://github.com/tokio-rs/axum/pull/2473 [#&#8203;2645]: https://github.com/tokio-rs/axum/pull/2645 [#&#8203;2931]: https://github.com/tokio-rs/axum/pull/2931 [#&#8203;2943]: https://github.com/tokio-rs/axum/pull/2943 [#&#8203;3078]: https://github.com/tokio-rs/axum/pull/3078 [#&#8203;3081]: https://github.com/tokio-rs/axum/pull/3081 [#&#8203;3088]: https://github.com/tokio-rs/axum/pull/3088 </details> <details> <summary>leptos-rs/leptos (leptos)</summary> ### [`v0.7.7`](https://github.com/leptos-rs/leptos/releases/tag/v0.7.7) **If you're migrating from 0.6 to 0.7, please see the 0.7.0 release notes [here](https://github.com/leptos-rs/leptos/releases/tag/v0.7.0).** This is a small patch release including primarily bugfixes, and some small ergonomic improvements. ##### What's Changed - add file_and_error_handler_with_context by [@&#8203;sstepanchuk](https://github.com/sstepanchuk) in https://github.com/leptos-rs/leptos/pull/3526 - feat: impl `From<ArcField<T>>` for `Field<T>` by [@&#8203;gbj](https://github.com/gbj) in https://github.com/leptos-rs/leptos/pull/3533 - Implement PatchField for Option by [@&#8203;iradicek](https://github.com/iradicek) in https://github.com/leptos-rs/leptos/pull/3528 - fix: attribute type erasure nightly (closes [#&#8203;3536](https://github.com/leptos-rs/leptos/issues/3536)) by [@&#8203;gbj](https://github.com/gbj) in https://github.com/leptos-rs/leptos/pull/3537 - fix: emit syntax errors in components rather than swallowing them (closes [#&#8203;3535](https://github.com/leptos-rs/leptos/issues/3535)) by [@&#8203;gbj](https://github.com/gbj) in https://github.com/leptos-rs/leptos/pull/3538 - Fix ci by [@&#8203;zakstucke](https://github.com/zakstucke) in https://github.com/leptos-rs/leptos/pull/3557 - Implement `Attribute` for `Either<A, B>` by [@&#8203;alexisfontaine](https://github.com/alexisfontaine) in https://github.com/leptos-rs/leptos/pull/3556 - chore(ci): `cargo install --locked` for `cargo-leptos` installation by [@&#8203;gbj](https://github.com/gbj) in https://github.com/leptos-rs/leptos/pull/3559 - fix: don't use InertElement for `style:` etc. (closes [#&#8203;3554](https://github.com/leptos-rs/leptos/issues/3554)) by [@&#8203;gbj](https://github.com/gbj) in https://github.com/leptos-rs/leptos/pull/3558 - fix: do not hold lock on arena when dispatching Action by [@&#8203;gbj](https://github.com/gbj) in https://github.com/leptos-rs/leptos/pull/3561 - fix: Return empty iterator instead of panicking when the KeyedSubfield is disposed by [@&#8203;mahdi739](https://github.com/mahdi739) in https://github.com/leptos-rs/leptos/pull/3550 - Less panic in stores by [@&#8203;mahdi739](https://github.com/mahdi739) in https://github.com/leptos-rs/leptos/pull/3551 - Handle `erase_components` on `Either<A, B>` by [@&#8203;alexisfontaine](https://github.com/alexisfontaine) in https://github.com/leptos-rs/leptos/pull/3572 - fix(reactive_stores_macro): `store` attribute signature error message by [@&#8203;DanikVitek](https://github.com/DanikVitek) in https://github.com/leptos-rs/leptos/pull/3567 - feat: add `:capture` flag for events to handle them during capture phase (closes [#&#8203;3457](https://github.com/leptos-rs/leptos/issues/3457)) by [@&#8203;gbj](https://github.com/gbj) in https://github.com/leptos-rs/leptos/pull/3575 - Add missing `<fieldset>` attributes by [@&#8203;alexisfontaine](https://github.com/alexisfontaine) in https://github.com/leptos-rs/leptos/pull/3581 - Allows non static lifetimes in component macro by [@&#8203;jvdwrf](https://github.com/jvdwrf) in https://github.com/leptos-rs/leptos/pull/3571 ##### New Contributors - [@&#8203;sstepanchuk](https://github.com/sstepanchuk) made their first contribution in https://github.com/leptos-rs/leptos/pull/3526 - [@&#8203;iradicek](https://github.com/iradicek) made their first contribution in https://github.com/leptos-rs/leptos/pull/3528 - [@&#8203;jvdwrf](https://github.com/jvdwrf) made their first contribution in https://github.com/leptos-rs/leptos/pull/3571 **Full Changelog**: https://github.com/leptos-rs/leptos/compare/v0.7.5...v0.7.7 ### [`v0.7.5`](https://github.com/leptos-rs/leptos/releases/tag/v0.7.5) [Compare Source](https://github.com/leptos-rs/leptos/compare/v0.7.4...v0.7.5) **If you're migrating from 0.6 to 0.7, please see the 0.7.0 release notes [here](https://github.com/leptos-rs/leptos/releases/tag/v0.7.0).** This is a small patch release including primarily bugfixes. ##### What's Changed - chore: work around wasm-bindgen breakage by [@&#8203;gbj](https://github.com/gbj) in https://github.com/leptos-rs/leptos/pull/3498 - Add support for custom patch by [@&#8203;mscofield0](https://github.com/mscofield0) in https://github.com/leptos-rs/leptos/pull/3449 - feat: either_or combinator by [@&#8203;geovie](https://github.com/geovie) in https://github.com/leptos-rs/leptos/pull/3417 - (wip): implement unboxing support for recursive store nodes (closes [#&#8203;3491](https://github.com/leptos-rs/leptos/issues/3491)) by [@&#8203;gbj](https://github.com/gbj) in https://github.com/leptos-rs/leptos/pull/3493 - fix: correctly handle `ErrorBoundary` through reactive views (closes [#&#8203;3487](https://github.com/leptos-rs/leptos/issues/3487)) by [@&#8203;gbj](https://github.com/gbj) in https://github.com/leptos-rs/leptos/pull/3492 - chore: restore reactivity warning at top level of components (closes [#&#8203;3354](https://github.com/leptos-rs/leptos/issues/3354)) by [@&#8203;gbj](https://github.com/gbj) in https://github.com/leptos-rs/leptos/pull/3499 - feat: `#[lazy]` macros to support lazy loading and code splitting by [@&#8203;gbj](https://github.com/gbj) in https://github.com/leptos-rs/leptos/pull/3477 - chore(ci): add CI for `leptos_0.8` branch by [@&#8203;gbj](https://github.com/gbj) in https://github.com/leptos-rs/leptos/pull/3500 - fix: including `node_ref` after `{..}` on arbitrary components by [@&#8203;gbj](https://github.com/gbj) in https://github.com/leptos-rs/leptos/pull/3503 - Enhanced docs for reactive_stores by [@&#8203;dcsturman](https://github.com/dcsturman) in https://github.com/leptos-rs/leptos/pull/3508 - Adding a project detailing flexible mocking architecture inspired by hexagonal architecture for leptos app by [@&#8203;sjud](https://github.com/sjud) in https://github.com/leptos-rs/leptos/pull/3342 - issue-3467 - bumping codee version to support rkyv 8 by [@&#8203;thestarmaker](https://github.com/thestarmaker) in https://github.com/leptos-rs/leptos/pull/3504 - docs: Fix README.md & Add MSRV badge by [@&#8203;DanikVitek](https://github.com/DanikVitek) in https://github.com/leptos-rs/leptos/pull/3480 - update workspace dependency versions by [@&#8203;gbj](https://github.com/gbj) in https://github.com/leptos-rs/leptos/pull/3506 - feat (`either_of`): Extent API; Implement other iterator methods; Update deps by [@&#8203;DanikVitek](https://github.com/DanikVitek) in https://github.com/leptos-rs/leptos/pull/3478 - AddAnyAttr working with erase_components by [@&#8203;zakstucke](https://github.com/zakstucke) in https://github.com/leptos-rs/leptos/pull/3518 - impl IntoAttributeValue for TextProp by [@&#8203;SleeplessOne1917](https://github.com/SleeplessOne1917) in https://github.com/leptos-rs/leptos/pull/3517 - Fix memo recomputation by [@&#8203;stefnotch](https://github.com/stefnotch) in https://github.com/leptos-rs/leptos/pull/3495 - feat(callback): implement `matches` method for Callback and UnsyncCallback by [@&#8203;geoffreygarrett](https://github.com/geoffreygarrett) in https://github.com/leptos-rs/leptos/pull/3520 - fix: correctly notify descendants and ancestors of store fields (closes [#&#8203;3523](https://github.com/leptos-rs/leptos/issues/3523)) by [@&#8203;gbj](https://github.com/gbj) in https://github.com/leptos-rs/leptos/pull/3524 - feat: allow raw identifiers in Params derive macro by [@&#8203;geovie](https://github.com/geovie) in https://github.com/leptos-rs/leptos/pull/3525 ##### New Contributors - [@&#8203;dcsturman](https://github.com/dcsturman) made their first contribution in https://github.com/leptos-rs/leptos/pull/3508 **Full Changelog**: https://github.com/leptos-rs/leptos/compare/v0.7.4...v0.7.5 </details> <details> <summary>rust-lang/log (log)</summary> ### [`v0.4.26`](https://github.com/rust-lang/log/blob/HEAD/CHANGELOG.md#0426---2025-02-18) [Compare Source](https://github.com/rust-lang/log/compare/0.4.25...0.4.26) </details> <details> <summary>serde-rs/json (serde_json)</summary> ### [`v1.0.139`](https://github.com/serde-rs/json/releases/tag/v1.0.139) [Compare Source](https://github.com/serde-rs/json/compare/v1.0.138...v1.0.139) - Documentation improvements ### [`v1.0.138`](https://github.com/serde-rs/json/releases/tag/v1.0.138) [Compare Source](https://github.com/serde-rs/json/compare/v1.0.137...v1.0.138) - Documentation improvements ### [`v1.0.137`](https://github.com/serde-rs/json/releases/tag/v1.0.137) [Compare Source](https://github.com/serde-rs/json/compare/v1.0.136...v1.0.137) - Turn on "float_roundtrip" and "unbounded_depth" features for serde_json in play.rust-lang.org ([#&#8203;1231](https://github.com/serde-rs/json/issues/1231)) </details> <details> <summary>uuid-rs/uuid (uuid)</summary> ### [`v1.15.1`](https://github.com/uuid-rs/uuid/releases/tag/v1.15.1) [Compare Source](https://github.com/uuid-rs/uuid/compare/v1.15.0...v1.15.1) #### What's Changed - Guarantee v7 timestamp will never overflow by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/811 - Prepare for 1.15.1 release by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/812 **Full Changelog**: https://github.com/uuid-rs/uuid/compare/v1.15.0...v1.15.1 ### [`v1.15.0`](https://github.com/uuid-rs/uuid/releases/tag/v1.15.0) [Compare Source](https://github.com/uuid-rs/uuid/compare/v1.14.0...v1.15.0) #### What's Changed - Add a manual `Debug` implementation for NonNilUUid by [@&#8203;rick-de-water](https://github.com/rick-de-water) in https://github.com/uuid-rs/uuid/pull/808 - Support higher precision, shiftable timestamps in V7 UUIDs by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/809 - Prepare for 1.15.0 release by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/810 #### New Contributors - [@&#8203;rick-de-water](https://github.com/rick-de-water) made their first contribution in https://github.com/uuid-rs/uuid/pull/808 **Full Changelog**: https://github.com/uuid-rs/uuid/compare/v1.14.0...v1.15.0 ### [`v1.14.0`](https://github.com/uuid-rs/uuid/releases/tag/v1.14.0) [Compare Source](https://github.com/uuid-rs/uuid/compare/v1.13.2...v1.14.0) #### What's Changed - Add FromStr impls to the fmt structs by [@&#8203;tysen](https://github.com/tysen) in https://github.com/uuid-rs/uuid/pull/806 - Prepare for 1.14.0 release by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/807 #### New Contributors - [@&#8203;tysen](https://github.com/tysen) made their first contribution in https://github.com/uuid-rs/uuid/pull/806 **Full Changelog**: https://github.com/uuid-rs/uuid/compare/v1.13.2...v1.14.0 ### [`v1.13.2`](https://github.com/uuid-rs/uuid/releases/tag/v1.13.2) [Compare Source](https://github.com/uuid-rs/uuid/compare/1.13.1...v1.13.2) #### What's Changed - Add a compile_error when no source of randomness is available on wasm32-unknown-unknown by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/804 - Prepare for 1.13.2 release by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/805 **Full Changelog**: https://github.com/uuid-rs/uuid/compare/1.13.1...v1.13.2 ### [`v1.13.1`](https://github.com/uuid-rs/uuid/releases/tag/1.13.1) [Compare Source](https://github.com/uuid-rs/uuid/compare/1.13.0...1.13.1) #### What's Changed - Fix `wasm32` with `atomics` by [@&#8203;bushrat011899](https://github.com/bushrat011899) in https://github.com/uuid-rs/uuid/pull/797 - Prepare for 1.13.1 release by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/799 #### New Contributors - [@&#8203;bushrat011899](https://github.com/bushrat011899) made their first contribution in https://github.com/uuid-rs/uuid/pull/797 **Full Changelog**: https://github.com/uuid-rs/uuid/compare/1.13.0...1.13.1 ### [`v1.13.0`](https://github.com/uuid-rs/uuid/releases/tag/1.13.0) [Compare Source](https://github.com/uuid-rs/uuid/compare/1.12.1...1.13.0) #### :warning: Potential Breakage This release updates our version of `getrandom` to `0.3` and `rand` to `0.9`. It is a **potentially breaking change** for the following users: ##### no-std users who enable the `rng` feature `uuid` still uses `getrandom` by default on these platforms. Upgrade your version of `getrandom` and [follow its new docs](https://docs.rs/getrandom/0.3.1/getrandom/index.html#custom-backend) on configuring a custom backend. ##### `wasm32-unknown-unknown` users who enable the `rng` feature without the `js` feature Upgrade your version of `getrandom` and [follow its new docs](https://docs.rs/getrandom/0.3.1/getrandom/index.html#custom-backend) on configuring a backend. You'll also need to enable the `rng-getrandom` or `rng-rand` feature of `uuid` to force it to use `getrandom` as its backend: ```diff [dependencies.uuid] version = "1.13.0" - features = ["v4"] + features = ["v4", "rng-getrandom"] [dependencies.getrandom] version = "0.3" ``` If you're on `wasm32-unknown-unknown` and using the `js` feature of `uuid` you shouldn't see any breakage. We've kept this behavior by vendoring in `getrandom`'s web-based backend when the `js` feature is enabled. #### What's Changed - Update `getrandom` to `0.3` and `rand` to `0.9` by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/793 - Support forcing `getrandom` on `wasm32-unknown-unknown` without JavaScript by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/794 - Prepare for 1.13.0 release by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/795 **Full Changelog**: https://github.com/uuid-rs/uuid/compare/1.12.1...1.13.0 ### [`v1.12.1`](https://github.com/uuid-rs/uuid/releases/tag/1.12.1) [Compare Source](https://github.com/uuid-rs/uuid/compare/1.12.0...1.12.1) #### What's Changed - Fix links to namespaces in documentation by [@&#8203;cstyles](https://github.com/cstyles) in https://github.com/uuid-rs/uuid/pull/789 - use inherent to_be_bytes and to_le_bytes methods by [@&#8203;Vrtgs](https://github.com/Vrtgs) in https://github.com/uuid-rs/uuid/pull/788 - Reduce bitshifts in from_u64\_pair by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/790 - prepare for 1.12.1 release by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/791 #### New Contributors - [@&#8203;cstyles](https://github.com/cstyles) made their first contribution in https://github.com/uuid-rs/uuid/pull/789 - [@&#8203;Vrtgs](https://github.com/Vrtgs) made their first contribution in https://github.com/uuid-rs/uuid/pull/788 **Full Changelog**: https://github.com/uuid-rs/uuid/compare/1.12.0...1.12.1 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiIzNy40MjQuMyIsInVwZGF0ZWRJblZlciI6IjM3LjQyNC4zIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
kjuulh added 1 commit 2025-01-12 02:41:13 +01:00
chore(deps): update rust crate axum to 0.8
Some checks failed
renovate/artifacts Artifact file update failure
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is failing
f3f0bcf02e
Author
Owner

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path Cargo.toml --package axum@0.7.9 --precise 0.8.1
    Updating crates.io index
error: failed to select a version for the requirement `axum = "^0.7.9"`
candidate versions found which didn't match: 0.8.1
location searched: crates.io index
required by package `leptos_axum v0.7.4`
    ... which satisfies dependency `leptos_axum = "^0.7.4"` (locked to 0.7.4) of package `app v0.1.0 (/tmp/renovate/repos/gitea/kjuulh/lebusiness-client/crates/app)`

### ⚠️ Artifact update problem Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is. ♻ Renovate will retry this branch, including artifacts, only when one of the following happens: - any of the package files in this branch needs updating, or - the branch becomes conflicted, or - you click the rebase/retry checkbox if found above, or - you rename this PR's title to start with "rebase!" to trigger it manually The artifact failure details are included below: ##### File name: Cargo.lock ``` Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path Cargo.toml --package axum@0.7.9 --precise 0.8.1 Updating crates.io index error: failed to select a version for the requirement `axum = "^0.7.9"` candidate versions found which didn't match: 0.8.1 location searched: crates.io index required by package `leptos_axum v0.7.4` ... which satisfies dependency `leptos_axum = "^0.7.4"` (locked to 0.7.4) of package `app v0.1.0 (/tmp/renovate/repos/gitea/kjuulh/lebusiness-client/crates/app)` ```
kjuulh force-pushed renovate/all from f3f0bcf02e to cb95813436 2025-01-13 02:45:05 +01:00 Compare
kjuulh force-pushed renovate/all from cb95813436 to 3f1e5d3f8c 2025-01-13 06:43:47 +01:00 Compare
kjuulh changed title from chore(deps): update rust crate axum to 0.8 to chore(deps): update all dependencies 2025-01-15 02:52:39 +01:00
kjuulh force-pushed renovate/all from 3f1e5d3f8c to 5e3140e3e6 2025-01-19 02:47:46 +01:00 Compare
kjuulh force-pushed renovate/all from 5e3140e3e6 to 247953ba03 2025-01-19 06:44:03 +01:00 Compare
kjuulh force-pushed renovate/all from 247953ba03 to 68dadd1c5b 2025-01-20 02:45:38 +01:00 Compare
kjuulh force-pushed renovate/all from 68dadd1c5b to 4eabf15136 2025-01-21 06:49:23 +01:00 Compare
kjuulh force-pushed renovate/all from 4eabf15136 to 1f49fc0a47 2025-01-22 02:46:48 +01:00 Compare
kjuulh force-pushed renovate/all from 1f49fc0a47 to 824a92b1f0 2025-01-22 06:43:40 +01:00 Compare
kjuulh force-pushed renovate/all from 824a92b1f0 to d618989860 2025-01-23 02:46:53 +01:00 Compare
kjuulh force-pushed renovate/all from d618989860 to f5fa1c7e50 2025-01-23 06:48:25 +01:00 Compare
kjuulh force-pushed renovate/all from f5fa1c7e50 to 442ff5974e 2025-01-24 02:54:43 +01:00 Compare
kjuulh force-pushed renovate/all from 442ff5974e to 01bce81f92 2025-01-24 06:53:51 +01:00 Compare
kjuulh force-pushed renovate/all from 01bce81f92 to db62639f39 2025-01-25 02:48:54 +01:00 Compare
kjuulh force-pushed renovate/all from db62639f39 to 1cba80e9e2 2025-01-25 06:44:35 +01:00 Compare
kjuulh force-pushed renovate/all from 1cba80e9e2 to 557af389a7 2025-01-26 02:51:39 +01:00 Compare
kjuulh force-pushed renovate/all from 557af389a7 to 54a2be2630 2025-01-26 06:45:07 +01:00 Compare
kjuulh force-pushed renovate/all from 54a2be2630 to 3630272750 2025-01-27 02:50:30 +01:00 Compare
kjuulh force-pushed renovate/all from 3630272750 to df5640ded3 2025-01-27 06:46:26 +01:00 Compare
kjuulh force-pushed renovate/all from df5640ded3 to fa7d51a921 2025-01-28 02:45:57 +01:00 Compare
kjuulh force-pushed renovate/all from fa7d51a921 to 83d59247ad 2025-01-28 06:47:33 +01:00 Compare
kjuulh force-pushed renovate/all from 83d59247ad to dbfda2a260 2025-01-29 02:53:40 +01:00 Compare
kjuulh force-pushed renovate/all from dbfda2a260 to f9eeaeaeb6 2025-01-29 06:50:33 +01:00 Compare
kjuulh force-pushed renovate/all from f9eeaeaeb6 to 6040b92371 2025-01-30 02:56:53 +01:00 Compare
kjuulh force-pushed renovate/all from 6040b92371 to f149408940 2025-01-30 07:01:09 +01:00 Compare
kjuulh force-pushed renovate/all from f149408940 to ff875c85fb 2025-01-31 02:50:19 +01:00 Compare
kjuulh force-pushed renovate/all from ff875c85fb to 405e0e88c1 2025-01-31 06:47:32 +01:00 Compare
kjuulh force-pushed renovate/all from 405e0e88c1 to b913a214d4 2025-02-01 02:48:22 +01:00 Compare
kjuulh force-pushed renovate/all from b913a214d4 to fa10ed656e 2025-02-01 06:48:22 +01:00 Compare
kjuulh force-pushed renovate/all from fa10ed656e to 1092b24f4a 2025-02-02 02:47:27 +01:00 Compare
kjuulh force-pushed renovate/all from 1092b24f4a to 7ac14cb8f9 2025-02-02 06:43:36 +01:00 Compare
kjuulh force-pushed renovate/all from 7ac14cb8f9 to f4384afb36 2025-02-03 02:44:59 +01:00 Compare
kjuulh force-pushed renovate/all from f4384afb36 to a1d4c17398 2025-02-03 06:43:20 +01:00 Compare
kjuulh force-pushed renovate/all from a1d4c17398 to 2f74b08e1d 2025-02-04 02:52:08 +01:00 Compare
kjuulh force-pushed renovate/all from 2f74b08e1d to bf4f94da42 2025-02-04 06:47:58 +01:00 Compare
kjuulh force-pushed renovate/all from bf4f94da42 to b8523945e5 2025-02-05 02:48:15 +01:00 Compare
kjuulh force-pushed renovate/all from b8523945e5 to 3284cdc880 2025-02-05 06:51:52 +01:00 Compare
kjuulh force-pushed renovate/all from 3284cdc880 to 99bd4e0249 2025-02-06 02:52:58 +01:00 Compare
kjuulh force-pushed renovate/all from 99bd4e0249 to d43f01248c 2025-02-06 06:45:48 +01:00 Compare
kjuulh force-pushed renovate/all from d43f01248c to f42fa748ed 2025-02-07 02:47:27 +01:00 Compare
kjuulh force-pushed renovate/all from f42fa748ed to 9b78dd5ddf 2025-02-07 06:43:12 +01:00 Compare
kjuulh force-pushed renovate/all from 9b78dd5ddf to 36bf0758e2 2025-02-08 02:48:29 +01:00 Compare
kjuulh force-pushed renovate/all from 36bf0758e2 to 19a8bdf781 2025-02-08 06:44:13 +01:00 Compare
kjuulh force-pushed renovate/all from 19a8bdf781 to fb5250ee58 2025-02-09 02:48:41 +01:00 Compare
kjuulh force-pushed renovate/all from fb5250ee58 to b07d60d348 2025-02-09 06:44:16 +01:00 Compare
kjuulh force-pushed renovate/all from b07d60d348 to 850497d054 2025-02-10 02:46:16 +01:00 Compare
kjuulh force-pushed renovate/all from 850497d054 to 19bd097cc0 2025-02-10 06:44:46 +01:00 Compare
kjuulh force-pushed renovate/all from 19bd097cc0 to 098bc3dad6 2025-02-11 02:49:46 +01:00 Compare
kjuulh force-pushed renovate/all from 098bc3dad6 to 4c1a568686 2025-02-11 06:47:28 +01:00 Compare
kjuulh force-pushed renovate/all from 4c1a568686 to 165193bbf8 2025-02-12 02:53:01 +01:00 Compare
kjuulh force-pushed renovate/all from 165193bbf8 to eaec6e1a9e 2025-02-12 06:48:36 +01:00 Compare
kjuulh force-pushed renovate/all from eaec6e1a9e to e2b0834b10 2025-02-13 02:48:32 +01:00 Compare
kjuulh force-pushed renovate/all from e2b0834b10 to ce21720fec 2025-02-13 06:45:59 +01:00 Compare
kjuulh force-pushed renovate/all from ce21720fec to 6e51d4b329 2025-02-14 02:46:18 +01:00 Compare
kjuulh force-pushed renovate/all from 6e51d4b329 to 0a22f1b1da 2025-02-14 06:44:58 +01:00 Compare
kjuulh force-pushed renovate/all from 0a22f1b1da to c3ebf79844 2025-02-15 02:43:15 +01:00 Compare
kjuulh force-pushed renovate/all from c3ebf79844 to faa3579c10 2025-02-15 06:40:35 +01:00 Compare
kjuulh force-pushed renovate/all from faa3579c10 to badccf41ba 2025-02-16 02:41:55 +01:00 Compare
kjuulh force-pushed renovate/all from badccf41ba to 6b576edea0 2025-02-16 06:39:19 +01:00 Compare
kjuulh force-pushed renovate/all from 6b576edea0 to 74815fc9c4 2025-02-17 02:44:02 +01:00 Compare
kjuulh force-pushed renovate/all from 74815fc9c4 to c67a27ba94 2025-02-17 06:42:06 +01:00 Compare
kjuulh force-pushed renovate/all from c67a27ba94 to 363b588f38 2025-02-18 02:49:36 +01:00 Compare
kjuulh force-pushed renovate/all from 363b588f38 to 9f858510ec 2025-02-18 06:45:12 +01:00 Compare
kjuulh force-pushed renovate/all from 9f858510ec to 3802746bb5 2025-02-19 02:43:42 +01:00 Compare
kjuulh force-pushed renovate/all from 3802746bb5 to d81ebcefaa 2025-02-19 06:41:41 +01:00 Compare
kjuulh force-pushed renovate/all from d81ebcefaa to 50b0107c85 2025-02-20 02:55:31 +01:00 Compare
kjuulh force-pushed renovate/all from 50b0107c85 to 17ad1283f7 2025-02-20 06:52:29 +01:00 Compare
kjuulh force-pushed renovate/all from 17ad1283f7 to b7b5b9bfe1 2025-02-21 02:52:28 +01:00 Compare
kjuulh force-pushed renovate/all from b7b5b9bfe1 to 1c61c0c604 2025-02-21 06:43:25 +01:00 Compare
kjuulh force-pushed renovate/all from 1c61c0c604 to 1219e56373 2025-02-22 02:46:06 +01:00 Compare
kjuulh force-pushed renovate/all from 1219e56373 to 4ae94b575d 2025-02-22 06:48:46 +01:00 Compare
kjuulh force-pushed renovate/all from 4ae94b575d to 3cb354d74b 2025-02-23 02:44:39 +01:00 Compare
kjuulh force-pushed renovate/all from 3cb354d74b to c2c38d8972 2025-02-23 06:45:36 +01:00 Compare
kjuulh force-pushed renovate/all from c2c38d8972 to 481b3bfd6e 2025-02-24 02:45:11 +01:00 Compare
kjuulh force-pushed renovate/all from 481b3bfd6e to a33b8f51dd 2025-02-24 06:42:52 +01:00 Compare
kjuulh force-pushed renovate/all from a33b8f51dd to 5971cd95ad 2025-02-25 02:48:40 +01:00 Compare
kjuulh force-pushed renovate/all from 5971cd95ad to e51886ef9c 2025-02-25 06:46:20 +01:00 Compare
kjuulh force-pushed renovate/all from e51886ef9c to 23be176af7 2025-02-26 02:45:32 +01:00 Compare
kjuulh force-pushed renovate/all from 23be176af7 to cbe24a661f 2025-02-26 06:44:29 +01:00 Compare
kjuulh force-pushed renovate/all from cbe24a661f to 8d3019ef00 2025-02-27 02:55:16 +01:00 Compare
kjuulh force-pushed renovate/all from 8d3019ef00 to e9f0a74681 2025-02-27 06:52:19 +01:00 Compare
kjuulh force-pushed renovate/all from e9f0a74681 to 9c3b128321 2025-02-28 02:54:19 +01:00 Compare
kjuulh force-pushed renovate/all from 9c3b128321 to 7ed2789a96 2025-02-28 06:50:20 +01:00 Compare
Some checks failed
renovate/artifacts Artifact file update failure
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is failing
This pull request can be merged automatically.
You are not authorized to merge this pull request.

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/all:renovate/all
git checkout renovate/all
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/lebusiness-client#1
No description provided.