fix(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
http workspace.dependencies minor 1.2.0 -> 1.3.1
leptos workspace.dependencies patch 0.7.4 -> 0.7.8
leptos_axum workspace.dependencies patch 0.7.4 -> 0.7.8
leptos_meta workspace.dependencies patch 0.7.4 -> 0.7.8
leptos_router workspace.dependencies patch 0.7.4 -> 0.7.8
log workspace.dependencies patch 0.4.25 -> 0.4.27
reqwest dependencies patch 0.12.12 -> 0.12.15
serde_json dependencies patch 1.0.136 -> 1.0.140
server_fn workspace.dependencies patch 0.7.4 -> 0.7.8
thiserror workspace.dependencies patch 2.0.11 -> 2.0.12
tokio (source) workspace.dependencies minor 1.43.0 -> 1.44.2
uuid workspace.dependencies minor 1.12.0 -> 1.16.0

Release Notes

hyperium/http (http)

v1.3.1

Compare Source

  • Fix validation that all characters are UTF-8 in URI path and query.

v1.3.0

Compare Source

  • Allow most UTF-8 characters in URI path and query.
  • Fix HeaderMap::reserve() to allocate sufficient capacity.
leptos-rs/leptos (leptos)

v0.7.8

Compare Source

A minor release with some quality of life improvements and bugfixes

What's Changed
New Contributors

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

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.27

Compare Source

What's Changed

Full Changelog: https://github.com/rust-lang/log/compare/0.4.26...0.4.27

v0.4.26

Compare Source

What's Changed

Full Changelog: https://github.com/rust-lang/log/compare/0.4.25...0.4.26

seanmonstar/reqwest (reqwest)

v0.12.15

Compare Source

  • Fix Windows to support both ProxyOverride and NO_PROXY.
  • Fix http3 to support streaming response bodies.
  • Fix http3 dependency from public API misuse.

v0.12.14

Compare Source

  • Fix missing fetch_mode_no_cors(), marking as deprecated when not on WASM.

v0.12.13

Compare Source

  • Add Form::into_reader() for blocking multipart forms.
  • Add Form::into_stream() for async multipart forms.
  • Add support for SOCKS4a proxies.
  • Fix decoding responses with multiple zstd frames.
  • Fix RequestBuilder::form() from overwriting a previously set Content-Type header, like the other builder methods.
  • Fix cloning of request timeout in blocking::Request.
  • Fix http3 synchronization of connection creation, reducing unneccesary extra connections.
  • Fix Windows system proxy to use ProxyOverride as a NO_PROXY value.
  • Fix blocking read to correctly reserve and zero read buffer.
  • (wasm) Add support for request timeouts.
  • (wasm) Fix Error::is_timeout() to return true when from a request timeout.
serde-rs/json (serde_json)

v1.0.140

Compare Source

  • Documentation improvements

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)
dtolnay/thiserror (thiserror)

v2.0.12

