fix(deps): update all dependencies #3

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

This PR contains the following updates:

Package Type Update Change
reqwest dependencies patch 0.12.7 -> 0.12.15
serde_json dependencies patch 1.0.125 -> 1.0.140
serde_repr dependencies patch 0.1.19 -> 0.1.20
tokio (source) workspace.dependencies minor 1.39.3 -> 1.44.2
url dependencies patch 2.5.2 -> 2.5.4
uuid dependencies minor 1.10.0 -> 1.16.0

Release Notes

seanmonstar/reqwest (reqwest)

v0.12.15

Compare Source

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

v0.12.14

Compare Source

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

v0.12.13

Compare Source

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

v0.12.12

Compare Source

  • (wasm) Fix compilation by not compiler tokio/time on WASM.

v0.12.11

Compare Source

  • Fix decompression returning an error when HTTP/2 ends with an empty data frame.

v0.12.10

Compare Source

  • Add ClientBuilder::connector_layer() to allow customizing the connector stack.
  • Add ClientBuilder::http2_max_header_list_size() option.
  • Fix propagating body size hint (content-length) information when wrapping bodies.
  • Fix decompression of chunked bodies so the connections can be reused more often.

v0.12.9

Compare Source

  • Add tls::CertificateRevocationLists support.
  • Add crate features to enable webpki roots without selecting a rustls provider.
  • Fix connection_verbose() to output read logs.
  • Fix multipart::Part::file() to automatically include content-length.
  • Fix proxy to internally no longer cache system proxy settings.

v0.12.8

Compare Source

  • Add support for SOCKS4 proxies.
  • Add multipart::Form::file() method for adding files easily.
  • Add Body::wrap() to wrap any http_body::Body type.
  • Fix the pool configuration to use a timer to remove expired connections.
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)

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)
dtolnay/serde-repr (serde_repr)

v0.1.20

Compare Source

  • Documentation improvements
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)

v1.41.0: Tokio v1.41.0

Compare Source

1.41.0 (Oct 22th, 2024)

