fix(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.88
clap dependencies patch 4.5.16 -> 4.5.38
git2 dependencies minor 0.19.0 -> 0.20.0
github.com/bitfield/script require minor v0.22.1 -> v0.24.1
octocrab dependencies minor 0.39.0 -> 0.44.0
rand (source) dependencies minor 0.8.5 -> 0.9.0
reqwest dependencies patch 0.12.7 -> 0.12.15
serde_json dependencies patch 1.0.125 -> 1.0.140
tokio (source) workspace.dependencies minor 1.39.3 -> 1.45.0
url dependencies patch 2.5.2 -> 2.5.4
uuid dependencies minor 1.10.0 -> 1.16.0

Release Notes

dtolnay/async-trait (async-trait)

v0.1.88

Compare Source

  • Fix lifetime bounding on generic parameters that have cfg (#​289)

v0.1.87

Compare Source

  • Documentation improvements

v0.1.86

Compare Source

  • Documentation improvements

v0.1.85

Compare Source

  • Omit Self: 'async_trait bound in impl when not needed by signature (#​284)

v0.1.84

Compare Source

  • Support impl Trait in return type (#​282)

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.38

Compare Source

Fixes
  • (help) When showing aliases, include leading -- or -

v4.5.37

Compare Source

Features
  • Added ArgMatches::try_clear_id()

v4.5.36

Compare Source

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

v4.5.35

Compare Source

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

v4.5.34

Compare Source

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

v4.5.33

Compare Source

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

v4.5.32

Compare Source

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

v4.5.31

Compare Source

Features
  • Add ValueParserFactory for Saturating<T>

v4.5.30

Compare Source

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

v4.5.29

Compare Source

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

v4.5.28

Compare Source

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

v4.5.27

Compare Source

Documentation
  • Iterate on tutorials and reference based on feedback

v4.5.26

Compare Source

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

v4.5.25

Compare Source

Fixes
  • (help) Reduce binary size

v4.5.24

Compare Source

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

v4.5.23

Compare Source

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

v4.5.22

Compare Source

Fixes
  • (assert) Catch bugs with arguments requiring themself

v4.5.21

Compare Source

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

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
rust-lang/git2-rs (git2)

v0.20.2

Compare Source

0.20.1...0.20.2

Added
Fixed
  • Added missing codes for GIT_EDIRECTORY, GIT_EMERGECONFLICT, GIT_EUNCHANGED, GIT_ENOTSUPPORTED, and GIT_EREADONLY to Error::raw_code.
    #​1153
  • Fixed missing initialization in Indexer::new.
    #​1160

v0.20.1

Compare Source

0.20.0...0.20.1

Added
  • Added Repository::branch_upstream_merge()
    #​1131
  • Added Index::conflict_get()
    #​1134
  • Added Index::conflict_remove()
    #​1133
  • Added opts::set_cache_object_limit()
    #​1118
  • Added Repo::merge_file_from_index() and associated MergeFileOptions and MergeFileResult.
    #​1062
Changed
  • The url dependency minimum raised to 2.5.4
    #​1128
  • Changed the tracing callback to abort the process if the callback panics instead of randomly detecting the panic in some other function.
    #​1121
  • Credential helper config (loaded with CredentialHelper::config) now checks for helpers that start with something that looks like an absolute path, rather than checking for a / or \ anywhere in the helper string (which resolves an issue if the helper had arguments with / or \).
    #​1137
Fixed
  • Fixed panic in Remote::url_bytes if the url is empty.
    #​1120
  • Fixed incorrect lifetimes on Patch::delta, Patch::hunk, and Patch::line_in_hunk. The return values must not outlive the Patch.
    #​1141
  • Bumped requirement to libgit2-sys 0.18.1, which fixes linking of advapi32 on Windows.
    #​1143

v0.20.0

Compare Source

0.19.0...0.20.0

Added
  • Debug is now implemented for transport::Service
    #​1074
  • Added Repository::commondir
    #​1079
  • Added Repository::merge_base_octopus
    #​1088
  • Restored impls for PartialOrd, Ord, and Hash for bitflags types that were inadvertently removed in a prior release.
    #​1096
  • Added CheckoutBuilder::disable_pathspec_match
    #​1107
  • Added PackBuilder::write
    #​1110
Changed
  • Updated to libgit2 1.9.0
    #​1111
  • Removed the ssh_key_from_memory Cargo feature, it was unused.
    #​1087
  • Errors from Tree::walk are now correctly reported to the caller.
    #​1098
  • The trace_set callback now takes a &[u8] instead of a &str.
    #​1071
  • Error::last_error now returns Error instead of Option<Error>.
    #​1072
Fixed
  • Fixed OdbReader::read return value.
    #​1061
  • When a credential helper executes a shell command, don't pop open a console window on Windows.
    #​1075
bitfield/script (github.com/bitfield/script)

v0.24.1

Compare Source

v0.24.0

Compare Source

v0.23.0

Compare Source

XAMPPRocky/octocrab (octocrab)

v0.44.1

Compare Source

Fixed
  • (docs) Update and fix crate documentation for docs.rs, update README (#​769)
  • print deprecation warning to stderr (#​768)
Other
  • Add optional name field to Author struct (#​771)
  • Add 'dowload' and 'download_zip' functions to client (#​766)
  • Add enum EventInstallation::id() helper (#​763)
  • examples/graphql_issues.rs: Update schema URL (#​764)

v0.44.0

Compare Source

Added
  • Implement Serialize for Page (#​761)
Fixed
  • [breaking] sha is optional in DiffEntry if file contents are unchanged (#​750)
  • insert auth headers for api.github.com (#​754)
  • (emails) visibility can be null (#​756)

v0.43.0

Compare Source

Other
  • Enable client reuse when authenticating via a Github app using user access tokens (#​740)
  • [breaking] Box the github error & fix clippy lints (#​743)
  • issues can now be closed as duplicate (#​741)
  • Add "merged" field to PullRequest (#​737)

v0.42.1

Compare Source

Other
  • Secret scanning alert locations API (#​735)

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)
rust-random/rand (rand)

v0.9.1

Compare Source

Security and unsafe
  • Revise "not a crypto library" policy again (#​1565)
  • Remove zerocopy dependency from rand (#​1579)
Fixes
  • Fix feature simd_support for recent nightly rust (#​1586)
Changes
  • Allow fn rand::seq::index::sample_weighted and fn IndexedRandom::choose_multiple_weighted to return fewer than amount results (#​1623), reverting an undocumented change (#​1382) to the previous release.
Additions
  • Add rand::distr::Alphabetic distribution. (#​1587)
  • Re-export rand_core (#​1604)

v0.9.0

Compare Source

Security and unsafe
  • Policy: "rand is not a crypto library" (#​1514)
  • Remove fork-protection from ReseedingRng and ThreadRng. Instead, it is recommended to call ThreadRng::reseed on fork. (#​1379)
  • Use zerocopy to replace some unsafe code (#​1349, #​1393, #​1446, #​1502)
Dependencies
Features
  • Support std feature without getrandom or rand_chacha (#​1354)
  • Enable feature small_rng by default (#​1455)
  • Remove implicit feature rand_chacha; use std_rng instead. (#​1473)
  • Rename feature serde1 to serde (#​1477)
  • Rename feature getrandom to os_rng (#​1537)
  • Add feature thread_rng (#​1547)
API changes: rand_core traits
  • Add fn RngCore::read_adapter implementing std::io::Read (#​1267)
  • Add trait CryptoBlockRng: BlockRngCore; make trait CryptoRng: RngCore (#​1273)
  • Add traits TryRngCore, TryCryptoRng (#​1424, #​1499)
  • Rename fn SeedableRng::from_rng -> try_from_rng and add infallible variant fn from_rng (#​1424)
  • Rename fn SeedableRng::from_entropy -> from_os_rng and add fallible variant fn try_from_os_rng (#​1424)
  • Add bounds Clone and AsRef to associated type SeedableRng::Seed (#​1491)
API changes: Rng trait and top-level fns
  • Rename fn rand::thread_rng() to rand::rng() and remove from the prelude (#​1506)
  • Remove fn rand::random() from the prelude (#​1506)
  • Add top-level fns random_iter, random_range, random_bool, random_ratio, fill (#​1488)
  • Re-introduce fn Rng::gen_iter as random_iter (#​1305, #​1500)
  • Rename fn Rng::gen to random to avoid conflict with the new gen keyword in Rust 2024 (#​1438)
  • Rename fns Rng::gen_range to random_range, gen_bool to random_bool, gen_ratio to random_ratio (#​1505)
  • Annotate panicking methods with #[track_caller] (#​1442, #​1447)
API changes: RNGs
  • Fix <SmallRng as SeedableRng>::Seed size to 256 bits (#​1455)
  • Remove first parameter (rng) of ReseedingRng::new (#​1533)
API changes: Sequences
  • Split trait SliceRandom into IndexedRandom, IndexedMutRandom, SliceRandom (#​1382)
  • Add IndexedRandom::choose_multiple_array, index::sample_array (#​1453, #​1469)
API changes: Distributions: renames
  • Rename module rand::distributions to rand::distr (#​1470)
  • Rename distribution Standard to StandardUniform (#​1526)
  • Move distr::Slice -> distr::slice::Choose, distr::EmptySlice -> distr::slice::Empty (#​1548)
  • Rename trait distr::DistString -> distr::SampleString (#​1548)
  • Rename distr::DistIter -> distr::Iter, distr::DistMap -> distr::Map (#​1548)
API changes: Distributions
  • Relax Sized bound on Distribution<T> for &D (#​1278)
  • Remove impl of Distribution<Option<T>> for StandardUniform (#​1526)
  • Let distribution StandardUniform support all NonZero* types (#​1332)
  • Fns {Uniform, UniformSampler}::{new, new_inclusive} return a Result (instead of potentially panicking) (#​1229)
  • Distribution Uniform implements TryFrom instead of From for ranges (#​1229)
  • Add UniformUsize (#​1487)
  • Remove support for generating isize and usize values with StandardUniform, Uniform (except via UniformUsize) and Fill and usage as a WeightedAliasIndex weight (#​1487)
  • Add impl DistString for distributions Slice<char> and Uniform<char> (#​1315)
  • Add fn Slice::num_choices (#​1402)
  • Add fn p() for distribution Bernoulli to access probability (#​1481)
API changes: Weighted distributions
  • Add pub module rand::distr::weighted, moving WeightedIndex there (#​1548)
  • Add trait weighted::Weight, allowing WeightedIndex to trap overflow (#​1353)
  • Add fns weight, weights, total_weight to distribution WeightedIndex (#​1420)
  • Rename enum WeightedError to weighted::Error, revising variants (#​1382) and mark as #[non_exhaustive] (#​1480)
API changes: SIMD
  • Switch to std::simd, expand SIMD & docs (#​1239)
Reproducibility-breaking changes
  • Make ReseedingRng::reseed discard remaining data from the last block generated (#​1379)
  • Change fn SmallRng::seed_from_u64 implementation (#​1203)
  • Allow UniformFloat::new samples and UniformFloat::sample_single to yield high (#​1462)
  • Fix portability of distribution Slice (#​1469)
  • Make Uniform for usize portable via UniformUsize (#​1487)
  • Fix IndexdRandom::choose_multiple_weighted for very small seeds and optimize for large input length / low memory (#​1530)
Reproducibility-breaking optimisations
  • Optimize fn sample_floyd, affecting output of rand::seq::index::sample and rand::seq::SliceRandom::choose_multiple (#​1277)
  • New, faster algorithms for IteratorRandom::choose and choose_stable (#​1268)
  • New, faster algorithms for SliceRandom::shuffle and partial_shuffle (#​1272)
  • Optimize distribution Uniform: use Canon's method (single sampling) / Lemire's method (distribution sampling) for faster sampling (breaks value stability; #​1287)
  • Optimize fn sample_single_inclusive for floats (+~20% perf) (#​1289)
Other optimisations
  • Improve SmallRng initialization performance (#​1482)
  • Optimise SIMD widening multiply (#​1247)
Other
Documentation
  • Improve ThreadRng related docs (#​1257)
  • Docs: enable experimental --generate-link-to-definition feature (#​1327)
  • Better doc of crate features, use doc_auto_cfg (#​1411, #​1450)
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)
tokio-rs/tokio (tokio)

v1.45.0: Tokio v1.45.0

Compare Source

Added
  • metrics: stabilize worker_total_busy_duration, worker_park_count, and worker_unpark_count (#​6899, #​7276)
  • process: add Command::spawn_with (#​7249)
Changed
  • io: do not require Unpin for some trait impls (#​7204)
  • rt: mark runtime::Handle as unwind safe (#​7230)
  • time: revert internal sharding implementation (#​7226)
Unstable
  • rt: remove alt multi-threaded runtime (#​7275)

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 | |---|---|---|---| | [async-trait](https://github.com/dtolnay/async-trait) | workspace.dependencies | patch | `0.1.81` -> `0.1.88` | | [clap](https://github.com/clap-rs/clap) | dependencies | patch | `4.5.16` -> `4.5.38` | | [git2](https://github.com/rust-lang/git2-rs) | dependencies | minor | `0.19.0` -> `0.20.0` | | [github.com/bitfield/script](https://github.com/bitfield/script) | require | minor | `v0.22.1` -> `v0.24.1` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | dependencies | minor | `0.39.0` -> `0.44.0` | | [rand](https://rust-random.github.io/book) ([source](https://github.com/rust-random/rand)) | dependencies | minor | `0.8.5` -> `0.9.0` | | [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` | | [tokio](https://tokio.rs) ([source](https://github.com/tokio-rs/tokio)) | workspace.dependencies | minor | `1.39.3` -> `1.45.0` | | [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>dtolnay/async-trait (async-trait)</summary> ### [`v0.1.88`](https://github.com/dtolnay/async-trait/releases/tag/0.1.88) [Compare Source](https://github.com/dtolnay/async-trait/compare/0.1.87...0.1.88) - Fix lifetime bounding on generic parameters that have cfg ([#&#8203;289](https://github.com/dtolnay/async-trait/issues/289)) ### [`v0.1.87`](https://github.com/dtolnay/async-trait/releases/tag/0.1.87) [Compare Source](https://github.com/dtolnay/async-trait/compare/0.1.86...0.1.87) - Documentation improvements ### [`v0.1.86`](https://github.com/dtolnay/async-trait/releases/tag/0.1.86) [Compare Source](https://github.com/dtolnay/async-trait/compare/0.1.85...0.1.86) - Documentation improvements ### [`v0.1.85`](https://github.com/dtolnay/async-trait/releases/tag/0.1.85) [Compare Source](https://github.com/dtolnay/async-trait/compare/0.1.84...0.1.85) - Omit `Self: 'async_trait` bound in impl when not needed by signature ([#&#8203;284](https://github.com/dtolnay/async-trait/issues/284)) ### [`v0.1.84`](https://github.com/dtolnay/async-trait/releases/tag/0.1.84) [Compare Source](https://github.com/dtolnay/async-trait/compare/0.1.83...0.1.84) - Support `impl Trait` in return type ([#&#8203;282](https://github.com/dtolnay/async-trait/issues/282)) ### [`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.38`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4538---2025-05-11) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.37...v4.5.38) ##### Fixes - *(help)* When showing aliases, include leading `--` or `-` ### [`v4.5.37`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4537---2025-04-18) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.36...v4.5.37) ##### Features - Added `ArgMatches::try_clear_id()` ### [`v4.5.36`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4536---2025-04-11) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.35...v4.5.36) ##### Fixes - *(help)* Revert 4.5.35's "Don't leave space for shorts if there are none" for now ### [`v4.5.35`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4535---2025-04-01) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.34...v4.5.35) ##### Fixes - *(help)* Align positionals and flags when put in the same `help_heading` - *(help)* Don't leave space for shorts if there are none ### [`v4.5.34`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4534---2025-03-27) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.33...v4.5.34) ##### Fixes - *(help)* Don't add extra blank lines with `flatten_help(true)` and subcommands without arguments ### [`v4.5.33`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4533---2025-03-26) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.32...v4.5.33) ##### Fixes - *(error)* When showing the usage of a suggestion for an unknown argument, don't show the group ### [`v4.5.32`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4532---2025-03-10) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.31...v4.5.32) ##### Features - Add `Error::remove` ##### Documentation - *(cookbook)* Switch from `humantime` to `jiff` - *(tutorial)* Better cover required vs optional ##### Internal - Update `pulldown-cmark` ### [`v4.5.31`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4531---2025-02-24) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.30...v4.5.31) ##### Features - Add `ValueParserFactory` for `Saturating<T>` ### [`v4.5.30`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4530---2025-02-17) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.29...v4.5.30) ##### Fixes - *(assert)* Allow `num_args(0..=1)` to be used with `SetTrue` - *(assert)* Clean up rendering of `takes_values` assertions ### [`v4.5.29`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4529---2025-02-11) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.28...v4.5.29) ##### Fixes - Change `ArgMatches::args_present` so not-present flags are considered not-present (matching the documentation) ### [`v4.5.28`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4528---2025-02-03) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.27...v4.5.28) ##### Features - *(derive)* Unstable support for full markdown syntax for doc comments, enabled with `unstable-markdown` ### [`v4.5.27`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4527---2025-01-20) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.26...v4.5.27) ##### Documentation - Iterate on tutorials and reference based on feedback ### [`v4.5.26`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4526---2025-01-09) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.25...v4.5.26) ##### Fixes - *(error)* Reduce binary size with the `suggestions` feature ### [`v4.5.25`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4525---2025-01-09) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.24...v4.5.25) ##### Fixes - *(help)* Reduce binary size ### [`v4.5.24`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4524---2025-01-07) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.23...v4.5.24) ##### Fixes - *(parser)* Correctly handle defaults with `ignore_errors(true)` and when a suggestion is provided for an unknown argument ### [`v4.5.23`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4523---2024-12-05) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.22...v4.5.23) ##### Fixes - *(parser)* When check `allow_negative_numbers`, allow `E` again ### [`v4.5.22`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4522---2024-12-03) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.21...v4.5.22) ##### Fixes - *(assert)* Catch bugs with arguments requiring themself ### [`v4.5.21`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4521---2024-11-13) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.20...v4.5.21) ##### Fixes - *(parser)* Ensure defaults are filled in on error with `ignore_errors(true)` ### [`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>rust-lang/git2-rs (git2)</summary> ### [`v0.20.2`](https://github.com/rust-lang/git2-rs/blob/HEAD/CHANGELOG.md#0202---2025-05-05) [Compare Source](https://github.com/rust-lang/git2-rs/compare/git2-0.20.1...git2-0.20.2) [0.20.1...0.20.2](https://github.com/rust-lang/git2-rs/compare/git2-0.20.1...git2-0.20.2) ##### Added - Added `Status::WT_UNREADABLE`. [#&#8203;1151](https://github.com/rust-lang/git2-rs/pull/1151) ##### Fixed - Added missing codes for `GIT_EDIRECTORY`, `GIT_EMERGECONFLICT`, `GIT_EUNCHANGED`, `GIT_ENOTSUPPORTED`, and `GIT_EREADONLY` to `Error::raw_code`. [#&#8203;1153](https://github.com/rust-lang/git2-rs/pull/1153) - Fixed missing initialization in `Indexer::new`. [#&#8203;1160](https://github.com/rust-lang/git2-rs/pull/1160) ### [`v0.20.1`](https://github.com/rust-lang/git2-rs/blob/HEAD/CHANGELOG.md#0201---2025-03-17) [Compare Source](https://github.com/rust-lang/git2-rs/compare/git2-0.20.0...git2-0.20.1) [0.20.0...0.20.1](https://github.com/rust-lang/git2-rs/compare/git2-0.20.0...git2-0.20.1) ##### Added - Added `Repository::branch_upstream_merge()` [#&#8203;1131](https://github.com/rust-lang/git2-rs/pull/1131) - Added `Index::conflict_get()` [#&#8203;1134](https://github.com/rust-lang/git2-rs/pull/1134) - Added `Index::conflict_remove()` [#&#8203;1133](https://github.com/rust-lang/git2-rs/pull/1133) - Added `opts::set_cache_object_limit()` [#&#8203;1118](https://github.com/rust-lang/git2-rs/pull/1118) - Added `Repo::merge_file_from_index()` and associated `MergeFileOptions` and `MergeFileResult`. [#&#8203;1062](https://github.com/rust-lang/git2-rs/pull/1062) ##### Changed - The `url` dependency minimum raised to 2.5.4 [#&#8203;1128](https://github.com/rust-lang/git2-rs/pull/1128) - Changed the tracing callback to abort the process if the callback panics instead of randomly detecting the panic in some other function. [#&#8203;1121](https://github.com/rust-lang/git2-rs/pull/1121) - Credential helper config (loaded with `CredentialHelper::config`) now checks for helpers that start with something that looks like an absolute path, rather than checking for a `/` or `\` anywhere in the helper string (which resolves an issue if the helper had arguments with `/` or `\`). [#&#8203;1137](https://github.com/rust-lang/git2-rs/pull/1137) ##### Fixed - Fixed panic in `Remote::url_bytes` if the url is empty. [#&#8203;1120](https://github.com/rust-lang/git2-rs/pull/1120) - Fixed incorrect lifetimes on `Patch::delta`, `Patch::hunk`, and `Patch::line_in_hunk`. The return values must not outlive the `Patch`. [#&#8203;1141](https://github.com/rust-lang/git2-rs/pull/1141) - Bumped requirement to libgit2-sys 0.18.1, which fixes linking of advapi32 on Windows. [#&#8203;1143](https://github.com/rust-lang/git2-rs/pull/1143) ### [`v0.20.0`](https://github.com/rust-lang/git2-rs/blob/HEAD/CHANGELOG.md#0200---2025-01-04) [Compare Source](https://github.com/rust-lang/git2-rs/compare/git2-0.19.0...git2-0.20.0) [0.19.0...0.20.0](https://github.com/rust-lang/git2-rs/compare/git2-0.19.0...git2-0.20.0) ##### Added - `Debug` is now implemented for `transport::Service` [#&#8203;1074](https://github.com/rust-lang/git2-rs/pull/1074) - Added `Repository::commondir` [#&#8203;1079](https://github.com/rust-lang/git2-rs/pull/1079) - Added `Repository::merge_base_octopus` [#&#8203;1088](https://github.com/rust-lang/git2-rs/pull/1088) - Restored impls for `PartialOrd`, `Ord`, and `Hash` for bitflags types that were inadvertently removed in a prior release. [#&#8203;1096](https://github.com/rust-lang/git2-rs/pull/1096) - Added `CheckoutBuilder::disable_pathspec_match` [#&#8203;1107](https://github.com/rust-lang/git2-rs/pull/1107) - Added `PackBuilder::write` [#&#8203;1110](https://github.com/rust-lang/git2-rs/pull/1110) ##### Changed - ❗ Updated to libgit2 [1.9.0](https://github.com/libgit2/libgit2/releases/tag/v1.9.0) [#&#8203;1111](https://github.com/rust-lang/git2-rs/pull/1111) - ❗ Removed the `ssh_key_from_memory` Cargo feature, it was unused. [#&#8203;1087](https://github.com/rust-lang/git2-rs/pull/1087) - ❗ Errors from `Tree::walk` are now correctly reported to the caller. [#&#8203;1098](https://github.com/rust-lang/git2-rs/pull/1098) - ❗ The `trace_set` callback now takes a `&[u8]` instead of a `&str`. [#&#8203;1071](https://github.com/rust-lang/git2-rs/pull/1071) - ❗ `Error::last_error` now returns `Error` instead of `Option<Error>`. [#&#8203;1072](https://github.com/rust-lang/git2-rs/pull/1072) ##### Fixed - Fixed `OdbReader::read` return value. [#&#8203;1061](https://github.com/rust-lang/git2-rs/pull/1061) - When a credential helper executes a shell command, don't pop open a console window on Windows. [#&#8203;1075](https://github.com/rust-lang/git2-rs/pull/1075) </details> <details> <summary>bitfield/script (github.com/bitfield/script)</summary> ### [`v0.24.1`](https://github.com/bitfield/script/compare/v0.24.0...v0.24.1) [Compare Source](https://github.com/bitfield/script/compare/v0.24.0...v0.24.1) ### [`v0.24.0`](https://github.com/bitfield/script/compare/v0.23.0...v0.24.0) [Compare Source](https://github.com/bitfield/script/compare/v0.23.0...v0.24.0) ### [`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.44.1`](https://github.com/XAMPPRocky/octocrab/blob/HEAD/CHANGELOG.md#0441---2025-05-06) [Compare Source](https://github.com/XAMPPRocky/octocrab/compare/v0.44.0...v0.44.1) ##### Fixed - *(docs)* Update and fix crate documentation for docs.rs, update README ([#&#8203;769](https://github.com/XAMPPRocky/octocrab/pull/769)) - print deprecation warning to stderr ([#&#8203;768](https://github.com/XAMPPRocky/octocrab/pull/768)) ##### Other - Add optional `name` field to `Author` struct ([#&#8203;771](https://github.com/XAMPPRocky/octocrab/pull/771)) - Add 'dowload' and 'download_zip' functions to client ([#&#8203;766](https://github.com/XAMPPRocky/octocrab/pull/766)) - Add enum `EventInstallation::id()` helper ([#&#8203;763](https://github.com/XAMPPRocky/octocrab/pull/763)) - examples/graphql_issues.rs: Update schema URL ([#&#8203;764](https://github.com/XAMPPRocky/octocrab/pull/764)) ### [`v0.44.0`](https://github.com/XAMPPRocky/octocrab/blob/HEAD/CHANGELOG.md#0440---2025-03-26) [Compare Source](https://github.com/XAMPPRocky/octocrab/compare/v0.43.0...v0.44.0) ##### Added - Implement Serialize for Page ([#&#8203;761](https://github.com/XAMPPRocky/octocrab/pull/761)) ##### Fixed - \[**breaking**] `sha` is optional in `DiffEntry` if file contents are unchanged ([#&#8203;750](https://github.com/XAMPPRocky/octocrab/pull/750)) - insert auth headers for api.github.com ([#&#8203;754](https://github.com/XAMPPRocky/octocrab/pull/754)) - *(emails)* `visibility` can be `null` ([#&#8203;756](https://github.com/XAMPPRocky/octocrab/pull/756)) ### [`v0.43.0`](https://github.com/XAMPPRocky/octocrab/blob/HEAD/CHANGELOG.md#0430---2025-01-13) [Compare Source](https://github.com/XAMPPRocky/octocrab/compare/v0.42.1...v0.43.0) ##### Other - Enable client reuse when authenticating via a Github app using user access tokens ([#&#8203;740](https://github.com/XAMPPRocky/octocrab/pull/740)) - \[**breaking**] Box the github error & fix clippy lints ([#&#8203;743](https://github.com/XAMPPRocky/octocrab/issues/743)) - issues can now be closed as `duplicate` ([#&#8203;741](https://github.com/XAMPPRocky/octocrab/pull/741)) - Add "merged" field to PullRequest ([#&#8203;737](https://github.com/XAMPPRocky/octocrab/pull/737)) ### [`v0.42.1`](https://github.com/XAMPPRocky/octocrab/blob/HEAD/CHANGELOG.md#0421---2024-11-22) [Compare Source](https://github.com/XAMPPRocky/octocrab/compare/v0.42.0...v0.42.1) ##### Other - Secret scanning alert locations API ([#&#8203;735](https://github.com/XAMPPRocky/octocrab/pull/735)) ### [`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>rust-random/rand (rand)</summary> ### [`v0.9.1`](https://github.com/rust-random/rand/blob/HEAD/CHANGELOG.md#091---2025-04-17) [Compare Source](https://github.com/rust-random/rand/compare/0.9.0...0.9.1) ##### Security and unsafe - Revise "not a crypto library" policy again ([#&#8203;1565](https://github.com/rust-random/rand/issues/1565)) - Remove `zerocopy` dependency from `rand` ([#&#8203;1579](https://github.com/rust-random/rand/issues/1579)) ##### Fixes - Fix feature `simd_support` for recent nightly rust ([#&#8203;1586](https://github.com/rust-random/rand/issues/1586)) ##### Changes - Allow `fn rand::seq::index::sample_weighted` and `fn IndexedRandom::choose_multiple_weighted` to return fewer than `amount` results ([#&#8203;1623](https://github.com/rust-random/rand/issues/1623)), reverting an undocumented change ([#&#8203;1382](https://github.com/rust-random/rand/issues/1382)) to the previous release. ##### Additions - Add `rand::distr::Alphabetic` distribution. ([#&#8203;1587](https://github.com/rust-random/rand/issues/1587)) - Re-export `rand_core` ([#&#8203;1604](https://github.com/rust-random/rand/issues/1604)) ### [`v0.9.0`](https://github.com/rust-random/rand/blob/HEAD/CHANGELOG.md#090---2025-01-27) [Compare Source](https://github.com/rust-random/rand/compare/0.8.5...0.9.0) ##### Security and unsafe - Policy: "rand is not a crypto library" ([#&#8203;1514](https://github.com/rust-random/rand/issues/1514)) - Remove fork-protection from `ReseedingRng` and `ThreadRng`. Instead, it is recommended to call `ThreadRng::reseed` on fork. ([#&#8203;1379](https://github.com/rust-random/rand/issues/1379)) - Use `zerocopy` to replace some `unsafe` code ([#&#8203;1349](https://github.com/rust-random/rand/issues/1349), [#&#8203;1393](https://github.com/rust-random/rand/issues/1393), [#&#8203;1446](https://github.com/rust-random/rand/issues/1446), [#&#8203;1502](https://github.com/rust-random/rand/issues/1502)) ##### Dependencies - Bump the MSRV to 1.63.0 ([#&#8203;1207](https://github.com/rust-random/rand/issues/1207), [#&#8203;1246](https://github.com/rust-random/rand/issues/1246), [#&#8203;1269](https://github.com/rust-random/rand/issues/1269), [#&#8203;1341](https://github.com/rust-random/rand/issues/1341), [#&#8203;1416](https://github.com/rust-random/rand/issues/1416), [#&#8203;1536](https://github.com/rust-random/rand/issues/1536)); note that 1.60.0 may work for dependents when using `--ignore-rust-version` - Update to `rand_core` v0.9.0 ([#&#8203;1558](https://github.com/rust-random/rand/issues/1558)) ##### Features - Support `std` feature without `getrandom` or `rand_chacha` ([#&#8203;1354](https://github.com/rust-random/rand/issues/1354)) - Enable feature `small_rng` by default ([#&#8203;1455](https://github.com/rust-random/rand/issues/1455)) - Remove implicit feature `rand_chacha`; use `std_rng` instead. ([#&#8203;1473](https://github.com/rust-random/rand/issues/1473)) - Rename feature `serde1` to `serde` ([#&#8203;1477](https://github.com/rust-random/rand/issues/1477)) - Rename feature `getrandom` to `os_rng` ([#&#8203;1537](https://github.com/rust-random/rand/issues/1537)) - Add feature `thread_rng` ([#&#8203;1547](https://github.com/rust-random/rand/issues/1547)) ##### API changes: rand_core traits - Add fn `RngCore::read_adapter` implementing `std::io::Read` ([#&#8203;1267](https://github.com/rust-random/rand/issues/1267)) - Add trait `CryptoBlockRng: BlockRngCore`; make `trait CryptoRng: RngCore` ([#&#8203;1273](https://github.com/rust-random/rand/issues/1273)) - Add traits `TryRngCore`, `TryCryptoRng` ([#&#8203;1424](https://github.com/rust-random/rand/issues/1424), [#&#8203;1499](https://github.com/rust-random/rand/issues/1499)) - Rename `fn SeedableRng::from_rng` -> `try_from_rng` and add infallible variant `fn from_rng` ([#&#8203;1424](https://github.com/rust-random/rand/issues/1424)) - Rename `fn SeedableRng::from_entropy` -> `from_os_rng` and add fallible variant `fn try_from_os_rng` ([#&#8203;1424](https://github.com/rust-random/rand/issues/1424)) - Add bounds `Clone` and `AsRef` to associated type `SeedableRng::Seed` ([#&#8203;1491](https://github.com/rust-random/rand/issues/1491)) ##### API changes: Rng trait and top-level fns - Rename fn `rand::thread_rng()` to `rand::rng()` and remove from the prelude ([#&#8203;1506](https://github.com/rust-random/rand/issues/1506)) - Remove fn `rand::random()` from the prelude ([#&#8203;1506](https://github.com/rust-random/rand/issues/1506)) - Add top-level fns `random_iter`, `random_range`, `random_bool`, `random_ratio`, `fill` ([#&#8203;1488](https://github.com/rust-random/rand/issues/1488)) - Re-introduce fn `Rng::gen_iter` as `random_iter` ([#&#8203;1305](https://github.com/rust-random/rand/issues/1305), [#&#8203;1500](https://github.com/rust-random/rand/issues/1500)) - Rename fn `Rng::gen` to `random` to avoid conflict with the new `gen` keyword in Rust 2024 ([#&#8203;1438](https://github.com/rust-random/rand/issues/1438)) - Rename fns `Rng::gen_range` to `random_range`, `gen_bool` to `random_bool`, `gen_ratio` to `random_ratio` ([#&#8203;1505](https://github.com/rust-random/rand/issues/1505)) - Annotate panicking methods with `#[track_caller]` ([#&#8203;1442](https://github.com/rust-random/rand/issues/1442), [#&#8203;1447](https://github.com/rust-random/rand/issues/1447)) ##### API changes: RNGs - Fix `<SmallRng as SeedableRng>::Seed` size to 256 bits ([#&#8203;1455](https://github.com/rust-random/rand/issues/1455)) - Remove first parameter (`rng`) of `ReseedingRng::new` ([#&#8203;1533](https://github.com/rust-random/rand/issues/1533)) ##### API changes: Sequences - Split trait `SliceRandom` into `IndexedRandom`, `IndexedMutRandom`, `SliceRandom` ([#&#8203;1382](https://github.com/rust-random/rand/issues/1382)) - Add `IndexedRandom::choose_multiple_array`, `index::sample_array` ([#&#8203;1453](https://github.com/rust-random/rand/issues/1453), [#&#8203;1469](https://github.com/rust-random/rand/issues/1469)) ##### API changes: Distributions: renames - Rename module `rand::distributions` to `rand::distr` ([#&#8203;1470](https://github.com/rust-random/rand/issues/1470)) - Rename distribution `Standard` to `StandardUniform` ([#&#8203;1526](https://github.com/rust-random/rand/issues/1526)) - Move `distr::Slice` -> `distr::slice::Choose`, `distr::EmptySlice` -> `distr::slice::Empty` ([#&#8203;1548](https://github.com/rust-random/rand/issues/1548)) - Rename trait `distr::DistString` -> `distr::SampleString` ([#&#8203;1548](https://github.com/rust-random/rand/issues/1548)) - Rename `distr::DistIter` -> `distr::Iter`, `distr::DistMap` -> `distr::Map` ([#&#8203;1548](https://github.com/rust-random/rand/issues/1548)) ##### API changes: Distributions - Relax `Sized` bound on `Distribution<T> for &D` ([#&#8203;1278](https://github.com/rust-random/rand/issues/1278)) - Remove impl of `Distribution<Option<T>>` for `StandardUniform` ([#&#8203;1526](https://github.com/rust-random/rand/issues/1526)) - Let distribution `StandardUniform` support all `NonZero*` types ([#&#8203;1332](https://github.com/rust-random/rand/issues/1332)) - Fns `{Uniform, UniformSampler}::{new, new_inclusive}` return a `Result` (instead of potentially panicking) ([#&#8203;1229](https://github.com/rust-random/rand/issues/1229)) - Distribution `Uniform` implements `TryFrom` instead of `From` for ranges ([#&#8203;1229](https://github.com/rust-random/rand/issues/1229)) - Add `UniformUsize` ([#&#8203;1487](https://github.com/rust-random/rand/issues/1487)) - Remove support for generating `isize` and `usize` values with `StandardUniform`, `Uniform` (except via `UniformUsize`) and `Fill` and usage as a `WeightedAliasIndex` weight ([#&#8203;1487](https://github.com/rust-random/rand/issues/1487)) - Add impl `DistString` for distributions `Slice<char>` and `Uniform<char>` ([#&#8203;1315](https://github.com/rust-random/rand/issues/1315)) - Add fn `Slice::num_choices` ([#&#8203;1402](https://github.com/rust-random/rand/issues/1402)) - Add fn `p()` for distribution `Bernoulli` to access probability ([#&#8203;1481](https://github.com/rust-random/rand/issues/1481)) ##### API changes: Weighted distributions - Add `pub` module `rand::distr::weighted`, moving `WeightedIndex` there ([#&#8203;1548](https://github.com/rust-random/rand/issues/1548)) - Add trait `weighted::Weight`, allowing `WeightedIndex` to trap overflow ([#&#8203;1353](https://github.com/rust-random/rand/issues/1353)) - Add fns `weight, weights, total_weight` to distribution `WeightedIndex` ([#&#8203;1420](https://github.com/rust-random/rand/issues/1420)) - Rename enum `WeightedError` to `weighted::Error`, revising variants ([#&#8203;1382](https://github.com/rust-random/rand/issues/1382)) and mark as `#[non_exhaustive]` ([#&#8203;1480](https://github.com/rust-random/rand/issues/1480)) ##### API changes: SIMD - Switch to `std::simd`, expand SIMD & docs ([#&#8203;1239](https://github.com/rust-random/rand/issues/1239)) ##### Reproducibility-breaking changes - Make `ReseedingRng::reseed` discard remaining data from the last block generated ([#&#8203;1379](https://github.com/rust-random/rand/issues/1379)) - Change fn `SmallRng::seed_from_u64` implementation ([#&#8203;1203](https://github.com/rust-random/rand/issues/1203)) - Allow `UniformFloat::new` samples and `UniformFloat::sample_single` to yield `high` ([#&#8203;1462](https://github.com/rust-random/rand/issues/1462)) - Fix portability of distribution `Slice` ([#&#8203;1469](https://github.com/rust-random/rand/issues/1469)) - Make `Uniform` for `usize` portable via `UniformUsize` ([#&#8203;1487](https://github.com/rust-random/rand/issues/1487)) - Fix `IndexdRandom::choose_multiple_weighted` for very small seeds and optimize for large input length / low memory ([#&#8203;1530](https://github.com/rust-random/rand/issues/1530)) ##### Reproducibility-breaking optimisations - Optimize fn `sample_floyd`, affecting output of `rand::seq::index::sample` and `rand::seq::SliceRandom::choose_multiple` ([#&#8203;1277](https://github.com/rust-random/rand/issues/1277)) - New, faster algorithms for `IteratorRandom::choose` and `choose_stable` ([#&#8203;1268](https://github.com/rust-random/rand/issues/1268)) - New, faster algorithms for `SliceRandom::shuffle` and `partial_shuffle` ([#&#8203;1272](https://github.com/rust-random/rand/issues/1272)) - Optimize distribution `Uniform`: use Canon's method (single sampling) / Lemire's method (distribution sampling) for faster sampling (breaks value stability; [#&#8203;1287](https://github.com/rust-random/rand/issues/1287)) - Optimize fn `sample_single_inclusive` for floats (+~20% perf) ([#&#8203;1289](https://github.com/rust-random/rand/issues/1289)) ##### Other optimisations - Improve `SmallRng` initialization performance ([#&#8203;1482](https://github.com/rust-random/rand/issues/1482)) - Optimise SIMD widening multiply ([#&#8203;1247](https://github.com/rust-random/rand/issues/1247)) ##### Other - Add `Cargo.lock.msrv` file ([#&#8203;1275](https://github.com/rust-random/rand/issues/1275)) - Reformat with `rustfmt` and enforce ([#&#8203;1448](https://github.com/rust-random/rand/issues/1448)) - Apply Clippy suggestions and enforce ([#&#8203;1448](https://github.com/rust-random/rand/issues/1448), [#&#8203;1474](https://github.com/rust-random/rand/issues/1474)) - Move all benchmarks to new `benches` crate ([#&#8203;1329](https://github.com/rust-random/rand/issues/1329), [#&#8203;1439](https://github.com/rust-random/rand/issues/1439)) and migrate to Criterion ([#&#8203;1490](https://github.com/rust-random/rand/issues/1490)) ##### Documentation - Improve `ThreadRng` related docs ([#&#8203;1257](https://github.com/rust-random/rand/issues/1257)) - Docs: enable experimental `--generate-link-to-definition` feature ([#&#8203;1327](https://github.com/rust-random/rand/issues/1327)) - Better doc of crate features, use `doc_auto_cfg` ([#&#8203;1411](https://github.com/rust-random/rand/issues/1411), [#&#8203;1450](https://github.com/rust-random/rand/issues/1450)) </details> <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>tokio-rs/tokio (tokio)</summary> ### [`v1.45.0`](https://github.com/tokio-rs/tokio/releases/tag/tokio-1.45.0): Tokio v1.45.0 [Compare Source](https://github.com/tokio-rs/tokio/compare/tokio-1.44.2...tokio-1.45.0) ##### Added - metrics: stabilize `worker_total_busy_duration`, `worker_park_count`, and `worker_unpark_count` ([#&#8203;6899], [#&#8203;7276]) - process: add `Command::spawn_with` ([#&#8203;7249]) ##### Changed - io: do not require `Unpin` for some trait impls ([#&#8203;7204]) - rt: mark `runtime::Handle` as unwind safe ([#&#8203;7230]) - time: revert internal sharding implementation ([#&#8203;7226]) ##### Unstable - rt: remove alt multi-threaded runtime ([#&#8203;7275]) [#&#8203;6899]: https://github.com/tokio-rs/tokio/pull/6899 [#&#8203;7276]: https://github.com/tokio-rs/tokio/pull/7276 [#&#8203;7249]: https://github.com/tokio-rs/tokio/pull/7249 [#&#8203;7204]: https://github.com/tokio-rs/tokio/pull/7204 [#&#8203;7230]: https://github.com/tokio-rs/tokio/pull/7230 [#&#8203;7226]: https://github.com/tokio-rs/tokio/pull/7226 [#&#8203;7275]: https://github.com/tokio-rs/tokio/pull/7275 ### [`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:eyJjcmVhdGVkSW5WZXIiOiIzNy40MjQuMyIsInVwZGF0ZWRJblZlciI6IjM5LjI2NC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
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
kjuulh force-pushed renovate/all from e28c95d518 to 34697f85a7 2024-11-23 02:57:27 +01:00 Compare
kjuulh force-pushed renovate/all from 34697f85a7 to 11f09736a4 2024-11-23 06:57:14 +01:00 Compare
kjuulh force-pushed renovate/all from 11f09736a4 to a47248bff3 2024-12-03 02:44:29 +01:00 Compare
kjuulh force-pushed renovate/all from a47248bff3 to bb71986404 2024-12-04 03:08:31 +01:00 Compare
kjuulh force-pushed renovate/all from bb71986404 to e8fadc9072 2024-12-04 06:49:51 +01:00 Compare
kjuulh force-pushed renovate/all from e8fadc9072 to 5f03509f8b 2024-12-06 03:07:30 +01:00 Compare
kjuulh force-pushed renovate/all from 5f03509f8b to 0b0ba7aaf6 2024-12-06 06:52:29 +01:00 Compare
kjuulh force-pushed renovate/all from 0b0ba7aaf6 to 3cc3dae280 2024-12-22 02:44:57 +01:00 Compare
kjuulh force-pushed renovate/all from 3cc3dae280 to 489c061bda 2024-12-22 06:42:11 +01:00 Compare
kjuulh force-pushed renovate/all from 489c061bda to 66b6809d3b 2024-12-27 02:43:24 +01:00 Compare
kjuulh force-pushed renovate/all from 66b6809d3b to 048a26c48a 2024-12-27 06:40:32 +01:00 Compare
kjuulh force-pushed renovate/all from 048a26c48a to 1f544231b3 2024-12-28 02:52:24 +01:00 Compare
kjuulh force-pushed renovate/all from 1f544231b3 to 081630b819 2024-12-28 06:45:16 +01:00 Compare
kjuulh force-pushed renovate/all from 081630b819 to 9499b7891b 2025-01-01 02:47:08 +01:00 Compare
kjuulh force-pushed renovate/all from 9499b7891b to e5a010d31e 2025-01-01 06:46:47 +01:00 Compare
kjuulh force-pushed renovate/all from e5a010d31e to 6732417686 2025-01-03 06:46:14 +01:00 Compare
kjuulh force-pushed renovate/all from 6732417686 to 0584465988 2025-01-04 02:48:42 +01:00 Compare
kjuulh force-pushed renovate/all from 0584465988 to c48cedb376 2025-01-05 02:52:15 +01:00 Compare
kjuulh force-pushed renovate/all from c48cedb376 to ca9415f2ae 2025-01-07 02:50:44 +01:00 Compare
kjuulh force-pushed renovate/all from ca9415f2ae to 8ec08fa1d5 2025-01-07 06:45:57 +01:00 Compare
kjuulh force-pushed renovate/all from 8ec08fa1d5 to d9615bfc85 2025-01-08 02:49:20 +01:00 Compare
kjuulh force-pushed renovate/all from d9615bfc85 to 9643892bc6 2025-01-08 06:47:27 +01:00 Compare
kjuulh force-pushed renovate/all from 9643892bc6 to cb030290fb 2025-01-09 02:57:04 +01:00 Compare
kjuulh force-pushed renovate/all from cb030290fb to 6b6721a7d9 2025-01-09 06:49:00 +01:00 Compare
kjuulh force-pushed renovate/all from 6b6721a7d9 to ecd0f61c29 2025-01-10 02:51:58 +01:00 Compare
kjuulh force-pushed renovate/all from ecd0f61c29 to 677a1876b2 2025-01-10 06:50:52 +01:00 Compare
kjuulh force-pushed renovate/all from 677a1876b2 to e8b4ffdccd 2025-01-15 03:04:15 +01:00 Compare
kjuulh force-pushed renovate/all from e8b4ffdccd to df479904c3 2025-01-15 07:00:04 +01:00 Compare
kjuulh force-pushed renovate/all from df479904c3 to 7e4a1267ae 2025-01-18 02:59:56 +01:00 Compare
kjuulh force-pushed renovate/all from 7e4a1267ae to 4c02df2feb 2025-01-19 02:57:12 +01:00 Compare
kjuulh force-pushed renovate/all from 4c02df2feb to ec30641c5b 2025-01-19 06:52:46 +01:00 Compare
kjuulh force-pushed renovate/all from ec30641c5b to 33a14a382c 2025-01-20 02:54:29 +01:00 Compare
kjuulh force-pushed renovate/all from 33a14a382c to b697df50bd 2025-01-20 06:52:20 +01:00 Compare
kjuulh force-pushed renovate/all from b697df50bd to 40fd87c355 2025-01-21 03:01:09 +01:00 Compare
kjuulh force-pushed renovate/all from 40fd87c355 to 41e7c5e911 2025-01-21 07:00:03 +01:00 Compare
kjuulh force-pushed renovate/all from 41e7c5e911 to fe73db0d76 2025-01-28 02:57:11 +01:00 Compare
kjuulh force-pushed renovate/all from fe73db0d76 to 1fdfe9b03c 2025-01-29 03:04:20 +01:00 Compare
kjuulh force-pushed renovate/all from 1fdfe9b03c to cd04b73972 2025-01-29 07:03:15 +01:00 Compare
kjuulh force-pushed renovate/all from cd04b73972 to cb9f600cea 2025-02-01 06:58:21 +01:00 Compare
kjuulh force-pushed renovate/all from cb9f600cea to 90f8caef88 2025-02-02 02:57:33 +01:00 Compare
kjuulh force-pushed renovate/all from 90f8caef88 to 06bd502702 2025-02-04 03:03:07 +01:00 Compare
kjuulh force-pushed renovate/all from 06bd502702 to 38cba1a7b2 2025-02-04 06:57:59 +01:00 Compare
kjuulh force-pushed renovate/all from 38cba1a7b2 to f8870947f1 2025-02-05 07:03:54 +01:00 Compare
kjuulh force-pushed renovate/all from f8870947f1 to f2db8da222 2025-02-06 03:04:30 +01:00 Compare
kjuulh force-pushed renovate/all from f2db8da222 to d34aefc808 2025-02-12 03:03:54 +01:00 Compare
kjuulh force-pushed renovate/all from d34aefc808 to 0477993703 2025-02-12 06:58:57 +01:00 Compare
kjuulh force-pushed renovate/all from 0477993703 to 4bb9bb5909 2025-02-18 02:59:48 +01:00 Compare
kjuulh force-pushed renovate/all from 4bb9bb5909 to 0aafd3143b 2025-02-18 06:53:58 +01:00 Compare
kjuulh force-pushed renovate/all from 0aafd3143b to a752f37f83 2025-02-20 07:03:05 +01:00 Compare
kjuulh force-pushed renovate/all from a752f37f83 to 9c9c3214c8 2025-02-21 03:02:27 +01:00 Compare
kjuulh force-pushed renovate/all from 9c9c3214c8 to e367b30f79 2025-02-25 02:59:05 +01:00 Compare
kjuulh force-pushed renovate/all from e367b30f79 to 8183bd8704 2025-02-25 06:56:10 +01:00 Compare
kjuulh force-pushed renovate/all from 8183bd8704 to 52560e86da 2025-02-27 03:06:33 +01:00 Compare
kjuulh force-pushed renovate/all from 52560e86da to e9591d350e 2025-02-27 07:02:48 +01:00 Compare
kjuulh force-pushed renovate/all from e9591d350e to cdf81fb0cf 2025-03-03 06:59:38 +01:00 Compare
kjuulh force-pushed renovate/all from cdf81fb0cf to 5aed18eb36 2025-03-04 03:08:47 +01:00 Compare
kjuulh force-pushed renovate/all from 5aed18eb36 to d6afc11450 2025-03-26 00:11:42 +01:00 Compare
kjuulh changed title from chore(deps): update all dependencies to fix(deps): update all dependencies 2025-03-26 00:11:42 +01:00
kjuulh force-pushed renovate/all from d6afc11450 to 8d0ac309ed 2025-03-26 17:48:53 +01:00 Compare
kjuulh force-pushed renovate/all from 8d0ac309ed to 2d385bcf7e 2025-03-26 20:40:50 +01:00 Compare
kjuulh force-pushed renovate/all from 2d385bcf7e to e7157183e4 2025-03-26 21:14:06 +01:00 Compare
kjuulh force-pushed renovate/all from e7157183e4 to 2dd4ab8c19 2025-03-27 03:13:52 +01:00 Compare
kjuulh force-pushed renovate/all from 2dd4ab8c19 to 69e0dabab2 2025-03-27 03:47:11 +01:00 Compare
kjuulh force-pushed renovate/all from 69e0dabab2 to a7ad891436 2025-04-02 02:41:27 +02:00 Compare
kjuulh force-pushed renovate/all from a7ad891436 to b86c824e27 2025-04-02 05:37:01 +02:00 Compare
kjuulh force-pushed renovate/all from b86c824e27 to 3bdf786561 2025-04-06 02:38:56 +02:00 Compare
kjuulh force-pushed renovate/all from 3bdf786561 to 76e750b16f 2025-04-06 05:38:19 +02:00 Compare
kjuulh force-pushed renovate/all from 76e750b16f to 01139055f6 2025-04-12 02:42:02 +02:00 Compare
kjuulh force-pushed renovate/all from 01139055f6 to 171ed0ff88 2025-04-12 05:38:27 +02:00 Compare
kjuulh force-pushed renovate/all from 171ed0ff88 to dcd792e59f 2025-04-19 02:39:13 +02:00 Compare
kjuulh force-pushed renovate/all from dcd792e59f to fe2a132bfe 2025-04-19 05:38:02 +02:00 Compare
kjuulh force-pushed renovate/all from fe2a132bfe to 55c86e5073 2025-05-07 02:40:21 +02:00 Compare
kjuulh force-pushed renovate/all from 55c86e5073 to 5d4d190205 2025-05-07 05:38:41 +02:00 Compare
kjuulh force-pushed renovate/all from 5d4d190205 to 0ef44a6bb2 2025-05-11 05:39:02 +02:00 Compare
kjuulh force-pushed renovate/all from 0ef44a6bb2 to 95d4d3cccf 2025-05-12 02:40:38 +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/octopush#82
No description provided.