Update cargo non-major dependencies #49

Open
pv wants to merge 1 commit from renovate/cargo-minor-patch into master
Owner

This PR contains the following updates:

Package Type Update Change
rust-embed dependencies minor 8.4.0 -> 8.7.2
rustler dependencies minor 0.33.0 -> 0.37.0
serde (source) dependencies patch 1.0.203 -> 1.0.226
serde_json dependencies patch 1.0.118 -> 1.0.145
tantivy dependencies minor 0.22.0 -> 0.25.0
wasi-common dependencies patch 22.0.0 -> 22.0.1
wasmtime dependencies patch 22.0.0 -> 22.0.1
wasmtime-wasi dependencies patch 22.0.0 -> 22.0.1

Release Notes

rusterlium/rustler (rustler)

v0.37.0

Compare Source

Added
  • Add staticlib feature to compile without nif_init and add {pkg}_nif_init
    symbol (#​688)
  • Add IntoIterator to OwnedBinary (#​702, thanks aDifferentJT)
Fixed
  • Set ErlNifEntry.min_erts to a placeholder value (#​703)
Changed
  • Refactor build logic to remove TOML dependency (#​691)
  • Use inline on commonly used functions (#​475, thanks @​joshuataylor)
  • Make EnifAllocator available even if the allocator feature is not enabled

v0.36.2

Compare Source

Added
  • std::hash::Hash implementation for atoms (#​695)
Fixed

v0.36.1

Compare Source

No changes in the Rust code, only rustler_mix adjustments and dependency
updates.

Added
  • Support for Erlang-style NIF module names (:module_name) (#​682)
Fixed
  • Retrieve the newest Rustler version without additional dependencies
    (#​682, fixes #​680)
  • Adjust .gitignore handling to match the new workspace style
Changed
  • Only depend on libloading on non-Windows systems (#​677)

v0.36.0

Compare Source

Added
  • Create a workplace Cargo.toml file with mix rustler.new (#​672)
Fixed
  • Some derive macros failed when only decode was requested (#​676)
Removed
  • The linkage override for macOS is not needed anymore and has been removed from
    the template (#​672)

v0.35.1

Compare Source

Fixed
  • Fix clippy lints in rustler_codegen (#​671)
  • Adjust Rustler macros to not produce warnings on Elixir 1.18 (#​670)

v0.35.0

Compare Source

Added
  • The resource type name can be overridden with
    #[register_impl(name = "...")] (#​638)
  • Floats can be decoded from integers (#​641, fixes #​603)
  • Resource types can implement and use dynamic calls on NIF version 2.16 (#​635)
  • Encoder and Decoder implementations for Box<T> (#​644)
  • Reference type and env.make_ref() function (#​657)
Fixed
  • The optional register attribute on #[register_impl] works as advertised
    now (#​638)
  • API functions for Windows are correctly assigned for NIF version 2.15 and
    above (#​635)
  • Panics in encoding the result of NIF function are caught (#​656)
  • Reverted change to "recompile if the NIF library is changed/deleted" (#​654,
    fixes #​651)
Changed
  • The special ok/error handling for atoms in serde is now restricted to variant
    names (#​639)
  • rustler_sys as a separate library is merged into rustler::sys and will not
    be released independently of rustler anymore (#​653)

v0.34.0

Compare Source

Added
  • Resource type registration has been refactored to eventually remove the
    rustler::resource! macro (#​617, necessary due to a pending deprecation of a
    Rust feature, #​606)
  • Resources can (and should) now explicitly implement the new Resource trait
    and provide a custom destructor function that is run before drop and
    receives an Env parameter (#​617)
  • Process monitoring via resources can now be used on resource types that
    implement the Resource::down callback (#​617)
  • Resource implementation and registration helper attribute (#​627)
Fixed
  • Unwinding in the on_load callback is now caught and leads to a panic (#​617)
Changed
  • NIF implementations are now discovered automatically and the respective
    argument of rustler::init! is ignored (#​613)
  • The derive feature flag is now ignored and its functionality unconditionally
    enabled (#​621)
serde-rs/serde (serde)

v1.0.226

Compare Source

  • Deduplicate variant matching logic inside generated Deserialize impl for adjacently tagged enums (#​2935, thanks @​Mingun)

v1.0.225

Compare Source

  • Avoid triggering a deprecation warning in derived Serialize and Deserialize impls for a data structure that contains its own deprecations (#​2879, thanks @​rcrisanti)

v1.0.224

Compare Source

  • Remove private types being suggested in rustc diagnostics (#​2979)

v1.0.223

Compare Source

  • Fix serde_core documentation links (#​2978)

v1.0.222

Compare Source

  • Make serialize_with attribute produce code that works if respanned to 2024 edition (#​2950, thanks @​aytey)

v1.0.221

Compare Source

  • Documentation improvements (#​2973)
  • Deprecate serde_if_integer128! macro (#​2975)

v1.0.220

Compare Source

v1.0.219

Compare Source

  • Prevent absolute_paths Clippy restriction being triggered inside macro-generated code (#​2906, thanks @​davidzeng0)

v1.0.218

Compare Source

  • Documentation improvements

v1.0.217

Compare Source

  • Support serializing externally tagged unit variant inside flattened field (#​2786, thanks @​Mingun)

v1.0.216

Compare Source

v1.0.215

Compare Source

v1.0.214

Compare Source

  • Implement IntoDeserializer for all Deserializers in serde:🇩🇪:value module (#​2568, thanks @​Mingun)

v1.0.213

Compare Source

  • Fix support for macro-generated with attributes inside a newtype struct (#​2847)

v1.0.212

Compare Source

  • Fix hygiene of macro-generated local variable accesses in serde(with) wrappers (#​2845)

v1.0.211

Compare Source

  • Improve error reporting about mismatched signature in with and default attributes (#​2558, thanks @​Mingun)
  • Show variant aliases in error message when variant deserialization fails (#​2566, thanks @​Mingun)
  • Improve binary size of untagged enum and internally tagged enum deserialization by about 12% (#​2821)

v1.0.210

Compare Source

  • Support serializing and deserializing IpAddr and SocketAddr in no-std mode on Rust 1.77+ (#​2816, thanks @​MathiasKoch)
  • Make serde::ser::StdError and serde::de::StdError equivalent to core::error::Error on Rust 1.81+ (#​2818)

v1.0.209

Compare Source

  • Fix deserialization of empty structs and empty tuples inside of untagged enums (#​2805, thanks @​Mingun)

v1.0.208

Compare Source

  • Support serializing and deserializing unit structs in a flatten field (#​2802, thanks @​jonhoo)

v1.0.207

Compare Source

  • Improve interactions between flatten attribute and skip_serializing/skip_deserializing (#​2795, thanks @​Mingun)

v1.0.206

Compare Source

v1.0.205

Compare Source

  • Use serialize_entry instead of serialize_key + serialize_value when serialize flattened newtype enum variants (#​2785, thanks @​Mingun)
  • Avoid triggering a collection_is_never_read lint in the deserialization of enums containing flattened fields (#​2791)

v1.0.204

Compare Source

  • Apply #[diagnostic::on_unimplemented] attribute on Rust 1.78+ to suggest adding serde derive or enabling a "serde" feature flag in dependencies (#​2767, thanks @​weiznich)
serde-rs/json (serde_json)

v1.0.145

Compare Source

  • Raise serde version requirement to >=1.0.220

v1.0.144

Compare Source

  • Switch serde dependency to serde_core (#​1285)

v1.0.143

Compare Source

v1.0.142

Compare Source

v1.0.141

Compare Source

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)

v1.0.132

Compare Source

  • Improve binary size and compile time for JSON array and JSON object deserialization by about 50% (#​1205)
  • Improve performance of JSON array and JSON object deserialization by about 8% (#​1206)

v1.0.131

Compare Source

  • Implement Deserializer and IntoDeserializer for Map<String, Value> and &Map<String, Value> (#​1135, thanks @​swlynch99)

v1.0.130

Compare Source

  • Support converting and deserializing Number from i128 and u128 (#​1141, thanks @​druide)

v1.0.129

Compare Source

v1.0.128

Compare Source

v1.0.127

Compare Source

v1.0.126

Compare Source

  • Improve string parsing on targets that use 32-bit pointers but also have fast 64-bit integer arithmetic, such as aarch64-unknown-linux-gnu_ilp32 and x86_64-unknown-linux-gnux32 (#​1182, thanks @​CryZe)

v1.0.125

Compare Source

v1.0.124

Compare Source

v1.0.123

Compare Source

v1.0.122

Compare Source

  • Support using json! in no-std crates (#​1166)

v1.0.121

Compare Source

v1.0.120

Compare Source

v1.0.119

Compare Source

quickwit-oss/tantivy (tantivy)

v0.25.0: Tantivy v0.25

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/quickwit-oss/tantivy/compare/0.24...0.25.0

v0.24.2

Compare Source

================================

Affected queries are order_by_fast_field and
order_by_u64_field
for Order::Asc

v0.24.1

================================

  • Fix: bump required rust version to 1.81

v0.22.1

Compare Source

================================

Affected queries are order_by_fast_field and
order_by_u64_field
for Order::Asc

bytecodealliance/wasmtime (wasi-common)

v22.0.1

Compare Source

22.0.1

Released 2024-10-09.

Fixed
  • Fix a runtime crash when combining tail-calls with host imports that capture a
    stack trace or trap.
    GHSA-q8hx-mm92-4wvg

  • Fix a race condition could lead to WebAssembly control-flow integrity and type
    safety violations.
    GHSA-7qmx-3fpx-r45m


Configuration

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

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

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

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


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

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [rust-embed](https://git.sr.ht/~pyrossh/rust-embed) | dependencies | minor | `8.4.0` -> `8.7.2` | | [rustler](https://github.com/rusterlium/rustler) | dependencies | minor | `0.33.0` -> `0.37.0` | | [serde](https://serde.rs) ([source](https://github.com/serde-rs/serde)) | dependencies | patch | `1.0.203` -> `1.0.226` | | [serde_json](https://github.com/serde-rs/json) | dependencies | patch | `1.0.118` -> `1.0.145` | | [tantivy](https://github.com/quickwit-oss/tantivy) | dependencies | minor | `0.22.0` -> `0.25.0` | | [wasi-common](https://github.com/bytecodealliance/wasmtime) | dependencies | patch | `22.0.0` -> `22.0.1` | | [wasmtime](https://github.com/bytecodealliance/wasmtime) | dependencies | patch | `22.0.0` -> `22.0.1` | | [wasmtime-wasi](https://github.com/bytecodealliance/wasmtime) | dependencies | patch | `22.0.0` -> `22.0.1` | --- ### Release Notes <details> <summary>rusterlium/rustler (rustler)</summary> ### [`v0.37.0`](https://github.com/rusterlium/rustler/blob/HEAD/CHANGELOG.md#0370---2025-09-09) [Compare Source](https://github.com/rusterlium/rustler/compare/rustler-0.36.2...rustler-0.37.0) ##### Added - Add `staticlib` feature to compile without `nif_init` and add `{pkg}_nif_init` symbol ([#&#8203;688](https://github.com/rusterlium/rustler/issues/688)) - Add `IntoIterator` to `OwnedBinary` ([#&#8203;702](https://github.com/rusterlium/rustler/issues/702), thanks aDifferentJT) ##### Fixed - Set `ErlNifEntry.min_erts` to a placeholder value ([#&#8203;703](https://github.com/rusterlium/rustler/issues/703)) ##### Changed - Refactor build logic to remove TOML dependency ([#&#8203;691](https://github.com/rusterlium/rustler/issues/691)) - Use `inline` on commonly used functions ([#&#8203;475](https://github.com/rusterlium/rustler/issues/475), thanks [@&#8203;joshuataylor](https://github.com/joshuataylor)) - Make `EnifAllocator` available even if the `allocator` feature is not enabled ### [`v0.36.2`](https://github.com/rusterlium/rustler/blob/HEAD/CHANGELOG.md#0362---2025-06-09) [Compare Source](https://github.com/rusterlium/rustler/compare/rustler-0.36.1...rustler-0.36.2) ##### Added - `std::hash::Hash` implementation for atoms ([#&#8203;695](https://github.com/rusterlium/rustler/issues/695)) ##### Fixed - Fix typing error in `rustler_mix` ([#&#8203;696](https://github.com/rusterlium/rustler/issues/696), thanks [@&#8203;dkuku](https://github.com/dkuku)) ### [`v0.36.1`](https://github.com/rusterlium/rustler/blob/HEAD/CHANGELOG.md#0361---2025-02-03) [Compare Source](https://github.com/rusterlium/rustler/compare/rustler-0.36.0...rustler-0.36.1) No changes in the Rust code, only `rustler_mix` adjustments and dependency updates. ##### Added - Support for Erlang-style NIF module names (`:module_name`) ([#&#8203;682](https://github.com/rusterlium/rustler/issues/682)) ##### Fixed - Retrieve the newest Rustler version without additional dependencies ([#&#8203;682](https://github.com/rusterlium/rustler/issues/682), fixes [#&#8203;680](https://github.com/rusterlium/rustler/issues/680)) - Adjust `.gitignore` handling to match the new workspace style ##### Changed - Only depend on `libloading` on non-Windows systems ([#&#8203;677](https://github.com/rusterlium/rustler/issues/677)) ### [`v0.36.0`](https://github.com/rusterlium/rustler/blob/HEAD/CHANGELOG.md#0360---2025-01-13) [Compare Source](https://github.com/rusterlium/rustler/compare/rustler-0.35.1...rustler-0.36.0) ##### Added - Create a workplace `Cargo.toml` file with `mix rustler.new` ([#&#8203;672](https://github.com/rusterlium/rustler/issues/672)) ##### Fixed - Some derive macros failed when only `decode` was requested ([#&#8203;676](https://github.com/rusterlium/rustler/issues/676)) ##### Removed - The linkage override for macOS is not needed anymore and has been removed from the template ([#&#8203;672](https://github.com/rusterlium/rustler/issues/672)) ### [`v0.35.1`](https://github.com/rusterlium/rustler/blob/HEAD/CHANGELOG.md#0351---2024-12-18) [Compare Source](https://github.com/rusterlium/rustler/compare/rustler-0.35.0...rustler-0.35.1) ##### Fixed - Fix clippy lints in `rustler_codegen` ([#&#8203;671](https://github.com/rusterlium/rustler/issues/671)) - Adjust `Rustler` macros to not produce warnings on Elixir 1.18 ([#&#8203;670](https://github.com/rusterlium/rustler/issues/670)) ### [`v0.35.0`](https://github.com/rusterlium/rustler/blob/HEAD/CHANGELOG.md#0350---2024-10-15) [Compare Source](https://github.com/rusterlium/rustler/compare/rustler-0.34.0...rustler-0.35.0) ##### Added - The resource type name can be overridden with `#[register_impl(name = "...")]` ([#&#8203;638](https://github.com/rusterlium/rustler/issues/638)) - Floats can be decoded from integers ([#&#8203;641](https://github.com/rusterlium/rustler/issues/641), fixes [#&#8203;603](https://github.com/rusterlium/rustler/issues/603)) - Resource types can implement and use dynamic calls on NIF version 2.16 ([#&#8203;635](https://github.com/rusterlium/rustler/issues/635)) - `Encoder` and `Decoder` implementations for `Box<T>` ([#&#8203;644](https://github.com/rusterlium/rustler/issues/644)) - `Reference` type and `env.make_ref()` function ([#&#8203;657](https://github.com/rusterlium/rustler/issues/657)) ##### Fixed - The optional `register` attribute on `#[register_impl]` works as advertised now ([#&#8203;638](https://github.com/rusterlium/rustler/issues/638)) - API functions for Windows are correctly assigned for NIF version 2.15 and above ([#&#8203;635](https://github.com/rusterlium/rustler/issues/635)) - Panics in encoding the result of NIF function are caught ([#&#8203;656](https://github.com/rusterlium/rustler/issues/656)) - Reverted change to "recompile if the NIF library is changed/deleted" ([#&#8203;654](https://github.com/rusterlium/rustler/issues/654), fixes [#&#8203;651](https://github.com/rusterlium/rustler/issues/651)) ##### Changed - The special ok/error handling for atoms in serde is now restricted to variant names ([#&#8203;639](https://github.com/rusterlium/rustler/issues/639)) - `rustler_sys` as a separate library is merged into `rustler::sys` and will not be released independently of `rustler` anymore ([#&#8203;653](https://github.com/rusterlium/rustler/issues/653)) ### [`v0.34.0`](https://github.com/rusterlium/rustler/blob/HEAD/CHANGELOG.md#0340---2024-07-09) [Compare Source](https://github.com/rusterlium/rustler/compare/rustler-0.33.0...rustler-0.34.0) ##### Added - Resource type registration has been refactored to eventually remove the `rustler::resource!` macro ([#&#8203;617](https://github.com/rusterlium/rustler/issues/617), necessary due to a pending deprecation of a Rust feature, [#&#8203;606](https://github.com/rusterlium/rustler/issues/606)) - Resources can (and should) now explicitly implement the new `Resource` trait and provide a custom `destructor` function that is run before `drop` and receives an `Env` parameter ([#&#8203;617](https://github.com/rusterlium/rustler/issues/617)) - Process monitoring via resources can now be used on resource types that implement the `Resource::down` callback ([#&#8203;617](https://github.com/rusterlium/rustler/issues/617)) - Resource implementation and registration helper attribute ([#&#8203;627](https://github.com/rusterlium/rustler/issues/627)) ##### Fixed - Unwinding in the `on_load` callback is now caught and leads to a panic ([#&#8203;617](https://github.com/rusterlium/rustler/issues/617)) ##### Changed - NIF implementations are now discovered automatically and the respective argument of `rustler::init!` is ignored ([#&#8203;613](https://github.com/rusterlium/rustler/issues/613)) - The `derive` feature flag is now ignored and its functionality unconditionally enabled ([#&#8203;621](https://github.com/rusterlium/rustler/issues/621)) </details> <details> <summary>serde-rs/serde (serde)</summary> ### [`v1.0.226`](https://github.com/serde-rs/serde/releases/tag/v1.0.226) [Compare Source](https://github.com/serde-rs/serde/compare/v1.0.225...v1.0.226) - Deduplicate variant matching logic inside generated Deserialize impl for adjacently tagged enums ([#&#8203;2935](https://github.com/serde-rs/serde/issues/2935), thanks [@&#8203;Mingun](https://github.com/Mingun)) ### [`v1.0.225`](https://github.com/serde-rs/serde/releases/tag/v1.0.225) [Compare Source](https://github.com/serde-rs/serde/compare/v1.0.224...v1.0.225) - Avoid triggering a deprecation warning in derived Serialize and Deserialize impls for a data structure that contains its own deprecations ([#&#8203;2879](https://github.com/serde-rs/serde/issues/2879), thanks [@&#8203;rcrisanti](https://github.com/rcrisanti)) ### [`v1.0.224`](https://github.com/serde-rs/serde/releases/tag/v1.0.224) [Compare Source](https://github.com/serde-rs/serde/compare/v1.0.223...v1.0.224) - Remove private types being suggested in rustc diagnostics ([#&#8203;2979](https://github.com/serde-rs/serde/issues/2979)) ### [`v1.0.223`](https://github.com/serde-rs/serde/releases/tag/v1.0.223) [Compare Source](https://github.com/serde-rs/serde/compare/v1.0.222...v1.0.223) - Fix serde\_core documentation links ([#&#8203;2978](https://github.com/serde-rs/serde/issues/2978)) ### [`v1.0.222`](https://github.com/serde-rs/serde/releases/tag/v1.0.222) [Compare Source](https://github.com/serde-rs/serde/compare/v1.0.221...v1.0.222) - Make `serialize_with` attribute produce code that works if respanned to 2024 edition ([#&#8203;2950](https://github.com/serde-rs/serde/issues/2950), thanks [@&#8203;aytey](https://github.com/aytey)) ### [`v1.0.221`](https://github.com/serde-rs/serde/releases/tag/v1.0.221) [Compare Source](https://github.com/serde-rs/serde/compare/v1.0.220...v1.0.221) - Documentation improvements ([#&#8203;2973](https://github.com/serde-rs/serde/issues/2973)) - Deprecate `serde_if_integer128!` macro ([#&#8203;2975](https://github.com/serde-rs/serde/issues/2975)) ### [`v1.0.220`](https://github.com/serde-rs/serde/releases/tag/v1.0.220) [Compare Source](https://github.com/serde-rs/serde/compare/v1.0.219...v1.0.220) - Add a way for data formats to depend on serde traits without waiting for serde\_derive compilation: <https://docs.rs/serde_core> ([#&#8203;2608](https://github.com/serde-rs/serde/issues/2608), thanks [@&#8203;osiewicz](https://github.com/osiewicz)) ### [`v1.0.219`](https://github.com/serde-rs/serde/releases/tag/v1.0.219) [Compare Source](https://github.com/serde-rs/serde/compare/v1.0.218...v1.0.219) - Prevent `absolute_paths` Clippy restriction being triggered inside macro-generated code ([#&#8203;2906](https://github.com/serde-rs/serde/issues/2906), thanks [@&#8203;davidzeng0](https://github.com/davidzeng0)) ### [`v1.0.218`](https://github.com/serde-rs/serde/releases/tag/v1.0.218) [Compare Source](https://github.com/serde-rs/serde/compare/v1.0.217...v1.0.218) - Documentation improvements ### [`v1.0.217`](https://github.com/serde-rs/serde/releases/tag/v1.0.217) [Compare Source](https://github.com/serde-rs/serde/compare/v1.0.216...v1.0.217) - Support serializing externally tagged unit variant inside flattened field ([#&#8203;2786](https://github.com/serde-rs/serde/issues/2786), thanks [@&#8203;Mingun](https://github.com/Mingun)) ### [`v1.0.216`](https://github.com/serde-rs/serde/releases/tag/v1.0.216) [Compare Source](https://github.com/serde-rs/serde/compare/v1.0.215...v1.0.216) - Mark all generated impls with #\[automatically\_derived] to exclude from code coverage ([#&#8203;2866](https://github.com/serde-rs/serde/issues/2866), [#&#8203;2868](https://github.com/serde-rs/serde/issues/2868), thanks [@&#8203;tdittr](https://github.com/tdittr)) ### [`v1.0.215`](https://github.com/serde-rs/serde/releases/tag/v1.0.215) [Compare Source](https://github.com/serde-rs/serde/compare/v1.0.214...v1.0.215) - Produce warning when multiple fields or variants have the same deserialization name ([#&#8203;2855](https://github.com/serde-rs/serde/issues/2855), [#&#8203;2856](https://github.com/serde-rs/serde/issues/2856), [#&#8203;2857](https://github.com/serde-rs/serde/issues/2857)) ### [`v1.0.214`](https://github.com/serde-rs/serde/releases/tag/v1.0.214) [Compare Source](https://github.com/serde-rs/serde/compare/v1.0.213...v1.0.214) - Implement IntoDeserializer for all Deserializers in serde::de::value module ([#&#8203;2568](https://github.com/serde-rs/serde/issues/2568), thanks [@&#8203;Mingun](https://github.com/Mingun)) ### [`v1.0.213`](https://github.com/serde-rs/serde/releases/tag/v1.0.213) [Compare Source](https://github.com/serde-rs/serde/compare/v1.0.212...v1.0.213) - Fix support for macro-generated `with` attributes inside a newtype struct ([#&#8203;2847](https://github.com/serde-rs/serde/issues/2847)) ### [`v1.0.212`](https://github.com/serde-rs/serde/releases/tag/v1.0.212) [Compare Source](https://github.com/serde-rs/serde/compare/v1.0.211...v1.0.212) - Fix hygiene of macro-generated local variable accesses in serde(with) wrappers ([#&#8203;2845](https://github.com/serde-rs/serde/issues/2845)) ### [`v1.0.211`](https://github.com/serde-rs/serde/releases/tag/v1.0.211) [Compare Source](https://github.com/serde-rs/serde/compare/v1.0.210...v1.0.211) - Improve error reporting about mismatched signature in `with` and `default` attributes ([#&#8203;2558](https://github.com/serde-rs/serde/issues/2558), thanks [@&#8203;Mingun](https://github.com/Mingun)) - Show variant aliases in error message when variant deserialization fails ([#&#8203;2566](https://github.com/serde-rs/serde/issues/2566), thanks [@&#8203;Mingun](https://github.com/Mingun)) - Improve binary size of untagged enum and internally tagged enum deserialization by about 12% ([#&#8203;2821](https://github.com/serde-rs/serde/issues/2821)) ### [`v1.0.210`](https://github.com/serde-rs/serde/releases/tag/v1.0.210) [Compare Source](https://github.com/serde-rs/serde/compare/v1.0.209...v1.0.210) - Support serializing and deserializing `IpAddr` and `SocketAddr` in no-std mode on Rust 1.77+ ([#&#8203;2816](https://github.com/serde-rs/serde/issues/2816), thanks [@&#8203;MathiasKoch](https://github.com/MathiasKoch)) - Make `serde::ser::StdError` and `serde::de::StdError` equivalent to `core::error::Error` on Rust 1.81+ ([#&#8203;2818](https://github.com/serde-rs/serde/issues/2818)) ### [`v1.0.209`](https://github.com/serde-rs/serde/releases/tag/v1.0.209) [Compare Source](https://github.com/serde-rs/serde/compare/v1.0.208...v1.0.209) - Fix deserialization of empty structs and empty tuples inside of untagged enums ([#&#8203;2805](https://github.com/serde-rs/serde/issues/2805), thanks [@&#8203;Mingun](https://github.com/Mingun)) ### [`v1.0.208`](https://github.com/serde-rs/serde/releases/tag/v1.0.208) [Compare Source](https://github.com/serde-rs/serde/compare/v1.0.207...v1.0.208) - Support serializing and deserializing unit structs in a `flatten` field ([#&#8203;2802](https://github.com/serde-rs/serde/issues/2802), thanks [@&#8203;jonhoo](https://github.com/jonhoo)) ### [`v1.0.207`](https://github.com/serde-rs/serde/releases/tag/v1.0.207) [Compare Source](https://github.com/serde-rs/serde/compare/v1.0.206...v1.0.207) - Improve interactions between `flatten` attribute and `skip_serializing`/`skip_deserializing` ([#&#8203;2795](https://github.com/serde-rs/serde/issues/2795), thanks [@&#8203;Mingun](https://github.com/Mingun)) ### [`v1.0.206`](https://github.com/serde-rs/serde/releases/tag/v1.0.206) [Compare Source](https://github.com/serde-rs/serde/compare/v1.0.205...v1.0.206) - Improve support for `flatten` attribute inside of enums ([#&#8203;2567](https://github.com/serde-rs/serde/issues/2567), thanks [@&#8203;Mingun](https://github.com/Mingun)) ### [`v1.0.205`](https://github.com/serde-rs/serde/releases/tag/v1.0.205) [Compare Source](https://github.com/serde-rs/serde/compare/v1.0.204...v1.0.205) - Use serialize\_entry instead of serialize\_key + serialize\_value when serialize flattened newtype enum variants ([#&#8203;2785](https://github.com/serde-rs/serde/issues/2785), thanks [@&#8203;Mingun](https://github.com/Mingun)) - Avoid triggering a collection\_is\_never\_read lint in the deserialization of enums containing flattened fields ([#&#8203;2791](https://github.com/serde-rs/serde/issues/2791)) ### [`v1.0.204`](https://github.com/serde-rs/serde/releases/tag/v1.0.204) [Compare Source](https://github.com/serde-rs/serde/compare/v1.0.203...v1.0.204) - Apply #\[diagnostic::on\_unimplemented] attribute on Rust 1.78+ to suggest adding serde derive or enabling a "serde" feature flag in dependencies ([#&#8203;2767](https://github.com/serde-rs/serde/issues/2767), thanks [@&#8203;weiznich](https://github.com/weiznich)) </details> <details> <summary>serde-rs/json (serde_json)</summary> ### [`v1.0.145`](https://github.com/serde-rs/json/releases/tag/v1.0.145) [Compare Source](https://github.com/serde-rs/json/compare/v1.0.144...v1.0.145) - Raise serde version requirement to >=1.0.220 ### [`v1.0.144`](https://github.com/serde-rs/json/releases/tag/v1.0.144) [Compare Source](https://github.com/serde-rs/json/compare/v1.0.143...v1.0.144) - Switch serde dependency to serde\_core ([#&#8203;1285](https://github.com/serde-rs/json/issues/1285)) ### [`v1.0.143`](https://github.com/serde-rs/json/releases/tag/v1.0.143) [Compare Source](https://github.com/serde-rs/json/compare/v1.0.142...v1.0.143) - Implement Clone and Debug for serde\_json::Map iterators ([#&#8203;1264](https://github.com/serde-rs/json/issues/1264), thanks [@&#8203;xlambein](https://github.com/xlambein)) - Implement Default for CompactFormatter ([#&#8203;1268](https://github.com/serde-rs/json/issues/1268), thanks [@&#8203;SOF3](https://github.com/SOF3)) - Implement FromStr for serde\_json::Map ([#&#8203;1271](https://github.com/serde-rs/json/issues/1271), thanks [@&#8203;mickvangelderen](https://github.com/mickvangelderen)) ### [`v1.0.142`](https://github.com/serde-rs/json/releases/tag/v1.0.142) [Compare Source](https://github.com/serde-rs/json/compare/v1.0.141...v1.0.142) - impl Default for \&Value ([#&#8203;1265](https://github.com/serde-rs/json/issues/1265), thanks [@&#8203;aatifsyed](https://github.com/aatifsyed)) ### [`v1.0.141`](https://github.com/serde-rs/json/releases/tag/v1.0.141) [Compare Source](https://github.com/serde-rs/json/compare/v1.0.140...v1.0.141) - Optimize string escaping during serialization ([#&#8203;1273](https://github.com/serde-rs/json/issues/1273), thanks [@&#8203;conradludgate](https://github.com/conradludgate)) ### [`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)) ### [`v1.0.132`](https://github.com/serde-rs/json/releases/tag/v1.0.132) [Compare Source](https://github.com/serde-rs/json/compare/v1.0.131...v1.0.132) - Improve binary size and compile time for JSON array and JSON object deserialization by about 50% ([#&#8203;1205](https://github.com/serde-rs/json/issues/1205)) - Improve performance of JSON array and JSON object deserialization by about 8% ([#&#8203;1206](https://github.com/serde-rs/json/issues/1206)) ### [`v1.0.131`](https://github.com/serde-rs/json/releases/tag/v1.0.131) [Compare Source](https://github.com/serde-rs/json/compare/v1.0.130...v1.0.131) - Implement Deserializer and IntoDeserializer for `Map<String, Value>` and `&Map<String, Value>` ([#&#8203;1135](https://github.com/serde-rs/json/issues/1135), thanks [@&#8203;swlynch99](https://github.com/swlynch99)) ### [`v1.0.130`](https://github.com/serde-rs/json/releases/tag/v1.0.130) [Compare Source](https://github.com/serde-rs/json/compare/v1.0.129...v1.0.130) - Support converting and deserializing `Number` from i128 and u128 ([#&#8203;1141](https://github.com/serde-rs/json/issues/1141), thanks [@&#8203;druide](https://github.com/druide)) ### [`v1.0.129`](https://github.com/serde-rs/json/releases/tag/v1.0.129) [Compare Source](https://github.com/serde-rs/json/compare/v1.0.128...v1.0.129) - Add [`serde_json::Map::sort_keys`](https://docs.rs/serde_json/1/serde_json/struct.Map.html#method.sort_keys) and [`serde_json::Value::sort_all_objects`](https://docs.rs/serde_json/1/serde_json/enum.Value.html#method.sort_all_objects) ([#&#8203;1199](https://github.com/serde-rs/json/issues/1199)) ### [`v1.0.128`](https://github.com/serde-rs/json/releases/tag/v1.0.128) [Compare Source](https://github.com/serde-rs/json/compare/v1.0.127...v1.0.128) - Support serializing maps containing 128-bit integer keys to serde\_json::Value ([#&#8203;1188](https://github.com/serde-rs/json/issues/1188), thanks [@&#8203;Mrreadiness](https://github.com/Mrreadiness)) ### [`v1.0.127`](https://github.com/serde-rs/json/releases/tag/v1.0.127) [Compare Source](https://github.com/serde-rs/json/compare/v1.0.126...v1.0.127) - Add more removal methods to OccupiedEntry ([#&#8203;1179](https://github.com/serde-rs/json/issues/1179), thanks [@&#8203;GREsau](https://github.com/GREsau)) ### [`v1.0.126`](https://github.com/serde-rs/json/releases/tag/v1.0.126) [Compare Source](https://github.com/serde-rs/json/compare/v1.0.125...v1.0.126) - Improve string parsing on targets that use 32-bit pointers but also have fast 64-bit integer arithmetic, such as aarch64-unknown-linux-gnu\_ilp32 and x86\_64-unknown-linux-gnux32 ([#&#8203;1182](https://github.com/serde-rs/json/issues/1182), thanks [@&#8203;CryZe](https://github.com/CryZe)) ### [`v1.0.125`](https://github.com/serde-rs/json/releases/tag/v1.0.125) [Compare Source](https://github.com/serde-rs/json/compare/v1.0.124...v1.0.125) - Speed up \uXXXX parsing and improve handling of unpaired surrogates when deserializing to bytes ([#&#8203;1172](https://github.com/serde-rs/json/issues/1172), [#&#8203;1175](https://github.com/serde-rs/json/issues/1175), thanks [@&#8203;purplesyringa](https://github.com/purplesyringa)) ### [`v1.0.124`](https://github.com/serde-rs/json/releases/tag/v1.0.124) [Compare Source](https://github.com/serde-rs/json/compare/v1.0.123...v1.0.124) - Fix a bug in processing string escapes in big-endian architectures ([#&#8203;1173](https://github.com/serde-rs/json/issues/1173), thanks [@&#8203;purplesyringa](https://github.com/purplesyringa)) ### [`v1.0.123`](https://github.com/serde-rs/json/releases/tag/v1.0.123) [Compare Source](https://github.com/serde-rs/json/compare/v1.0.122...v1.0.123) - Optimize string parsing by applying SIMD-within-a-register: 30.3% improvement on [twitter.json](https://github.com/miloyip/nativejson-benchmark/blob/v1.0.0/data/twitter.json) from 613 MB/s to 799 MB/s ([#&#8203;1161](https://github.com/serde-rs/json/issues/1161), thanks [@&#8203;purplesyringa](https://github.com/purplesyringa)) ### [`v1.0.122`](https://github.com/serde-rs/json/releases/tag/v1.0.122) [Compare Source](https://github.com/serde-rs/json/compare/v1.0.121...v1.0.122) - Support using `json!` in no-std crates ([#&#8203;1166](https://github.com/serde-rs/json/issues/1166)) ### [`v1.0.121`](https://github.com/serde-rs/json/releases/tag/v1.0.121) [Compare Source](https://github.com/serde-rs/json/compare/v1.0.120...v1.0.121) - Optimize position search in error path ([#&#8203;1160](https://github.com/serde-rs/json/issues/1160), thanks [@&#8203;purplesyringa](https://github.com/purplesyringa)) ### [`v1.0.120`](https://github.com/serde-rs/json/releases/tag/v1.0.120) [Compare Source](https://github.com/serde-rs/json/compare/v1.0.119...v1.0.120) - Correctly specify required version of `indexmap` dependency ([#&#8203;1152](https://github.com/serde-rs/json/issues/1152), thanks [@&#8203;cforycki](https://github.com/cforycki)) ### [`v1.0.119`](https://github.com/serde-rs/json/releases/tag/v1.0.119) [Compare Source](https://github.com/serde-rs/json/compare/v1.0.118...v1.0.119) - Add `serde_json::Map::shift_insert` ([#&#8203;1149](https://github.com/serde-rs/json/issues/1149), thanks [@&#8203;joshka](https://github.com/joshka)) </details> <details> <summary>quickwit-oss/tantivy (tantivy)</summary> ### [`v0.25.0`](https://github.com/quickwit-oss/tantivy/releases/tag/0.25.0): Tantivy v0.25 [Compare Source](https://github.com/quickwit-oss/tantivy/compare/0.24.2...0.25.0) #### What's Changed - update edition to 2024 by [@&#8203;PSeitz](https://github.com/PSeitz) in [#&#8203;2620](https://github.com/quickwit-oss/tantivy/pull/2620) - make zstd optional in sstable by [@&#8203;Parth](https://github.com/Parth) in [#&#8203;2633](https://github.com/quickwit-oss/tantivy/pull/2633) - release tantivy: bump versions by [@&#8203;PSeitz](https://github.com/PSeitz) in [#&#8203;2625](https://github.com/quickwit-oss/tantivy/pull/2625) - Fix a typo for the comments of search\_with\_executor() by [@&#8203;xingtanzjr](https://github.com/xingtanzjr) in [#&#8203;2653](https://github.com/quickwit-oss/tantivy/pull/2653) - Add string fast field support to `TopDocs`. by [@&#8203;stuhood](https://github.com/stuhood) in [#&#8203;2642](https://github.com/quickwit-oss/tantivy/pull/2642) - update CHANGELOG by [@&#8203;PSeitz](https://github.com/PSeitz) in [#&#8203;2621](https://github.com/quickwit-oss/tantivy/pull/2621) - fix import in test by [@&#8203;PSeitz-dd](https://github.com/PSeitz-dd) in [#&#8203;2657](https://github.com/quickwit-oss/tantivy/pull/2657) - add docs/example and Vec<u32> values to sstable by [@&#8203;PSeitz](https://github.com/PSeitz) in [#&#8203;2660](https://github.com/quickwit-oss/tantivy/pull/2660) - fix union performance regression in tantivy 0.24 by [@&#8203;PSeitz-dd](https://github.com/PSeitz-dd) in [#&#8203;2663](https://github.com/quickwit-oss/tantivy/pull/2663) - clippy by [@&#8203;PSeitz](https://github.com/PSeitz) in [#&#8203;2661](https://github.com/quickwit-oss/tantivy/pull/2661) - chore: Update ParadeDB logo by [@&#8203;philippemnoel](https://github.com/philippemnoel) in [#&#8203;2669](https://github.com/quickwit-oss/tantivy/pull/2669) - docs: fix a typo in basic example by [@&#8203;DaleSeo](https://github.com/DaleSeo) in [#&#8203;2668](https://github.com/quickwit-oss/tantivy/pull/2668) - update CHANGELOG by [@&#8203;Parth](https://github.com/Parth) in [#&#8203;2670](https://github.com/quickwit-oss/tantivy/pull/2670) - Fixed typo in documentation by [@&#8203;MassimilianoBaglioni](https://github.com/MassimilianoBaglioni) in [#&#8203;2629](https://github.com/quickwit-oss/tantivy/pull/2629) - [#&#8203;2635](https://github.com/quickwit-oss/tantivy/issues/2635) Update fs4 to latest (0.13.1) by [@&#8203;1Cor125](https://github.com/1Cor125) in [#&#8203;2654](https://github.com/quickwit-oss/tantivy/pull/2654) - Fix TopNComputer for reverse order by [@&#8203;PSeitz](https://github.com/PSeitz) in [#&#8203;2672](https://github.com/quickwit-oss/tantivy/pull/2672) - ignore failure to parse query when other default field suceeded by [@&#8203;trinity-1686a](https://github.com/trinity-1686a) in [#&#8203;2676](https://github.com/quickwit-oss/tantivy/pull/2676) - fix field\_names in top\_hits aggregation by [@&#8203;PSeitz-dd](https://github.com/PSeitz-dd) in [#&#8203;2675](https://github.com/quickwit-oss/tantivy/pull/2675) - Fix `TopDocs::order_by_string_fast_field` for duplicates by [@&#8203;stuhood](https://github.com/stuhood) in [#&#8203;2673](https://github.com/quickwit-oss/tantivy/pull/2673) - feat: Support spaces between field name and value by [@&#8203;Darkheir](https://github.com/Darkheir) in [#&#8203;2678](https://github.com/quickwit-oss/tantivy/pull/2678) - test stable ordering with pagination by [@&#8203;PSeitz-dd](https://github.com/PSeitz-dd) in [#&#8203;2683](https://github.com/quickwit-oss/tantivy/pull/2683) - per field size details by [@&#8203;fulmicoton](https://github.com/fulmicoton) in [#&#8203;2679](https://github.com/quickwit-oss/tantivy/pull/2679) - convert benches to binggan by [@&#8203;PSeitz-dd](https://github.com/PSeitz-dd) in [#&#8203;2684](https://github.com/quickwit-oss/tantivy/pull/2684) - prepare release: update Changelog by [@&#8203;PSeitz-dd](https://github.com/PSeitz-dd) in [#&#8203;2685](https://github.com/quickwit-oss/tantivy/pull/2685) #### New Contributors - [@&#8203;Parth](https://github.com/Parth) made their first contribution in [#&#8203;2633](https://github.com/quickwit-oss/tantivy/pull/2633) - [@&#8203;xingtanzjr](https://github.com/xingtanzjr) made their first contribution in [#&#8203;2653](https://github.com/quickwit-oss/tantivy/pull/2653) - [@&#8203;stuhood](https://github.com/stuhood) made their first contribution in [#&#8203;2642](https://github.com/quickwit-oss/tantivy/pull/2642) - [@&#8203;PSeitz-dd](https://github.com/PSeitz-dd) made their first contribution in [#&#8203;2657](https://github.com/quickwit-oss/tantivy/pull/2657) - [@&#8203;DaleSeo](https://github.com/DaleSeo) made their first contribution in [#&#8203;2668](https://github.com/quickwit-oss/tantivy/pull/2668) - [@&#8203;MassimilianoBaglioni](https://github.com/MassimilianoBaglioni) made their first contribution in [#&#8203;2629](https://github.com/quickwit-oss/tantivy/pull/2629) - [@&#8203;1Cor125](https://github.com/1Cor125) made their first contribution in [#&#8203;2654](https://github.com/quickwit-oss/tantivy/pull/2654) - [@&#8203;Darkheir](https://github.com/Darkheir) made their first contribution in [#&#8203;2678](https://github.com/quickwit-oss/tantivy/pull/2678) **Full Changelog**: <https://github.com/quickwit-oss/tantivy/compare/0.24...0.25.0> ### [`v0.24.2`](https://github.com/quickwit-oss/tantivy/blob/HEAD/CHANGELOG.md#Tantivy-0242) [Compare Source](https://github.com/quickwit-oss/tantivy/compare/0.24.1...0.24.2) \================================ - Fix TopNComputer for reverse order. [#&#8203;2672](https://github.com/quickwit-oss/tantivy/pull/2672)([@&#8203;stuhood](https://github.com/stuhood) [@&#8203;PSeitz](https://github.com/PSeitz)) Affected queries are [order\_by\_fast\_field](https://docs.rs/tantivy/latest/tantivy/collector/struct.TopDocs.html#method.order_by_fast_field) and [order\_by\_u64\_field](https://docs.rs/tantivy/latest/tantivy/collector/struct.TopDocs.html#method.order_by_u64_field) for `Order::Asc` ### [`v0.24.1`](https://github.com/quickwit-oss/tantivy/blob/HEAD/CHANGELOG.md#Tantivy-0241) \================================ - Fix: bump required rust version to 1.81 ### [`v0.22.1`](https://github.com/quickwit-oss/tantivy/blob/HEAD/CHANGELOG.md#Tantivy-0221) [Compare Source](https://github.com/quickwit-oss/tantivy/compare/0.22.0...0.22.1) \================================ - Fix TopNComputer for reverse order. [#&#8203;2672](https://github.com/quickwit-oss/tantivy/pull/2672)([@&#8203;stuhood](https://github.com/stuhood) [@&#8203;PSeitz](https://github.com/PSeitz)) Affected queries are [order\_by\_fast\_field](https://docs.rs/tantivy/latest/tantivy/collector/struct.TopDocs.html#method.order_by_fast_field) and [order\_by\_u64\_field](https://docs.rs/tantivy/latest/tantivy/collector/struct.TopDocs.html#method.order_by_u64_field) for `Order::Asc` </details> <details> <summary>bytecodealliance/wasmtime (wasi-common)</summary> ### [`v22.0.1`](https://github.com/bytecodealliance/wasmtime/releases/tag/v22.0.1) [Compare Source](https://github.com/bytecodealliance/wasmtime/compare/v22.0.0...v22.0.1) ##### 22.0.1 Released 2024-10-09. ##### Fixed - Fix a runtime crash when combining tail-calls with host imports that capture a stack trace or trap. [GHSA-q8hx-mm92-4wvg](https://github.com/bytecodealliance/wasmtime/security/advisories/GHSA-q8hx-mm92-4wvg) - Fix a race condition could lead to WebAssembly control-flow integrity and type safety violations. [GHSA-7qmx-3fpx-r45m](https://github.com/bytecodealliance/wasmtime/security/advisories/GHSA-7qmx-3fpx-r45m) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MjEuOCIsInVwZGF0ZWRJblZlciI6IjQxLjEyMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=-->
pv force-pushed renovate/cargo-minor-patch from e32c993840 to 0629fa4488 2024-07-07 10:04:20 +02:00 Compare
pv changed title from Update Rust crate serde_json to v1.0.120 to Update cargo non-major dependencies 2024-07-07 10:04:24 +02:00
pv force-pushed renovate/cargo-minor-patch from 0629fa4488 to 8e6e6c7b2b 2024-07-09 10:04:26 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 8e6e6c7b2b to 0ead743773 2024-07-10 10:04:24 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 0ead743773 to fe0195c4c1 2024-07-29 10:04:02 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from fe0195c4c1 to 447f785907 2024-07-30 10:04:57 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 447f785907 to 814f0f8ded 2024-08-02 10:04:34 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 814f0f8ded to 0cc33a937a 2024-08-03 10:04:13 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 0cc33a937a to fb3bedddee 2024-08-08 10:13:42 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from fb3bedddee to 4237a73dba 2024-08-09 10:15:27 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 4237a73dba to 151c783762 2024-08-11 10:14:26 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 151c783762 to 7509b75240 2024-08-12 10:16:20 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 7509b75240 to 7f783e156f 2024-08-13 10:14:29 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 7f783e156f to b9201d9cb3 2024-08-14 10:05:42 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from b9201d9cb3 to f0e2b6329e 2024-08-15 10:04:14 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from f0e2b6329e to b5b7f97534 2024-08-16 10:21:20 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from b5b7f97534 to 2d31ec7587 2024-08-24 10:16:12 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 2d31ec7587 to 519ca4357d 2024-08-25 10:15:30 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 519ca4357d to a16aa88eda 2024-08-26 10:04:49 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from a16aa88eda to 8b81c27f2a 2024-08-27 10:17:33 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 8b81c27f2a to 214383f7ad 2024-08-28 10:18:49 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 214383f7ad to 72a8d071b0 2024-08-29 10:17:31 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 72a8d071b0 to 1e3865bea9 2024-08-30 10:04:47 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 1e3865bea9 to 282719998d 2024-08-31 10:18:30 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 282719998d to 0b52c3924f 2024-09-01 10:16:51 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 0b52c3924f to 5823cd6634 2024-09-02 10:18:20 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 5823cd6634 to cc2555e8c2 2024-09-03 10:17:11 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from cc2555e8c2 to 4ff9b54e5a 2024-09-04 10:18:39 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 4ff9b54e5a to fce2f93be7 2024-09-05 10:10:42 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from fce2f93be7 to 868c9a8aa7 2024-09-06 10:43:29 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 868c9a8aa7 to 9aa4a1bb70 2024-09-07 10:13:33 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 9aa4a1bb70 to 34188ed448 2024-09-08 10:42:46 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 34188ed448 to b2f578a240 2024-09-09 10:36:00 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from b2f578a240 to e3a2c27904 2024-09-10 10:16:19 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from e3a2c27904 to d5721192df 2024-09-11 10:12:47 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from d5721192df to 6ffa8e743c 2024-09-12 10:15:37 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 6ffa8e743c to d12e436e36 2024-10-10 10:22:33 +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: native/readability/Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path native/readability/Cargo.toml --package wasi-common@22.0.0 --precise 22.0.1
    Updating crates.io index
error: failed to select a version for `wiggle`.
    ... required by package `wasmtime-wasi v22.0.0`
    ... which satisfies dependency `wasmtime-wasi = "^22.0.0"` (locked to 22.0.0) of package `readability v0.1.0 (/tmp/renovate/repos/gitea/pv/sloan/native/readability)`
versions that meet the requirements `=22.0.0` are: 22.0.0

all possible versions conflict with previously selected packages.

  previously selected package `wiggle v22.0.1`
    ... which satisfies dependency `wiggle = "=22.0.1"` of package `wasi-common v22.0.1`
    ... which satisfies dependency `wasi-common = "^22.0.0"` of package `readability v0.1.0 (/tmp/renovate/repos/gitea/pv/sloan/native/readability)`

failed to select a version for `wiggle` which could resolve this conflict

### ⚠️ 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: native/readability/Cargo.lock ``` Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path native/readability/Cargo.toml --package wasi-common@22.0.0 --precise 22.0.1 Updating crates.io index error: failed to select a version for `wiggle`. ... required by package `wasmtime-wasi v22.0.0` ... which satisfies dependency `wasmtime-wasi = "^22.0.0"` (locked to 22.0.0) of package `readability v0.1.0 (/tmp/renovate/repos/gitea/pv/sloan/native/readability)` versions that meet the requirements `=22.0.0` are: 22.0.0 all possible versions conflict with previously selected packages. previously selected package `wiggle v22.0.1` ... which satisfies dependency `wiggle = "=22.0.1"` of package `wasi-common v22.0.1` ... which satisfies dependency `wasi-common = "^22.0.0"` of package `readability v0.1.0 (/tmp/renovate/repos/gitea/pv/sloan/native/readability)` failed to select a version for `wiggle` which could resolve this conflict ```
pv force-pushed renovate/cargo-minor-patch from d12e436e36 to 0fb2ac54d3 2024-10-11 10:22:34 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 0fb2ac54d3 to b905dfa1c3 2024-10-12 10:21:41 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from b905dfa1c3 to 9308428fa0 2024-10-13 10:22:20 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 9308428fa0 to 78216e0166 2024-10-14 10:22:46 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 78216e0166 to e027fe5dfb 2024-10-15 10:22:25 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from e027fe5dfb to 9011fac91c 2024-10-16 10:23:34 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 9011fac91c to 9925057c96 2024-10-17 10:22:13 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 9925057c96 to 216c22c453 2024-10-18 10:23:06 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 216c22c453 to 74757c24cb 2024-10-19 10:22:21 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 74757c24cb to 96659272d0 2024-10-20 10:22:54 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 96659272d0 to ccd45e06ba 2024-10-22 10:54:37 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from ccd45e06ba to 589b44ae9f 2024-10-23 10:23:19 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 589b44ae9f to afe3f16501 2024-10-24 10:22:10 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from afe3f16501 to 64f8ffc11c 2024-10-25 10:22:18 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 64f8ffc11c to b07e9fffff 2024-10-26 11:01:05 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from b07e9fffff to f4919ef310 2024-10-27 09:23:01 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from f4919ef310 to 03307490ce 2024-10-28 09:37:36 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 03307490ce to e2d73cb1f2 2024-10-29 09:22:55 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from e2d73cb1f2 to a3460f5d14 2024-10-30 09:23:03 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from a3460f5d14 to 4479d5c8f0 2024-10-31 09:23:34 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 4479d5c8f0 to 2a34f7b40c 2024-11-01 09:23:24 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 2a34f7b40c to 8402e77c3a 2024-11-02 09:23:08 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 8402e77c3a to 9a985a06f8 2024-11-03 09:22:41 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 9a985a06f8 to 70d1f5828e 2024-11-04 09:23:40 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 70d1f5828e to edbeec765f 2024-11-05 09:20:52 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from edbeec765f to 9d5b4be4d7 2024-11-06 09:20:32 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 9d5b4be4d7 to 6bce1f1ae2 2024-11-07 09:14:46 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 6bce1f1ae2 to 4178aca9a9 2024-11-08 09:20:35 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 4178aca9a9 to d40fc040cc 2024-11-09 09:20:29 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from d40fc040cc to 31270e48e7 2024-11-10 09:21:21 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 31270e48e7 to 78728f793e 2024-11-11 09:21:05 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 78728f793e to aaefb2ab40 2024-11-12 09:21:10 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from aaefb2ab40 to 72f4a1e4ce 2024-11-13 09:20:55 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 72f4a1e4ce to bf7c8e97e2 2024-11-14 09:21:02 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from bf7c8e97e2 to 9c9a4381f9 2024-11-15 09:20:53 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 9c9a4381f9 to 24e04bc3bc 2024-11-16 09:22:07 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 24e04bc3bc to 947b98d4c9 2024-11-17 09:21:28 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 947b98d4c9 to 589d2a83e1 2024-11-18 09:21:25 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 589d2a83e1 to 7b454334bc 2024-11-19 09:22:05 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 7b454334bc to 0b0d960fd3 2024-11-20 09:22:02 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 0b0d960fd3 to d106b80055 2024-11-21 09:22:56 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from d106b80055 to ed48fa94c9 2024-11-22 09:22:29 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from ed48fa94c9 to 6f24f9f7e2 2024-11-23 09:06:26 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 6f24f9f7e2 to b8730c36d2 2024-11-24 09:05:45 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from b8730c36d2 to b6f9141373 2024-11-25 09:07:18 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from b6f9141373 to dcbc6c7e16 2024-11-26 09:05:42 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from dcbc6c7e16 to f769f75061 2024-11-27 09:05:20 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from f769f75061 to 00a15f4f72 2024-11-28 09:05:21 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 00a15f4f72 to 14dd93931e 2024-11-29 09:16:14 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 14dd93931e to 8fbe760e9d 2024-11-30 09:07:40 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 8fbe760e9d to e48397d5d2 2024-12-01 09:05:28 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from e48397d5d2 to f55e6f4985 2024-12-02 09:04:54 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from f55e6f4985 to 0f996e29f4 2024-12-03 09:05:00 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 0f996e29f4 to fff640e8de 2024-12-04 09:05:14 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from fff640e8de to f59f3fb4f0 2024-12-05 09:05:18 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from f59f3fb4f0 to 5ebbb41177 2024-12-06 09:05:29 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 5ebbb41177 to 537d7c03fb 2024-12-07 09:05:00 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 537d7c03fb to 913ae1c56d 2024-12-08 09:05:35 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 913ae1c56d to d23fee2df7 2024-12-09 09:05:43 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from d23fee2df7 to ba3f04a1bf 2024-12-10 09:05:40 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from ba3f04a1bf to 275214eb23 2024-12-11 09:04:45 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 275214eb23 to 94d45cbe0b 2024-12-12 09:04:55 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 94d45cbe0b to b41d89aa48 2024-12-13 09:04:46 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from b41d89aa48 to d0291b3a2c 2024-12-14 09:04:38 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from d0291b3a2c to 9c415760d7 2024-12-15 09:04:19 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 9c415760d7 to 5eed582bbb 2024-12-16 09:04:41 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 5eed582bbb to 4932cc05e7 2024-12-17 09:04:31 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 4932cc05e7 to 5d436591c8 2024-12-18 09:04:54 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 5d436591c8 to 8b1a57a332 2024-12-19 09:05:22 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 8b1a57a332 to 47cf951b12 2024-12-20 09:04:50 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 47cf951b12 to 9543511cf7 2024-12-21 09:04:57 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 9543511cf7 to 8a2c758d73 2024-12-22 09:05:03 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 8a2c758d73 to beb58e356a 2024-12-23 09:04:42 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from beb58e356a to 48643d615b 2024-12-24 09:05:03 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 48643d615b to 0ffe8af25f 2024-12-25 09:04:49 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 0ffe8af25f to dcf451a457 2024-12-26 09:05:07 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from dcf451a457 to 9b68dc4064 2024-12-27 09:04:54 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 9b68dc4064 to 1bf3714077 2024-12-28 09:05:09 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 1bf3714077 to 2917945989 2024-12-29 09:04:55 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 2917945989 to 24ba11b77a 2024-12-30 09:04:55 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 24ba11b77a to 59e594fd1b 2024-12-31 09:05:21 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 59e594fd1b to 0063effda3 2025-01-01 09:05:15 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 0063effda3 to fe8c3884b3 2025-01-02 09:04:57 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from fe8c3884b3 to d7fbab1ed1 2025-01-03 09:05:08 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from d7fbab1ed1 to f2cd09cf7c 2025-01-04 09:04:50 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from f2cd09cf7c to 4b127c5a12 2025-01-05 09:05:05 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 4b127c5a12 to df97743293 2025-01-06 09:04:59 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from df97743293 to 5db83ac008 2025-01-07 09:05:39 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 5db83ac008 to 20ab526a24 2025-01-08 09:05:10 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 20ab526a24 to 7a7726faa1 2025-01-09 09:05:44 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 7a7726faa1 to 517f738509 2025-01-10 09:05:20 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 517f738509 to 272587d51f 2025-01-11 09:05:15 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 272587d51f to b8dfc596b5 2025-01-12 09:05:01 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from b8dfc596b5 to 3cb4e76b62 2025-01-13 09:05:00 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 3cb4e76b62 to a6d9bee0db 2025-01-14 09:05:09 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from a6d9bee0db to 3b0046e2fa 2025-01-15 09:05:14 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 3b0046e2fa to 9d692ab933 2025-01-16 09:05:25 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 9d692ab933 to 772ea921f1 2025-01-17 09:04:57 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 772ea921f1 to 84a7311e94 2025-01-18 09:05:01 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 84a7311e94 to c29bec0cd0 2025-01-19 09:05:27 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from c29bec0cd0 to 3109971f4c 2025-01-20 09:04:58 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 3109971f4c to 45f58f2145 2025-01-21 09:05:06 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 45f58f2145 to 692529ddd9 2025-01-22 09:05:20 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 692529ddd9 to f168e7786c 2025-01-23 09:05:06 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from f168e7786c to 3cc0726471 2025-01-24 09:05:16 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 3cc0726471 to c2310ed315 2025-01-25 09:05:24 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from c2310ed315 to 20452d610a 2025-01-26 09:05:20 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 20452d610a to 844525e09a 2025-01-27 09:05:19 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 844525e09a to 843e317327 2025-01-28 09:05:18 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 843e317327 to e9229f783d 2025-01-29 09:05:32 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from e9229f783d to 7e189b7938 2025-01-30 09:05:13 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 7e189b7938 to d162228c4c 2025-01-31 09:05:46 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from d162228c4c to e3f902d2a0 2025-02-01 09:04:53 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from e3f902d2a0 to d7981eab64 2025-02-02 09:05:14 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from d7981eab64 to b69d334314 2025-02-03 09:05:20 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from b69d334314 to 3d81ccb8c8 2025-02-04 09:05:09 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 3d81ccb8c8 to 5c252db400 2025-02-05 09:05:21 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 5c252db400 to e03f73f580 2025-02-06 09:04:58 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from e03f73f580 to 7079b334a2 2025-02-07 09:05:21 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 7079b334a2 to 82719434fc 2025-02-08 09:05:28 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 82719434fc to c92166f729 2025-02-09 09:05:26 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from c92166f729 to 5704ab2581 2025-02-10 09:05:27 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 5704ab2581 to 39459c29f1 2025-02-11 09:05:08 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 39459c29f1 to 2c3a979fbd 2025-02-12 09:05:19 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 2c3a979fbd to 6f72bdc59c 2025-02-13 09:05:26 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 6f72bdc59c to 45275449ae 2025-02-14 09:05:45 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 45275449ae to 47c112278e 2025-02-15 09:05:31 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 47c112278e to 280b3e0940 2025-02-16 09:05:36 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 280b3e0940 to b9a6485215 2025-02-17 09:05:26 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from b9a6485215 to 3e7483837e 2025-02-18 09:05:29 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 3e7483837e to b2c8191a45 2025-02-19 09:05:11 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from b2c8191a45 to de1c3a62d0 2025-02-20 09:05:19 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from de1c3a62d0 to 86c8eac46e 2025-02-21 09:17:38 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 86c8eac46e to 5acc25eff0 2025-02-22 09:03:08 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 5acc25eff0 to 533d0d5a85 2025-02-23 09:05:42 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 533d0d5a85 to cc86b387bc 2025-02-24 09:06:25 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from cc86b387bc to 5fe5c87294 2025-02-25 09:05:13 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 5fe5c87294 to 7e696a980c 2025-02-26 09:04:55 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 7e696a980c to d671eb7709 2025-02-27 09:04:39 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from d671eb7709 to 5f778eaa53 2025-02-28 09:04:42 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 5f778eaa53 to 831a44421f 2025-03-01 09:04:59 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 831a44421f to 9a07ca755a 2025-03-02 09:04:57 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 9a07ca755a to 7e9ef95136 2025-03-03 09:04:52 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 7e9ef95136 to a82889160d 2025-03-04 09:04:44 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from a82889160d to 9971c34c54 2025-03-05 09:04:43 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 9971c34c54 to 9d7e53598b 2025-03-06 09:04:52 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 9d7e53598b to 1b1a1e8660 2025-03-07 09:05:46 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 1b1a1e8660 to ffdb794bca 2025-03-08 09:04:38 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from ffdb794bca to 54f3948e73 2025-03-09 09:13:40 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 54f3948e73 to 6652e3da23 2025-03-10 09:14:48 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 6652e3da23 to 3fe671d99e 2025-03-11 09:13:33 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 3fe671d99e to c650527865 2025-03-12 09:13:08 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from c650527865 to a766ea4565 2025-03-13 09:13:30 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from a766ea4565 to 2f24b8ef2c 2025-03-14 09:14:00 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 2f24b8ef2c to d049534e53 2025-03-15 09:13:41 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from d049534e53 to 75010e7a45 2025-03-16 09:13:26 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 75010e7a45 to 505b1c9f4a 2025-03-17 09:13:33 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 505b1c9f4a to 958a6ead8f 2025-03-18 09:13:10 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 958a6ead8f to 0cdbcc7b80 2025-03-19 09:13:23 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 0cdbcc7b80 to 4e5f92d327 2025-03-20 09:12:50 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 4e5f92d327 to a0e1a0014b 2025-03-21 09:13:51 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from a0e1a0014b to b90be390c9 2025-03-22 09:13:31 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from b90be390c9 to 0038e54a8f 2025-03-23 09:13:13 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 0038e54a8f to 4d962f78a0 2025-03-24 09:12:49 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 4d962f78a0 to 58d6a63d44 2025-03-25 09:13:07 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 58d6a63d44 to 964741a080 2025-03-26 09:14:19 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 964741a080 to aa0891d26b 2025-03-27 09:13:21 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from aa0891d26b to 2c7ca73955 2025-03-28 09:12:48 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 2c7ca73955 to 2ceb23759f 2025-03-29 09:12:55 +01:00 Compare
pv force-pushed renovate/cargo-minor-patch from 2ceb23759f to 6fd262ffdd 2025-03-30 10:13:11 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 6fd262ffdd to e1796412e2 2025-03-31 10:13:07 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from e1796412e2 to 303233e5ef 2025-04-01 10:13:08 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 303233e5ef to 0c75a16fa2 2025-04-02 10:13:34 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 0c75a16fa2 to ebadad4077 2025-04-03 10:13:06 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from ebadad4077 to a9c3cb4a23 2025-04-04 10:13:41 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from a9c3cb4a23 to 79cd6b2ea7 2025-04-05 10:12:51 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 79cd6b2ea7 to 93560f7f88 2025-04-06 10:13:39 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 93560f7f88 to d689849830 2025-04-07 10:13:19 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from d689849830 to 772cb1aba0 2025-04-08 10:13:09 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 772cb1aba0 to d32e67d223 2025-04-09 10:13:54 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from d32e67d223 to 1feddb28d7 2025-04-10 10:13:36 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 1feddb28d7 to 0112011c8a 2025-04-11 10:13:40 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 0112011c8a to c6d92a2c61 2025-04-12 10:13:15 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from c6d92a2c61 to ff1c471540 2025-04-13 10:13:29 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from ff1c471540 to 6b19b6a54f 2025-04-14 10:13:15 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 6b19b6a54f to b784008c49 2025-04-15 10:14:09 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from b784008c49 to 5144a0cb52 2025-04-16 10:13:39 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 5144a0cb52 to f5eb3dec27 2025-04-17 10:15:03 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from f5eb3dec27 to c3f38df9cf 2025-04-18 10:13:15 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from c3f38df9cf to 8a302abdd1 2025-04-19 10:13:40 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 8a302abdd1 to baa5929be1 2025-04-20 10:13:47 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from baa5929be1 to 22babf385b 2025-04-21 10:13:54 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 22babf385b to 68988c87bb 2025-04-22 10:13:38 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 68988c87bb to c95a36bdfa 2025-04-23 10:13:05 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from c95a36bdfa to f86ff4e411 2025-04-24 10:13:47 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from f86ff4e411 to 51cab151c9 2025-04-25 10:13:55 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 51cab151c9 to 949924740b 2025-04-26 10:13:47 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 949924740b to 091e6d8f61 2025-04-27 10:13:12 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 091e6d8f61 to 6af2917ab9 2025-04-28 10:13:18 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 6af2917ab9 to 6f72dfe1a0 2025-04-29 10:13:47 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 6f72dfe1a0 to 9f82697b63 2025-04-30 10:13:45 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 9f82697b63 to 98957c7bc6 2025-05-01 10:13:54 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 98957c7bc6 to 88ea87638f 2025-05-02 10:14:04 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 88ea87638f to 90e84cf52a 2025-05-03 10:14:06 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 90e84cf52a to f2ed01af27 2025-05-04 10:13:29 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from f2ed01af27 to dc84ad9ee6 2025-05-05 10:13:04 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from dc84ad9ee6 to 602b7f543f 2025-05-06 10:13:48 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 602b7f543f to 34745b4493 2025-05-07 10:13:31 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 34745b4493 to f0231b560c 2025-05-08 10:14:08 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from f0231b560c to 206aaa42aa 2025-05-09 10:14:03 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 206aaa42aa to 4e6bc81161 2025-05-10 10:14:08 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 4e6bc81161 to c78e910c87 2025-05-11 10:14:03 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from c78e910c87 to cce38a73fa 2025-05-12 10:13:58 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from cce38a73fa to de253a7f17 2025-05-13 10:14:21 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from de253a7f17 to eeff2eb3c8 2025-05-14 10:16:02 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from eeff2eb3c8 to a1272a0812 2025-05-15 10:14:04 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from a1272a0812 to d5a2b412d1 2025-05-16 10:14:01 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from d5a2b412d1 to 8aa846805c 2025-05-17 10:14:04 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 8aa846805c to 36058e6b4a 2025-05-18 10:14:12 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 36058e6b4a to 610e1f749c 2025-05-19 10:13:35 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 610e1f749c to f46ee0783d 2025-05-20 10:14:15 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from f46ee0783d to 0f179f0356 2025-05-21 10:14:31 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 0f179f0356 to a92b1296a1 2025-05-22 10:13:51 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from a92b1296a1 to 3b2ded3c54 2025-05-23 10:14:06 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 3b2ded3c54 to 145ea5d214 2025-05-24 10:14:23 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 145ea5d214 to 4156fd85d0 2025-05-25 10:13:44 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 4156fd85d0 to 61d78e2531 2025-05-26 10:15:09 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 61d78e2531 to 739690800f 2025-05-27 10:13:51 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 739690800f to 9b1093ab84 2025-05-28 10:13:53 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 9b1093ab84 to 272cd27f5d 2025-05-29 10:14:05 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 272cd27f5d to 68624a7620 2025-05-30 10:14:11 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 68624a7620 to 55bee551d7 2025-05-31 10:13:38 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 55bee551d7 to 48007409ae 2025-06-01 10:13:26 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 48007409ae to de1b7b76ae 2025-06-02 10:13:37 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from de1b7b76ae to 2c4d1c9254 2025-06-03 10:13:38 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 2c4d1c9254 to 6842a803a7 2025-06-04 10:13:34 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 6842a803a7 to 40c2644633 2025-06-05 10:14:08 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 40c2644633 to 8136004655 2025-06-06 10:13:55 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 8136004655 to b92507d4a7 2025-06-07 10:14:10 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from b92507d4a7 to e07eaa1d76 2025-06-08 10:13:11 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from e07eaa1d76 to af73c59a23 2025-06-09 10:13:27 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from af73c59a23 to c887f4acb5 2025-06-10 10:13:48 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from c887f4acb5 to b2a3aa39f3 2025-06-11 10:13:46 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from b2a3aa39f3 to 5f54ff3b75 2025-06-12 10:13:34 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 5f54ff3b75 to 8def1babe4 2025-06-13 10:14:03 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 8def1babe4 to b5fafddc15 2025-06-14 10:14:00 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from b5fafddc15 to 2386d31d07 2025-06-15 10:13:36 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 2386d31d07 to f1cdf4fdef 2025-06-16 10:13:39 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from f1cdf4fdef to 6582076a5e 2025-06-17 10:14:16 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 6582076a5e to 7c3a861d88 2025-06-18 10:13:38 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 7c3a861d88 to cbdb836daf 2025-06-19 10:24:23 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from cbdb836daf to 5dcca6d72f 2025-06-19 10:29:55 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 5dcca6d72f to b0543dfa21 2025-06-20 10:14:13 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from b0543dfa21 to 67380926d7 2025-06-21 10:13:45 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 67380926d7 to 85b9da8c09 2025-06-22 10:13:30 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 85b9da8c09 to f803d05188 2025-06-23 10:13:45 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from f803d05188 to f6b774d853 2025-06-24 10:15:05 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from f6b774d853 to dc916dfd85 2025-06-25 10:14:07 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from dc916dfd85 to 2b7bbca789 2025-06-26 10:14:09 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 2b7bbca789 to c9fe3d10f1 2025-06-27 10:14:07 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from c9fe3d10f1 to b03df72d1b 2025-06-28 10:13:39 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from b03df72d1b to aa2d594cfa 2025-06-29 10:13:26 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from aa2d594cfa to 7f395ddcaf 2025-06-30 10:13:28 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 7f395ddcaf to 7e3e778b89 2025-07-01 10:13:47 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 7e3e778b89 to 03023ee57e 2025-07-02 10:13:40 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 03023ee57e to b87ad55a7c 2025-07-03 10:13:49 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from b87ad55a7c to dc9024ab93 2025-07-04 10:13:45 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from dc9024ab93 to 4da4f14d81 2025-07-05 10:13:39 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 4da4f14d81 to ece2e8ee6d 2025-07-06 10:13:48 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from ece2e8ee6d to 2af08df300 2025-07-07 10:13:10 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 2af08df300 to 03590b802c 2025-07-08 10:14:59 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 03590b802c to 6ac6ed7021 2025-07-09 10:14:21 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 6ac6ed7021 to af1436caad 2025-07-10 10:13:50 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from af1436caad to 700094701c 2025-07-11 10:13:44 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 700094701c to d86a239e2e 2025-07-12 10:14:04 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from d86a239e2e to 17f2536cdc 2025-07-13 10:13:34 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 17f2536cdc to e0ec462771 2025-07-14 10:13:58 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from e0ec462771 to dccf84f859 2025-07-15 10:14:25 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from dccf84f859 to 4e4e746aef 2025-07-16 10:14:10 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 4e4e746aef to 5dff091d6b 2025-07-17 10:14:39 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 5dff091d6b to 684e57dab3 2025-07-18 10:14:44 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 684e57dab3 to d498f3aa13 2025-07-18 14:09:14 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from d498f3aa13 to 671043239c 2025-07-19 10:13:32 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 671043239c to f10a85dfdd 2025-07-20 10:13:40 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from f10a85dfdd to 40707e24f6 2025-07-21 10:12:37 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 40707e24f6 to 1c54582f19 2025-07-22 10:13:41 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 1c54582f19 to 25c53e7cb6 2025-07-23 10:13:59 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 25c53e7cb6 to 682d5057ce 2025-07-24 10:14:19 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 682d5057ce to 3c566b0a9e 2025-07-25 10:14:14 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 3c566b0a9e to 822102b411 2025-07-26 10:13:44 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 822102b411 to ee78f99b85 2025-07-27 10:13:16 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from ee78f99b85 to 017e4529c4 2025-07-28 10:14:04 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 017e4529c4 to 61b49eaf23 2025-07-29 10:14:33 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 61b49eaf23 to 3ea0821288 2025-07-30 10:14:12 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 3ea0821288 to 6db240f7b1 2025-07-31 10:13:59 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 6db240f7b1 to d51b1d4e5b 2025-08-01 10:12:53 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from d51b1d4e5b to de209ba002 2025-08-02 10:05:40 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from de209ba002 to 1ad2b57174 2025-08-03 10:08:32 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 1ad2b57174 to 7679ae8e4b 2025-08-04 10:07:21 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 7679ae8e4b to 53528a25c6 2025-08-05 10:08:07 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 53528a25c6 to e0ade192f2 2025-08-06 10:06:21 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from e0ade192f2 to 4649459f90 2025-08-07 10:06:14 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 4649459f90 to da7b96e40f 2025-08-08 10:06:20 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from da7b96e40f to edc9679979 2025-08-10 10:08:20 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from edc9679979 to b4c7486e72 2025-08-11 10:07:04 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from b4c7486e72 to 3e3302a7ca 2025-08-12 10:06:54 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 3e3302a7ca to 8358c8e36e 2025-08-14 10:06:30 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 8358c8e36e to 662f028638 2025-08-15 10:06:20 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 662f028638 to b499f14f88 2025-08-16 10:06:11 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from b499f14f88 to e033a7ddd9 2025-08-17 10:06:35 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from e033a7ddd9 to 4a1605606d 2025-08-19 10:06:38 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 4a1605606d to f828672aa8 2025-08-20 10:06:32 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from f828672aa8 to 1d338bdf8d 2025-08-21 10:06:29 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 1d338bdf8d to 638f45b635 2025-08-23 10:06:38 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 638f45b635 to f6ba13b616 2025-08-25 10:07:35 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from f6ba13b616 to 655a8414c7 2025-08-29 10:06:35 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 655a8414c7 to 94983fd181 2025-09-02 09:12:19 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 94983fd181 to e5e65fd217 2025-09-03 10:07:32 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from e5e65fd217 to 3a4c2c5ce6 2025-09-06 10:07:17 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 3a4c2c5ce6 to d1d9846705 2025-09-09 10:08:20 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from d1d9846705 to fa45c80fd6 2025-09-10 10:07:11 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from fa45c80fd6 to 9e315d4d8f 2025-09-14 10:06:57 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 9e315d4d8f to 1b45115852 2025-09-15 10:07:05 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from 1b45115852 to c05424f483 2025-09-16 10:07:09 +02:00 Compare
pv force-pushed renovate/cargo-minor-patch from c05424f483 to 688d9f99c1 2025-09-21 10:06:57 +02:00 Compare
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.
View command line instructions

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/cargo-minor-patch:renovate/cargo-minor-patch
git switch renovate/cargo-minor-patch

Merge

Merge the changes and update on Forgejo.

Warning: The "Autodetect manual merge" setting is not enabled for this repository, you will have to mark this pull request as manually merged afterwards.

git switch master
git merge --no-ff renovate/cargo-minor-patch
git switch renovate/cargo-minor-patch
git rebase master
git switch master
git merge --ff-only renovate/cargo-minor-patch
git switch renovate/cargo-minor-patch
git rebase master
git switch master
git merge --no-ff renovate/cargo-minor-patch
git switch master
git merge --squash renovate/cargo-minor-patch
git switch master
git merge --ff-only renovate/cargo-minor-patch
git switch master
git merge renovate/cargo-minor-patch
git push origin master
Sign in to join this conversation.
No reviewers
No labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: pv/sloan#49
No description provided.