chore(deps): update all dependencies #82

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

This PR contains the following updates:

Package Type Update Change
async-trait workspace.dependencies patch 0.1.81 -> 0.1.83
clap dependencies patch 4.5.16 -> 4.5.21
github.com/bitfield/script require minor v0.22.1 -> v0.23.0
octocrab dependencies minor 0.39.0 -> 0.42.0
reqwest dependencies patch 0.12.7 -> 0.12.9
serde_json dependencies patch 1.0.125 -> 1.0.133
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

dtolnay/async-trait (async-trait)

v0.1.83

Compare Source

  • Prevent needless_arbitrary_self_type lint being produced in generated code (#​278)

v0.1.82

Compare Source

  • Prevent elided_named_lifetimes lint being produced in generated code (#​276)
clap-rs/clap (clap)

v4.5.21

Compare Source

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

v4.5.20

Compare Source

Features
  • (unstable) Add CommandExt

v4.5.19

Compare Source

Internal
  • Update dependencies

v4.5.18

Compare Source

Features
  • (builder) Expose Arg::get_display_order and Command::get_display_order

v4.5.17

Compare Source

Fixes
  • (help) Style required argument groups
  • (derive) Improve error messages when unsupported fields are used
bitfield/script (github.com/bitfield/script)

v0.23.0

Compare Source

XAMPPRocky/octocrab (octocrab)

v0.42.0

Compare Source

Added
  • added ssh_signing_keys ops (#​725)
Other
  • Secrets and Code scanning alerts API (#​730)
  • add support for custom executors (#​728)
  • Fixup route in api/issues/update (#​732)

v0.41.2

Compare Source

Fixed
  • Removed rustls hard-dependency (#​709)
  • crate build issues with stream feature (#​711)
Other
  • Update tower dependency from 0.4.13 to 0.5.1 (#​722)
  • added user's social accounts operations (/user/social_accounts) (#​723)
  • added auth.user's git_ssh_keys operations (#​719)
  • Remove --verbose (#​716)

v0.41.1

Compare Source

Fixed
  • don't capture backtraces by default (#​710)
Other
  • added user's gpg_keys operations (#​717)
  • Secrecy dependency update from 0.8.0 to 0.10.3 (#​718)
  • Added handlers for Repo Dependabot API (#​714)
  • #​552 (emails, public_emails, visibility) (#​712)
  • make some fields to public (#​708)
  • Implement some style improvements (#​698)

v0.41.0

Compare Source

Added
  • Implement getting users and reopos by their respective IDs (#​690)
Fixed
  • (installation) [breaking] Return Result instead of panicking in Octocrab::installation (#​687)
Other
  • Update tower-http requirement from 0.5.1 to 0.6.1 (#​701)
  • add additional webhook model fields (#​696)
  • Bump hyper-rustls version. (#​699)

v0.40.0

Compare Source

Added
  • Support remove_assignees on issue API (#​686)
  • add missing fields in CreateForkBuilder (#​682)
  • Add Gist::public field (#​678)
Fixed
  • (refs) [breaking] remove Reference::Commit variant (#​697)
Other
  • Fix typo in cfg_attr statement (#​693)
  • Handle empty author object in pr_commits (#​656)
  • Add DeviceCodes::poll_until_available method (#​679)
  • Uncomment pr_commits function (#​680)
  • Only add base_path if req_pandq does not contain it (#​684)
  • Update code scanning alert (#​673)
  • Added merged_by and closed_by fields (#​674)
  • Update and Fixes to the Code Scanning Models & Webhooks (#​675)
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.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)
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 | |---|---|---|---| | [async-trait](https://github.com/dtolnay/async-trait) | workspace.dependencies | patch | `0.1.81` -> `0.1.83` | | [clap](https://github.com/clap-rs/clap) | dependencies | patch | `4.5.16` -> `4.5.21` | | [github.com/bitfield/script](https://github.com/bitfield/script) | require | minor | `v0.22.1` -> `v0.23.0` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | dependencies | minor | `0.39.0` -> `0.42.0` | | [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.133` | | [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>dtolnay/async-trait (async-trait)</summary> ### [`v0.1.83`](https://github.com/dtolnay/async-trait/releases/tag/0.1.83) [Compare Source](https://github.com/dtolnay/async-trait/compare/0.1.82...0.1.83) - Prevent needless_arbitrary_self_type lint being produced in generated code ([#&#8203;278](https://github.com/dtolnay/async-trait/issues/278)) ### [`v0.1.82`](https://github.com/dtolnay/async-trait/releases/tag/0.1.82) [Compare Source](https://github.com/dtolnay/async-trait/compare/0.1.81...0.1.82) - Prevent elided_named_lifetimes lint being produced in generated code ([#&#8203;276](https://github.com/dtolnay/async-trait/issues/276)) </details> <details> <summary>clap-rs/clap (clap)</summary> ### [`v4.5.21`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4521---2024-11-13) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.20...v4.5.21) ##### Fixes - *(parser)* Ensure defaults are filled in on error with `ignore_errors(true)` ### [`v4.5.20`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4520---2024-10-08) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.19...v4.5.20) ##### Features - *(unstable)* Add `CommandExt` ### [`v4.5.19`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4519---2024-10-01) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.18...v4.5.19) ##### Internal - Update dependencies ### [`v4.5.18`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4518---2024-09-20) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.17...v4.5.18) ##### Features - *(builder)* Expose `Arg::get_display_order` and `Command::get_display_order` ### [`v4.5.17`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4517---2024-09-04) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.16...v4.5.17) ##### Fixes - *(help)* Style required argument groups - *(derive)* Improve error messages when unsupported fields are used </details> <details> <summary>bitfield/script (github.com/bitfield/script)</summary> ### [`v0.23.0`](https://github.com/bitfield/script/compare/v0.22.1...v0.23.0) [Compare Source](https://github.com/bitfield/script/compare/v0.22.1...v0.23.0) </details> <details> <summary>XAMPPRocky/octocrab (octocrab)</summary> ### [`v0.42.0`](https://github.com/XAMPPRocky/octocrab/blob/HEAD/CHANGELOG.md#0420---2024-11-13) [Compare Source](https://github.com/XAMPPRocky/octocrab/compare/v0.41.2...v0.42.0) ##### Added - added ssh_signing_keys ops ([#&#8203;725](https://github.com/XAMPPRocky/octocrab/pull/725)) ##### Other - Secrets and Code scanning alerts API ([#&#8203;730](https://github.com/XAMPPRocky/octocrab/pull/730)) - add support for custom executors ([#&#8203;728](https://github.com/XAMPPRocky/octocrab/pull/728)) - Fixup route in api/issues/update ([#&#8203;732](https://github.com/XAMPPRocky/octocrab/pull/732)) ### [`v0.41.2`](https://github.com/XAMPPRocky/octocrab/blob/HEAD/CHANGELOG.md#0412---2024-10-15) [Compare Source](https://github.com/XAMPPRocky/octocrab/compare/v0.41.1...v0.41.2) ##### Fixed - Removed rustls hard-dependency ([#&#8203;709](https://github.com/XAMPPRocky/octocrab/pull/709)) - crate build issues with `stream` feature ([#&#8203;711](https://github.com/XAMPPRocky/octocrab/pull/711)) ##### Other - Update tower dependency from 0.4.13 to 0.5.1 ([#&#8203;722](https://github.com/XAMPPRocky/octocrab/pull/722)) - added user's social accounts operations (/user/social_accounts) ([#&#8203;723](https://github.com/XAMPPRocky/octocrab/pull/723)) - added auth.user's git_ssh_keys operations ([#&#8203;719](https://github.com/XAMPPRocky/octocrab/pull/719)) - Remove --verbose ([#&#8203;716](https://github.com/XAMPPRocky/octocrab/pull/716)) ### [`v0.41.1`](https://github.com/XAMPPRocky/octocrab/blob/HEAD/CHANGELOG.md#0411---2024-10-10) [Compare Source](https://github.com/XAMPPRocky/octocrab/compare/v0.41.0...v0.41.1) ##### Fixed - don't capture backtraces by default ([#&#8203;710](https://github.com/XAMPPRocky/octocrab/pull/710)) ##### Other - added user's gpg_keys operations ([#&#8203;717](https://github.com/XAMPPRocky/octocrab/pull/717)) - Secrecy dependency update from 0.8.0 to 0.10.3 ([#&#8203;718](https://github.com/XAMPPRocky/octocrab/pull/718)) - Added handlers for Repo Dependabot API ([#&#8203;714](https://github.com/XAMPPRocky/octocrab/pull/714)) - [#&#8203;552](https://github.com/XAMPPRocky/octocrab/pull/552) (emails, public_emails, visibility) ([#&#8203;712](https://github.com/XAMPPRocky/octocrab/pull/712)) - make some fields to public ([#&#8203;708](https://github.com/XAMPPRocky/octocrab/pull/708)) - Implement some style improvements ([#&#8203;698](https://github.com/XAMPPRocky/octocrab/pull/698)) ### [`v0.41.0`](https://github.com/XAMPPRocky/octocrab/blob/HEAD/CHANGELOG.md#0410---2024-09-30) [Compare Source](https://github.com/XAMPPRocky/octocrab/compare/v0.40.0...v0.41.0) ##### Added - Implement getting users and reopos by their respective IDs ([#&#8203;690](https://github.com/XAMPPRocky/octocrab/pull/690)) ##### Fixed - *(installation)* \[**breaking**] Return Result instead of panicking in `Octocrab::installation` ([#&#8203;687](https://github.com/XAMPPRocky/octocrab/pull/687)) ##### Other - Update tower-http requirement from 0.5.1 to 0.6.1 ([#&#8203;701](https://github.com/XAMPPRocky/octocrab/pull/701)) - add additional webhook model fields ([#&#8203;696](https://github.com/XAMPPRocky/octocrab/pull/696)) - Bump hyper-rustls version. ([#&#8203;699](https://github.com/XAMPPRocky/octocrab/pull/699)) ### [`v0.40.0`](https://github.com/XAMPPRocky/octocrab/blob/HEAD/CHANGELOG.md#0400---2024-09-22) [Compare Source](https://github.com/XAMPPRocky/octocrab/compare/v0.39.0...v0.40.0) ##### Added - Support `remove_assignees` on issue API ([#&#8203;686](https://github.com/XAMPPRocky/octocrab/pull/686)) - add missing fields in `CreateForkBuilder` ([#&#8203;682](https://github.com/XAMPPRocky/octocrab/pull/682)) - Add `Gist::public` field ([#&#8203;678](https://github.com/XAMPPRocky/octocrab/pull/678)) ##### Fixed - *(refs)* \[**breaking**] remove `Reference::Commit` variant ([#&#8203;697](https://github.com/XAMPPRocky/octocrab/pull/697)) ##### Other - Fix typo in cfg_attr statement ([#&#8203;693](https://github.com/XAMPPRocky/octocrab/pull/693)) - Handle empty author object in pr_commits ([#&#8203;656](https://github.com/XAMPPRocky/octocrab/pull/656)) - Add `DeviceCodes::poll_until_available` method ([#&#8203;679](https://github.com/XAMPPRocky/octocrab/pull/679)) - Uncomment pr_commits function ([#&#8203;680](https://github.com/XAMPPRocky/octocrab/pull/680)) - Only add base_path if req_pandq does not contain it ([#&#8203;684](https://github.com/XAMPPRocky/octocrab/pull/684)) - Update code scanning alert ([#&#8203;673](https://github.com/XAMPPRocky/octocrab/pull/673)) - Added `merged_by` and `closed_by` fields ([#&#8203;674](https://github.com/XAMPPRocky/octocrab/pull/674)) - Update and Fixes to the Code Scanning Models & Webhooks ([#&#8203;675](https://github.com/XAMPPRocky/octocrab/pull/675)) </details> <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.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>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:10:19 +02:00
fix(deps): update rust crate serde_json to v1.0.126
Some checks failed
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is failing
f258030a1e
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:28:17 +02:00
kjuulh force-pushed renovate/all from f258030a1e to d4d24cc967 2024-08-23 23:28:18 +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:37:14 +02:00
kjuulh force-pushed renovate/all from d4d24cc967 to f40f261654 2024-08-30 10:37:16 +02:00 Compare
kjuulh force-pushed renovate/all from f40f261654 to 0982ecfa06 2024-08-30 11:19:57 +02:00 Compare
kjuulh force-pushed renovate/all from 0982ecfa06 to 1cbe15523a 2024-08-30 11:59:10 +02:00 Compare
kjuulh force-pushed renovate/all from 1cbe15523a to 0500fc982c 2024-08-30 12:42:09 +02:00 Compare
kjuulh force-pushed renovate/all from 0500fc982c to 4c70cca44e 2024-08-30 13:27:59 +02:00 Compare
kjuulh force-pushed renovate/all from 4c70cca44e to 3983a01454 2024-08-30 14:04:50 +02:00 Compare
kjuulh force-pushed renovate/all from 3983a01454 to 0529876ec5 2024-08-30 14:42:26 +02:00 Compare
kjuulh force-pushed renovate/all from 0529876ec5 to c64569a7ba 2024-08-30 15:18:40 +02:00 Compare
kjuulh force-pushed renovate/all from c64569a7ba to d256582e93 2024-08-30 15:55:45 +02:00 Compare
kjuulh force-pushed renovate/all from d256582e93 to b599608fe5 2024-08-30 16:32:14 +02:00 Compare
kjuulh force-pushed renovate/all from b599608fe5 to b29f940af7 2024-08-30 17:08:24 +02:00 Compare
kjuulh force-pushed renovate/all from b29f940af7 to 2d949f2044 2024-08-30 17:44:11 +02:00 Compare
kjuulh force-pushed renovate/all from 2d949f2044 to 5b994f9055 2024-08-30 18:38:34 +02:00 Compare
kjuulh force-pushed renovate/all from 5b994f9055 to c4111d7175 2024-08-30 19:18:30 +02:00 Compare
kjuulh force-pushed renovate/all from c4111d7175 to 79b6147bbd 2024-08-30 19:55:18 +02:00 Compare
kjuulh force-pushed renovate/all from 79b6147bbd to a58ae4f1f6 2024-08-31 02:42:51 +02:00 Compare
kjuulh force-pushed renovate/all from a58ae4f1f6 to 3b3bc33310 2024-08-31 06:40:49 +02:00 Compare
kjuulh force-pushed renovate/all from 3b3bc33310 to c78fcf7bac 2024-09-01 02:41:59 +02:00 Compare
kjuulh force-pushed renovate/all from c78fcf7bac to a8213c6a2f 2024-09-01 06:40:32 +02:00 Compare
kjuulh force-pushed renovate/all from a8213c6a2f to 75129b7b28 2024-09-02 02:42:57 +02:00 Compare
kjuulh changed title from fix(deps): update all dependencies to chore(deps): update all dependencies 2024-09-02 06:41:17 +02:00
kjuulh force-pushed renovate/all from 75129b7b28 to 143e1d56db 2024-09-02 06:41:18 +02:00 Compare
kjuulh force-pushed renovate/all from 143e1d56db to f4fdb616c4 2024-09-03 02:43:02 +02:00 Compare
kjuulh force-pushed renovate/all from f4fdb616c4 to 336d031529 2024-09-03 06:40:46 +02:00 Compare
kjuulh force-pushed renovate/all from 336d031529 to 0e4499a0cf 2024-09-04 02:43:09 +02:00 Compare
kjuulh force-pushed renovate/all from 0e4499a0cf to 8788acf3e5 2024-09-04 06:41:08 +02:00 Compare
kjuulh force-pushed renovate/all from 8788acf3e5 to 3a71548659 2024-09-05 02:50:33 +02:00 Compare
kjuulh force-pushed renovate/all from 3a71548659 to de3b84e328 2024-09-05 06:42:53 +02:00 Compare
kjuulh force-pushed renovate/all from de3b84e328 to 83ef0223ff 2024-09-06 02:45:31 +02:00 Compare
kjuulh force-pushed renovate/all from 83ef0223ff to df27dfa47c 2024-09-21 03:19:55 +02:00 Compare
kjuulh force-pushed renovate/all from df27dfa47c to 9ea9b26e98 2024-09-21 07:09:48 +02:00 Compare
kjuulh force-pushed renovate/all from 9ea9b26e98 to efbd36e39d 2024-09-24 02:55:43 +02:00 Compare
kjuulh force-pushed renovate/all from efbd36e39d to db9e903ea0 2024-09-25 02:54:58 +02:00 Compare
kjuulh force-pushed renovate/all from db9e903ea0 to ecd3f4afca 2024-09-25 06:49:41 +02:00 Compare
kjuulh force-pushed renovate/all from ecd3f4afca to 3bf96462b1 2024-10-01 02:54:06 +02:00 Compare
kjuulh force-pushed renovate/all from 3bf96462b1 to 2435a06c2b 2024-10-02 02:52:34 +02:00 Compare
kjuulh force-pushed renovate/all from 2435a06c2b to 8d0167eb19 2024-10-02 06:47:50 +02:00 Compare
kjuulh force-pushed renovate/all from 8d0167eb19 to 8c63ab58fc 2024-10-09 02:55:56 +02:00 Compare
kjuulh force-pushed renovate/all from 8c63ab58fc to 352d821aa4 2024-10-09 06:51:43 +02:00 Compare
kjuulh force-pushed renovate/all from 352d821aa4 to 4a3912661d 2024-10-17 02:59:06 +02:00 Compare
kjuulh force-pushed renovate/all from 4a3912661d to 40108c917f 2024-10-17 06:49:22 +02:00 Compare
kjuulh force-pushed renovate/all from 40108c917f to 143518c468 2024-10-18 02:55:43 +02:00 Compare
kjuulh force-pushed renovate/all from 143518c468 to 3d7d64b08b 2024-10-18 06:49:22 +02:00 Compare
kjuulh force-pushed renovate/all from 3d7d64b08b to 90d737326a 2024-10-19 03:07:20 +02:00 Compare
kjuulh force-pushed renovate/all from 90d737326a to 790b650c51 2024-10-19 07:07:59 +02:00 Compare
kjuulh force-pushed renovate/all from 790b650c51 to 35a6bbed76 2024-10-20 02:56:32 +02:00 Compare
kjuulh force-pushed renovate/all from 35a6bbed76 to cc69e21b33 2024-10-20 06:49:00 +02:00 Compare
kjuulh force-pushed renovate/all from cc69e21b33 to 0c07b57728 2024-10-23 03:00:33 +02:00 Compare
kjuulh force-pushed renovate/all from 0c07b57728 to 9d500a1caa 2024-10-23 07:03:36 +02:00 Compare
kjuulh force-pushed renovate/all from 9d500a1caa to daee54b318 2024-10-29 02:57:51 +01:00 Compare
kjuulh force-pushed renovate/all from daee54b318 to a500f4969b 2024-10-29 06:52:55 +01:00 Compare
kjuulh force-pushed renovate/all from a500f4969b to aaf54fcf6e 2024-11-05 02:45:30 +01:00 Compare
kjuulh force-pushed renovate/all from aaf54fcf6e to 0e05be6a5b 2024-11-05 06:43:50 +01:00 Compare
kjuulh force-pushed renovate/all from 0e05be6a5b to f608034425 2024-11-08 02:48:06 +01:00 Compare
kjuulh force-pushed renovate/all from f608034425 to 038325bbcf 2024-11-08 06:45:19 +01:00 Compare
kjuulh force-pushed renovate/all from 038325bbcf to 985e144b75 2024-11-14 02:47:57 +01:00 Compare
kjuulh force-pushed renovate/all from 985e144b75 to 5a3aa20fd3 2024-11-14 07:09:59 +01:00 Compare
kjuulh force-pushed renovate/all from 5a3aa20fd3 to 819724ab3f 2024-11-15 02:50:11 +01:00 Compare
kjuulh force-pushed renovate/all from 819724ab3f to 3716aef963 2024-11-17 02:46:13 +01:00 Compare
kjuulh force-pushed renovate/all from 3716aef963 to e28c95d518 2024-11-17 06:48:04 +01:00 Compare
Some checks failed
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is failing
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/octopush#82
No description provided.