fix(deps): update all dependencies #6

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

This PR contains the following updates:

Package Type Update Change
anyhow workspace.dependencies patch 1.0.91 -> 1.0.98
blake3 workspace.dependencies minor 1.5.4 -> 1.8.1
clap workspace.dependencies patch 4.5.20 -> 4.5.36
darling dependencies patch 0.20.10 -> 0.20.11
dirs workspace.dependencies major 5.0.1 -> 6.0.0
proc-macro-crate dependencies minor 3.2.0 -> 3.3.0
proc-macro2 dependencies patch 1.0.89 -> 1.0.94
quote dependencies patch 1.0.37 -> 1.0.40
serde_json workspace.dependencies patch 1.0.132 -> 1.0.140
sha256 workspace.dependencies minor 1.5.0 -> 1.6.0
syn dependencies patch 2.0.86 -> 2.0.100
tokio (source) workspace.dependencies minor 1.41.0 -> 1.44.2
toml workspace.dependencies patch 0.8.19 -> 0.8.20
uuid workspace.dependencies minor 1.11.0 -> 1.16.0

Release Notes

dtolnay/anyhow (anyhow)

v1.0.98

Compare Source

v1.0.97

Compare Source

  • Documentation improvements

v1.0.96

Compare Source

  • Documentation improvements

v1.0.95

Compare Source

v1.0.94

Compare Source

  • Documentation improvements

v1.0.93

Compare Source

  • Update dev-dependencies to thiserror v2

v1.0.92

Compare Source

  • Support Rust 1.82's &raw const and &raw mut syntax inside ensure! (#​390)
BLAKE3-team/BLAKE3 (blake3)

v1.8.1

Compare Source

version 1.8.1