Added
Added (unstable)
  • metrics: add H2 Histogram option to improve histogram granularity (#​6897)
  • metrics: rename some histogram apis (#​6924)
  • runtime: add LocalRuntime (#​6808)
Changed
  • runtime: box futures larger than 16k on release mode (#​6826)
  • sync: add #[must_use] to Notified (#​6828)
  • sync: make watch cooperative (#​6846)
  • sync: make broadcast::Receiver cooperative (#​6870)
  • task: add task size to tracing instrumentation (#​6881)
  • wasm: enable cfg_fs for wasi target (#​6822)
Fixed
  • net: fix regression of abstract socket path in unix socket (#​6838)
Documented
  • io: recommend OwnedFd with AsyncFd (#​6821)
  • io: document cancel safety of AsyncFd methods (#​6890)
  • macros: render more comprehensible documentation for join and try_join (#​6814, #​6841)
  • net: fix swapped examples for TcpSocket::set_nodelay and TcpSocket::nodelay (#​6840)
  • sync: document runtime compatibility (#​6833)

v1.40.0: Tokio v1.40.0

Compare Source

1.40.0 (August 30th, 2024)

Added
  • io: add util::SimplexStream (#​6589)
  • process: stabilize Command::process_group (#​6731)
  • sync: add {TrySendError,SendTimeoutError}::into_inner (#​6755)
  • task: add JoinSet::join_all (#​6784)
Added (unstable)
  • runtime: add Builder::{on_task_spawn, on_task_terminate} (#​6742)
Changed
  • io: use vectored io for write_all_buf when possible (#​6724)
  • runtime: prevent niche-optimization to avoid triggering miri (#​6744)
  • sync: mark mpsc types as UnwindSafe (#​6783)
  • sync,time: make Sleep and BatchSemaphore instrumentation explicit roots (#​6727)
  • task: use NonZeroU64 for task::Id (#​6733)
  • task: include panic message when printing JoinError (#​6753)
  • task: add #[must_use] to JoinHandle::abort_handle (#​6762)
  • time: eliminate timer wheel allocations (#​6779)
Documented
  • docs: clarify that [build] section doesn't go in Cargo.toml (#​6728)
  • io: clarify zero remaining capacity case (#​6790)
  • macros: improve documentation for select! (#​6774)
  • sync: document mpsc channel allocation behavior (#​6773)
servo/rust-url (url)

v2.5.4

Compare Source

What's Changed

Full Changelog: https://github.com/servo/rust-url/compare/v2.5.3...v2.5.4

v2.5.3

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/servo/rust-url/compare/v2.5.2...v2.5.3

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

v1.11.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/uuid-rs/uuid/compare/1.10.0...1.11.0


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 | |---|---|---|---| | [reqwest](https://github.com/seanmonstar/reqwest) | dependencies | patch | `0.12.7` -> `0.12.15` | | [serde_json](https://github.com/serde-rs/json) | dependencies | patch | `1.0.125` -> `1.0.140` | | [serde_repr](https://github.com/dtolnay/serde-repr) | dependencies | patch | `0.1.19` -> `0.1.20` | | [tokio](https://tokio.rs) ([source](https://github.com/tokio-rs/tokio)) | workspace.dependencies | minor | `1.39.3` -> `1.44.2` | | [url](https://github.com/servo/rust-url) | dependencies | patch | `2.5.2` -> `2.5.4` | | [uuid](https://github.com/uuid-rs/uuid) | dependencies | minor | `1.10.0` -> `1.16.0` | --- ### Release Notes <details> <summary>seanmonstar/reqwest (reqwest)</summary> ### [`v0.12.15`](https://github.com/seanmonstar/reqwest/blob/HEAD/CHANGELOG.md#v01215) [Compare Source](https://github.com/seanmonstar/reqwest/compare/v0.12.14...v0.12.15) - Fix Windows to support both `ProxyOverride` and `NO_PROXY`. - Fix http3 to support streaming response bodies. - Fix http3 dependency from public API misuse. ### [`v0.12.14`](https://github.com/seanmonstar/reqwest/blob/HEAD/CHANGELOG.md#v01214) [Compare Source](https://github.com/seanmonstar/reqwest/compare/v0.12.13...v0.12.14) - Fix missing `fetch_mode_no_cors()`, marking as deprecated when not on WASM. ### [`v0.12.13`](https://github.com/seanmonstar/reqwest/blob/HEAD/CHANGELOG.md#v01213) [Compare Source](https://github.com/seanmonstar/reqwest/compare/v0.12.12...v0.12.13) - Add `Form::into_reader()` for blocking `multipart` forms. - Add `Form::into_stream()` for async `multipart` forms. - Add support for SOCKS4a proxies. - Fix decoding responses with multiple zstd frames. - Fix `RequestBuilder::form()` from overwriting a previously set `Content-Type` header, like the other builder methods. - Fix cloning of request timeout in `blocking::Request`. - Fix http3 synchronization of connection creation, reducing unneccesary extra connections. - Fix Windows system proxy to use `ProxyOverride` as a `NO_PROXY` value. - Fix blocking read to correctly reserve and zero read buffer. - (wasm) Add support for request timeouts. - (wasm) Fix `Error::is_timeout()` to return true when from a request timeout. ### [`v0.12.12`](https://github.com/seanmonstar/reqwest/blob/HEAD/CHANGELOG.md#v01212) [Compare Source](https://github.com/seanmonstar/reqwest/compare/v0.12.11...v0.12.12) - (wasm) Fix compilation by not compiler `tokio/time` on WASM. ### [`v0.12.11`](https://github.com/seanmonstar/reqwest/blob/HEAD/CHANGELOG.md#v01211) [Compare Source](https://github.com/seanmonstar/reqwest/compare/v0.12.10...v0.12.11) - Fix decompression returning an error when HTTP/2 ends with an empty data frame. ### [`v0.12.10`](https://github.com/seanmonstar/reqwest/blob/HEAD/CHANGELOG.md#v01210) [Compare Source](https://github.com/seanmonstar/reqwest/compare/v0.12.9...v0.12.10) - Add `ClientBuilder::connector_layer()` to allow customizing the connector stack. - Add `ClientBuilder::http2_max_header_list_size()` option. - Fix propagating body size hint (`content-length`) information when wrapping bodies. - Fix decompression of chunked bodies so the connections can be reused more often. ### [`v0.12.9`](https://github.com/seanmonstar/reqwest/blob/HEAD/CHANGELOG.md#v0129) [Compare Source](https://github.com/seanmonstar/reqwest/compare/v0.12.8...v0.12.9) - Add `tls::CertificateRevocationLists` support. - Add crate features to enable webpki roots without selecting a rustls provider. - Fix `connection_verbose()` to output read logs. - Fix `multipart::Part::file()` to automatically include content-length. - Fix proxy to internally no longer cache system proxy settings. ### [`v0.12.8`](https://github.com/seanmonstar/reqwest/blob/HEAD/CHANGELOG.md#v0128) [Compare Source](https://github.com/seanmonstar/reqwest/compare/v0.12.7...v0.12.8) - Add support for SOCKS4 proxies. - Add `multipart::Form::file()` method for adding files easily. - Add `Body::wrap()` to wrap any `http_body::Body` type. - Fix the pool configuration to use a timer to remove expired connections. </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)) ### [`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)) </details> <details> <summary>dtolnay/serde-repr (serde_repr)</summary> ### [`v0.1.20`](https://github.com/dtolnay/serde-repr/releases/tag/0.1.20) [Compare Source](https://github.com/dtolnay/serde-repr/compare/0.1.19...0.1.20) - Documentation improvements </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 ### [`v1.41.0`](https://github.com/tokio-rs/tokio/releases/tag/tokio-1.41.0): Tokio v1.41.0 [Compare Source](https://github.com/tokio-rs/tokio/compare/tokio-1.40.0...tokio-1.41.0) ### 1.41.0 (Oct 22th, 2024) ##### Added - metrics: stabilize `global_queue_depth` ([#&#8203;6854], [#&#8203;6918]) - net: add conversions for unix `SocketAddr` ([#&#8203;6868]) - sync: add `watch::Sender::sender_count` ([#&#8203;6836]) - sync: add `mpsc::Receiver::blocking_recv_many` ([#&#8203;6867]) - task: stabilize `Id` apis ([#&#8203;6793], [#&#8203;6891]) ##### Added (unstable) - metrics: add H2 Histogram option to improve histogram granularity ([#&#8203;6897]) - metrics: rename some histogram apis ([#&#8203;6924]) - runtime: add `LocalRuntime` ([#&#8203;6808]) ##### Changed - runtime: box futures larger than 16k on release mode ([#&#8203;6826]) - sync: add `#[must_use]` to `Notified` ([#&#8203;6828]) - sync: make `watch` cooperative ([#&#8203;6846]) - sync: make `broadcast::Receiver` cooperative ([#&#8203;6870]) - task: add task size to tracing instrumentation ([#&#8203;6881]) - wasm: enable `cfg_fs` for `wasi` target ([#&#8203;6822]) ##### Fixed - net: fix regression of abstract socket path in unix socket ([#&#8203;6838]) ##### Documented - io: recommend `OwnedFd` with `AsyncFd` ([#&#8203;6821]) - io: document cancel safety of `AsyncFd` methods ([#&#8203;6890]) - macros: render more comprehensible documentation for `join` and `try_join` ([#&#8203;6814], [#&#8203;6841]) - net: fix swapped examples for `TcpSocket::set_nodelay` and `TcpSocket::nodelay` ([#&#8203;6840]) - sync: document runtime compatibility ([#&#8203;6833]) [#&#8203;6793]: https://github.com/tokio-rs/tokio/pull/6793 [#&#8203;6808]: https://github.com/tokio-rs/tokio/pull/6808 [#&#8203;6810]: https://github.com/tokio-rs/tokio/pull/6810 [#&#8203;6814]: https://github.com/tokio-rs/tokio/pull/6814 [#&#8203;6821]: https://github.com/tokio-rs/tokio/pull/6821 [#&#8203;6822]: https://github.com/tokio-rs/tokio/pull/6822 [#&#8203;6826]: https://github.com/tokio-rs/tokio/pull/6826 [#&#8203;6828]: https://github.com/tokio-rs/tokio/pull/6828 [#&#8203;6833]: https://github.com/tokio-rs/tokio/pull/6833 [#&#8203;6836]: https://github.com/tokio-rs/tokio/pull/6836 [#&#8203;6838]: https://github.com/tokio-rs/tokio/pull/6838 [#&#8203;6840]: https://github.com/tokio-rs/tokio/pull/6840 [#&#8203;6841]: https://github.com/tokio-rs/tokio/pull/6841 [#&#8203;6846]: https://github.com/tokio-rs/tokio/pull/6846 [#&#8203;6854]: https://github.com/tokio-rs/tokio/pull/6854 [#&#8203;6867]: https://github.com/tokio-rs/tokio/pull/6867 [#&#8203;6868]: https://github.com/tokio-rs/tokio/pull/6868 [#&#8203;6870]: https://github.com/tokio-rs/tokio/pull/6870 [#&#8203;6881]: https://github.com/tokio-rs/tokio/pull/6881 [#&#8203;6890]: https://github.com/tokio-rs/tokio/pull/6890 [#&#8203;6891]: https://github.com/tokio-rs/tokio/pull/6891 [#&#8203;6897]: https://github.com/tokio-rs/tokio/pull/6897 [#&#8203;6918]: https://github.com/tokio-rs/tokio/pull/6918 [#&#8203;6924]: https://github.com/tokio-rs/tokio/pull/6924 ### [`v1.40.0`](https://github.com/tokio-rs/tokio/releases/tag/tokio-1.40.0): Tokio v1.40.0 [Compare Source](https://github.com/tokio-rs/tokio/compare/tokio-1.39.3...tokio-1.40.0) ### 1.40.0 (August 30th, 2024) ##### Added - io: add `util::SimplexStream` ([#&#8203;6589]) - process: stabilize `Command::process_group` ([#&#8203;6731]) - sync: add `{TrySendError,SendTimeoutError}::into_inner` ([#&#8203;6755]) - task: add `JoinSet::join_all` ([#&#8203;6784]) ##### Added (unstable) - runtime: add `Builder::{on_task_spawn, on_task_terminate}` ([#&#8203;6742]) ##### Changed - io: use vectored io for `write_all_buf` when possible ([#&#8203;6724]) - runtime: prevent niche-optimization to avoid triggering miri ([#&#8203;6744]) - sync: mark mpsc types as `UnwindSafe` ([#&#8203;6783]) - sync,time: make `Sleep` and `BatchSemaphore` instrumentation explicit roots ([#&#8203;6727]) - task: use `NonZeroU64` for `task::Id` ([#&#8203;6733]) - task: include panic message when printing `JoinError` ([#&#8203;6753]) - task: add `#[must_use]` to `JoinHandle::abort_handle` ([#&#8203;6762]) - time: eliminate timer wheel allocations ([#&#8203;6779]) ##### Documented - docs: clarify that `[build]` section doesn't go in Cargo.toml ([#&#8203;6728]) - io: clarify zero remaining capacity case ([#&#8203;6790]) - macros: improve documentation for `select!` ([#&#8203;6774]) - sync: document mpsc channel allocation behavior ([#&#8203;6773]) [#&#8203;6589]: https://github.com/tokio-rs/tokio/pull/6589 [#&#8203;6724]: https://github.com/tokio-rs/tokio/pull/6724 [#&#8203;6727]: https://github.com/tokio-rs/tokio/pull/6727 [#&#8203;6728]: https://github.com/tokio-rs/tokio/pull/6728 [#&#8203;6731]: https://github.com/tokio-rs/tokio/pull/6731 [#&#8203;6733]: https://github.com/tokio-rs/tokio/pull/6733 [#&#8203;6742]: https://github.com/tokio-rs/tokio/pull/6742 [#&#8203;6744]: https://github.com/tokio-rs/tokio/pull/6744 [#&#8203;6753]: https://github.com/tokio-rs/tokio/pull/6753 [#&#8203;6755]: https://github.com/tokio-rs/tokio/pull/6755 [#&#8203;6762]: https://github.com/tokio-rs/tokio/pull/6762 [#&#8203;6773]: https://github.com/tokio-rs/tokio/pull/6773 [#&#8203;6774]: https://github.com/tokio-rs/tokio/pull/6774 [#&#8203;6779]: https://github.com/tokio-rs/tokio/pull/6779 [#&#8203;6783]: https://github.com/tokio-rs/tokio/pull/6783 [#&#8203;6784]: https://github.com/tokio-rs/tokio/pull/6784 [#&#8203;6790]: https://github.com/tokio-rs/tokio/pull/6790 </details> <details> <summary>servo/rust-url (url)</summary> ### [`v2.5.4`](https://github.com/servo/rust-url/releases/tag/v2.5.4) [Compare Source](https://github.com/servo/rust-url/compare/v2.5.3...v2.5.4) #### What's Changed - Revert "Normalize URL paths: convert /.//p, /..//p, and //p to p ([#&#8203;943](https://github.com/servo/rust-url/issues/943))" by [@&#8203;valenting](https://github.com/valenting) in https://github.com/servo/rust-url/pull/999 - Updates the MSRV to 1.63 required though the libc v0.2.164 dependency **Full Changelog**: https://github.com/servo/rust-url/compare/v2.5.3...v2.5.4 ### [`v2.5.3`](https://github.com/servo/rust-url/releases/tag/v2.5.3) [Compare Source](https://github.com/servo/rust-url/compare/v2.5.2...v2.5.3) #### What's Changed - fix: enable wasip2 feature for wasm32-wasip2 target by [@&#8203;brooksmtownsend](https://github.com/brooksmtownsend) in https://github.com/servo/rust-url/pull/960 - Fix idna tests with no_std by [@&#8203;cjwatson](https://github.com/cjwatson) in https://github.com/servo/rust-url/pull/963 - Fix debugger_visualizer test failures. by [@&#8203;valenting](https://github.com/valenting) in https://github.com/servo/rust-url/pull/967 - Add AsciiSet::EMPTY and boolean operators by [@&#8203;joshka](https://github.com/joshka) in https://github.com/servo/rust-url/pull/969 - mention why we pin unicode-width by [@&#8203;Manishearth](https://github.com/Manishearth) in https://github.com/servo/rust-url/pull/972 - refactor and add tests for percent encoding by [@&#8203;joshka](https://github.com/joshka) in https://github.com/servo/rust-url/pull/977 - Add a test for and fix issue [#&#8203;974](https://github.com/servo/rust-url/issues/974) by [@&#8203;hansl](https://github.com/hansl) in https://github.com/servo/rust-url/pull/975 - `no_std` support for the `url` crate by [@&#8203;domenukk](https://github.com/domenukk) in https://github.com/servo/rust-url/pull/831 - Normalize URL paths: convert /.//p, /..//p, and //p to p by [@&#8203;theskim](https://github.com/theskim) in https://github.com/servo/rust-url/pull/943 - support Hermit by [@&#8203;m-mueller678](https://github.com/m-mueller678) in https://github.com/servo/rust-url/pull/985 - fix: support `wasm32-wasip2` on the stable channel by [@&#8203;brooksmtownsend](https://github.com/brooksmtownsend) in https://github.com/servo/rust-url/pull/983 - Improve serde error output by [@&#8203;konstin](https://github.com/konstin) in https://github.com/servo/rust-url/pull/982 - OSS-Fuzz: Add more fuzzer by [@&#8203;arthurscchan](https://github.com/arthurscchan) in https://github.com/servo/rust-url/pull/988 - Merge idna-v1x to main by [@&#8203;hsivonen](https://github.com/hsivonen) in https://github.com/servo/rust-url/pull/990 #### New Contributors - [@&#8203;brooksmtownsend](https://github.com/brooksmtownsend) made their first contribution in https://github.com/servo/rust-url/pull/960 - [@&#8203;cjwatson](https://github.com/cjwatson) made their first contribution in https://github.com/servo/rust-url/pull/963 - [@&#8203;joshka](https://github.com/joshka) made their first contribution in https://github.com/servo/rust-url/pull/969 - [@&#8203;hansl](https://github.com/hansl) made their first contribution in https://github.com/servo/rust-url/pull/975 - [@&#8203;theskim](https://github.com/theskim) made their first contribution in https://github.com/servo/rust-url/pull/943 - [@&#8203;m-mueller678](https://github.com/m-mueller678) made their first contribution in https://github.com/servo/rust-url/pull/985 - [@&#8203;konstin](https://github.com/konstin) made their first contribution in https://github.com/servo/rust-url/pull/982 - [@&#8203;arthurscchan](https://github.com/arthurscchan) made their first contribution in https://github.com/servo/rust-url/pull/988 **Full Changelog**: https://github.com/servo/rust-url/compare/v2.5.2...v2.5.3 </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 ### [`v1.11.0`](https://github.com/uuid-rs/uuid/releases/tag/1.11.0) [Compare Source](https://github.com/uuid-rs/uuid/compare/1.10.0...1.11.0) #### What's Changed - Upgrade zerocopy to 0.8 by [@&#8203;yotamofek](https://github.com/yotamofek) in https://github.com/uuid-rs/uuid/pull/771 - Prepare for 1.11.0 release by [@&#8203;KodrAus](https://github.com/KodrAus) in https://github.com/uuid-rs/uuid/pull/772 #### New Contributors - [@&#8203;yotamofek](https://github.com/yotamofek) made their first contribution in https://github.com/uuid-rs/uuid/pull/771 **Full Changelog**: https://github.com/uuid-rs/uuid/compare/1.10.0...1.11.0 </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:eyJjcmVhdGVkSW5WZXIiOiIzNy40MjQuMyIsInVwZGF0ZWRJblZlciI6IjM5LjIzNi4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
kjuulh scheduled this pull request to auto merge when all checks succeed 2024-08-23 22:39:47 +02:00
kjuulh changed title from fix(deps): update rust crate serde_json to v1.0.126 to fix(deps): update rust crate serde_json to v1.0.127 2024-08-23 23:18:40 +02:00
kjuulh force-pushed renovate/all from 04fc2ac49e to ad0054097a 2024-08-23 23:18:41 +02:00 Compare
kjuulh changed title from fix(deps): update rust crate serde_json to v1.0.127 to fix(deps): update all dependencies 2024-08-30 10:26:28 +02:00
kjuulh force-pushed renovate/all from ad0054097a to 70598dc570 2024-08-30 10:26:28 +02:00 Compare
kjuulh force-pushed renovate/all from 70598dc570 to 7670c4a493 2024-08-30 11:09:46 +02:00 Compare
kjuulh force-pushed renovate/all from 7670c4a493 to 25a81233cb 2024-08-30 11:49:20 +02:00 Compare
kjuulh force-pushed renovate/all from 25a81233cb to b7c3de43a0 2024-08-30 12:26:28 +02:00 Compare
kjuulh force-pushed renovate/all from b7c3de43a0 to 7a8b637d30 2024-08-30 13:18:44 +02:00 Compare
kjuulh force-pushed renovate/all from 7a8b637d30 to f666a0ee18 2024-08-30 13:55:07 +02:00 Compare
kjuulh force-pushed renovate/all from f666a0ee18 to 7777044b88 2024-08-30 14:32:58 +02:00 Compare
kjuulh force-pushed renovate/all from 7777044b88 to 5664171902 2024-08-30 15:09:13 +02:00 Compare
kjuulh force-pushed renovate/all from 5664171902 to 68ca954a6b 2024-08-30 15:46:34 +02:00 Compare
kjuulh force-pushed renovate/all from 68ca954a6b to e1f6b6354a 2024-08-30 16:22:45 +02:00 Compare
kjuulh force-pushed renovate/all from e1f6b6354a to 50aaf6d230 2024-08-30 16:59:12 +02:00 Compare
kjuulh force-pushed renovate/all from 50aaf6d230 to 75d2868fc7 2024-08-30 17:34:42 +02:00 Compare
kjuulh force-pushed renovate/all from 75d2868fc7 to 8745f04d13 2024-08-30 18:24:26 +02:00 Compare
kjuulh force-pushed renovate/all from 8745f04d13 to 53e4574580 2024-08-30 19:09:09 +02:00 Compare
kjuulh force-pushed renovate/all from 53e4574580 to 5d4be4d17f 2024-08-30 19:46:06 +02:00 Compare
kjuulh force-pushed renovate/all from 5d4be4d17f to 2456269eda 2024-08-31 02:27:04 +02:00 Compare
kjuulh force-pushed renovate/all from 2456269eda to 294f98d19e 2024-08-31 06:25:44 +02:00 Compare
kjuulh force-pushed renovate/all from 294f98d19e to d9e085dbaa 2024-09-01 02:26:22 +02:00 Compare
kjuulh force-pushed renovate/all from d9e085dbaa to fe7049f676 2024-09-01 06:25:51 +02:00 Compare
kjuulh force-pushed renovate/all from fe7049f676 to 52f1c0304e 2024-09-02 02:26:38 +02:00 Compare
kjuulh force-pushed renovate/all from 52f1c0304e to 60030a6e25 2024-09-02 06:25:55 +02:00 Compare
kjuulh force-pushed renovate/all from 60030a6e25 to 10c41100a6 2024-09-03 02:27:39 +02:00 Compare
kjuulh force-pushed renovate/all from 10c41100a6 to c86475a487 2024-09-03 06:26:04 +02:00 Compare
kjuulh force-pushed renovate/all from c86475a487 to 7f1f153722 2024-09-04 02:26:34 +02:00 Compare
kjuulh force-pushed renovate/all from 7f1f153722 to acc8a6a415 2024-09-04 06:25:50 +02:00 Compare
kjuulh force-pushed renovate/all from acc8a6a415 to 71a1a72367 2024-09-05 02:31:07 +02:00 Compare
kjuulh force-pushed renovate/all from 71a1a72367 to dfe89da3cf 2024-09-05 06:27:50 +02:00 Compare
kjuulh force-pushed renovate/all from dfe89da3cf to f8ca66fa25 2024-09-06 02:29:07 +02:00 Compare
kjuulh force-pushed renovate/all from f8ca66fa25 to 9f073d72cc 2024-09-06 06:26:17 +02:00 Compare
kjuulh force-pushed renovate/all from 9f073d72cc to 4e90a10c87 2024-09-07 02:30:31 +02:00 Compare
kjuulh force-pushed renovate/all from 4e90a10c87 to 4e57461824 2024-09-07 06:28:18 +02:00 Compare
kjuulh force-pushed renovate/all from 4e57461824 to 80df955929 2024-09-08 02:31:06 +02:00 Compare
kjuulh force-pushed renovate/all from 80df955929 to a8bc1de747 2024-09-08 06:28:53 +02:00 Compare
kjuulh force-pushed renovate/all from a8bc1de747 to 2ca3537d69 2024-09-08 15:06:52 +02:00 Compare
kjuulh force-pushed renovate/all from 2ca3537d69 to e01d65d871 2024-09-09 02:28:54 +02:00 Compare
kjuulh force-pushed renovate/all from e01d65d871 to c4e34b0d0e 2024-09-09 06:29:42 +02:00 Compare
kjuulh force-pushed renovate/all from c4e34b0d0e to f69d91d332 2024-09-10 02:30:24 +02:00 Compare
kjuulh force-pushed renovate/all from f69d91d332 to 3d8f033906 2024-09-10 06:28:09 +02:00 Compare
kjuulh force-pushed renovate/all from 3d8f033906 to d98538f784 2024-09-11 02:28:48 +02:00 Compare
kjuulh force-pushed renovate/all from d98538f784 to 23e455e7e2 2024-09-11 06:28:08 +02:00 Compare
kjuulh force-pushed renovate/all from 23e455e7e2 to 6ba6f5eb1c 2024-09-12 02:32:22 +02:00 Compare
kjuulh force-pushed renovate/all from 6ba6f5eb1c to e87fd674ab 2024-09-12 06:31:17 +02:00 Compare
kjuulh force-pushed renovate/all from e87fd674ab to 0066bc719c 2024-09-13 02:28:45 +02:00 Compare
kjuulh force-pushed renovate/all from 0066bc719c to a1de6c2cea 2024-09-13 06:26:39 +02:00 Compare
kjuulh force-pushed renovate/all from a1de6c2cea to b7301b7490 2024-09-14 02:27:23 +02:00 Compare
kjuulh force-pushed renovate/all from b7301b7490 to 359cc2467a 2024-09-14 06:26:53 +02:00 Compare
kjuulh force-pushed renovate/all from 359cc2467a to c0b6fe4738 2024-09-15 02:27:28 +02:00 Compare
kjuulh force-pushed renovate/all from c0b6fe4738 to 654bd5b5cc 2024-09-15 06:29:59 +02:00 Compare
kjuulh force-pushed renovate/all from 654bd5b5cc to ab6ef0db4d 2024-09-16 02:29:06 +02:00 Compare
kjuulh force-pushed renovate/all from ab6ef0db4d to 1115c7992c 2024-09-16 06:29:32 +02:00 Compare
kjuulh force-pushed renovate/all from 1115c7992c to 54fdba3018 2024-09-17 02:30:44 +02:00 Compare
kjuulh force-pushed renovate/all from 54fdba3018 to 6faaa4bad9 2024-09-17 06:27:48 +02:00 Compare
kjuulh force-pushed renovate/all from 6faaa4bad9 to b6033a6abb 2024-09-18 02:33:43 +02:00 Compare
kjuulh force-pushed renovate/all from b6033a6abb to 4cc7638c05 2024-09-18 06:29:22 +02:00 Compare
kjuulh force-pushed renovate/all from 4cc7638c05 to 82ef90364e 2024-09-19 02:32:04 +02:00 Compare
kjuulh force-pushed renovate/all from 82ef90364e to 3d08b66379 2024-09-19 06:29:45 +02:00 Compare
kjuulh force-pushed renovate/all from 3d08b66379 to b88f2f4701 2024-09-20 02:40:41 +02:00 Compare
kjuulh force-pushed renovate/all from b88f2f4701 to 4598b00866 2024-09-20 06:47:12 +02:00 Compare
kjuulh force-pushed renovate/all from 4598b00866 to d4adb9c008 2024-09-21 02:55:55 +02:00 Compare
kjuulh force-pushed renovate/all from d4adb9c008 to 0a31440dc0 2024-09-21 06:50:29 +02:00 Compare
kjuulh force-pushed renovate/all from 0a31440dc0 to 0e0a39ae70 2024-09-22 02:39:07 +02:00 Compare
kjuulh force-pushed renovate/all from 0e0a39ae70 to 4cf02b1876 2024-09-22 06:30:58 +02:00 Compare
kjuulh force-pushed renovate/all from 4cf02b1876 to 19f00b65c2 2024-09-23 02:38:02 +02:00 Compare
kjuulh force-pushed renovate/all from 19f00b65c2 to 8857a56cd0 2024-09-23 06:37:18 +02:00 Compare
kjuulh force-pushed renovate/all from 8857a56cd0 to 90359e9af0 2024-09-24 02:33:33 +02:00 Compare
kjuulh force-pushed renovate/all from 90359e9af0 to fe680068b8 2024-10-01 02:33:40 +02:00 Compare
kjuulh force-pushed renovate/all from fe680068b8 to b947d8d5ce 2024-10-01 06:32:19 +02:00 Compare
kjuulh force-pushed renovate/all from b947d8d5ce to 70148d13a8 2024-10-02 02:33:32 +02:00 Compare
kjuulh force-pushed renovate/all from 70148d13a8 to e74198ed79 2024-10-02 06:30:02 +02:00 Compare
kjuulh force-pushed renovate/all from e74198ed79 to d101255cdd 2024-10-03 02:33:25 +02:00 Compare
kjuulh force-pushed renovate/all from d101255cdd to c118d386ba 2024-10-03 06:29:06 +02:00 Compare
kjuulh force-pushed renovate/all from c118d386ba to e448c5ce2a 2024-10-04 02:30:59 +02:00 Compare
kjuulh force-pushed renovate/all from e448c5ce2a to 2dd8b4fd56 2024-10-04 06:25:58 +02:00 Compare
kjuulh force-pushed renovate/all from 2dd8b4fd56 to 0b2b68c4c8 2024-10-05 02:27:50 +02:00 Compare
kjuulh force-pushed renovate/all from 0b2b68c4c8 to f9a8433afd 2024-10-05 06:27:01 +02:00 Compare
kjuulh force-pushed renovate/all from f9a8433afd to 3b3b3ccb3d 2024-10-06 02:31:00 +02:00 Compare
kjuulh force-pushed renovate/all from 3b3b3ccb3d to 347e7945f5 2024-10-06 06:29:54 +02:00 Compare
kjuulh force-pushed renovate/all from 347e7945f5 to e73f8377ed 2024-10-07 02:28:02 +02:00 Compare
kjuulh force-pushed renovate/all from e73f8377ed to f591a2bc11 2024-10-07 06:27:27 +02:00 Compare
kjuulh force-pushed renovate/all from f591a2bc11 to e8aeb5937b 2024-10-08 02:29:41 +02:00 Compare
kjuulh force-pushed renovate/all from e8aeb5937b to ec246ef407 2024-10-08 06:27:04 +02:00 Compare
kjuulh force-pushed renovate/all from ec246ef407 to 611afc684e 2024-10-09 02:33:46 +02:00 Compare
kjuulh force-pushed renovate/all from 611afc684e to 2842b5ccfc 2024-10-09 06:32:02 +02:00 Compare
kjuulh force-pushed renovate/all from 2842b5ccfc to 350f8c807e 2024-10-10 02:33:24 +02:00 Compare
kjuulh force-pushed renovate/all from 350f8c807e to be99463af7 2024-10-10 06:31:13 +02:00 Compare
kjuulh force-pushed renovate/all from be99463af7 to d853097786 2024-10-11 02:32:06 +02:00 Compare
kjuulh force-pushed renovate/all from d853097786 to 3be670e464 2024-10-11 06:30:34 +02:00 Compare
kjuulh force-pushed renovate/all from 3be670e464 to c9e3a2cba6 2024-10-12 02:31:14 +02:00 Compare
kjuulh force-pushed renovate/all from c9e3a2cba6 to d67fc8b2e0 2024-10-12 06:31:18 +02:00 Compare
kjuulh force-pushed renovate/all from d67fc8b2e0 to 837c283d97 2024-10-13 02:27:51 +02:00 Compare
kjuulh force-pushed renovate/all from 837c283d97 to d16f8cf5a3 2024-10-13 06:27:37 +02:00 Compare
kjuulh force-pushed renovate/all from d16f8cf5a3 to 79452f3b72 2024-10-14 02:28:51 +02:00 Compare
kjuulh force-pushed renovate/all from 79452f3b72 to 22de8fcad7 2024-10-14 06:28:37 +02:00 Compare
kjuulh force-pushed renovate/all from 22de8fcad7 to 56c43dd391 2024-10-15 02:28:31 +02:00 Compare
kjuulh force-pushed renovate/all from 56c43dd391 to c1799cefee 2024-10-15 06:28:33 +02:00 Compare
kjuulh force-pushed renovate/all from c1799cefee to d157b38ce7 2024-10-16 02:29:13 +02:00 Compare
kjuulh force-pushed renovate/all from d157b38ce7 to 05a4e78022 2024-10-16 06:30:27 +02:00 Compare
kjuulh force-pushed renovate/all from 05a4e78022 to ee81f55ba7 2024-10-17 02:36:00 +02:00 Compare
kjuulh force-pushed renovate/all from ee81f55ba7 to 47dcca8723 2024-10-17 06:31:26 +02:00 Compare
kjuulh force-pushed renovate/all from 47dcca8723 to b2a87a1586 2024-10-18 02:35:18 +02:00 Compare
kjuulh force-pushed renovate/all from b2a87a1586 to 68bb35fcba 2024-10-18 06:32:16 +02:00 Compare
kjuulh force-pushed renovate/all from 68bb35fcba to bbe01bb7da 2024-10-19 02:34:30 +02:00 Compare
kjuulh force-pushed renovate/all from bbe01bb7da to 9fc5d11240 2024-10-19 06:37:53 +02:00 Compare
kjuulh force-pushed renovate/all from 9fc5d11240 to 4b95f0d55f 2024-10-20 02:36:31 +02:00 Compare
kjuulh force-pushed renovate/all from 4b95f0d55f to 7ea77abc14 2024-10-20 06:32:24 +02:00 Compare
kjuulh force-pushed renovate/all from 7ea77abc14 to a5f8ac446d 2024-10-21 02:29:49 +02:00 Compare
kjuulh force-pushed renovate/all from a5f8ac446d to 88c7abde1b 2024-10-21 06:29:20 +02:00 Compare
kjuulh force-pushed renovate/all from 88c7abde1b to 634120fb7a 2024-10-22 02:31:18 +02:00 Compare
kjuulh force-pushed renovate/all from 634120fb7a to fd5bead72c 2024-10-22 06:30:57 +02:00 Compare
kjuulh force-pushed renovate/all from fd5bead72c to 2521ac6ba1 2024-10-23 02:38:44 +02:00 Compare
kjuulh force-pushed renovate/all from 2521ac6ba1 to 021ae91701 2024-10-29 02:36:56 +01:00 Compare
kjuulh force-pushed renovate/all from 021ae91701 to 020346aba6 2024-10-29 06:34:34 +01:00 Compare
kjuulh force-pushed renovate/all from 020346aba6 to 3cc21e2a14 2024-10-30 02:36:24 +01:00 Compare
kjuulh force-pushed renovate/all from 3cc21e2a14 to 6d86811b76 2024-10-30 06:32:32 +01:00 Compare
kjuulh force-pushed renovate/all from 6d86811b76 to 5ed77a2f89 2024-10-31 02:32:50 +01:00 Compare
kjuulh force-pushed renovate/all from 5ed77a2f89 to bbf44319f0 2024-10-31 06:33:02 +01:00 Compare
kjuulh force-pushed renovate/all from bbf44319f0 to eaf753b134 2024-11-01 02:37:27 +01:00 Compare
kjuulh force-pushed renovate/all from eaf753b134 to 80b06bbbae 2024-11-01 06:34:28 +01:00 Compare
kjuulh force-pushed renovate/all from 80b06bbbae to a8b8e0cf20 2024-11-02 02:35:10 +01:00 Compare
kjuulh force-pushed renovate/all from a8b8e0cf20 to 4dbf80dac3 2024-11-02 06:32:26 +01:00 Compare
kjuulh force-pushed renovate/all from 4dbf80dac3 to 6c47263e3c 2024-11-04 02:27:55 +01:00 Compare
kjuulh force-pushed renovate/all from 6c47263e3c to e397ad5ac5 2024-11-04 06:26:44 +01:00 Compare
kjuulh force-pushed renovate/all from e397ad5ac5 to 27e752a86a 2024-11-05 02:28:46 +01:00 Compare
kjuulh force-pushed renovate/all from 27e752a86a to 7014b4b664 2024-11-05 06:28:36 +01:00 Compare
kjuulh force-pushed renovate/all from 7014b4b664 to 2868c4028b 2024-11-06 02:26:33 +01:00 Compare
kjuulh force-pushed renovate/all from 2868c4028b to bc5ddb1165 2024-11-06 06:27:20 +01:00 Compare
kjuulh force-pushed renovate/all from bc5ddb1165 to fe170a7b58 2024-11-07 02:30:52 +01:00 Compare
kjuulh force-pushed renovate/all from fe170a7b58 to 97831c1e7f 2024-11-07 06:28:25 +01:00 Compare
kjuulh force-pushed renovate/all from 97831c1e7f to 212a85412a 2024-11-08 02:31:13 +01:00 Compare
kjuulh force-pushed renovate/all from 212a85412a to 1dadbab758 2024-11-17 06:31:21 +01:00 Compare
kjuulh force-pushed renovate/all from 1dadbab758 to 4d408c4b83 2024-11-18 02:28:35 +01:00 Compare
kjuulh force-pushed renovate/all from 4d408c4b83 to 1a85510cdd 2024-11-18 06:26:37 +01:00 Compare
kjuulh force-pushed renovate/all from 1a85510cdd to 6b323ca38f 2024-11-19 02:27:28 +01:00 Compare
kjuulh force-pushed renovate/all from 6b323ca38f to f52bcc9393 2024-11-19 06:26:38 +01:00 Compare
kjuulh force-pushed renovate/all from f52bcc9393 to 9aa08daeba 2024-11-20 02:28:46 +01:00 Compare
kjuulh force-pushed renovate/all from 9aa08daeba to 11caf088bc 2024-11-20 06:26:54 +01:00 Compare
kjuulh force-pushed renovate/all from 11caf088bc to c6aece75a4 2024-11-21 02:28:36 +01:00 Compare
kjuulh force-pushed renovate/all from c6aece75a4 to 7783017ba7 2024-11-21 06:26:30 +01:00 Compare
kjuulh force-pushed renovate/all from 7783017ba7 to a6c6236667 2024-11-22 02:32:26 +01:00 Compare
kjuulh force-pushed renovate/all from a6c6236667 to 319b2f8c97 2024-11-22 06:31:29 +01:00 Compare
kjuulh force-pushed renovate/all from 319b2f8c97 to abbc110051 2024-11-23 02:37:54 +01:00 Compare
kjuulh force-pushed renovate/all from abbc110051 to 6be91105f6 2024-12-04 02:43:05 +01:00 Compare
kjuulh force-pushed renovate/all from 6be91105f6 to 2222fb14c9 2024-12-04 06:34:50 +01:00 Compare
kjuulh force-pushed renovate/all from 2222fb14c9 to be73d7e7ee 2024-12-05 02:36:07 +01:00 Compare
kjuulh force-pushed renovate/all from be73d7e7ee to 2ab7823a17 2024-12-05 06:31:43 +01:00 Compare
kjuulh force-pushed renovate/all from 2ab7823a17 to 9edba12b54 2024-12-06 02:41:55 +01:00 Compare
kjuulh force-pushed renovate/all from 9edba12b54 to 0a37e7a5c1 2024-12-06 06:35:20 +01:00 Compare
kjuulh force-pushed renovate/all from 0a37e7a5c1 to 7843a921f5 2024-12-07 02:37:51 +01:00 Compare
kjuulh force-pushed renovate/all from 7843a921f5 to 32a4d9c3da 2024-12-07 06:32:49 +01:00 Compare
kjuulh force-pushed renovate/all from 32a4d9c3da to f9dbb47287 2024-12-08 02:30:57 +01:00 Compare
kjuulh force-pushed renovate/all from f9dbb47287 to 6209923608 2024-12-08 06:33:13 +01:00 Compare
kjuulh force-pushed renovate/all from 6209923608 to f44297c349 2024-12-09 02:32:00 +01:00 Compare
kjuulh force-pushed renovate/all from f44297c349 to 259b20a0cf 2024-12-10 02:34:06 +01:00 Compare
kjuulh force-pushed renovate/all from 259b20a0cf to 813cd2093d 2024-12-10 06:33:32 +01:00 Compare
kjuulh force-pushed renovate/all from 813cd2093d to ed47f8251a 2024-12-11 02:41:24 +01:00 Compare
kjuulh force-pushed renovate/all from ed47f8251a to 0309441a47 2024-12-11 06:31:28 +01:00 Compare
kjuulh force-pushed renovate/all from 0309441a47 to 39a6825a4a 2024-12-12 02:35:03 +01:00 Compare
kjuulh force-pushed renovate/all from 39a6825a4a to daedc4b289 2024-12-12 06:28:47 +01:00 Compare
kjuulh force-pushed renovate/all from daedc4b289 to 9f2f150fd1 2024-12-13 02:31:06 +01:00 Compare
kjuulh force-pushed renovate/all from 9f2f150fd1 to d297906c4a 2024-12-13 06:29:55 +01:00 Compare
kjuulh force-pushed renovate/all from d297906c4a to 2079889aaa 2024-12-14 02:30:05 +01:00 Compare
kjuulh force-pushed renovate/all from 2079889aaa to ea72db8862 2024-12-14 06:29:32 +01:00 Compare
kjuulh force-pushed renovate/all from ea72db8862 to bf2eb71f84 2024-12-15 02:28:33 +01:00 Compare
kjuulh force-pushed renovate/all from bf2eb71f84 to e148ef0986 2024-12-15 06:28:19 +01:00 Compare
kjuulh force-pushed renovate/all from e148ef0986 to 7db7391e29 2024-12-16 02:35:44 +01:00 Compare
kjuulh force-pushed renovate/all from 7db7391e29 to 2742bf2d18 2024-12-16 06:31:40 +01:00 Compare
kjuulh force-pushed renovate/all from 2742bf2d18 to dff0719ec2 2024-12-17 02:31:20 +01:00 Compare
kjuulh force-pushed renovate/all from dff0719ec2 to 62f3451493 2024-12-17 06:33:18 +01:00 Compare
kjuulh force-pushed renovate/all from 62f3451493 to 4579eeb7e4 2024-12-18 02:32:39 +01:00 Compare
kjuulh force-pushed renovate/all from 4579eeb7e4 to bbbaf5e201 2024-12-18 06:28:49 +01:00 Compare
kjuulh force-pushed renovate/all from bbbaf5e201 to 718b240cfc 2024-12-19 02:33:51 +01:00 Compare
kjuulh force-pushed renovate/all from 718b240cfc to 2046afb606 2024-12-19 06:28:58 +01:00 Compare
kjuulh force-pushed renovate/all from 2046afb606 to 6353018c81 2024-12-20 02:30:18 +01:00 Compare
kjuulh force-pushed renovate/all from 6353018c81 to bf90f0a21b 2024-12-20 06:30:56 +01:00 Compare
kjuulh force-pushed renovate/all from bf90f0a21b to cd638b9937 2024-12-21 02:32:59 +01:00 Compare
kjuulh force-pushed renovate/all from cd638b9937 to a79eec3070 2024-12-21 06:28:35 +01:00 Compare
kjuulh force-pushed renovate/all from a79eec3070 to 5a266b25a2 2024-12-22 02:31:53 +01:00 Compare
kjuulh force-pushed renovate/all from 5a266b25a2 to 8745bc3dc8 2024-12-22 06:29:26 +01:00 Compare
kjuulh force-pushed renovate/all from 8745bc3dc8 to f2d25d0454 2024-12-23 02:38:08 +01:00 Compare
kjuulh force-pushed renovate/all from f2d25d0454 to 926d7e028a 2024-12-23 06:40:11 +01:00 Compare
kjuulh force-pushed renovate/all from 926d7e028a to 734e2d626a 2024-12-24 02:41:16 +01:00 Compare
kjuulh force-pushed renovate/all from 734e2d626a to 77011b5a93 2024-12-24 06:28:48 +01:00 Compare
kjuulh force-pushed renovate/all from 77011b5a93 to 8f16a02e49 2024-12-25 02:34:54 +01:00 Compare
kjuulh force-pushed renovate/all from 8f16a02e49 to 2c088b9115 2024-12-25 06:30:34 +01:00 Compare
kjuulh force-pushed renovate/all from 2c088b9115 to 677df95e38 2024-12-26 02:32:24 +01:00 Compare
kjuulh force-pushed renovate/all from 677df95e38 to bf84a4f30a 2024-12-26 06:31:40 +01:00 Compare
kjuulh force-pushed renovate/all from bf84a4f30a to 001f51e314 2024-12-27 02:30:20 +01:00 Compare
kjuulh force-pushed renovate/all from 001f51e314 to feebadac39 2024-12-27 06:28:00 +01:00 Compare
kjuulh force-pushed renovate/all from feebadac39 to eddb58c48a 2024-12-28 02:36:03 +01:00 Compare
kjuulh force-pushed renovate/all from eddb58c48a to 6c5c2dc650 2024-12-28 06:31:17 +01:00 Compare
kjuulh force-pushed renovate/all from 6c5c2dc650 to 2c38179751 2024-12-29 02:37:08 +01:00 Compare
kjuulh force-pushed renovate/all from 2c38179751 to 27091d493b 2024-12-29 06:28:35 +01:00 Compare
kjuulh force-pushed renovate/all from 27091d493b to c7a64e0fbc 2024-12-30 02:30:04 +01:00 Compare
kjuulh force-pushed renovate/all from c7a64e0fbc to fa24602610 2024-12-30 06:29:40 +01:00 Compare
kjuulh force-pushed renovate/all from fa24602610 to 3d2be17b3d 2024-12-31 02:31:50 +01:00 Compare
kjuulh force-pushed renovate/all from 3d2be17b3d to e241b68dd1 2024-12-31 06:31:54 +01:00 Compare
kjuulh force-pushed renovate/all from e241b68dd1 to 8d02bb47fb 2025-01-01 02:33:19 +01:00 Compare
kjuulh force-pushed renovate/all from 8d02bb47fb to a3ca06a511 2025-01-01 06:31:36 +01:00 Compare
kjuulh force-pushed renovate/all from a3ca06a511 to 7ab4d6b9b6 2025-01-02 02:31:55 +01:00 Compare
kjuulh force-pushed renovate/all from 7ab4d6b9b6 to 8ecd27c7e3 2025-01-02 06:28:31 +01:00 Compare
kjuulh force-pushed renovate/all from 8ecd27c7e3 to fec174f19c 2025-01-03 02:28:41 +01:00 Compare
kjuulh force-pushed renovate/all from fec174f19c to 617d0190dd 2025-01-03 06:31:57 +01:00 Compare
kjuulh force-pushed renovate/all from 617d0190dd to 036bfb7d3b 2025-01-04 02:32:02 +01:00 Compare
kjuulh force-pushed renovate/all from 036bfb7d3b to 0b35ce8c2b 2025-01-04 06:31:02 +01:00 Compare
kjuulh force-pushed renovate/all from 0b35ce8c2b to 08cd608ea6 2025-01-05 02:35:47 +01:00 Compare
kjuulh force-pushed renovate/all from 08cd608ea6 to 2ef03f535b 2025-01-05 06:29:40 +01:00 Compare
kjuulh force-pushed renovate/all from 2ef03f535b to 18939072f0 2025-01-06 02:28:30 +01:00 Compare
kjuulh force-pushed renovate/all from 18939072f0 to b2f65d68cb 2025-01-06 06:28:38 +01:00 Compare
kjuulh force-pushed renovate/all from b2f65d68cb to 17c74fa138 2025-01-07 02:34:38 +01:00 Compare
kjuulh force-pushed renovate/all from 17c74fa138 to 97d97f5af0 2025-01-07 06:30:48 +01:00 Compare
kjuulh force-pushed renovate/all from 97d97f5af0 to 2af50a8829 2025-01-08 02:32:06 +01:00 Compare
kjuulh force-pushed renovate/all from 2af50a8829 to c4710e0b40 2025-01-08 06:32:05 +01:00 Compare
kjuulh force-pushed renovate/all from c4710e0b40 to 0a5f29dcab 2025-01-09 02:36:05 +01:00 Compare
kjuulh force-pushed renovate/all from 0a5f29dcab to e3e89f453f 2025-01-10 06:32:28 +01:00 Compare
kjuulh force-pushed renovate/all from e3e89f453f to 6ae59880bd 2025-01-11 02:32:02 +01:00 Compare
kjuulh force-pushed renovate/all from 6ae59880bd to 8e69e42e7e 2025-01-11 06:32:18 +01:00 Compare
kjuulh force-pushed renovate/all from 8e69e42e7e to 2b970258de 2025-01-12 02:34:03 +01:00 Compare
kjuulh force-pushed renovate/all from 2b970258de to 3407e07c1d 2025-01-12 06:32:45 +01:00 Compare
kjuulh force-pushed renovate/all from 3407e07c1d to f27f9cecf4 2025-01-13 02:36:45 +01:00 Compare
kjuulh force-pushed renovate/all from f27f9cecf4 to b23290250c 2025-01-13 06:34:37 +01:00 Compare
kjuulh force-pushed renovate/all from b23290250c to bd4d380bb6 2025-01-14 02:33:51 +01:00 Compare
kjuulh force-pushed renovate/all from bd4d380bb6 to 2f5bfebf9f 2025-01-14 06:33:15 +01:00 Compare
kjuulh force-pushed renovate/all from 2f5bfebf9f to e133ce57c2 2025-01-15 02:43:41 +01:00 Compare
kjuulh force-pushed renovate/all from e133ce57c2 to 6fab8e94ce 2025-01-19 02:38:49 +01:00 Compare
kjuulh force-pushed renovate/all from 6fab8e94ce to 1a2b72b6cb 2025-01-19 06:36:05 +01:00 Compare
kjuulh force-pushed renovate/all from 1a2b72b6cb to b83d553b1b 2025-01-20 02:37:28 +01:00 Compare
kjuulh force-pushed renovate/all from b83d553b1b to ba96312dc6 2025-01-20 06:36:03 +01:00 Compare
kjuulh force-pushed renovate/all from ba96312dc6 to fb207d3c51 2025-01-21 02:37:55 +01:00 Compare
kjuulh force-pushed renovate/all from fb207d3c51 to 9ef99c07f8 2025-01-21 06:40:04 +01:00 Compare
kjuulh force-pushed renovate/all from 9ef99c07f8 to c4efcdbf04 2025-01-29 02:43:22 +01:00 Compare
kjuulh force-pushed renovate/all from c4efcdbf04 to 8e8e2a0c40 2025-01-29 06:41:04 +01:00 Compare
kjuulh force-pushed renovate/all from 8e8e2a0c40 to 29aa2d56c6 2025-01-30 02:44:23 +01:00 Compare
kjuulh force-pushed renovate/all from 29aa2d56c6 to 1f7d1add43 2025-01-30 06:46:17 +01:00 Compare
kjuulh force-pushed renovate/all from 1f7d1add43 to 128ec5a9a6 2025-01-31 02:40:45 +01:00 Compare
kjuulh force-pushed renovate/all from 128ec5a9a6 to 88aefd0695 2025-01-31 06:38:09 +01:00 Compare
kjuulh force-pushed renovate/all from 88aefd0695 to 5932777f20 2025-02-01 02:37:52 +01:00 Compare
kjuulh force-pushed renovate/all from 5932777f20 to be086ab231 2025-02-01 06:39:44 +01:00 Compare
kjuulh force-pushed renovate/all from be086ab231 to dad3dc5383 2025-02-02 02:39:09 +01:00 Compare
kjuulh force-pushed renovate/all from dad3dc5383 to 139b88cea6 2025-02-02 06:35:56 +01:00 Compare
kjuulh force-pushed renovate/all from 139b88cea6 to 79c032ad02 2025-02-03 02:36:55 +01:00 Compare
kjuulh force-pushed renovate/all from 79c032ad02 to 04aa5cbea6 2025-02-03 06:35:51 +01:00 Compare
kjuulh force-pushed renovate/all from 04aa5cbea6 to 4765746468 2025-02-04 02:40:41 +01:00 Compare
kjuulh force-pushed renovate/all from 4765746468 to 17d5f59083 2025-02-04 06:39:17 +01:00 Compare
kjuulh force-pushed renovate/all from 17d5f59083 to 0e95583d41 2025-02-05 02:39:14 +01:00 Compare
kjuulh force-pushed renovate/all from 0e95583d41 to 02895a174d 2025-02-05 06:42:06 +01:00 Compare
kjuulh force-pushed renovate/all from 02895a174d to 6b040c05a8 2025-02-06 02:39:59 +01:00 Compare
kjuulh force-pushed renovate/all from 6b040c05a8 to 5c00f67eeb 2025-02-06 06:36:53 +01:00 Compare
kjuulh force-pushed renovate/all from 5c00f67eeb to 11d3f133d3 2025-02-07 02:37:31 +01:00 Compare
kjuulh force-pushed renovate/all from 11d3f133d3 to f39011318f 2025-02-07 06:35:33 +01:00 Compare
kjuulh force-pushed renovate/all from f39011318f to 7aa6317067 2025-02-08 02:39:50 +01:00 Compare
kjuulh force-pushed renovate/all from 7aa6317067 to b89f78f9b7 2025-02-08 06:36:07 +01:00 Compare
kjuulh force-pushed renovate/all from b89f78f9b7 to 904841d26f 2025-02-09 02:38:19 +01:00 Compare
kjuulh force-pushed renovate/all from 904841d26f to 19b3d14ab3 2025-02-09 06:36:27 +01:00 Compare
kjuulh force-pushed renovate/all from 19b3d14ab3 to b58592aed5 2025-02-10 02:37:57 +01:00 Compare
kjuulh force-pushed renovate/all from b58592aed5 to e37cba0f02 2025-02-10 06:36:43 +01:00 Compare
kjuulh force-pushed renovate/all from e37cba0f02 to 73e41e9a2b 2025-02-11 02:40:07 +01:00 Compare
kjuulh force-pushed renovate/all from 73e41e9a2b to 29fe373078 2025-02-11 06:38:25 +01:00 Compare
kjuulh force-pushed renovate/all from 29fe373078 to bdb99ea2ab 2025-02-12 02:42:51 +01:00 Compare
kjuulh force-pushed renovate/all from bdb99ea2ab to 8b6f896ed6 2025-02-12 06:39:34 +01:00 Compare
kjuulh force-pushed renovate/all from 8b6f896ed6 to ad4e5579f8 2025-02-13 02:37:56 +01:00 Compare
kjuulh force-pushed renovate/all from ad4e5579f8 to aef0aef319 2025-02-13 06:35:48 +01:00 Compare
kjuulh force-pushed renovate/all from aef0aef319 to aca2f0af52 2025-02-14 02:36:59 +01:00 Compare
kjuulh force-pushed renovate/all from aca2f0af52 to db69773bef 2025-02-14 06:34:48 +01:00 Compare
kjuulh force-pushed renovate/all from db69773bef to 6d15ff4f8e 2025-02-15 02:35:50 +01:00 Compare
kjuulh force-pushed renovate/all from 6d15ff4f8e to 34e9e5b057 2025-02-15 06:34:08 +01:00 Compare
kjuulh force-pushed renovate/all from 34e9e5b057 to 62efebf573 2025-02-16 02:35:23 +01:00 Compare
kjuulh force-pushed renovate/all from 62efebf573 to c458c29823 2025-02-16 06:32:48 +01:00 Compare
kjuulh force-pushed renovate/all from c458c29823 to 425151614c 2025-02-17 02:37:04 +01:00 Compare
kjuulh force-pushed renovate/all from 425151614c to c718a113d7 2025-02-17 06:34:52 +01:00 Compare
kjuulh force-pushed renovate/all from c718a113d7 to 62f189a322 2025-02-18 02:41:10 +01:00 Compare
kjuulh force-pushed renovate/all from 62f189a322 to 54f0fb5b43 2025-02-18 06:38:22 +01:00 Compare
kjuulh force-pushed renovate/all from 54f0fb5b43 to a4c015902a 2025-02-19 02:36:59 +01:00 Compare
kjuulh force-pushed renovate/all from a4c015902a to b573c2f422 2025-02-19 06:34:59 +01:00 Compare
kjuulh force-pushed renovate/all from b573c2f422 to 898d65ccc3 2025-02-20 02:43:31 +01:00 Compare
kjuulh force-pushed renovate/all from 898d65ccc3 to 7d3977bc60 2025-02-20 06:40:46 +01:00 Compare
kjuulh force-pushed renovate/all from 7d3977bc60 to b89fc80a5a 2025-02-21 02:42:54 +01:00 Compare
kjuulh force-pushed renovate/all from b89fc80a5a to 65cd1e310c 2025-02-21 06:35:07 +01:00 Compare
kjuulh force-pushed renovate/all from 65cd1e310c to 1f7a20c2b2 2025-02-22 02:36:42 +01:00 Compare
kjuulh force-pushed renovate/all from 1f7a20c2b2 to 3e4635cd23 2025-02-22 06:38:59 +01:00 Compare
kjuulh force-pushed renovate/all from 3e4635cd23 to 41f9d94eff 2025-02-23 02:36:53 +01:00 Compare
kjuulh force-pushed renovate/all from 41f9d94eff to 4f95be0635 2025-02-23 06:38:10 +01:00 Compare
kjuulh force-pushed renovate/all from 4f95be0635 to 23e9627703 2025-02-24 02:37:57 +01:00 Compare
kjuulh force-pushed renovate/all from 23e9627703 to 2b944103af 2025-02-24 06:35:53 +01:00 Compare
kjuulh force-pushed renovate/all from 2b944103af to 21fb491a05 2025-02-25 02:40:12 +01:00 Compare
kjuulh force-pushed renovate/all from 21fb491a05 to f8e7c81a02 2025-02-25 06:38:50 +01:00 Compare
kjuulh force-pushed renovate/all from f8e7c81a02 to 5f8cca454d 2025-02-26 02:37:50 +01:00 Compare
kjuulh force-pushed renovate/all from 5f8cca454d to 88e56ae04a 2025-02-26 06:37:19 +01:00 Compare
kjuulh force-pushed renovate/all from 88e56ae04a to a1747800d5 2025-02-27 02:43:09 +01:00 Compare
kjuulh force-pushed renovate/all from a1747800d5 to 27a87f9b0c 2025-02-27 06:39:34 +01:00 Compare
kjuulh force-pushed renovate/all from 27a87f9b0c to b45a6e4de5 2025-02-28 02:43:17 +01:00 Compare
kjuulh force-pushed renovate/all from b45a6e4de5 to 8b2eda0d95 2025-02-28 06:38:46 +01:00 Compare
kjuulh force-pushed renovate/all from 8b2eda0d95 to 793b6dac8a 2025-03-01 02:39:30 +01:00 Compare
kjuulh force-pushed renovate/all from 793b6dac8a to ecb6fcf4a3 2025-03-01 06:36:56 +01:00 Compare
kjuulh force-pushed renovate/all from ecb6fcf4a3 to 834c1dc549 2025-03-02 02:37:57 +01:00 Compare
kjuulh force-pushed renovate/all from 834c1dc549 to df7d8287d6 2025-03-02 06:53:54 +01:00 Compare
kjuulh force-pushed renovate/all from df7d8287d6 to 40d77c82e9 2025-03-03 02:36:22 +01:00 Compare
kjuulh force-pushed renovate/all from 40d77c82e9 to 7adec3ca8a 2025-03-03 06:38:56 +01:00 Compare
kjuulh force-pushed renovate/all from 7adec3ca8a to 5628739b72 2025-03-04 02:45:13 +01:00 Compare
kjuulh force-pushed renovate/all from 5628739b72 to bd31f09939 2025-03-04 06:42:57 +01:00 Compare
kjuulh force-pushed renovate/all from bd31f09939 to f3f501dd88 2025-03-05 02:40:06 +01:00 Compare
kjuulh force-pushed renovate/all from f3f501dd88 to 2ad60b4516 2025-03-05 06:37:58 +01:00 Compare
kjuulh force-pushed renovate/all from 2ad60b4516 to 0b65451731 2025-03-06 02:41:11 +01:00 Compare
kjuulh force-pushed renovate/all from 0b65451731 to ad75f597b3 2025-03-06 06:39:39 +01:00 Compare
kjuulh force-pushed renovate/all from ad75f597b3 to 5fa6f17a1b 2025-03-25 23:56:18 +01:00 Compare
kjuulh force-pushed renovate/all from 5fa6f17a1b to 4c986e8752 2025-04-06 02:26:26 +02:00 Compare
kjuulh force-pushed renovate/all from 4c986e8752 to 60f077d73b 2025-04-06 05:26:47 +02:00 Compare
kjuulh force-pushed renovate/all from 60f077d73b to ca25cdad89 2025-04-07 02:26:02 +02:00 Compare
kjuulh force-pushed renovate/all from ca25cdad89 to 4c44c1db4d 2025-04-07 05:24:21 +02:00 Compare
kjuulh force-pushed renovate/all from 4c44c1db4d to 9fa64899b7 2025-04-08 02:25:38 +02:00 Compare
kjuulh force-pushed renovate/all from 9fa64899b7 to e14cca0a09 2025-04-08 05:25:18 +02:00 Compare
kjuulh force-pushed renovate/all from e14cca0a09 to 72fe774c4b 2025-04-09 02:25:52 +02:00 Compare
kjuulh force-pushed renovate/all from 72fe774c4b to 610eecbd96 2025-04-09 05:24:38 +02:00 Compare
kjuulh force-pushed renovate/all from 610eecbd96 to 0b5d091677 2025-04-10 02:26:25 +02:00 Compare
kjuulh force-pushed renovate/all from 0b5d091677 to 5d66f85527 2025-04-10 05:24:53 +02:00 Compare
kjuulh force-pushed renovate/all from 5d66f85527 to 663ecb0737 2025-04-11 02:26:01 +02:00 Compare
kjuulh force-pushed renovate/all from 663ecb0737 to eb3fd882a4 2025-04-11 05:25:18 +02:00 Compare
kjuulh force-pushed renovate/all from eb3fd882a4 to 0f584b6666 2025-04-12 02:29:03 +02:00 Compare
kjuulh force-pushed renovate/all from 0f584b6666 to 54d3d677d0 2025-04-12 05:26:27 +02:00 Compare
kjuulh force-pushed renovate/all from 54d3d677d0 to 9fb999a91b 2025-04-13 02:27:13 +02:00 Compare
kjuulh force-pushed renovate/all from 9fb999a91b to 3c85975331 2025-04-13 05:25:41 +02:00 Compare
kjuulh force-pushed renovate/all from 3c85975331 to 3f594771b5 2025-04-14 02:25:15 +02:00 Compare
kjuulh force-pushed renovate/all from 3f594771b5 to 229a5bf51e 2025-04-14 05:26:56 +02:00 Compare
kjuulh force-pushed renovate/all from 229a5bf51e to 66f9cd81c6 2025-04-15 02:29:30 +02:00 Compare
kjuulh force-pushed renovate/all from 66f9cd81c6 to 9d3e26bba8 2025-04-15 05:25:13 +02:00 Compare
This pull request can be merged automatically.
You are not authorized to merge this pull request.

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/all:renovate/all
git checkout renovate/all
Sign in to join this conversation.
No Reviewers
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: kjuulh/gitea-rs#3
No description provided.