Compare Source

  • Prevent elidable_lifetime_names pedantic clippy lint in generated impl (#​413)
tokio-rs/tokio (tokio)

v1.44.2: Tokio v1.44.2

Compare Source

This release fixes a soundness issue in the broadcast channel. The channel
accepts values that are Send but !Sync. Previously, the channel called
clone() on these values without synchronizing. This release fixes the channel
by synchronizing calls to .clone() (Thanks Austin Bonander for finding and
reporting the issue).

Fixed
  • sync: synchronize clone() call in broadcast channel (#​7232)

v1.44.1: Tokio v1.44.1

Compare Source

1.44.1 (March 13th, 2025)

Fixed
  • rt: skip defer queue in block_in_place context (#​7216)

v1.44.0: Tokio v1.44.0

Compare Source

1.44.0 (March 7th, 2025)

This release changes the from_std method on sockets to panic if a blocking socket is provided. We determined this change is not a breaking change as Tokio is not intended to operate using blocking sockets. Doing so results in runtime hangs and should be considered a bug. Accidentally passing a blocking socket to Tokio is one of the most common user mistakes. If this change causes an issue for you, please comment on #​7172.

Added
  • coop: add task::coop module (#​7116)
  • process: add Command::get_kill_on_drop() (#​7086)
  • sync: add broadcast::Sender::closed (#​6685, #​7090)
  • sync: add broadcast::WeakSender (#​7100)
  • sync: add oneshot::Receiver::is_empty() (#​7153)
  • sync: add oneshot::Receiver::is_terminated() (#​7152)
Fixed
  • fs: empty reads on File should not start a background read (#​7139)
  • process: calling start_kill on exited child should not fail (#​7160)
  • signal: fix CTRL_CLOSE, CTRL_LOGOFF, CTRL_SHUTDOWN on windows (#​7122)
  • sync: properly handle panic during mpsc drop (#​7094)
Changes
  • runtime: clean up magic number in registration set (#​7112)
  • coop: make coop yield using waker defer strategy (#​7185)
  • macros: make select! budget-aware (#​7164)
  • net: panic when passing a blocking socket to from_std (#​7166)
  • io: clean up buffer casts (#​7142)
Changes to unstable APIs
  • rt: add before and after task poll callbacks (#​7120)
  • tracing: make the task tracing API unstable public (#​6972)
Documented
  • docs: fix nesting of sections in top-level docs (#​7159)
  • fs: rename symlink and hardlink parameter names (#​7143)
  • io: swap reader/writer in simplex doc test (#​7176)
  • macros: docs about select! alternatives (#​7110)
  • net: rename the argument for send_to (#​7146)
  • process: add example for reading Child stdout (#​7141)
  • process: clarify Child::kill behavior (#​7162)
  • process: fix grammar of the ChildStdin struct doc comment (#​7192)
  • runtime: consistently use worker_threads instead of core_threads (#​7186)

v1.43.1

Compare Source

uuid-rs/uuid (uuid)

v1.16.0

Compare Source

What's Changed

New Contributors

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

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 is behind base branch, 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 | |---|---|---|---| | [http](https://github.com/hyperium/http) | workspace.dependencies | minor | `1.2.0` -> `1.3.1` | | [leptos](https://github.com/leptos-rs/leptos) | workspace.dependencies | patch | `0.7.4` -> `0.7.8` | | [leptos_axum](https://github.com/leptos-rs/leptos) | workspace.dependencies | patch | `0.7.4` -> `0.7.8` | | [leptos_meta](https://github.com/leptos-rs/leptos) | workspace.dependencies | patch | `0.7.4` -> `0.7.8` | | [leptos_router](https://github.com/leptos-rs/leptos) | workspace.dependencies | patch | `0.7.4` -> `0.7.8` | | [log](https://github.com/rust-lang/log) | workspace.dependencies | patch | `0.4.25` -> `0.4.27` | | [reqwest](https://github.com/seanmonstar/reqwest) | dependencies | patch | `0.12.12` -> `0.12.15` | | [serde_json](https://github.com/serde-rs/json) | dependencies | patch | `1.0.136` -> `1.0.140` | | [server_fn](https://github.com/leptos-rs/leptos) | workspace.dependencies | patch | `0.7.4` -> `0.7.8` | | [thiserror](https://github.com/dtolnay/thiserror) | workspace.dependencies | patch | `2.0.11` -> `2.0.12` | | [tokio](https://tokio.rs) ([source](https://github.com/tokio-rs/tokio)) | workspace.dependencies | minor | `1.43.0` -> `1.44.2` | | [uuid](https://github.com/uuid-rs/uuid) | workspace.dependencies | minor | `1.12.0` -> `1.16.0` | --- ### Release Notes <details> <summary>hyperium/http (http)</summary> ### [`v1.3.1`](https://github.com/hyperium/http/blob/HEAD/CHANGELOG.md#131-March-11-2025) [Compare Source](https://github.com/hyperium/http/compare/v1.3.0...v1.3.1) - Fix validation that all characters are UTF-8 in URI path and query. ### [`v1.3.0`](https://github.com/hyperium/http/blob/HEAD/CHANGELOG.md#130-March-11-2025) [Compare Source](https://github.com/hyperium/http/compare/v1.2.0...v1.3.0) - Allow most UTF-8 characters in URI path and query. - Fix `HeaderMap::reserve()` to allocate sufficient capacity. </details> <details> <summary>leptos-rs/leptos (leptos)</summary> ### [`v0.7.8`](https://github.com/leptos-rs/leptos/releases/tag/v0.7.8) [Compare Source](https://github.com/leptos-rs/leptos/compare/v0.7.7...v0.7.8) A minor release with some quality of life improvements and bugfixes ##### What's Changed - fix: remove extra placeholder in Vec of text nodes (closes [#&#8203;3583](https://github.com/leptos-rs/leptos/issues/3583)) by [@&#8203;gbj](https://github.com/gbj) in https://github.com/leptos-rs/leptos/pull/3592 - fix: occasional use-after-disposed panic in Suspense by [@&#8203;gbj](https://github.com/gbj) in https://github.com/leptos-rs/leptos/pull/3595 - projects/bevy3d_ui Migrate to leptos 0.7.7 by [@&#8203;martinfrances107](https://github.com/martinfrances107) in https://github.com/leptos-rs/leptos/pull/3596 - projects/bevy3d_ui: Bevy migration by [@&#8203;martinfrances107](https://github.com/martinfrances107) in https://github.com/leptos-rs/leptos/pull/3597 - Minor: leptos_config - Bump the "config" crate to version 0.15.8 by [@&#8203;martinfrances107](https://github.com/martinfrances107) in https://github.com/leptos-rs/leptos/pull/3594 - Minor: Bump itertools to "0.14.0" by [@&#8203;martinfrances107](https://github.com/martinfrances107) in https://github.com/leptos-rs/leptos/pull/3593 - Minor: Bumped version of convert_case to 0.7 by [@&#8203;martinfrances107](https://github.com/martinfrances107) in https://github.com/leptos-rs/leptos/pull/3590 - Minor: "wasm-bindgen" - Moved the crate definition up to the root workspace by [@&#8203;martinfrances107](https://github.com/martinfrances107) in https://github.com/leptos-rs/leptos/pull/3588 - Remove getrandom by [@&#8203;martinfrances107](https://github.com/martinfrances107) in https://github.com/leptos-rs/leptos/pull/3589 - Minor: Bump tokio to 1.43. by [@&#8203;martinfrances107](https://github.com/martinfrances107) in https://github.com/leptos-rs/leptos/pull/3600 - projects/bevy3d_ui: Bevy - Bugfix, clippy and crate bump by [@&#8203;martinfrances107](https://github.com/martinfrances107) in https://github.com/leptos-rs/leptos/pull/3603 - Add invert to the OptionStoreExt by [@&#8203;mahdi739](https://github.com/mahdi739) in https://github.com/leptos-rs/leptos/pull/3534 - feat: allow pausing and resuming effects by [@&#8203;gbj](https://github.com/gbj) in https://github.com/leptos-rs/leptos/pull/3599 - Impl into<Signal> for subfields by [@&#8203;jvdwrf](https://github.com/jvdwrf) in https://github.com/leptos-rs/leptos/pull/3579 - fix: reorder pause check in new_isomorphic by [@&#8203;gbj](https://github.com/gbj) in https://github.com/leptos-rs/leptos/pull/3613 - Minor: drop create_signal form the landing page. by [@&#8203;martinfrances107](https://github.com/martinfrances107) in https://github.com/leptos-rs/leptos/pull/3611 - chore: update `either_of` minimum version in workspace by [@&#8203;gbj](https://github.com/gbj) in https://github.com/leptos-rs/leptos/pull/3612 - fix: hydration of `()` by [@&#8203;gbj](https://github.com/gbj) in https://github.com/leptos-rs/leptos/pull/3615 - Put serde_json in the root workspace by [@&#8203;martinfrances107](https://github.com/martinfrances107) in https://github.com/leptos-rs/leptos/pull/3610 - fix: only render meta tags when rendered, not when created (closes [#&#8203;3629](https://github.com/leptos-rs/leptos/issues/3629)) by [@&#8203;gbj](https://github.com/gbj) in https://github.com/leptos-rs/leptos/pull/3630 - fix: allow decoding already-decoded URI components (closes [#&#8203;3606](https://github.com/leptos-rs/leptos/issues/3606)) by [@&#8203;gbj](https://github.com/gbj) in https://github.com/leptos-rs/leptos/pull/3628 - chore(ci): update pinned nightly version by [@&#8203;gbj](https://github.com/gbj) in https://github.com/leptos-rs/leptos/pull/3644 - chore: fix Axum test setup by [@&#8203;gbj](https://github.com/gbj) in https://github.com/leptos-rs/leptos/pull/3651 - feat: map and and_then for resource variants by [@&#8203;TERRORW0LF](https://github.com/TERRORW0LF) in https://github.com/leptos-rs/leptos/pull/3652 - Implement `Debug` for `ArcField` and `Field` by [@&#8203;mahdi739](https://github.com/mahdi739) in https://github.com/leptos-rs/leptos/pull/3660 - Minor: examples/server_fns_axum - Bumped various packages (not axum). by [@&#8203;martinfrances107](https://github.com/martinfrances107) in https://github.com/leptos-rs/leptos/pull/3655 - fix: do not double-insert hash character in URLs (closes [#&#8203;3647](https://github.com/leptos-rs/leptos/issues/3647)) by [@&#8203;gbj](https://github.com/gbj) in https://github.com/leptos-rs/leptos/pull/3661 - fix: param segments should not match an empty string that contains only `/` separator (closes [#&#8203;3527](https://github.com/leptos-rs/leptos/issues/3527)) by [@&#8203;gbj](https://github.com/gbj) in https://github.com/leptos-rs/leptos/pull/3662 - fix: ensure cleanups run for all replaced nested routes (closes [#&#8203;3665](https://github.com/leptos-rs/leptos/issues/3665)) by [@&#8203;gbj](https://github.com/gbj) in https://github.com/leptos-rs/leptos/pull/3666 - Minor: clippy - Replace mem::replace with Option::replace by [@&#8203;martinfrances107](https://github.com/martinfrances107) in https://github.com/leptos-rs/leptos/pull/3668 - fix: point `bind:group` to correct location (closes [#&#8203;3678](https://github.com/leptos-rs/leptos/issues/3678)) by [@&#8203;gbj](https://github.com/gbj) in https://github.com/leptos-rs/leptos/pull/3680 - fix: enum stack size by [@&#8203;sabify](https://github.com/sabify) in https://github.com/leptos-rs/leptos/pull/3677 - fix: semver and feature handy script for update nightly by [@&#8203;sabify](https://github.com/sabify) in https://github.com/leptos-rs/leptos/pull/3674 - fix: untrack in `NodeRef::on_load()` to avoid re-triggering it if you read something reactively (closes [#&#8203;3684](https://github.com/leptos-rs/leptos/issues/3684)) by [@&#8203;gbj](https://github.com/gbj) in https://github.com/leptos-rs/leptos/pull/3686 - `ImmediateEffect` by [@&#8203;QuartzLibrary](https://github.com/QuartzLibrary) in https://github.com/leptos-rs/leptos/pull/3650 - `ImmediateEffect` follow up by [@&#8203;QuartzLibrary](https://github.com/QuartzLibrary) in https://github.com/leptos-rs/leptos/pull/3692 - Allow LocalResource sync methods to be used outside Suspense by [@&#8203;zakstucke](https://github.com/zakstucke) in https://github.com/leptos-rs/leptos/pull/3708 - fix: ensure that store subfield mutations notify from the root down (closes [#&#8203;3704](https://github.com/leptos-rs/leptos/issues/3704)) by [@&#8203;gbj](https://github.com/gbj) in https://github.com/leptos-rs/leptos/pull/3714 - fix(reactive_stores_macro): Make tuple struct field locator in `impl Patch` be `syn::Index` instead of `usize` by [@&#8203;DanikVitek](https://github.com/DanikVitek) in https://github.com/leptos-rs/leptos/pull/3700 - Various issues related to setting signals and context in cleanups by [@&#8203;gbj](https://github.com/gbj) in https://github.com/leptos-rs/leptos/pull/3687 - test: regression from [#&#8203;3502](https://github.com/leptos-rs/leptos/issues/3502) by [@&#8203;metatoaster](https://github.com/metatoaster) in https://github.com/leptos-rs/leptos/pull/3720 - Fix typo by [@&#8203;NCura](https://github.com/NCura) in https://github.com/leptos-rs/leptos/pull/3727 - fix: matching optional params after an initial static param (closes [#&#8203;3730](https://github.com/leptos-rs/leptos/issues/3730)) by [@&#8203;gbj](https://github.com/gbj) in https://github.com/leptos-rs/leptos/pull/3732 - docs: update example tailwind input css to v4 by [@&#8203;bimoadityar](https://github.com/bimoadityar) in https://github.com/leptos-rs/leptos/pull/3702 ##### New Contributors - [@&#8203;TERRORW0LF](https://github.com/TERRORW0LF) made their first contribution in https://github.com/leptos-rs/leptos/pull/3652 - [@&#8203;QuartzLibrary](https://github.com/QuartzLibrary) made their first contribution in https://github.com/leptos-rs/leptos/pull/3650 - [@&#8203;bimoadityar](https://github.com/bimoadityar) made their first contribution in https://github.com/leptos-rs/leptos/pull/3702 **Full Changelog**: https://github.com/leptos-rs/leptos/compare/v0.7.7...v0.7.8 ### [`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.27`](https://github.com/rust-lang/log/blob/HEAD/CHANGELOG.md#0427---2025-03-24) [Compare Source](https://github.com/rust-lang/log/compare/0.4.26...0.4.27) ##### What's Changed - A few minor lint fixes by [@&#8203;nyurik](https://github.com/nyurik) in https://github.com/rust-lang/log/pull/671 - Enable clippy support for format-like macros by [@&#8203;nyurik](https://github.com/nyurik) in https://github.com/rust-lang/log/pull/665 - Add an optional logger param by [@&#8203;tisonkun](https://github.com/tisonkun) in https://github.com/rust-lang/log/pull/664 - Pass global logger by value, supplied logger by ref by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/rust-lang/log/pull/673 **Full Changelog**: https://github.com/rust-lang/log/compare/0.4.26...0.4.27 ### [`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) ##### What's Changed - Derive `Clone` for `kv::Value` by [@&#8203;SpriteOvO](https://github.com/SpriteOvO) in https://github.com/rust-lang/log/pull/668 - Add `spdlog-rs` link to crate doc by [@&#8203;SpriteOvO](https://github.com/SpriteOvO) in https://github.com/rust-lang/log/pull/669 **Full Changelog**: https://github.com/rust-lang/log/compare/0.4.25...0.4.26 </details> <details> <summary>seanmonstar/reqwest (reqwest)</summary> ### [`v0.12.15`](https://github.com/seanmonstar/reqwest/blob/HEAD/CHANGELOG.md#v01215) [Compare Source](https://github.com/seanmonstar/reqwest/compare/v0.12.14...v0.12.15) - Fix Windows to support both `ProxyOverride` and `NO_PROXY`. - Fix http3 to support streaming response bodies. - Fix http3 dependency from public API misuse. ### [`v0.12.14`](https://github.com/seanmonstar/reqwest/blob/HEAD/CHANGELOG.md#v01214) [Compare Source](https://github.com/seanmonstar/reqwest/compare/v0.12.13...v0.12.14) - Fix missing `fetch_mode_no_cors()`, marking as deprecated when not on WASM. ### [`v0.12.13`](https://github.com/seanmonstar/reqwest/blob/HEAD/CHANGELOG.md#v01213) [Compare Source](https://github.com/seanmonstar/reqwest/compare/v0.12.12...v0.12.13) - Add `Form::into_reader()` for blocking `multipart` forms. - Add `Form::into_stream()` for async `multipart` forms. - Add support for SOCKS4a proxies. - Fix decoding responses with multiple zstd frames. - Fix `RequestBuilder::form()` from overwriting a previously set `Content-Type` header, like the other builder methods. - Fix cloning of request timeout in `blocking::Request`. - Fix http3 synchronization of connection creation, reducing unneccesary extra connections. - Fix Windows system proxy to use `ProxyOverride` as a `NO_PROXY` value. - Fix blocking read to correctly reserve and zero read buffer. - (wasm) Add support for request timeouts. - (wasm) Fix `Error::is_timeout()` to return true when from a request timeout. </details> <details> <summary>serde-rs/json (serde_json)</summary> ### [`v1.0.140`](https://github.com/serde-rs/json/releases/tag/v1.0.140) [Compare Source](https://github.com/serde-rs/json/compare/v1.0.139...v1.0.140) - Documentation improvements ### [`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>dtolnay/thiserror (thiserror)</summary> ### [`v2.0.12`](https://github.com/dtolnay/thiserror/releases/tag/2.0.12) [Compare Source](https://github.com/dtolnay/thiserror/compare/2.0.11...2.0.12) - Prevent elidable_lifetime_names pedantic clippy lint in generated impl ([#&#8203;413](https://github.com/dtolnay/thiserror/issues/413)) </details> <details> <summary>tokio-rs/tokio (tokio)</summary> ### [`v1.44.2`](https://github.com/tokio-rs/tokio/releases/tag/tokio-1.44.2): Tokio v1.44.2 [Compare Source](https://github.com/tokio-rs/tokio/compare/tokio-1.44.1...tokio-1.44.2) This release fixes a soundness issue in the broadcast channel. The channel accepts values that are `Send` but `!Sync`. Previously, the channel called `clone()` on these values without synchronizing. This release fixes the channel by synchronizing calls to `.clone()` (Thanks Austin Bonander for finding and reporting the issue). ##### Fixed - sync: synchronize `clone()` call in broadcast channel ([#&#8203;7232]) [#&#8203;7232]: https://github.com/tokio-rs/tokio/pull/7232 ### [`v1.44.1`](https://github.com/tokio-rs/tokio/releases/tag/tokio-1.44.1): Tokio v1.44.1 [Compare Source](https://github.com/tokio-rs/tokio/compare/tokio-1.44.0...tokio-1.44.1) ### 1.44.1 (March 13th, 2025) ##### Fixed - rt: skip defer queue in `block_in_place` context ([#&#8203;7216]) [#&#8203;7216]: https://github.com/tokio-rs/tokio/pull/7216 ### [`v1.44.0`](https://github.com/tokio-rs/tokio/releases/tag/tokio-1.44.0): Tokio v1.44.0 [Compare Source](https://github.com/tokio-rs/tokio/compare/tokio-1.43.1...tokio-1.44.0) ### 1.44.0 (March 7th, 2025) This release changes the `from_std` method on sockets to panic if a blocking socket is provided. We determined this change is not a breaking change as Tokio is not intended to operate using blocking sockets. Doing so results in runtime hangs and should be considered a bug. Accidentally passing a blocking socket to Tokio is one of the most common user mistakes. If this change causes an issue for you, please comment on [#&#8203;7172]. ##### Added - coop: add `task::coop` module ([#&#8203;7116]) - process: add `Command::get_kill_on_drop()` ([#&#8203;7086]) - sync: add `broadcast::Sender::closed` ([#&#8203;6685], [#&#8203;7090]) - sync: add `broadcast::WeakSender` ([#&#8203;7100]) - sync: add `oneshot::Receiver::is_empty()` ([#&#8203;7153]) - sync: add `oneshot::Receiver::is_terminated()` ([#&#8203;7152]) ##### Fixed - fs: empty reads on `File` should not start a background read ([#&#8203;7139]) - process: calling `start_kill` on exited child should not fail ([#&#8203;7160]) - signal: fix `CTRL_CLOSE`, `CTRL_LOGOFF`, `CTRL_SHUTDOWN` on windows ([#&#8203;7122]) - sync: properly handle panic during mpsc drop ([#&#8203;7094]) ##### Changes - runtime: clean up magic number in registration set ([#&#8203;7112]) - coop: make coop yield using waker defer strategy ([#&#8203;7185]) - macros: make `select!` budget-aware ([#&#8203;7164]) - net: panic when passing a blocking socket to `from_std` ([#&#8203;7166]) - io: clean up buffer casts ([#&#8203;7142]) ##### Changes to unstable APIs - rt: add before and after task poll callbacks ([#&#8203;7120]) - tracing: make the task tracing API unstable public ([#&#8203;6972]) ##### Documented - docs: fix nesting of sections in top-level docs ([#&#8203;7159]) - fs: rename symlink and hardlink parameter names ([#&#8203;7143]) - io: swap reader/writer in simplex doc test ([#&#8203;7176]) - macros: docs about `select!` alternatives ([#&#8203;7110]) - net: rename the argument for `send_to` ([#&#8203;7146]) - process: add example for reading `Child` stdout ([#&#8203;7141]) - process: clarify `Child::kill` behavior ([#&#8203;7162]) - process: fix grammar of the `ChildStdin` struct doc comment ([#&#8203;7192]) - runtime: consistently use `worker_threads` instead of `core_threads` ([#&#8203;7186]) [#&#8203;6685]: https://github.com/tokio-rs/tokio/pull/6685 [#&#8203;6972]: https://github.com/tokio-rs/tokio/pull/6972 [#&#8203;7086]: https://github.com/tokio-rs/tokio/pull/7086 [#&#8203;7090]: https://github.com/tokio-rs/tokio/pull/7090 [#&#8203;7094]: https://github.com/tokio-rs/tokio/pull/7094 [#&#8203;7100]: https://github.com/tokio-rs/tokio/pull/7100 [#&#8203;7110]: https://github.com/tokio-rs/tokio/pull/7110 [#&#8203;7112]: https://github.com/tokio-rs/tokio/pull/7112 [#&#8203;7116]: https://github.com/tokio-rs/tokio/pull/7116 [#&#8203;7120]: https://github.com/tokio-rs/tokio/pull/7120 [#&#8203;7122]: https://github.com/tokio-rs/tokio/pull/7122 [#&#8203;7139]: https://github.com/tokio-rs/tokio/pull/7139 [#&#8203;7141]: https://github.com/tokio-rs/tokio/pull/7141 [#&#8203;7142]: https://github.com/tokio-rs/tokio/pull/7142 [#&#8203;7143]: https://github.com/tokio-rs/tokio/pull/7143 [#&#8203;7146]: https://github.com/tokio-rs/tokio/pull/7146 [#&#8203;7152]: https://github.com/tokio-rs/tokio/pull/7152 [#&#8203;7153]: https://github.com/tokio-rs/tokio/pull/7153 [#&#8203;7159]: https://github.com/tokio-rs/tokio/pull/7159 [#&#8203;7160]: https://github.com/tokio-rs/tokio/pull/7160 [#&#8203;7162]: https://github.com/tokio-rs/tokio/pull/7162 [#&#8203;7164]: https://github.com/tokio-rs/tokio/pull/7164 [#&#8203;7166]: https://github.com/tokio-rs/tokio/pull/7166 [#&#8203;7172]: https://github.com/tokio-rs/tokio/pull/7172 [#&#8203;7176]: https://github.com/tokio-rs/tokio/pull/7176 [#&#8203;7185]: https://github.com/tokio-rs/tokio/pull/7185 [#&#8203;7186]: https://github.com/tokio-rs/tokio/pull/7186 [#&#8203;7192]: https://github.com/tokio-rs/tokio/pull/7192 ### [`v1.43.1`](https://github.com/tokio-rs/tokio/compare/tokio-1.43.0...tokio-1.43.1) [Compare Source](https://github.com/tokio-rs/tokio/compare/tokio-1.43.0...tokio-1.43.1) </details> <details> <summary>uuid-rs/uuid (uuid)</summary> ### [`v1.16.0`](https://github.com/uuid-rs/uuid/releases/tag/v1.16.0) [Compare Source](https://github.com/uuid-rs/uuid/compare/v1.15.1...v1.16.0) #### What's Changed - Mark `Uuid::new_v8` const by [@&#8203;tguichaoua](https://github.com/tguichaoua) in https://github.com/uuid-rs/uuid/pull/815 - Prepare for 1.16.0 release by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/817 #### New Contributors - [@&#8203;tguichaoua](https://github.com/tguichaoua) made their first contribution in https://github.com/uuid-rs/uuid/pull/815 **Full Changelog**: https://github.com/uuid-rs/uuid/compare/v1.15.1...v1.16.0 ### [`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 is behind base branch, 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:eyJjcmVhdGVkSW5WZXIiOiIzNy40MjQuMyIsInVwZGF0ZWRJblZlciI6IjM5LjIzMy40IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
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
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
kjuulh force-pushed renovate/all from 7ed2789a96 to 83c872ec1b 2025-03-01 02:50:54 +01:00 Compare
kjuulh force-pushed renovate/all from 83c872ec1b to 061b0371f8 2025-03-01 06:47:38 +01:00 Compare
kjuulh force-pushed renovate/all from 061b0371f8 to 8ceacdb201 2025-03-02 02:47:46 +01:00 Compare
kjuulh force-pushed renovate/all from 8ceacdb201 to 2e524a4bd5 2025-03-02 07:10:24 +01:00 Compare
kjuulh force-pushed renovate/all from 2e524a4bd5 to 7cf48fbe9f 2025-03-03 02:45:43 +01:00 Compare
kjuulh force-pushed renovate/all from 7cf48fbe9f to 954d84a94a 2025-03-03 06:48:58 +01:00 Compare
kjuulh force-pushed renovate/all from 954d84a94a to d543b0e8ca 2025-03-04 02:56:42 +01:00 Compare
kjuulh force-pushed renovate/all from d543b0e8ca to a2cd18a96f 2025-03-04 06:53:30 +01:00 Compare
kjuulh force-pushed renovate/all from a2cd18a96f to 1736aa1683 2025-03-05 02:51:14 +01:00 Compare
kjuulh force-pushed renovate/all from 1736aa1683 to d694e965e4 2025-03-05 06:47:51 +01:00 Compare
kjuulh force-pushed renovate/all from d694e965e4 to e89a2db6ae 2025-03-06 02:53:08 +01:00 Compare
kjuulh force-pushed renovate/all from e89a2db6ae to b8e641740f 2025-03-06 06:51:02 +01:00 Compare
kjuulh force-pushed renovate/all from b8e641740f to 0cdcb5bf27 2025-03-26 00:04:14 +01:00 Compare
kjuulh changed title from chore(deps): update all dependencies to fix(deps): update all dependencies 2025-03-26 00:04:14 +01:00
kjuulh force-pushed renovate/all from 0cdcb5bf27 to 384cb4a75d 2025-04-06 02:33:31 +02:00 Compare
kjuulh force-pushed renovate/all from 384cb4a75d to ffd16301af 2025-04-06 05:33:07 +02:00 Compare
kjuulh force-pushed renovate/all from ffd16301af to 4afdfd9580 2025-04-07 02:32:51 +02:00 Compare
kjuulh force-pushed renovate/all from 4afdfd9580 to 319b6ffe93 2025-04-07 05:30:37 +02:00 Compare
kjuulh force-pushed renovate/all from 319b6ffe93 to b512bab2fc 2025-04-08 02:32:38 +02:00 Compare
kjuulh force-pushed renovate/all from b512bab2fc to 543fb53ff0 2025-04-08 05:33:16 +02:00 Compare
kjuulh force-pushed renovate/all from 543fb53ff0 to c76335f8c9 2025-04-09 02:32:45 +02:00 Compare
kjuulh force-pushed renovate/all from c76335f8c9 to 8412aa3754 2025-04-09 05:30:56 +02:00 Compare
kjuulh force-pushed renovate/all from 8412aa3754 to 05e77f8e57 2025-04-10 02:33:35 +02:00 Compare
kjuulh force-pushed renovate/all from 05e77f8e57 to ca402377d4 2025-04-10 05:31:12 +02:00 Compare
kjuulh force-pushed renovate/all from ca402377d4 to 5fab79cd2f 2025-04-11 02:33:02 +02:00 Compare
kjuulh force-pushed renovate/all from 5fab79cd2f to bed23919da 2025-04-11 05:31:28 +02:00 Compare
kjuulh force-pushed renovate/all from bed23919da to c1fd15bc88 2025-04-12 02:36:27 +02:00 Compare
kjuulh force-pushed renovate/all from c1fd15bc88 to 1b5a8098e7 2025-04-12 05:33:02 +02:00 Compare
kjuulh force-pushed renovate/all from 1b5a8098e7 to 3758d3365c 2025-04-13 02:34:03 +02:00 Compare
kjuulh force-pushed renovate/all from 3758d3365c to 9e1fff4a0e 2025-04-13 05:32:38 +02:00 Compare
kjuulh force-pushed renovate/all from 9e1fff4a0e to dd847ab81a 2025-04-14 02:31:57 +02:00 Compare
kjuulh force-pushed renovate/all from dd847ab81a to 2cddac16b6 2025-04-14 05:33:30 +02:00 Compare
kjuulh force-pushed renovate/all from 2cddac16b6 to c3a8199e2b 2025-04-15 02:36:24 +02:00 Compare
kjuulh force-pushed renovate/all from c3a8199e2b to ac5c5b4089 2025-04-15 05:31:44 +02:00 Compare
kjuulh force-pushed renovate/all from ac5c5b4089 to f574945be8 2025-04-16 02:33:07 +02:00 Compare
kjuulh force-pushed renovate/all from f574945be8 to 959e14105d 2025-04-16 05:31:23 +02:00 Compare
kjuulh force-pushed renovate/all from 959e14105d to f0c067f97b 2025-04-17 02:30:41 +02:00 Compare
kjuulh force-pushed renovate/all from f0c067f97b to 5e9c57c7a7 2025-04-17 05:30:47 +02:00 Compare
kjuulh force-pushed renovate/all from 5e9c57c7a7 to 386c536b3c 2025-04-18 02:32:59 +02:00 Compare
kjuulh force-pushed renovate/all from 386c536b3c to e46c2046cd 2025-04-18 05:30:23 +02:00 Compare
kjuulh force-pushed renovate/all from e46c2046cd to 8540801df8 2025-04-19 02:33:33 +02:00 Compare
kjuulh force-pushed renovate/all from 8540801df8 to e799ab7e14 2025-04-19 05:32:47 +02:00 Compare
kjuulh force-pushed renovate/all from e799ab7e14 to e2c11e65be 2025-04-20 02:32:39 +02:00 Compare
kjuulh force-pushed renovate/all from e2c11e65be to d2dae55628 2025-04-20 05:30:55 +02:00 Compare
kjuulh force-pushed renovate/all from d2dae55628 to bef8ad83f8 2025-04-21 02:32:43 +02:00 Compare
kjuulh force-pushed renovate/all from bef8ad83f8 to 816c9f1aa6 2025-04-21 05:30:34 +02:00 Compare
kjuulh force-pushed renovate/all from 816c9f1aa6 to 158d61fc6e 2025-04-22 02:35:04 +02:00 Compare
kjuulh force-pushed renovate/all from 158d61fc6e to dfef804a81 2025-04-22 05:32:12 +02:00 Compare
kjuulh force-pushed renovate/all from dfef804a81 to 5db7b1a3e1 2025-04-23 02:33:45 +02:00 Compare
kjuulh force-pushed renovate/all from 5db7b1a3e1 to c78b1c7868 2025-04-23 05:33:09 +02:00 Compare
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.