Changes since 1.8.0:

  • [CMake] Fix transitive dependencies for TBB when libblake3 is built
    with BLAKE3_USE_TBB=1 (#​460 and #​461).

v1.8.0

Compare Source

version 1.8.0

Changes since 1.7.0:

  • The Rust crate now provides the blake3::hazmat module, which
    replaces the undocumented and now deprecated blake3::guts module.
    This is intended for advanced use cases like Bao and Iroh, which need
    to manipulate chunk and subtree "chaining values" directly. See the
    module docs for more: https://docs.rs/blake3/1.8.0/blake3/hazmat

v1.7.0

Compare Source

version 1.7.0

Changes since 1.6.1:

  • The C implementation has gained multithreading support, based on
    Intel's oneTBB library. This works similarly to the Rayon-based
    multithreading used in the Rust implementation. See c/README.md for
    details. Contributed by @​silvanshade (#​445).
  • The Rust implementation has gained a WASM SIMD backend, gated by the
    wasm32_simd Cargo feature. Under Wasmtime on my laptop, this is a 6x
    performance improvement for large inputs. This backend is currently
    Rust-only. Contributed by @​monoid (#​341).
  • Fixed cross-compilation builds targeting Windows with cargo-xwin.
    Contributed by @​Sporif and @​toothbrush7777777 (#​230).
  • Added b3sum --tag, which changes the output format. This is for
    compatibility with GNU checksum tools (which use the same flag) and
    BSD checksum tools (which use the output format this flag turns on).
    Contributed by @​leahneukirchen (#​453) and @​dbohdan (#​430).

v1.6.1

Compare Source

version 1.6.1

Changes since 1.6.0:

  • Remove mmap from the default features list. It was added
    accidentally in v1.6.0, last week. This is technically a
    backwards-incompatible change, but I would rather not tag v2.0.0 for a
    build-time bugfix with a simple workaround.

v1.6.0

Compare Source

version 1.6.0

Changes since 1.5.5:

  • Add Hash::from_slice. (#​448)
  • Fix a build error on Windows 7 targets. (#​447)

v1.5.5

Compare Source

version 1.5.5

Changes since 1.5.4:

  • b3sum --check now supports checkfiles with Windows-style newlines.
    b3sum still emits Unix-style newlines, even on Windows, but
    sometimes text editors or version control tools will swap them.
  • The "digest" feature (deleted in v1.5.2) has been added back to the
    blake3 crate. This is for backwards compatibility only, and it's
    insta-deprecated. All callers should prefer the "traits-preview"
    feature.
clap-rs/clap (clap)

v4.5.36

Compare Source

Fixes
  • (help) Revert 4.5.35's "Don't leave space for shorts if there are none" for now

v4.5.35

Compare Source

Fixes
  • (help) Align positionals and flags when put in the same help_heading
  • (help) Don't leave space for shorts if there are none

v4.5.34

Compare Source

Fixes
  • (help) Don't add extra blank lines with flatten_help(true) and subcommands without arguments

v4.5.33

Compare Source

Fixes
  • (error) When showing the usage of a suggestion for an unknown argument, don't show the group

v4.5.32

Compare Source

Features
  • Add Error::remove
Documentation
  • (cookbook) Switch from humantime to jiff
  • (tutorial) Better cover required vs optional
Internal
  • Update pulldown-cmark

v4.5.31

Compare Source

Features
  • Add ValueParserFactory for Saturating<T>

v4.5.30

Compare Source

Fixes
  • (assert) Allow num_args(0..=1) to be used with SetTrue
  • (assert) Clean up rendering of takes_values assertions

v4.5.29

Compare Source

Fixes
  • Change ArgMatches::args_present so not-present flags are considered not-present (matching the documentation)

v4.5.28

Compare Source

Features
  • (derive) Unstable support for full markdown syntax for doc comments, enabled with unstable-markdown

v4.5.27

Compare Source

Documentation
  • Iterate on tutorials and reference based on feedback

v4.5.26

Compare Source

Fixes
  • (error) Reduce binary size with the suggestions feature

v4.5.25

Compare Source

Fixes
  • (help) Reduce binary size

v4.5.24

Compare Source

Fixes
  • (parser) Correctly handle defaults with ignore_errors(true) and when a suggestion is provided for an unknown argument

v4.5.23

Compare Source

Fixes
  • (parser) When check allow_negative_numbers, allow E again

v4.5.22

Compare Source

Fixes
  • (assert) Catch bugs with arguments requiring themself

v4.5.21

Compare Source

Fixes
  • (parser) Ensure defaults are filled in on error with ignore_errors(true)
TedDriggs/darling (darling)

v0.20.11

Compare Source

  • Support #[darling(with = ...)] on the data field when deriving FromDeriveInput. This allows the use of simpler receiver types, such as a Vec of enum variants.
  • Bump version of proc-macro2 to 1.0.86.
  • Accept closures for #[darling(with = ...)] on fields in FromDeriveInput, FromMeta, FromField, etc. #​309
  • Add darling::util::Callable to accept a path or closure as a meta-item expression
  • Add #[darling(from_word = ...)] and #[darling(from_none = ...)] to control shorthand and fallback behaviors for structs and enums deriving FromMeta #​320
  • Add FromMeta impl for syn::ExprRange #​329
bkchr/proc-macro-crate (proc-macro-crate)

v3.3.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/bkchr/proc-macro-crate/compare/v3.2.0...v3.3.0

dtolnay/proc-macro2 (proc-macro2)

v1.0.94

Compare Source

  • Documentation improvements

v1.0.93

Compare Source

v1.0.92

Compare Source

  • Improve compiler/fallback mismatch panic message (#​487)

v1.0.91

Compare Source

  • Fix panic "compiler/fallback mismatch 949" when using TokenStream::from_str from inside a proc macro to parse a string containing doc comment (#​484)

v1.0.90

Compare Source

dtolnay/quote (quote)

v1.0.40

Compare Source

v1.0.39

Compare Source

  • Documentation improvements

v1.0.38

Compare Source

  • Support interpolating arrays inside of arrays using a repetition (#​286)
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)

v1.0.136

Compare Source

  • Optimize serde_json::value::Serializer::serialize_map by using Map::with_capacity (#​1230, thanks @​goffrie)

v1.0.135

Compare Source

v1.0.134

Compare Source

  • Add RawValue associated constants for literal null, true, false (#​1221, thanks @​bheylin)

v1.0.133

Compare Source

  • Implement From<[T; N]> for serde_json::Value (#​1215)
baoyachi/sha256-rs (sha256)

v1.6.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/baoyachi/sha256-rs/compare/1.5.0...v1.6.0

dtolnay/syn (syn)

v2.0.100

Compare Source

  • Add Visit::visit_token_stream, VisitMut::visit_token_stream_mut, Fold::fold_token_stream for processing TokenStream during syntax tree traversals (#​1852)

v2.0.99

Compare Source

  • Documentation improvements

v2.0.98

Compare Source

  • Allow lifetimes in function pointer return values in ParseStream::call and Punctuated parsers (#​1847)

v2.0.97

Compare Source

  • Documentation improvements

v2.0.96

Compare Source

v2.0.95

Compare Source

  • Fix parenthesization of struct literals in let-chains (#​1832)

v2.0.94

Compare Source

v2.0.93

Compare Source

v2.0.92

Compare Source

  • Fix parenthesization of jumps inside ranges (#​1798)

v2.0.91

Compare Source

v2.0.90

Compare Source

  • Fix automatic parenthesization of subexpressions containing outer attributes, such as (#[attr] thing).field (#​1785)
  • Fix automatic parenthesization of function calls via a struct field, such as (thing.field)() and thing.0() (#​1786)

v2.0.89

Compare Source

v2.0.88

Compare Source

  • Improve error recovery in parse_str (#​1783)

v2.0.87

Compare Source

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

v1.43.0: Tokio v1.43.0

Compare Source

1.43.0 (Jan 8th, 2025)

Added
  • net: add UdpSocket::peek methods (#​7068)
  • net: add support for Haiku OS (#​7042)
  • process: add Command::into_std() (#​7014)
  • signal: add SignalKind::info on illumos (#​6995)
  • signal: add support for realtime signals on illumos (#​7029)
Fixed
  • io: don't call set_len before initializing vector in Blocking (#​7054)
  • macros: suppress clippy::needless_return in #[tokio::main] (#​6874)
  • runtime: fix thread parking on WebAssembly (#​7041)
Changes
  • chore: use unsync loads for unsync_load (#​7073)
  • io: use Buf::put_bytes in Repeat read impl (#​7055)
  • task: drop the join waker of a task eagerly (#​6986)
Changes to unstable APIs
  • metrics: improve flexibility of H2Histogram Configuration (#​6963)
  • taskdump: add accessor methods for backtrace (#​6975)
Documented
  • io: clarify ReadBuf::uninit allows initialized buffers as well (#​7053)
  • net: fix ambiguity in TcpStream::try_write_vectored docs (#​7067)
  • runtime: fix LocalRuntime doc links (#​7074)
  • sync: extend documentation for watch::Receiver::wait_for (#​7038)
  • sync: fix typos in OnceCell docs (#​7047)

v1.42.1: Tokio v1.42.1

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.42.0: Tokio v1.42.0

Compare Source

1.42.0 (Dec 3rd, 2024)

Added
  • io: add AsyncFd::{try_io, try_io_mut} (#​6967)
Fixed
  • io: avoid ptr->ref->ptr roundtrip in RegistrationSet (#​6929)
  • runtime: do not defer yield_now inside block_in_place (#​6999)
Changes
  • io: simplify io readiness logic (#​6966)
Documented
  • net: fix docs for tokio::net::unix::{pid_t, gid_t, uid_t} (#​6791)
  • time: fix a typo in Instant docs (#​6982)

v1.41.1: Tokio v1.41.1

Compare Source

1.41.1 (Nov 7th, 2024)

Fixed
  • metrics: fix bug with wrong number of buckets for the histogram (#​6957)
  • net: display net requirement for net::UdpSocket in docs (#​6938)
  • net: fix typo in TcpStream internal comment (#​6944)
toml-rs/toml (toml)

v0.8.20

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

v1.12.0

Compare Source

⚠️ Possible Breakage

This release includes additional PartialEq implementations on Uuid, which can break inference in some cases.

What's Changed

New Contributors

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

v1.11.1

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/uuid-rs/uuid/compare/1.11.0...1.11.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 | |---|---|---|---| | [anyhow](https://github.com/dtolnay/anyhow) | workspace.dependencies | patch | `1.0.91` -> `1.0.98` | | [blake3](https://github.com/BLAKE3-team/BLAKE3) | workspace.dependencies | minor | `1.5.4` -> `1.8.1` | | [clap](https://github.com/clap-rs/clap) | workspace.dependencies | patch | `4.5.20` -> `4.5.36` | | [darling](https://github.com/TedDriggs/darling) | dependencies | patch | `0.20.10` -> `0.20.11` | | [dirs](https://github.com/soc/dirs-rs) | workspace.dependencies | major | `5.0.1` -> `6.0.0` | | [proc-macro-crate](https://github.com/bkchr/proc-macro-crate) | dependencies | minor | `3.2.0` -> `3.3.0` | | [proc-macro2](https://github.com/dtolnay/proc-macro2) | dependencies | patch | `1.0.89` -> `1.0.94` | | [quote](https://github.com/dtolnay/quote) | dependencies | patch | `1.0.37` -> `1.0.40` | | [serde_json](https://github.com/serde-rs/json) | workspace.dependencies | patch | `1.0.132` -> `1.0.140` | | [sha256](https://github.com/baoyachi/sha256-rs) | workspace.dependencies | minor | `1.5.0` -> `1.6.0` | | [syn](https://github.com/dtolnay/syn) | dependencies | patch | `2.0.86` -> `2.0.100` | | [tokio](https://tokio.rs) ([source](https://github.com/tokio-rs/tokio)) | workspace.dependencies | minor | `1.41.0` -> `1.44.2` | | [toml](https://github.com/toml-rs/toml) | workspace.dependencies | patch | `0.8.19` -> `0.8.20` | | [uuid](https://github.com/uuid-rs/uuid) | workspace.dependencies | minor | `1.11.0` -> `1.16.0` | --- ### Release Notes <details> <summary>dtolnay/anyhow (anyhow)</summary> ### [`v1.0.98`](https://github.com/dtolnay/anyhow/releases/tag/1.0.98) [Compare Source](https://github.com/dtolnay/anyhow/compare/1.0.97...1.0.98) - Add [`self.into_boxed_dyn_error()`](https://docs.rs/anyhow/1/anyhow/struct.Error.html#method.into_boxed_dyn_error) and [`self.reallocate_into_boxed_dyn_error_without_backtrace()`](https://docs.rs/anyhow/1/anyhow/struct.Error.html#method.reallocate_into_boxed_dyn_error_without_backtrace) methods for anyhow::Error ([#&#8203;415](https://github.com/dtolnay/anyhow/issues/415)) ### [`v1.0.97`](https://github.com/dtolnay/anyhow/releases/tag/1.0.97) [Compare Source](https://github.com/dtolnay/anyhow/compare/1.0.96...1.0.97) - Documentation improvements ### [`v1.0.96`](https://github.com/dtolnay/anyhow/releases/tag/1.0.96) [Compare Source](https://github.com/dtolnay/anyhow/compare/1.0.95...1.0.96) - Documentation improvements ### [`v1.0.95`](https://github.com/dtolnay/anyhow/releases/tag/1.0.95) [Compare Source](https://github.com/dtolnay/anyhow/compare/1.0.94...1.0.95) - Add [`Error::from_boxed`](https://docs.rs/anyhow/1/anyhow/struct.Error.html#method.from_boxed) ([#&#8203;401](https://github.com/dtolnay/anyhow/issues/401), [#&#8203;402](https://github.com/dtolnay/anyhow/issues/402)) ### [`v1.0.94`](https://github.com/dtolnay/anyhow/releases/tag/1.0.94) [Compare Source](https://github.com/dtolnay/anyhow/compare/1.0.93...1.0.94) - Documentation improvements ### [`v1.0.93`](https://github.com/dtolnay/anyhow/releases/tag/1.0.93) [Compare Source](https://github.com/dtolnay/anyhow/compare/1.0.92...1.0.93) - Update dev-dependencies to `thiserror` v2 ### [`v1.0.92`](https://github.com/dtolnay/anyhow/releases/tag/1.0.92) [Compare Source](https://github.com/dtolnay/anyhow/compare/1.0.91...1.0.92) - Support Rust 1.82's `&raw const` and `&raw mut` syntax inside `ensure!` ([#&#8203;390](https://github.com/dtolnay/anyhow/issues/390)) </details> <details> <summary>BLAKE3-team/BLAKE3 (blake3)</summary> ### [`v1.8.1`](https://github.com/BLAKE3-team/BLAKE3/releases/tag/1.8.1) [Compare Source](https://github.com/BLAKE3-team/BLAKE3/compare/1.8.0...1.8.1) version 1.8.1 Changes since 1.8.0: - \[CMake] Fix transitive dependencies for TBB when libblake3 is built with BLAKE3\_USE_TBB=1 ([#&#8203;460](https://github.com/BLAKE3-team/BLAKE3/issues/460) and [#&#8203;461](https://github.com/BLAKE3-team/BLAKE3/issues/461)). ### [`v1.8.0`](https://github.com/BLAKE3-team/BLAKE3/releases/tag/1.8.0) [Compare Source](https://github.com/BLAKE3-team/BLAKE3/compare/1.7.0...1.8.0) version 1.8.0 Changes since 1.7.0: - The Rust crate now provides the `blake3::hazmat` module, which replaces the undocumented and now deprecated `blake3::guts` module. This is intended for advanced use cases like Bao and Iroh, which need to manipulate chunk and subtree "chaining values" directly. See the module docs for more: https://docs.rs/blake3/1.8.0/blake3/hazmat ### [`v1.7.0`](https://github.com/BLAKE3-team/BLAKE3/releases/tag/1.7.0) [Compare Source](https://github.com/BLAKE3-team/BLAKE3/compare/1.6.1...1.7.0) version 1.7.0 Changes since 1.6.1: - The C implementation has gained multithreading support, based on Intel's oneTBB library. This works similarly to the Rayon-based multithreading used in the Rust implementation. See c/README.md for details. Contributed by [@&#8203;silvanshade](https://github.com/silvanshade) ([#&#8203;445](https://github.com/BLAKE3-team/BLAKE3/issues/445)). - The Rust implementation has gained a WASM SIMD backend, gated by the `wasm32_simd` Cargo feature. Under Wasmtime on my laptop, this is a 6x performance improvement for large inputs. This backend is currently Rust-only. Contributed by [@&#8203;monoid](https://github.com/monoid) ([#&#8203;341](https://github.com/BLAKE3-team/BLAKE3/issues/341)). - Fixed cross-compilation builds targeting Windows with cargo-xwin. Contributed by [@&#8203;Sporif](https://github.com/Sporif) and [@&#8203;toothbrush7777777](https://github.com/toothbrush7777777) ([#&#8203;230](https://github.com/BLAKE3-team/BLAKE3/issues/230)). - Added `b3sum --tag`, which changes the output format. This is for compatibility with GNU checksum tools (which use the same flag) and BSD checksum tools (which use the output format this flag turns on). Contributed by [@&#8203;leahneukirchen](https://github.com/leahneukirchen) ([#&#8203;453](https://github.com/BLAKE3-team/BLAKE3/issues/453)) and [@&#8203;dbohdan](https://github.com/dbohdan) ([#&#8203;430](https://github.com/BLAKE3-team/BLAKE3/issues/430)). ### [`v1.6.1`](https://github.com/BLAKE3-team/BLAKE3/releases/tag/1.6.1) [Compare Source](https://github.com/BLAKE3-team/BLAKE3/compare/1.6.0...1.6.1) version 1.6.1 Changes since 1.6.0: - Remove `mmap` from the default features list. It was added accidentally in v1.6.0, last week. This is technically a backwards-incompatible change, but I would rather not tag v2.0.0 for a build-time bugfix with a simple workaround. ### [`v1.6.0`](https://github.com/BLAKE3-team/BLAKE3/releases/tag/1.6.0) [Compare Source](https://github.com/BLAKE3-team/BLAKE3/compare/1.5.5...1.6.0) version 1.6.0 Changes since 1.5.5: - Add Hash::from_slice. ([#&#8203;448](https://github.com/BLAKE3-team/BLAKE3/issues/448)) - Fix a build error on Windows 7 targets. ([#&#8203;447](https://github.com/BLAKE3-team/BLAKE3/issues/447)) ### [`v1.5.5`](https://github.com/BLAKE3-team/BLAKE3/releases/tag/1.5.5) [Compare Source](https://github.com/BLAKE3-team/BLAKE3/compare/1.5.4...1.5.5) version 1.5.5 Changes since 1.5.4: - `b3sum --check` now supports checkfiles with Windows-style newlines. `b3sum` still emits Unix-style newlines, even on Windows, but sometimes text editors or version control tools will swap them. - The "digest" feature (deleted in v1.5.2) has been added back to the `blake3` crate. This is for backwards compatibility only, and it's insta-deprecated. All callers should prefer the "traits-preview" feature. </details> <details> <summary>clap-rs/clap (clap)</summary> ### [`v4.5.36`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4536---2025-04-11) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.35...v4.5.36) ##### Fixes - *(help)* Revert 4.5.35's "Don't leave space for shorts if there are none" for now ### [`v4.5.35`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4535---2025-04-01) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.34...v4.5.35) ##### Fixes - *(help)* Align positionals and flags when put in the same `help_heading` - *(help)* Don't leave space for shorts if there are none ### [`v4.5.34`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4534---2025-03-27) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.33...v4.5.34) ##### Fixes - *(help)* Don't add extra blank lines with `flatten_help(true)` and subcommands without arguments ### [`v4.5.33`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4533---2025-03-26) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.32...v4.5.33) ##### Fixes - *(error)* When showing the usage of a suggestion for an unknown argument, don't show the group ### [`v4.5.32`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4532---2025-03-10) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.31...v4.5.32) ##### Features - Add `Error::remove` ##### Documentation - *(cookbook)* Switch from `humantime` to `jiff` - *(tutorial)* Better cover required vs optional ##### Internal - Update `pulldown-cmark` ### [`v4.5.31`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4531---2025-02-24) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.30...v4.5.31) ##### Features - Add `ValueParserFactory` for `Saturating<T>` ### [`v4.5.30`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4530---2025-02-17) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.29...v4.5.30) ##### Fixes - *(assert)* Allow `num_args(0..=1)` to be used with `SetTrue` - *(assert)* Clean up rendering of `takes_values` assertions ### [`v4.5.29`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4529---2025-02-11) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.28...v4.5.29) ##### Fixes - Change `ArgMatches::args_present` so not-present flags are considered not-present (matching the documentation) ### [`v4.5.28`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4528---2025-02-03) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.27...v4.5.28) ##### Features - *(derive)* Unstable support for full markdown syntax for doc comments, enabled with `unstable-markdown` ### [`v4.5.27`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4527---2025-01-20) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.26...v4.5.27) ##### Documentation - Iterate on tutorials and reference based on feedback ### [`v4.5.26`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4526---2025-01-09) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.25...v4.5.26) ##### Fixes - *(error)* Reduce binary size with the `suggestions` feature ### [`v4.5.25`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4525---2025-01-09) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.24...v4.5.25) ##### Fixes - *(help)* Reduce binary size ### [`v4.5.24`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4524---2025-01-07) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.23...v4.5.24) ##### Fixes - *(parser)* Correctly handle defaults with `ignore_errors(true)` and when a suggestion is provided for an unknown argument ### [`v4.5.23`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4523---2024-12-05) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.22...v4.5.23) ##### Fixes - *(parser)* When check `allow_negative_numbers`, allow `E` again ### [`v4.5.22`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4522---2024-12-03) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.21...v4.5.22) ##### Fixes - *(assert)* Catch bugs with arguments requiring themself ### [`v4.5.21`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4521---2024-11-13) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.20...v4.5.21) ##### Fixes - *(parser)* Ensure defaults are filled in on error with `ignore_errors(true)` </details> <details> <summary>TedDriggs/darling (darling)</summary> ### [`v0.20.11`](https://github.com/TedDriggs/darling/blob/HEAD/CHANGELOG.md#v02011-March-28-2025) [Compare Source](https://github.com/TedDriggs/darling/compare/v0.20.10...v0.20.11) - Support `#[darling(with = ...)]` on the `data` field when deriving `FromDeriveInput`. This allows the use of simpler receiver types, such as a `Vec` of enum variants. - Bump version of `proc-macro2` to 1.0.86. - Accept closures for `#[darling(with = ...)]` on fields in `FromDeriveInput`, `FromMeta`, `FromField`, etc. [#&#8203;309](https://github.com/TedDriggs/darling/issues/309) - Add `darling::util::Callable` to accept a path or closure as a meta-item expression - Add `#[darling(from_word = ...)]` and `#[darling(from_none = ...)]` to control shorthand and fallback behaviors for structs and enums deriving `FromMeta` [#&#8203;320](https://github.com/TedDriggs/darling/issues/320) - Add `FromMeta` impl for `syn::ExprRange` [#&#8203;329](https://github.com/TedDriggs/issues/329) </details> <details> <summary>bkchr/proc-macro-crate (proc-macro-crate)</summary> ### [`v3.3.0`](https://github.com/bkchr/proc-macro-crate/releases/tag/v3.3.0) [Compare Source](https://github.com/bkchr/proc-macro-crate/compare/v3.2.0...v3.3.0) #### What's Changed - Disable `display` feature of `toml-edit` by [@&#8203;zeenix](https://github.com/zeenix) in https://github.com/bkchr/proc-macro-crate/pull/54 - Fix use with Bazel by [@&#8203;tronical](https://github.com/tronical) in https://github.com/bkchr/proc-macro-crate/pull/55 - Fix handling of inline tables by [@&#8203;ijackson](https://github.com/ijackson) in https://github.com/bkchr/proc-macro-crate/pull/58 - Release v3.3.0 by [@&#8203;bkchr](https://github.com/bkchr) in https://github.com/bkchr/proc-macro-crate/pull/59 #### New Contributors - [@&#8203;zeenix](https://github.com/zeenix) made their first contribution in https://github.com/bkchr/proc-macro-crate/pull/54 - [@&#8203;tronical](https://github.com/tronical) made their first contribution in https://github.com/bkchr/proc-macro-crate/pull/55 - [@&#8203;ijackson](https://github.com/ijackson) made their first contribution in https://github.com/bkchr/proc-macro-crate/pull/58 **Full Changelog**: https://github.com/bkchr/proc-macro-crate/compare/v3.2.0...v3.3.0 </details> <details> <summary>dtolnay/proc-macro2 (proc-macro2)</summary> ### [`v1.0.94`](https://github.com/dtolnay/proc-macro2/releases/tag/1.0.94) [Compare Source](https://github.com/dtolnay/proc-macro2/compare/1.0.93...1.0.94) - Documentation improvements ### [`v1.0.93`](https://github.com/dtolnay/proc-macro2/releases/tag/1.0.93) [Compare Source](https://github.com/dtolnay/proc-macro2/compare/1.0.92...1.0.93) - Optimize TokenStream's Drop ([#&#8203;489](https://github.com/dtolnay/proc-macro2/issues/489), [#&#8203;490](https://github.com/dtolnay/proc-macro2/issues/490), thanks [@&#8203;WalkerKnapp](https://github.com/WalkerKnapp)) ### [`v1.0.92`](https://github.com/dtolnay/proc-macro2/releases/tag/1.0.92) [Compare Source](https://github.com/dtolnay/proc-macro2/compare/1.0.91...1.0.92) - Improve compiler/fallback mismatch panic message ([#&#8203;487](https://github.com/dtolnay/proc-macro2/issues/487)) ### [`v1.0.91`](https://github.com/dtolnay/proc-macro2/releases/tag/1.0.91) [Compare Source](https://github.com/dtolnay/proc-macro2/compare/1.0.90...1.0.91) - Fix panic *"compiler/fallback mismatch 949"* when using TokenStream::from_str from inside a proc macro to parse a string containing doc comment ([#&#8203;484](https://github.com/dtolnay/proc-macro2/issues/484)) ### [`v1.0.90`](https://github.com/dtolnay/proc-macro2/releases/tag/1.0.90) [Compare Source](https://github.com/dtolnay/proc-macro2/compare/1.0.89...1.0.90) - Improve error recovery in TokenStream's and Literal's FromStr implementations to work around https://github.com/rust-lang/rust/issues/58736 such that rustc does not poison compilation on codepaths that should be recoverable errors ([#&#8203;477](https://github.com/dtolnay/proc-macro2/issues/477), [#&#8203;478](https://github.com/dtolnay/proc-macro2/issues/478), [#&#8203;479](https://github.com/dtolnay/proc-macro2/issues/479), [#&#8203;480](https://github.com/dtolnay/proc-macro2/issues/480), [#&#8203;481](https://github.com/dtolnay/proc-macro2/issues/481), [#&#8203;482](https://github.com/dtolnay/proc-macro2/issues/482)) </details> <details> <summary>dtolnay/quote (quote)</summary> ### [`v1.0.40`](https://github.com/dtolnay/quote/releases/tag/1.0.40) [Compare Source](https://github.com/dtolnay/quote/compare/1.0.39...1.0.40) - Optimize construction of lifetime tokens ([#&#8203;293](https://github.com/dtolnay/quote/issues/293), thanks [@&#8203;aatifsyed](https://github.com/aatifsyed)) ### [`v1.0.39`](https://github.com/dtolnay/quote/releases/tag/1.0.39) [Compare Source](https://github.com/dtolnay/quote/compare/1.0.38...1.0.39) - Documentation improvements ### [`v1.0.38`](https://github.com/dtolnay/quote/releases/tag/1.0.38) [Compare Source](https://github.com/dtolnay/quote/compare/1.0.37...1.0.38) - Support interpolating arrays inside of arrays using a repetition ([#&#8203;286](https://github.com/dtolnay/quote/issues/286)) </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)) ### [`v1.0.136`](https://github.com/serde-rs/json/releases/tag/v1.0.136) [Compare Source](https://github.com/serde-rs/json/compare/v1.0.135...v1.0.136) - Optimize serde_json::value::Serializer::serialize_map by using Map::with_capacity ([#&#8203;1230](https://github.com/serde-rs/json/issues/1230), thanks [@&#8203;goffrie](https://github.com/goffrie)) ### [`v1.0.135`](https://github.com/serde-rs/json/releases/tag/v1.0.135) [Compare Source](https://github.com/serde-rs/json/compare/v1.0.134...v1.0.135) - Add serde_json::Map::into_values method ([#&#8203;1226](https://github.com/serde-rs/json/issues/1226), thanks [@&#8203;tisonkun](https://github.com/tisonkun)) ### [`v1.0.134`](https://github.com/serde-rs/json/releases/tag/v1.0.134) [Compare Source](https://github.com/serde-rs/json/compare/v1.0.133...v1.0.134) - Add `RawValue` associated constants for literal `null`, `true`, `false` ([#&#8203;1221](https://github.com/serde-rs/json/issues/1221), thanks [@&#8203;bheylin](https://github.com/bheylin)) ### [`v1.0.133`](https://github.com/serde-rs/json/releases/tag/v1.0.133) [Compare Source](https://github.com/serde-rs/json/compare/v1.0.132...v1.0.133) - Implement From<\[T; N]> for serde_json::Value ([#&#8203;1215](https://github.com/serde-rs/json/issues/1215)) </details> <details> <summary>baoyachi/sha256-rs (sha256)</summary> ### [`v1.6.0`](https://github.com/baoyachi/sha256-rs/releases/tag/v1.6.0) [Compare Source](https://github.com/baoyachi/sha256-rs/compare/1.5.0...1.6.0) #### What's Changed - Move modules to own files by [@&#8203;laerling](https://github.com/laerling) in https://github.com/baoyachi/sha256-rs/pull/23 - separate modules by [@&#8203;baoyachi](https://github.com/baoyachi) in https://github.com/baoyachi/sha256-rs/pull/24 - fix char type by [@&#8203;baoyachi](https://github.com/baoyachi) in https://github.com/baoyachi/sha256-rs/pull/28 #### New Contributors - [@&#8203;laerling](https://github.com/laerling) made their first contribution in https://github.com/baoyachi/sha256-rs/pull/23 **Full Changelog**: https://github.com/baoyachi/sha256-rs/compare/1.5.0...v1.6.0 </details> <details> <summary>dtolnay/syn (syn)</summary> ### [`v2.0.100`](https://github.com/dtolnay/syn/releases/tag/2.0.100) [Compare Source](https://github.com/dtolnay/syn/compare/2.0.99...2.0.100) - Add `Visit::visit_token_stream`, `VisitMut::visit_token_stream_mut`, `Fold::fold_token_stream` for processing TokenStream during syntax tree traversals ([#&#8203;1852](https://github.com/dtolnay/syn/issues/1852)) ### [`v2.0.99`](https://github.com/dtolnay/syn/releases/tag/2.0.99) [Compare Source](https://github.com/dtolnay/syn/compare/2.0.98...2.0.99) - Documentation improvements ### [`v2.0.98`](https://github.com/dtolnay/syn/releases/tag/2.0.98) [Compare Source](https://github.com/dtolnay/syn/compare/2.0.97...2.0.98) - Allow lifetimes in function pointer return values in `ParseStream::call` and `Punctuated` parsers ([#&#8203;1847](https://github.com/dtolnay/syn/issues/1847)) ### [`v2.0.97`](https://github.com/dtolnay/syn/releases/tag/2.0.97) [Compare Source](https://github.com/dtolnay/syn/compare/2.0.96...2.0.97) - Documentation improvements ### [`v2.0.96`](https://github.com/dtolnay/syn/releases/tag/2.0.96) [Compare Source](https://github.com/dtolnay/syn/compare/2.0.95...2.0.96) - Expression precedence fixes ([#&#8203;1834](https://github.com/dtolnay/syn/issues/1834), [#&#8203;1836](https://github.com/dtolnay/syn/issues/1836), [#&#8203;1837](https://github.com/dtolnay/syn/issues/1837), [#&#8203;1838](https://github.com/dtolnay/syn/issues/1838), [#&#8203;1839](https://github.com/dtolnay/syn/issues/1839), [#&#8203;1840](https://github.com/dtolnay/syn/issues/1840)) ### [`v2.0.95`](https://github.com/dtolnay/syn/releases/tag/2.0.95) [Compare Source](https://github.com/dtolnay/syn/compare/2.0.94...2.0.95) - Fix parenthesization of struct literals in let-chains ([#&#8203;1832](https://github.com/dtolnay/syn/issues/1832)) ### [`v2.0.94`](https://github.com/dtolnay/syn/releases/tag/2.0.94) [Compare Source](https://github.com/dtolnay/syn/compare/2.0.93...2.0.94) - Expression precedence fixes ([#&#8203;1811](https://github.com/dtolnay/syn/issues/1811), [#&#8203;1812](https://github.com/dtolnay/syn/issues/1812), [#&#8203;1813](https://github.com/dtolnay/syn/issues/1813), [#&#8203;1814](https://github.com/dtolnay/syn/issues/1814), [#&#8203;1815](https://github.com/dtolnay/syn/issues/1815), [#&#8203;1816](https://github.com/dtolnay/syn/issues/1816), [#&#8203;1818](https://github.com/dtolnay/syn/issues/1818), [#&#8203;1819](https://github.com/dtolnay/syn/issues/1819), [#&#8203;1820](https://github.com/dtolnay/syn/issues/1820), [#&#8203;1825](https://github.com/dtolnay/syn/issues/1825), [#&#8203;1826](https://github.com/dtolnay/syn/issues/1826), [#&#8203;1827](https://github.com/dtolnay/syn/issues/1827), [#&#8203;1828](https://github.com/dtolnay/syn/issues/1828), [#&#8203;1829](https://github.com/dtolnay/syn/issues/1829), [#&#8203;1830](https://github.com/dtolnay/syn/issues/1830)) ### [`v2.0.93`](https://github.com/dtolnay/syn/releases/tag/2.0.93) [Compare Source](https://github.com/dtolnay/syn/compare/2.0.92...2.0.93) - Fix expression parsing edge cases: `x as T <<= y` ([#&#8203;1804](https://github.com/dtolnay/syn/issues/1804)), `break as T` ([#&#8203;1805](https://github.com/dtolnay/syn/issues/1805)), `match x { _ if .. => {} }` ([#&#8203;1807](https://github.com/dtolnay/syn/issues/1807)) - Fix expression printing edge cases: `|| -> T 'a: {}` ([#&#8203;1806](https://github.com/dtolnay/syn/issues/1806)), `if break x {}` ([#&#8203;1808](https://github.com/dtolnay/syn/issues/1808), [#&#8203;1810](https://github.com/dtolnay/syn/issues/1810)) ### [`v2.0.92`](https://github.com/dtolnay/syn/releases/tag/2.0.92) [Compare Source](https://github.com/dtolnay/syn/compare/2.0.91...2.0.92) - Fix parenthesization of jumps inside ranges ([#&#8203;1798](https://github.com/dtolnay/syn/issues/1798)) ### [`v2.0.91`](https://github.com/dtolnay/syn/releases/tag/2.0.91) [Compare Source](https://github.com/dtolnay/syn/compare/2.0.90...2.0.91) - Support parsing `Vec<Arm>` using `parse_quote!` ([#&#8203;1796](https://github.com/dtolnay/syn/issues/1796), [#&#8203;1797](https://github.com/dtolnay/syn/issues/1797)) ### [`v2.0.90`](https://github.com/dtolnay/syn/releases/tag/2.0.90) [Compare Source](https://github.com/dtolnay/syn/compare/2.0.89...2.0.90) - Fix automatic parenthesization of subexpressions containing outer attributes, such as `(#[attr] thing).field` ([#&#8203;1785](https://github.com/dtolnay/syn/issues/1785)) - Fix automatic parenthesization of function calls via a struct field, such as `(thing.field)()` and `thing.0()` ([#&#8203;1786](https://github.com/dtolnay/syn/issues/1786)) ### [`v2.0.89`](https://github.com/dtolnay/syn/releases/tag/2.0.89) [Compare Source](https://github.com/dtolnay/syn/compare/2.0.88...2.0.89) - Fix *"compiler/fallback mismatch 949"* panic (https://github.com/dtolnay/proc-macro2/issues/483) ### [`v2.0.88`](https://github.com/dtolnay/syn/releases/tag/2.0.88) [Compare Source](https://github.com/dtolnay/syn/compare/2.0.87...2.0.88) - Improve error recovery in `parse_str` ([#&#8203;1783](https://github.com/dtolnay/syn/issues/1783)) ### [`v2.0.87`](https://github.com/dtolnay/syn/releases/tag/2.0.87) [Compare Source](https://github.com/dtolnay/syn/compare/2.0.86...2.0.87) - Add [`Cursor::any_group`](https://docs.rs/syn/2/syn/buffer/struct.Cursor.html#method.any_group) ([#&#8203;1777](https://github.com/dtolnay/syn/issues/1777)) - Add [`Expr::peek`](https://docs.rs/syn/2/syn/enum.Expr.html#method.peek) ([#&#8203;1778](https://github.com/dtolnay/syn/issues/1778)) - Improve syntax support for enum discriminant expressions in non-"full" mode ([#&#8203;1779](https://github.com/dtolnay/syn/issues/1779)) </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) ### [`v1.43.0`](https://github.com/tokio-rs/tokio/releases/tag/tokio-1.43.0): Tokio v1.43.0 [Compare Source](https://github.com/tokio-rs/tokio/compare/tokio-1.42.1...tokio-1.43.0) ### 1.43.0 (Jan 8th, 2025) ##### Added - net: add `UdpSocket::peek` methods ([#&#8203;7068]) - net: add support for Haiku OS ([#&#8203;7042]) - process: add `Command::into_std()` ([#&#8203;7014]) - signal: add `SignalKind::info` on illumos ([#&#8203;6995]) - signal: add support for realtime signals on illumos ([#&#8203;7029]) ##### Fixed - io: don't call `set_len` before initializing vector in `Blocking` ([#&#8203;7054]) - macros: suppress `clippy::needless_return` in `#[tokio::main]` ([#&#8203;6874]) - runtime: fix thread parking on WebAssembly ([#&#8203;7041]) ##### Changes - chore: use unsync loads for `unsync_load` ([#&#8203;7073]) - io: use `Buf::put_bytes` in `Repeat` read impl ([#&#8203;7055]) - task: drop the join waker of a task eagerly ([#&#8203;6986]) ##### Changes to unstable APIs - metrics: improve flexibility of H2Histogram Configuration ([#&#8203;6963]) - taskdump: add accessor methods for backtrace ([#&#8203;6975]) ##### Documented - io: clarify `ReadBuf::uninit` allows initialized buffers as well ([#&#8203;7053]) - net: fix ambiguity in `TcpStream::try_write_vectored` docs ([#&#8203;7067]) - runtime: fix `LocalRuntime` doc links ([#&#8203;7074]) - sync: extend documentation for `watch::Receiver::wait_for` ([#&#8203;7038]) - sync: fix typos in `OnceCell` docs ([#&#8203;7047]) [#&#8203;6874]: https://github.com/tokio-rs/tokio/pull/6874 [#&#8203;6963]: https://github.com/tokio-rs/tokio/pull/6963 [#&#8203;6975]: https://github.com/tokio-rs/tokio/pull/6975 [#&#8203;6986]: https://github.com/tokio-rs/tokio/pull/6986 [#&#8203;6995]: https://github.com/tokio-rs/tokio/pull/6995 [#&#8203;7014]: https://github.com/tokio-rs/tokio/pull/7014 [#&#8203;7029]: https://github.com/tokio-rs/tokio/pull/7029 [#&#8203;7038]: https://github.com/tokio-rs/tokio/pull/7038 [#&#8203;7041]: https://github.com/tokio-rs/tokio/pull/7041 [#&#8203;7042]: https://github.com/tokio-rs/tokio/pull/7042 [#&#8203;7047]: https://github.com/tokio-rs/tokio/pull/7047 [#&#8203;7053]: https://github.com/tokio-rs/tokio/pull/7053 [#&#8203;7054]: https://github.com/tokio-rs/tokio/pull/7054 [#&#8203;7055]: https://github.com/tokio-rs/tokio/pull/7055 [#&#8203;7067]: https://github.com/tokio-rs/tokio/pull/7067 [#&#8203;7068]: https://github.com/tokio-rs/tokio/pull/7068 [#&#8203;7073]: https://github.com/tokio-rs/tokio/pull/7073 [#&#8203;7074]: https://github.com/tokio-rs/tokio/pull/7074 ### [`v1.42.1`](https://github.com/tokio-rs/tokio/releases/tag/tokio-1.42.1): Tokio v1.42.1 [Compare Source](https://github.com/tokio-rs/tokio/compare/tokio-1.42.0...tokio-1.42.1) 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.42.0`](https://github.com/tokio-rs/tokio/releases/tag/tokio-1.42.0): Tokio v1.42.0 [Compare Source](https://github.com/tokio-rs/tokio/compare/tokio-1.41.1...tokio-1.42.0) ### 1.42.0 (Dec 3rd, 2024) ##### Added - io: add `AsyncFd::{try_io, try_io_mut}` ([#&#8203;6967]) ##### Fixed - io: avoid `ptr->ref->ptr` roundtrip in RegistrationSet ([#&#8203;6929]) - runtime: do not defer `yield_now` inside `block_in_place` ([#&#8203;6999]) ##### Changes - io: simplify io readiness logic ([#&#8203;6966]) ##### Documented - net: fix docs for `tokio::net::unix::{pid_t, gid_t, uid_t}` ([#&#8203;6791]) - time: fix a typo in `Instant` docs ([#&#8203;6982]) [#&#8203;6791]: https://github.com/tokio-rs/tokio/pull/6791 [#&#8203;6929]: https://github.com/tokio-rs/tokio/pull/6929 [#&#8203;6966]: https://github.com/tokio-rs/tokio/pull/6966 [#&#8203;6967]: https://github.com/tokio-rs/tokio/pull/6967 [#&#8203;6982]: https://github.com/tokio-rs/tokio/pull/6982 [#&#8203;6999]: https://github.com/tokio-rs/tokio/pull/6999 ### [`v1.41.1`](https://github.com/tokio-rs/tokio/releases/tag/tokio-1.41.1): Tokio v1.41.1 [Compare Source](https://github.com/tokio-rs/tokio/compare/tokio-1.41.0...tokio-1.41.1) ### 1.41.1 (Nov 7th, 2024) ##### Fixed - metrics: fix bug with wrong number of buckets for the histogram ([#&#8203;6957]) - net: display `net` requirement for `net::UdpSocket` in docs ([#&#8203;6938]) - net: fix typo in `TcpStream` internal comment ([#&#8203;6944]) [#&#8203;6957]: https://github.com/tokio-rs/tokio/pull/6957 [#&#8203;6938]: https://github.com/tokio-rs/tokio/pull/6938 [#&#8203;6944]: https://github.com/tokio-rs/tokio/pull/6944 </details> <details> <summary>toml-rs/toml (toml)</summary> ### [`v0.8.20`](https://github.com/toml-rs/toml/compare/toml-v0.8.19...toml-v0.8.20) [Compare Source](https://github.com/toml-rs/toml/compare/toml-v0.8.19...toml-v0.8.20) </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 ### [`v1.12.0`](https://github.com/uuid-rs/uuid/releases/tag/1.12.0) [Compare Source](https://github.com/uuid-rs/uuid/compare/1.11.1...1.12.0) #### :warning: Possible Breakage This release includes additional `PartialEq` implementations on `Uuid`, which can break inference in some cases. #### What's Changed - feat: Add `NonZeroUuid` type for optimized `Option<Uuid>` representation by [@&#8203;ab22593k](https://github.com/ab22593k) in https://github.com/uuid-rs/uuid/pull/779 - Finalize `NonNilUuid` by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/783 - Prepare for 1.12.0 release by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/784 #### New Contributors - [@&#8203;ab22593k](https://github.com/ab22593k) made their first contribution in https://github.com/uuid-rs/uuid/pull/779 **Full Changelog**: https://github.com/uuid-rs/uuid/compare/1.11.1...1.12.0 ### [`v1.11.1`](https://github.com/uuid-rs/uuid/releases/tag/1.11.1) [Compare Source](https://github.com/uuid-rs/uuid/compare/1.11.0...1.11.1) #### What's Changed - Finish cut off docs by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/777 - Fix links in CONTRIBUTING.md by [@&#8203;jacobggman](https://github.com/jacobggman) in https://github.com/uuid-rs/uuid/pull/778 - Update rust toolchain before building by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/781 - Prepare for 1.11.1 release by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/782 #### New Contributors - [@&#8203;jacobggman](https://github.com/jacobggman) made their first contribution in https://github.com/uuid-rs/uuid/pull/778 **Full Changelog**: https://github.com/uuid-rs/uuid/compare/1.11.0...1.11.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:eyJjcmVhdGVkSW5WZXIiOiIzNy40MjQuMyIsInVwZGF0ZWRJblZlciI6IjM5LjI0MC4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
kjuulh force-pushed renovate/all from 7b826045f9 to 3596338931 2024-11-04 02:22:48 +01:00 Compare
kjuulh changed title from chore(deps): update rust crate anyhow to v1.0.92 to chore(deps): update all dependencies 2024-11-04 02:22:51 +01:00
kjuulh force-pushed renovate/all from 3596338931 to b4e8d0780a 2024-11-04 06:21:26 +01:00 Compare
kjuulh force-pushed renovate/all from b4e8d0780a to dee120652d 2024-11-05 02:23:54 +01:00 Compare
kjuulh force-pushed renovate/all from dee120652d to 6d23516800 2024-11-05 06:23:15 +01:00 Compare
kjuulh force-pushed renovate/all from 6d23516800 to 4f4b7d7206 2024-11-06 02:21:47 +01:00 Compare
kjuulh force-pushed renovate/all from 4f4b7d7206 to faa2708e50 2024-11-06 06:22:04 +01:00 Compare
kjuulh force-pushed renovate/all from faa2708e50 to fdc001eebf 2024-11-07 02:25:21 +01:00 Compare
kjuulh force-pushed renovate/all from fdc001eebf to 60753f988b 2024-11-08 02:25:27 +01:00 Compare
kjuulh force-pushed renovate/all from 60753f988b to d7ea226b2b 2024-11-08 06:24:45 +01:00 Compare
kjuulh force-pushed renovate/all from d7ea226b2b to 95054d4ee3 2024-11-09 02:24:50 +01:00 Compare
kjuulh force-pushed renovate/all from 95054d4ee3 to 38f8e37f32 2024-11-09 06:23:08 +01:00 Compare
kjuulh force-pushed renovate/all from 38f8e37f32 to 4eb63bf8f9 2024-11-10 02:23:22 +01:00 Compare
kjuulh force-pushed renovate/all from 4eb63bf8f9 to 409eee65ac 2024-11-10 06:27:23 +01:00 Compare
kjuulh force-pushed renovate/all from 409eee65ac to 4709cf44c3 2024-11-11 02:24:00 +01:00 Compare
kjuulh force-pushed renovate/all from 4709cf44c3 to 2d87e0c783 2024-11-11 06:22:19 +01:00 Compare
kjuulh force-pushed renovate/all from 2d87e0c783 to 74f0c6b777 2024-11-12 02:23:42 +01:00 Compare
kjuulh force-pushed renovate/all from 74f0c6b777 to e5fcfe97a7 2024-11-12 06:23:43 +01:00 Compare
kjuulh force-pushed renovate/all from e5fcfe97a7 to 06cef6aa46 2024-11-13 02:36:05 +01:00 Compare
kjuulh force-pushed renovate/all from 06cef6aa46 to ed5a6661f3 2024-11-13 06:27:38 +01:00 Compare
kjuulh force-pushed renovate/all from ed5a6661f3 to d8a35ff385 2024-11-14 02:26:45 +01:00 Compare
kjuulh force-pushed renovate/all from d8a35ff385 to 1757c9dcab 2024-11-14 06:31:53 +01:00 Compare
kjuulh force-pushed renovate/all from 1757c9dcab to 8fa3b84d19 2024-11-15 02:25:01 +01:00 Compare
kjuulh force-pushed renovate/all from 8fa3b84d19 to 0942b4dab0 2024-11-15 06:25:54 +01:00 Compare
kjuulh force-pushed renovate/all from 0942b4dab0 to fd11892ae0 2024-11-16 02:28:11 +01:00 Compare
kjuulh force-pushed renovate/all from fd11892ae0 to c7f2497a5b 2024-11-16 06:26:55 +01:00 Compare
kjuulh force-pushed renovate/all from c7f2497a5b to 931ec86d88 2024-11-17 02:24:31 +01:00 Compare
kjuulh force-pushed renovate/all from 931ec86d88 to 6b328cd4f8 2024-11-17 06:24:37 +01:00 Compare
kjuulh force-pushed renovate/all from 6b328cd4f8 to 1f4d520fd5 2024-11-21 06:22:02 +01:00 Compare
kjuulh force-pushed renovate/all from 1f4d520fd5 to 6c2f24243c 2024-11-22 02:27:25 +01:00 Compare
kjuulh force-pushed renovate/all from 6c2f24243c to 535612c7c3 2024-11-27 06:27:15 +01:00 Compare
kjuulh force-pushed renovate/all from 535612c7c3 to 64254cd663 2024-11-28 02:30:11 +01:00 Compare
kjuulh force-pushed renovate/all from 64254cd663 to cf826d7042 2024-11-28 06:27:37 +01:00 Compare
kjuulh force-pushed renovate/all from cf826d7042 to f2b16f275c 2024-11-29 02:25:34 +01:00 Compare
kjuulh force-pushed renovate/all from f2b16f275c to 5dd908cd36 2024-11-29 06:25:09 +01:00 Compare
kjuulh force-pushed renovate/all from 5dd908cd36 to 007369620b 2024-11-30 02:50:35 +01:00 Compare
kjuulh force-pushed renovate/all from 007369620b to 43e61de579 2024-11-30 06:47:48 +01:00 Compare
kjuulh force-pushed renovate/all from 43e61de579 to c0a84cc7a6 2024-12-01 02:26:51 +01:00 Compare
kjuulh force-pushed renovate/all from c0a84cc7a6 to 5be100929b 2024-12-01 06:26:07 +01:00 Compare
kjuulh force-pushed renovate/all from 5be100929b to c1bf693866 2024-12-02 02:54:26 +01:00 Compare
kjuulh force-pushed renovate/all from c1bf693866 to 786d19c960 2024-12-02 06:37:22 +01:00 Compare
kjuulh force-pushed renovate/all from 786d19c960 to 2643ea2960 2024-12-03 02:24:59 +01:00 Compare
kjuulh force-pushed renovate/all from 2643ea2960 to 95a02c5f62 2024-12-03 06:25:16 +01:00 Compare
kjuulh force-pushed renovate/all from 95a02c5f62 to b00eba2735 2024-12-04 02:34:30 +01:00 Compare
kjuulh force-pushed renovate/all from b00eba2735 to 457e3a9092 2024-12-06 02:35:04 +01:00 Compare
kjuulh force-pushed renovate/all from 457e3a9092 to 23d7e2f964 2024-12-06 06:27:57 +01:00 Compare
kjuulh force-pushed renovate/all from 23d7e2f964 to e620aecbc8 2024-12-07 02:32:06 +01:00 Compare
kjuulh force-pushed renovate/all from e620aecbc8 to c33c75fda9 2024-12-07 06:27:04 +01:00 Compare
kjuulh force-pushed renovate/all from c33c75fda9 to 0a66e3df75 2024-12-08 02:26:04 +01:00 Compare
kjuulh force-pushed renovate/all from 0a66e3df75 to de4cbfa789 2024-12-08 06:28:30 +01:00 Compare
kjuulh force-pushed renovate/all from de4cbfa789 to 441575a01a 2024-12-09 02:27:07 +01:00 Compare
kjuulh force-pushed renovate/all from 441575a01a to 37009a22c4 2024-12-10 02:27:54 +01:00 Compare
kjuulh force-pushed renovate/all from 37009a22c4 to a4fc12e604 2024-12-10 06:27:52 +01:00 Compare
kjuulh force-pushed renovate/all from a4fc12e604 to ebecc5bfb3 2024-12-11 02:35:24 +01:00 Compare
kjuulh force-pushed renovate/all from ebecc5bfb3 to 828d572ab1 2024-12-11 06:26:01 +01:00 Compare
kjuulh force-pushed renovate/all from 828d572ab1 to 72c8949571 2024-12-12 02:28:50 +01:00 Compare
kjuulh force-pushed renovate/all from 72c8949571 to 9fc4b96c19 2024-12-12 06:24:35 +01:00 Compare
kjuulh force-pushed renovate/all from 9fc4b96c19 to e928277ba7 2024-12-13 02:26:23 +01:00 Compare
kjuulh force-pushed renovate/all from e928277ba7 to f30cfcc186 2024-12-13 06:25:21 +01:00 Compare
kjuulh force-pushed renovate/all from f30cfcc186 to 34e32e76f1 2024-12-14 02:25:21 +01:00 Compare
kjuulh force-pushed renovate/all from 34e32e76f1 to 71791d0eed 2024-12-14 06:25:01 +01:00 Compare
kjuulh force-pushed renovate/all from 71791d0eed to abf1c3083a 2024-12-15 02:24:16 +01:00 Compare
kjuulh force-pushed renovate/all from abf1c3083a to 6cafc5e07d 2024-12-15 06:23:54 +01:00 Compare
kjuulh force-pushed renovate/all from 6cafc5e07d to c3528dd0ec 2024-12-16 02:29:33 +01:00 Compare
kjuulh force-pushed renovate/all from c3528dd0ec to c64d5e5c9f 2024-12-16 06:26:45 +01:00 Compare
kjuulh force-pushed renovate/all from c64d5e5c9f to f92315cdc4 2024-12-17 02:26:29 +01:00 Compare
kjuulh force-pushed renovate/all from f92315cdc4 to df928ab368 2024-12-17 06:28:12 +01:00 Compare
kjuulh force-pushed renovate/all from df928ab368 to 13b40f55a8 2024-12-18 02:28:06 +01:00 Compare
kjuulh force-pushed renovate/all from 13b40f55a8 to afd41a6173 2024-12-18 06:24:24 +01:00 Compare
kjuulh force-pushed renovate/all from afd41a6173 to 7c2a063514 2024-12-19 02:28:19 +01:00 Compare
kjuulh force-pushed renovate/all from 7c2a063514 to c5dc4336c3 2024-12-19 06:24:28 +01:00 Compare
kjuulh force-pushed renovate/all from c5dc4336c3 to 5a2eb965d2 2024-12-20 02:26:02 +01:00 Compare
kjuulh force-pushed renovate/all from 5a2eb965d2 to e19a56612d 2024-12-20 06:26:24 +01:00 Compare
kjuulh force-pushed renovate/all from e19a56612d to 4f26a1ed87 2024-12-21 02:28:20 +01:00 Compare
kjuulh force-pushed renovate/all from 4f26a1ed87 to 429520bb18 2024-12-21 06:24:25 +01:00 Compare
kjuulh force-pushed renovate/all from 429520bb18 to 3f3a1343f2 2024-12-22 02:26:26 +01:00 Compare
kjuulh force-pushed renovate/all from 3f3a1343f2 to 0e0602aa53 2024-12-22 06:24:19 +01:00 Compare
kjuulh force-pushed renovate/all from 0e0602aa53 to 2ca020d9f0 2024-12-23 02:31:42 +01:00 Compare
kjuulh force-pushed renovate/all from 2ca020d9f0 to f91a0bb4fa 2024-12-23 06:33:25 +01:00 Compare
kjuulh force-pushed renovate/all from f91a0bb4fa to 7368e7c856 2024-12-24 02:34:02 +01:00 Compare
kjuulh force-pushed renovate/all from 7368e7c856 to e9ab2a377a 2024-12-24 06:24:36 +01:00 Compare
kjuulh force-pushed renovate/all from e9ab2a377a to 6791d6e222 2024-12-25 02:30:00 +01:00 Compare
kjuulh force-pushed renovate/all from 6791d6e222 to 874068f9c6 2024-12-25 06:25:58 +01:00 Compare
kjuulh force-pushed renovate/all from 874068f9c6 to 447ff9ba46 2024-12-26 02:27:33 +01:00 Compare
kjuulh force-pushed renovate/all from 447ff9ba46 to d64ec8abcb 2024-12-26 06:26:26 +01:00 Compare
kjuulh force-pushed renovate/all from d64ec8abcb to 638a8755dd 2024-12-27 02:25:54 +01:00 Compare
kjuulh force-pushed renovate/all from 638a8755dd to 6733a75b97 2024-12-29 02:31:30 +01:00 Compare
kjuulh force-pushed renovate/all from 6733a75b97 to b6022781d4 2024-12-29 06:24:19 +01:00 Compare
kjuulh force-pushed renovate/all from b6022781d4 to 2be5480051 2024-12-30 02:25:31 +01:00 Compare
kjuulh force-pushed renovate/all from 2be5480051 to e06e423edb 2024-12-30 06:24:55 +01:00 Compare
kjuulh force-pushed renovate/all from e06e423edb to 284dbd254d 2024-12-31 02:27:08 +01:00 Compare
kjuulh force-pushed renovate/all from 284dbd254d to 28d0cd367a 2024-12-31 06:27:03 +01:00 Compare
kjuulh force-pushed renovate/all from 28d0cd367a to 3732db5306 2025-01-01 02:28:36 +01:00 Compare
kjuulh force-pushed renovate/all from 3732db5306 to 03e1974039 2025-01-01 06:26:21 +01:00 Compare
kjuulh force-pushed renovate/all from 03e1974039 to 7436403fbc 2025-01-02 02:26:09 +01:00 Compare
kjuulh force-pushed renovate/all from 7436403fbc to 3330af7bca 2025-01-02 06:24:15 +01:00 Compare
kjuulh force-pushed renovate/all from 3330af7bca to a1ab617049 2025-01-03 02:23:42 +01:00 Compare
kjuulh force-pushed renovate/all from a1ab617049 to 6b2c5dca2b 2025-01-03 06:25:55 +01:00 Compare
kjuulh force-pushed renovate/all from 6b2c5dca2b to edd91af065 2025-01-04 02:26:27 +01:00 Compare
kjuulh force-pushed renovate/all from edd91af065 to 576f659798 2025-01-04 06:25:30 +01:00 Compare
kjuulh force-pushed renovate/all from 576f659798 to ead8b7c8ed 2025-01-05 02:28:33 +01:00 Compare
kjuulh force-pushed renovate/all from ead8b7c8ed to 27fa8d998a 2025-01-05 06:25:01 +01:00 Compare
kjuulh force-pushed renovate/all from 27fa8d998a to 618735d7f5 2025-01-06 02:23:53 +01:00 Compare
kjuulh force-pushed renovate/all from 618735d7f5 to 2041a8bad7 2025-01-06 06:24:07 +01:00 Compare
kjuulh force-pushed renovate/all from 2041a8bad7 to 409753c78b 2025-01-07 02:28:27 +01:00 Compare
kjuulh force-pushed renovate/all from 409753c78b to 37deec72a5 2025-01-08 02:26:53 +01:00 Compare
kjuulh force-pushed renovate/all from 37deec72a5 to 3a46b7f0d1 2025-01-08 06:27:01 +01:00 Compare
kjuulh force-pushed renovate/all from 3a46b7f0d1 to f7eb3081ae 2025-01-09 02:29:08 +01:00 Compare
kjuulh force-pushed renovate/all from f7eb3081ae to 06a24623e2 2025-01-09 06:26:13 +01:00 Compare
kjuulh force-pushed renovate/all from 06a24623e2 to 2426d7faa5 2025-01-10 02:27:07 +01:00 Compare
kjuulh force-pushed renovate/all from 2426d7faa5 to 61ff4d7440 2025-01-10 06:27:05 +01:00 Compare
kjuulh force-pushed renovate/all from 61ff4d7440 to d1af76c008 2025-01-11 06:27:08 +01:00 Compare
kjuulh force-pushed renovate/all from d1af76c008 to d6e7e87105 2025-01-12 02:28:51 +01:00 Compare
kjuulh force-pushed renovate/all from d6e7e87105 to a2184e12a3 2025-01-12 06:27:23 +01:00 Compare
kjuulh force-pushed renovate/all from a2184e12a3 to 803b060748 2025-01-13 02:30:29 +01:00 Compare
kjuulh force-pushed renovate/all from 803b060748 to c6aa4e0483 2025-01-13 06:28:29 +01:00 Compare
kjuulh force-pushed renovate/all from c6aa4e0483 to f0acbf51a4 2025-01-14 02:27:59 +01:00 Compare
kjuulh force-pushed renovate/all from f0acbf51a4 to 4acdefcda6 2025-01-14 06:27:36 +01:00 Compare
kjuulh force-pushed renovate/all from 4acdefcda6 to db91017c23 2025-01-15 02:35:56 +01:00 Compare
kjuulh force-pushed renovate/all from db91017c23 to 8324e4a945 2025-01-15 06:32:33 +01:00 Compare
kjuulh force-pushed renovate/all from 8324e4a945 to 24475f9ae6 2025-01-16 02:31:08 +01:00 Compare
kjuulh force-pushed renovate/all from 24475f9ae6 to 3508a50ac9 2025-01-16 06:28:06 +01:00 Compare
kjuulh force-pushed renovate/all from 3508a50ac9 to ab4bd44dc7 2025-01-17 02:30:02 +01:00 Compare
kjuulh force-pushed renovate/all from ab4bd44dc7 to 7891516ff8 2025-01-17 06:28:03 +01:00 Compare
kjuulh force-pushed renovate/all from 7891516ff8 to 7ba104ae7a 2025-01-18 02:32:27 +01:00 Compare
kjuulh force-pushed renovate/all from 7ba104ae7a to 855ba3a136 2025-01-18 06:28:46 +01:00 Compare
kjuulh force-pushed renovate/all from 855ba3a136 to f6190e5160 2025-01-19 02:31:59 +01:00 Compare
kjuulh force-pushed renovate/all from f6190e5160 to 26a23c5249 2025-01-19 06:29:14 +01:00 Compare
kjuulh force-pushed renovate/all from 26a23c5249 to b41eb87c23 2025-01-20 02:30:37 +01:00 Compare
kjuulh force-pushed renovate/all from b41eb87c23 to 0534acb2b1 2025-01-20 06:29:35 +01:00 Compare
kjuulh force-pushed renovate/all from 0534acb2b1 to 2e8bea6c21 2025-01-21 02:31:31 +01:00 Compare
kjuulh force-pushed renovate/all from 2e8bea6c21 to ec190c9085 2025-01-21 06:33:34 +01:00 Compare
kjuulh force-pushed renovate/all from ec190c9085 to 6d17b1296f 2025-01-29 02:34:05 +01:00 Compare
kjuulh force-pushed renovate/all from 6d17b1296f to d594d1de96 2025-01-29 06:33:28 +01:00 Compare
kjuulh force-pushed renovate/all from d594d1de96 to b7e3938a91 2025-01-30 02:36:54 +01:00 Compare
kjuulh force-pushed renovate/all from b7e3938a91 to f239f9aea0 2025-01-30 06:37:16 +01:00 Compare
kjuulh force-pushed renovate/all from f239f9aea0 to 73f1313904 2025-01-31 02:33:45 +01:00 Compare
kjuulh force-pushed renovate/all from 73f1313904 to 5978616a81 2025-01-31 06:31:46 +01:00 Compare
kjuulh force-pushed renovate/all from 5978616a81 to 48960bb3d0 2025-02-01 02:31:19 +01:00 Compare
kjuulh force-pushed renovate/all from 48960bb3d0 to 6a73ddee2e 2025-02-01 06:32:36 +01:00 Compare
kjuulh force-pushed renovate/all from 6a73ddee2e to cb432eb56a 2025-02-02 02:32:25 +01:00 Compare
kjuulh force-pushed renovate/all from cb432eb56a to 87b3b93732 2025-02-02 06:29:46 +01:00 Compare
kjuulh force-pushed renovate/all from 87b3b93732 to 371b888e65 2025-02-03 02:30:48 +01:00 Compare
kjuulh force-pushed renovate/all from 371b888e65 to 6720fd31a0 2025-02-03 06:29:56 +01:00 Compare
kjuulh force-pushed renovate/all from 6720fd31a0 to 84dc853bac 2025-02-04 02:33:06 +01:00 Compare
kjuulh force-pushed renovate/all from 84dc853bac to e87455b909 2025-02-04 06:32:03 +01:00 Compare
kjuulh force-pushed renovate/all from e87455b909 to 0f7f5fb6bb 2025-02-05 02:31:47 +01:00 Compare
kjuulh force-pushed renovate/all from 0f7f5fb6bb to d99b0f8589 2025-02-05 06:34:54 +01:00 Compare
kjuulh force-pushed renovate/all from d99b0f8589 to 87ed321da4 2025-02-06 02:32:31 +01:00 Compare
kjuulh force-pushed renovate/all from 87ed321da4 to 7b7fbe8e7b 2025-02-06 06:30:18 +01:00 Compare
kjuulh force-pushed renovate/all from 7b7fbe8e7b to e8d6d19cc2 2025-02-07 02:31:10 +01:00 Compare
kjuulh force-pushed renovate/all from e8d6d19cc2 to ba086c0262 2025-02-07 06:29:27 +01:00 Compare
kjuulh force-pushed renovate/all from ba086c0262 to 0315e9e1c2 2025-02-08 02:33:24 +01:00 Compare
kjuulh force-pushed renovate/all from 0315e9e1c2 to d05bea27c2 2025-02-08 06:29:55 +01:00 Compare
kjuulh force-pushed renovate/all from d05bea27c2 to d5a0558839 2025-02-09 02:32:12 +01:00 Compare
kjuulh force-pushed renovate/all from d5a0558839 to 9eb2251696 2025-02-09 06:30:30 +01:00 Compare
kjuulh force-pushed renovate/all from 9eb2251696 to 8f7840595b 2025-02-10 02:31:34 +01:00 Compare
kjuulh force-pushed renovate/all from 8f7840595b to b4132be097 2025-02-10 06:30:19 +01:00 Compare
kjuulh force-pushed renovate/all from b4132be097 to f9e4dae47f 2025-02-11 02:33:03 +01:00 Compare
kjuulh force-pushed renovate/all from f9e4dae47f to 4b3ace1249 2025-02-11 06:30:52 +01:00 Compare
kjuulh force-pushed renovate/all from 4b3ace1249 to c65e5428f7 2025-02-12 02:34:57 +01:00 Compare
kjuulh force-pushed renovate/all from c65e5428f7 to cb45847ad4 2025-02-12 06:32:51 +01:00 Compare
kjuulh force-pushed renovate/all from cb45847ad4 to 843134c528 2025-02-13 02:31:56 +01:00 Compare
kjuulh force-pushed renovate/all from 843134c528 to 45c7724c1b 2025-02-13 06:29:52 +01:00 Compare
kjuulh force-pushed renovate/all from 45c7724c1b to b2bbecb443 2025-02-14 02:30:19 +01:00 Compare
kjuulh force-pushed renovate/all from b2bbecb443 to 3c1f63ccad 2025-02-14 06:27:57 +01:00 Compare
kjuulh force-pushed renovate/all from 3c1f63ccad to a389b8bf64 2025-02-15 02:29:49 +01:00 Compare
kjuulh force-pushed renovate/all from a389b8bf64 to 0e8384bcf5 2025-02-15 06:28:00 +01:00 Compare
kjuulh force-pushed renovate/all from 0e8384bcf5 to 0c8619ce7b 2025-02-16 02:29:55 +01:00 Compare
kjuulh force-pushed renovate/all from 0c8619ce7b to 232e4d16a5 2025-02-16 06:27:40 +01:00 Compare
kjuulh force-pushed renovate/all from 232e4d16a5 to e108eb3d99 2025-02-17 02:31:17 +01:00 Compare
kjuulh force-pushed renovate/all from e108eb3d99 to fe6f079384 2025-02-17 06:29:07 +01:00 Compare
kjuulh force-pushed renovate/all from fe6f079384 to 3e3ffa8c0b 2025-02-18 02:33:34 +01:00 Compare
kjuulh force-pushed renovate/all from 3e3ffa8c0b to a304a4ccc8 2025-02-18 06:31:01 +01:00 Compare
kjuulh force-pushed renovate/all from a304a4ccc8 to ba5dbe55ff 2025-02-19 02:31:25 +01:00 Compare
kjuulh force-pushed renovate/all from ba5dbe55ff to eec042d538 2025-02-19 06:29:39 +01:00 Compare
kjuulh force-pushed renovate/all from eec042d538 to 183fed0ce2 2025-02-20 02:36:42 +01:00 Compare
kjuulh force-pushed renovate/all from 183fed0ce2 to e8d1cea201 2025-02-20 06:32:15 +01:00 Compare
kjuulh force-pushed renovate/all from e8d1cea201 to 4c7ac6e285 2025-02-21 02:35:15 +01:00 Compare
kjuulh force-pushed renovate/all from 4c7ac6e285 to 8064ec587e 2025-02-25 02:33:16 +01:00 Compare
kjuulh force-pushed renovate/all from 8064ec587e to e24be0a116 2025-02-25 06:32:44 +01:00 Compare
kjuulh force-pushed renovate/all from e24be0a116 to 5fe2c7bd70 2025-02-26 02:31:51 +01:00 Compare
kjuulh force-pushed renovate/all from 5fe2c7bd70 to b651e3cc9f 2025-02-26 06:31:45 +01:00 Compare
kjuulh force-pushed renovate/all from b651e3cc9f to 1c3c3d5c3d 2025-02-27 02:35:23 +01:00 Compare
kjuulh force-pushed renovate/all from 1c3c3d5c3d to 9cb8de29fe 2025-02-27 06:31:38 +01:00 Compare
kjuulh force-pushed renovate/all from 9cb8de29fe to f80ff5a8dc 2025-02-28 02:34:30 +01:00 Compare
kjuulh force-pushed renovate/all from f80ff5a8dc to bb85c4c6f3 2025-02-28 06:32:33 +01:00 Compare
kjuulh force-pushed renovate/all from bb85c4c6f3 to 6f922e8a56 2025-03-01 02:33:14 +01:00 Compare
kjuulh force-pushed renovate/all from 6f922e8a56 to 9c1bea0dfb 2025-03-01 06:31:09 +01:00 Compare
kjuulh force-pushed renovate/all from 9c1bea0dfb to 265a5b51da 2025-03-02 02:31:38 +01:00 Compare
kjuulh force-pushed renovate/all from 265a5b51da to 6af2fdfa79 2025-03-02 06:43:33 +01:00 Compare
kjuulh force-pushed renovate/all from 6af2fdfa79 to 89fa582258 2025-03-03 02:30:17 +01:00 Compare
kjuulh force-pushed renovate/all from 89fa582258 to 2d899614aa 2025-03-03 06:31:41 +01:00 Compare
kjuulh force-pushed renovate/all from 2d899614aa to 29af9e26fb 2025-03-04 02:36:39 +01:00 Compare
kjuulh force-pushed renovate/all from 29af9e26fb to 7c073e4dea 2025-03-04 06:34:23 +01:00 Compare
kjuulh force-pushed renovate/all from 7c073e4dea to 5125d22740 2025-03-05 02:33:39 +01:00 Compare
kjuulh force-pushed renovate/all from 5125d22740 to 39f28e5742 2025-03-05 06:32:03 +01:00 Compare
kjuulh force-pushed renovate/all from 39f28e5742 to b052d47e4f 2025-03-06 02:34:23 +01:00 Compare
kjuulh force-pushed renovate/all from b052d47e4f to d28b0bb722 2025-03-06 06:33:13 +01:00 Compare
kjuulh force-pushed renovate/all from d28b0bb722 to c36b8e593b 2025-03-25 23:50:23 +01:00 Compare
kjuulh changed title from chore(deps): update all dependencies to fix(deps): update all dependencies 2025-03-25 23:50:26 +01:00
kjuulh force-pushed renovate/all from c36b8e593b to 7910df5bfa 2025-03-26 00:40:57 +01:00 Compare
kjuulh force-pushed renovate/all from 7910df5bfa to 2e33a7787d 2025-03-26 01:07:39 +01:00 Compare
kjuulh force-pushed renovate/all from 2e33a7787d to 33f2de9dd2 2025-03-26 01:43:27 +01:00 Compare
kjuulh force-pushed renovate/all from 33f2de9dd2 to 2e1c951b88 2025-03-26 02:12:26 +01:00 Compare
kjuulh force-pushed renovate/all from 2e1c951b88 to c2fb0eb28c 2025-03-26 02:42:27 +01:00 Compare
kjuulh force-pushed renovate/all from c2fb0eb28c to 0092ce3080 2025-03-26 03:12:25 +01:00 Compare
kjuulh force-pushed renovate/all from 0092ce3080 to ccd78cf5c3 2025-03-26 03:41:56 +01:00 Compare
kjuulh force-pushed renovate/all from ccd78cf5c3 to b3522a3bfe 2025-03-26 04:11:12 +01:00 Compare
kjuulh force-pushed renovate/all from b3522a3bfe to ed91d0361a 2025-03-26 04:40:06 +01:00 Compare
kjuulh force-pushed renovate/all from ed91d0361a to cb05332d82 2025-03-26 05:10:06 +01:00 Compare
kjuulh force-pushed renovate/all from cb05332d82 to 0042956f87 2025-03-26 05:39:34 +01:00 Compare
kjuulh force-pushed renovate/all from 0042956f87 to 9b4e3b7a13 2025-03-26 06:09:33 +01:00 Compare
kjuulh force-pushed renovate/all from 9b4e3b7a13 to dde77e7d22 2025-03-26 06:39:21 +01:00 Compare
kjuulh force-pushed renovate/all from dde77e7d22 to ac70bbb801 2025-03-26 07:08:49 +01:00 Compare
kjuulh force-pushed renovate/all from ac70bbb801 to e432e3ae71 2025-03-26 07:38:05 +01:00 Compare
kjuulh force-pushed renovate/all from e432e3ae71 to 4b35a44efb 2025-03-26 08:06:07 +01:00 Compare
kjuulh force-pushed renovate/all from 4b35a44efb to 0f249819f9 2025-03-26 08:34:49 +01:00 Compare
kjuulh force-pushed renovate/all from 0f249819f9 to 84a97a9ba9 2025-03-26 09:03:33 +01:00 Compare
kjuulh force-pushed renovate/all from 84a97a9ba9 to f8cbb01818 2025-03-26 09:31:55 +01:00 Compare
kjuulh force-pushed renovate/all from f8cbb01818 to da32e140fe 2025-03-26 10:00:09 +01:00 Compare
kjuulh force-pushed renovate/all from da32e140fe to 7d36ce1a45 2025-03-26 10:29:05 +01:00 Compare
kjuulh force-pushed renovate/all from 7d36ce1a45 to 4239b4df4c 2025-03-26 11:04:42 +01:00 Compare
kjuulh force-pushed renovate/all from 4239b4df4c to 787cd80db0 2025-03-26 11:39:08 +01:00 Compare
kjuulh force-pushed renovate/all from 787cd80db0 to 2d7ecbed10 2025-03-26 12:09:11 +01:00 Compare
kjuulh force-pushed renovate/all from 2d7ecbed10 to e2af218929 2025-03-26 12:38:26 +01:00 Compare
kjuulh force-pushed renovate/all from e2af218929 to 353b17d67a 2025-03-26 13:06:10 +01:00 Compare
kjuulh force-pushed renovate/all from 353b17d67a to 41e47f0f28 2025-03-26 13:35:11 +01:00 Compare
kjuulh force-pushed renovate/all from 41e47f0f28 to ed9cb10831 2025-03-26 14:03:05 +01:00 Compare
kjuulh force-pushed renovate/all from ed9cb10831 to 7e5686b35a 2025-03-26 14:32:35 +01:00 Compare
kjuulh force-pushed renovate/all from 7e5686b35a to c119b82e1f 2025-03-26 15:00:59 +01:00 Compare
kjuulh force-pushed renovate/all from c119b82e1f to e24674be32 2025-03-26 15:30:27 +01:00 Compare
kjuulh force-pushed renovate/all from e24674be32 to 0ea24873c3 2025-03-26 16:04:44 +01:00 Compare
kjuulh force-pushed renovate/all from 0ea24873c3 to cf7b21e90a 2025-03-26 16:39:44 +01:00 Compare
kjuulh force-pushed renovate/all from cf7b21e90a to d4ff57f6b7 2025-03-26 17:08:43 +01:00 Compare
kjuulh force-pushed renovate/all from d4ff57f6b7 to 2b97336f9e 2025-03-26 17:37:45 +01:00 Compare
kjuulh force-pushed renovate/all from 2b97336f9e to df37fc1d81 2025-03-26 18:07:40 +01:00 Compare
kjuulh force-pushed renovate/all from df37fc1d81 to fac4111323 2025-03-26 18:36:35 +01:00 Compare
kjuulh force-pushed renovate/all from fac4111323 to dd733a1c88 2025-03-26 19:04:29 +01:00 Compare
kjuulh force-pushed renovate/all from dd733a1c88 to e3f05893ce 2025-03-26 19:23:52 +01:00 Compare
kjuulh force-pushed renovate/all from e3f05893ce to 66a9f730e8 2025-03-26 19:59:58 +01:00 Compare
kjuulh force-pushed renovate/all from 66a9f730e8 to d1f407a42d 2025-03-26 20:29:08 +01:00 Compare
kjuulh force-pushed renovate/all from d1f407a42d to e733011b57 2025-03-26 21:01:01 +01:00 Compare
kjuulh force-pushed renovate/all from e733011b57 to 855f1ffa87 2025-03-26 21:34:24 +01:00 Compare
kjuulh force-pushed renovate/all from 855f1ffa87 to d234db71ba 2025-03-26 22:05:05 +01:00 Compare
kjuulh force-pushed renovate/all from d234db71ba to c31b2951fa 2025-03-26 22:34:26 +01:00 Compare
kjuulh force-pushed renovate/all from c31b2951fa to ec94c271d4 2025-03-26 23:04:31 +01:00 Compare
kjuulh force-pushed renovate/all from ec94c271d4 to 9e26be8102 2025-03-26 23:35:14 +01:00 Compare
kjuulh force-pushed renovate/all from 9e26be8102 to 77dbb085ca 2025-03-27 00:06:21 +01:00 Compare
kjuulh force-pushed renovate/all from 77dbb085ca to 5d225025ae 2025-03-27 00:36:41 +01:00 Compare
kjuulh force-pushed renovate/all from 5d225025ae to 37b8d5fb70 2025-03-27 01:05:57 +01:00 Compare
kjuulh force-pushed renovate/all from 37b8d5fb70 to 6c5167ecc7 2025-03-27 01:33:24 +01:00 Compare
kjuulh force-pushed renovate/all from 6c5167ecc7 to 51b3b0d337 2025-03-27 02:02:25 +01:00 Compare
kjuulh force-pushed renovate/all from 51b3b0d337 to be4401b7d4 2025-03-27 02:30:40 +01:00 Compare
kjuulh force-pushed renovate/all from be4401b7d4 to 6e7db8b352 2025-03-27 03:01:25 +01:00 Compare
kjuulh force-pushed renovate/all from 6e7db8b352 to d5d4c72d53 2025-03-27 03:34:15 +01:00 Compare
kjuulh force-pushed renovate/all from d5d4c72d53 to abda9672d7 2025-03-27 04:05:53 +01:00 Compare
kjuulh force-pushed renovate/all from abda9672d7 to 0aaa8e6a48 2025-03-27 04:35:33 +01:00 Compare
kjuulh force-pushed renovate/all from 0aaa8e6a48 to 7dc0f6cfed 2025-03-27 05:08:26 +01:00 Compare
kjuulh force-pushed renovate/all from 7dc0f6cfed to c691452461 2025-03-27 05:39:29 +01:00 Compare
kjuulh force-pushed renovate/all from c691452461 to 6517202e11 2025-03-27 06:09:56 +01:00 Compare
kjuulh force-pushed renovate/all from 6517202e11 to 95deed8b32 2025-03-27 06:38:12 +01:00 Compare
kjuulh force-pushed renovate/all from 95deed8b32 to 3cbe1256b2 2025-03-27 07:07:47 +01:00 Compare
kjuulh force-pushed renovate/all from 3cbe1256b2 to d901e97436 2025-03-27 07:36:29 +01:00 Compare
kjuulh force-pushed renovate/all from d901e97436 to b02f707a0f 2025-03-27 08:05:22 +01:00 Compare
kjuulh force-pushed renovate/all from b02f707a0f to 6802d56708 2025-03-27 08:34:11 +01:00 Compare
kjuulh force-pushed renovate/all from 6802d56708 to 758c3626ca 2025-03-27 09:02:52 +01:00 Compare
kjuulh force-pushed renovate/all from 758c3626ca to 90b9245e82 2025-03-27 09:31:08 +01:00 Compare
kjuulh force-pushed renovate/all from 90b9245e82 to 98a14ceb85 2025-03-27 10:00:34 +01:00 Compare
kjuulh force-pushed renovate/all from 98a14ceb85 to e58c16de60 2025-03-27 10:24:20 +01:00 Compare
kjuulh force-pushed renovate/all from e58c16de60 to 500e8c351a 2025-03-27 11:00:16 +01:00 Compare
kjuulh force-pushed renovate/all from 500e8c351a to b964e5c199 2025-03-27 11:28:59 +01:00 Compare
kjuulh force-pushed renovate/all from b964e5c199 to 91712d96a2 2025-03-27 11:58:06 +01:00 Compare
kjuulh force-pushed renovate/all from 91712d96a2 to 0f73a85b1d 2025-03-27 12:27:11 +01:00 Compare
kjuulh force-pushed renovate/all from 0f73a85b1d to 1d5657f3c8 2025-03-27 12:56:51 +01:00 Compare
kjuulh force-pushed renovate/all from 1d5657f3c8 to bc671e6926 2025-03-27 13:44:45 +01:00 Compare
kjuulh force-pushed renovate/all from bc671e6926 to e14024130a 2025-03-27 14:22:04 +01:00 Compare
kjuulh force-pushed renovate/all from e14024130a to f09efbc5b5 2025-03-27 14:52:12 +01:00 Compare
kjuulh force-pushed renovate/all from f09efbc5b5 to 7aae1d133b 2025-03-27 15:24:50 +01:00 Compare
kjuulh force-pushed renovate/all from 7aae1d133b to 6aae04a3a5 2025-03-27 16:01:09 +01:00 Compare
kjuulh force-pushed renovate/all from 6aae04a3a5 to d4e47139df 2025-03-27 16:29:56 +01:00 Compare
kjuulh force-pushed renovate/all from d4e47139df to 08c5f368b4 2025-03-27 16:59:44 +01:00 Compare
kjuulh force-pushed renovate/all from 08c5f368b4 to 177744e96f 2025-03-27 17:30:23 +01:00 Compare
kjuulh force-pushed renovate/all from 177744e96f to 601fbe6041 2025-03-27 18:01:38 +01:00 Compare
kjuulh force-pushed renovate/all from 601fbe6041 to b959c043b0 2025-03-27 18:32:31 +01:00 Compare
kjuulh force-pushed renovate/all from b959c043b0 to 285b1257dc 2025-03-27 19:02:39 +01:00 Compare
kjuulh force-pushed renovate/all from 285b1257dc to cd8dac15f3 2025-03-27 19:30:55 +01:00 Compare
kjuulh force-pushed renovate/all from cd8dac15f3 to da913f0378 2025-03-27 20:00:14 +01:00 Compare
kjuulh force-pushed renovate/all from da913f0378 to 4e040d916d 2025-03-27 20:28:44 +01:00 Compare
kjuulh force-pushed renovate/all from 4e040d916d to 78ae25e9ab 2025-03-27 20:58:25 +01:00 Compare
kjuulh force-pushed renovate/all from 78ae25e9ab to 86fd585752 2025-03-27 21:27:04 +01:00 Compare
kjuulh force-pushed renovate/all from 86fd585752 to 4bb05c5b29 2025-03-27 21:57:38 +01:00 Compare
kjuulh force-pushed renovate/all from 4bb05c5b29 to 54e2559955 2025-03-28 23:24:49 +01:00 Compare
kjuulh force-pushed renovate/all from 54e2559955 to 18c9b99dfd 2025-03-29 02:19:51 +01:00 Compare
kjuulh force-pushed renovate/all from 18c9b99dfd to adf1b59037 2025-03-29 05:20:25 +01:00 Compare
kjuulh force-pushed renovate/all from adf1b59037 to 806f546757 2025-03-30 05:21:11 +02:00 Compare
kjuulh force-pushed renovate/all from 806f546757 to 9b2342d11e 2025-03-31 02:19:26 +02:00 Compare
kjuulh force-pushed renovate/all from 9b2342d11e to 26a081f93f 2025-03-31 05:19:55 +02:00 Compare
kjuulh force-pushed renovate/all from 26a081f93f to 2ebbd05598 2025-04-01 02:20:29 +02:00 Compare
kjuulh force-pushed renovate/all from 2ebbd05598 to d73acee60a 2025-04-01 05:20:32 +02:00 Compare
kjuulh force-pushed renovate/all from d73acee60a to 5d33ab0a98 2025-04-02 02:23:23 +02:00 Compare
kjuulh force-pushed renovate/all from 5d33ab0a98 to d97d62a99c 2025-04-02 05:20:25 +02:00 Compare
kjuulh force-pushed renovate/all from d97d62a99c to 0b919bd974 2025-04-03 02:22:20 +02:00 Compare
kjuulh force-pushed renovate/all from 0b919bd974 to 1faeca3405 2025-04-03 05:19:54 +02:00 Compare
kjuulh force-pushed renovate/all from 1faeca3405 to db27499dc7 2025-04-04 02:20:27 +02:00 Compare
kjuulh force-pushed renovate/all from db27499dc7 to 422ecbef14 2025-04-04 05:19:30 +02:00 Compare
kjuulh force-pushed renovate/all from 422ecbef14 to 2e0c37dfa9 2025-04-05 02:20:15 +02:00 Compare
kjuulh force-pushed renovate/all from 2e0c37dfa9 to a2e7c35dc0 2025-04-05 05:20:44 +02:00 Compare
kjuulh force-pushed renovate/all from a2e7c35dc0 to ed91d7e50a 2025-04-06 02:21:03 +02:00 Compare
kjuulh force-pushed renovate/all from ed91d7e50a to 1a70c59aa7 2025-04-06 05:21:53 +02:00 Compare
kjuulh force-pushed renovate/all from 1a70c59aa7 to 54c808262a 2025-04-07 02:21:08 +02:00 Compare
kjuulh force-pushed renovate/all from 54c808262a to 5b1b5bf10a 2025-04-07 05:20:01 +02:00 Compare
kjuulh force-pushed renovate/all from 5b1b5bf10a to 350c394238 2025-04-08 02:21:05 +02:00 Compare
kjuulh force-pushed renovate/all from 350c394238 to ed7e6572be 2025-04-08 05:20:58 +02:00 Compare
kjuulh force-pushed renovate/all from ed7e6572be to 051555c9c1 2025-04-09 02:21:18 +02:00 Compare
kjuulh force-pushed renovate/all from 051555c9c1 to 160bd7aa31 2025-04-09 05:20:20 +02:00 Compare
kjuulh force-pushed renovate/all from 160bd7aa31 to f1b4e0b41b 2025-04-10 02:21:29 +02:00 Compare
kjuulh force-pushed renovate/all from f1b4e0b41b to a1745f32de 2025-04-10 05:20:26 +02:00 Compare
kjuulh force-pushed renovate/all from a1745f32de to 0a8768f706 2025-04-11 02:21:17 +02:00 Compare
kjuulh force-pushed renovate/all from 0a8768f706 to 270003d549 2025-04-11 05:20:49 +02:00 Compare
kjuulh force-pushed renovate/all from 270003d549 to 32559803fe 2025-04-12 02:23:28 +02:00 Compare
kjuulh force-pushed renovate/all from 32559803fe to 6e0a1a95e8 2025-04-12 05:21:52 +02:00 Compare
kjuulh force-pushed renovate/all from 6e0a1a95e8 to 8384121398 2025-04-13 02:22:23 +02:00 Compare
kjuulh force-pushed renovate/all from 8384121398 to f9af8a8deb 2025-04-13 05:20:57 +02:00 Compare
kjuulh force-pushed renovate/all from f9af8a8deb to b04f6127d7 2025-04-14 02:20:35 +02:00 Compare
kjuulh force-pushed renovate/all from b04f6127d7 to 06bcfa348a 2025-04-14 05:21:51 +02:00 Compare
kjuulh force-pushed renovate/all from 06bcfa348a to 53581c5d92 2025-04-15 02:23:57 +02:00 Compare
kjuulh force-pushed renovate/all from 53581c5d92 to a1749c3399 2025-04-15 05:20:34 +02:00 Compare
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 crates/cuddle-actions-sdk-derive/Cargo.toml --package syn@2.0.86 --precise 2.0.100
error: package ID specification `syn@2.0.86` did not match any packages
help: there are similar package ID specifications:

  syn@2.0.87

### ⚠️ 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 crates/cuddle-actions-sdk-derive/Cargo.toml --package syn@2.0.86 --precise 2.0.100 error: package ID specification `syn@2.0.86` did not match any packages help: there are similar package ID specifications: syn@2.0.87 ```
Some checks failed
renovate/artifacts Artifact file update failure
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/cuddle-v2#6
No description provided.