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.9
serde_json dependencies patch 1.0.125 -> 1.0.132
tokio (source) workspace.dependencies minor 1.39.3 -> 1.41.1
url dependencies patch 2.5.2 -> 2.5.3
uuid dependencies minor 1.10.0 -> 1.11.0

Release Notes

seanmonstar/reqwest (reqwest)

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.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)
tokio-rs/tokio (tokio)

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.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.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 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 | |---|---|---|---| | [reqwest](https://github.com/seanmonstar/reqwest) | dependencies | patch | `0.12.7` -> `0.12.9` | | [serde_json](https://github.com/serde-rs/json) | dependencies | patch | `1.0.125` -> `1.0.132` | | [tokio](https://tokio.rs) ([source](https://github.com/tokio-rs/tokio)) | workspace.dependencies | minor | `1.39.3` -> `1.41.1` | | [url](https://github.com/servo/rust-url) | dependencies | patch | `2.5.2` -> `2.5.3` | | [uuid](https://github.com/uuid-rs/uuid) | dependencies | minor | `1.10.0` -> `1.11.0` | --- ### Release Notes <details> <summary>seanmonstar/reqwest (reqwest)</summary> ### [`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.132`](https://github.com/serde-rs/json/releases/tag/1.0.132) [Compare Source](https://github.com/serde-rs/json/compare/1.0.131...1.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/1.0.131) [Compare Source](https://github.com/serde-rs/json/compare/1.0.130...1.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/1.0.130) [Compare Source](https://github.com/serde-rs/json/compare/1.0.129...1.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/1.0.129) [Compare Source](https://github.com/serde-rs/json/compare/1.0.128...1.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/1.0.128) [Compare Source](https://github.com/serde-rs/json/compare/1.0.127...1.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/1.0.127) [Compare Source](https://github.com/serde-rs/json/compare/1.0.126...1.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/1.0.126) [Compare Source](https://github.com/serde-rs/json/compare/1.0.125...1.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>tokio-rs/tokio (tokio)</summary> ### [`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.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.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 becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MjQuMyIsInVwZGF0ZWRJblZlciI6IjM3LjQyNC4zIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
kjuulh added 1 commit 2024-08-23 22:39:47 +02:00
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
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
No Milestone
No project
No Assignees
1 Participants
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: kjuulh/gitea-rs#3
No description provided.