fix(deps): update all dependencies #110
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "renovate/all"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
This PR contains the following updates:
1.0.97
->1.0.98
0.40.0
->0.41.0
0.4.40
->0.4.41
4.5.33
->4.5.39
0.20.1
->0.20.2
0.8.5
->0.9.0
0.12.15
->0.12.19
0.23.25
->0.23.27
0.8.3
->0.8.6
1.44.1
->1.45.1
1.16.0
->1.17.0
Release Notes
dtolnay/anyhow (anyhow)
v1.0.98
Compare Source
self.into_boxed_dyn_error()
andself.reallocate_into_boxed_dyn_error_without_backtrace()
methods for anyhow::Error (#415)chronotope/chrono (chrono)
v0.4.41
Compare Source
What's Changed
subsec_micros
andsubsec_millis
methods toTimeDelta
by @ggoetz in https://github.com/chronotope/chrono/pull/1668NaiveDateTime::UNIX_EPOCH
by @robertbastian in https://github.com/chronotope/chrono/pull/1670as_seconds_f32
andas_seconds_f64
forTimeDelta
by @ggoetz in https://github.com/chronotope/chrono/pull/1671num_days_in_month
method toDatelike
trait by @aslilac in https://github.com/chronotope/chrono/pull/1673WeekdaySet
, a collection ofWeekday
that isCopy
by @Kinrany in https://github.com/chronotope/chrono/pull/1676clap-rs/clap (clap)
v4.5.39
Compare Source
Fixes
v4.5.38
Compare Source
Fixes
--
or-
v4.5.37
Compare Source
Features
ArgMatches::try_clear_id()
v4.5.36
Compare Source
Fixes
v4.5.35
Compare Source
Fixes
help_heading
v4.5.34
Compare Source
Fixes
flatten_help(true)
and subcommands without argumentsrust-lang/git2-rs (git2)
v0.20.2
Compare Source
0.20.1...0.20.2
Added
Status::WT_UNREADABLE
.#1151
Fixed
GIT_EDIRECTORY
,GIT_EMERGECONFLICT
,GIT_EUNCHANGED
,GIT_ENOTSUPPORTED
, andGIT_EREADONLY
toError::raw_code
.#1153
Indexer::new
.#1160
rust-random/rand (rand)
v0.9.1
Compare Source
Security and unsafe
zerocopy
dependency fromrand
(#1579)Fixes
simd_support
for recent nightly rust (#1586)Changes
fn rand::seq::index::sample_weighted
andfn IndexedRandom::choose_multiple_weighted
to return fewer thanamount
results (#1623), reverting an undocumented change (#1382) to the previous release.Additions
rand::distr::Alphabetic
distribution. (#1587)rand_core
(#1604)v0.9.0
Compare Source
Security and unsafe
ReseedingRng
andThreadRng
. Instead, it is recommended to callThreadRng::reseed
on fork. (#1379)zerocopy
to replace someunsafe
code (#1349, #1393, #1446, #1502)Dependencies
--ignore-rust-version
rand_core
v0.9.0 (#1558)Features
std
feature withoutgetrandom
orrand_chacha
(#1354)small_rng
by default (#1455)rand_chacha
; usestd_rng
instead. (#1473)serde1
toserde
(#1477)getrandom
toos_rng
(#1537)thread_rng
(#1547)API changes: rand_core traits
RngCore::read_adapter
implementingstd::io::Read
(#1267)CryptoBlockRng: BlockRngCore
; maketrait CryptoRng: RngCore
(#1273)TryRngCore
,TryCryptoRng
(#1424, #1499)fn SeedableRng::from_rng
->try_from_rng
and add infallible variantfn from_rng
(#1424)fn SeedableRng::from_entropy
->from_os_rng
and add fallible variantfn try_from_os_rng
(#1424)Clone
andAsRef
to associated typeSeedableRng::Seed
(#1491)API changes: Rng trait and top-level fns
rand::thread_rng()
torand::rng()
and remove from the prelude (#1506)rand::random()
from the prelude (#1506)random_iter
,random_range
,random_bool
,random_ratio
,fill
(#1488)Rng::gen_iter
asrandom_iter
(#1305, #1500)Rng::gen
torandom
to avoid conflict with the newgen
keyword in Rust 2024 (#1438)Rng::gen_range
torandom_range
,gen_bool
torandom_bool
,gen_ratio
torandom_ratio
(#1505)#[track_caller]
(#1442, #1447)API changes: RNGs
<SmallRng as SeedableRng>::Seed
size to 256 bits (#1455)rng
) ofReseedingRng::new
(#1533)API changes: Sequences
SliceRandom
intoIndexedRandom
,IndexedMutRandom
,SliceRandom
(#1382)IndexedRandom::choose_multiple_array
,index::sample_array
(#1453, #1469)API changes: Distributions: renames
rand::distributions
torand::distr
(#1470)Standard
toStandardUniform
(#1526)distr::Slice
->distr::slice::Choose
,distr::EmptySlice
->distr::slice::Empty
(#1548)distr::DistString
->distr::SampleString
(#1548)distr::DistIter
->distr::Iter
,distr::DistMap
->distr::Map
(#1548)API changes: Distributions
Sized
bound onDistribution<T> for &D
(#1278)Distribution<Option<T>>
forStandardUniform
(#1526)StandardUniform
support allNonZero*
types (#1332){Uniform, UniformSampler}::{new, new_inclusive}
return aResult
(instead of potentially panicking) (#1229)Uniform
implementsTryFrom
instead ofFrom
for ranges (#1229)UniformUsize
(#1487)isize
andusize
values withStandardUniform
,Uniform
(except viaUniformUsize
) andFill
and usage as aWeightedAliasIndex
weight (#1487)DistString
for distributionsSlice<char>
andUniform<char>
(#1315)Slice::num_choices
(#1402)p()
for distributionBernoulli
to access probability (#1481)API changes: Weighted distributions
pub
modulerand::distr::weighted
, movingWeightedIndex
there (#1548)weighted::Weight
, allowingWeightedIndex
to trap overflow (#1353)weight, weights, total_weight
to distributionWeightedIndex
(#1420)WeightedError
toweighted::Error
, revising variants (#1382) and mark as#[non_exhaustive]
(#1480)API changes: SIMD
std::simd
, expand SIMD & docs (#1239)Reproducibility-breaking changes
ReseedingRng::reseed
discard remaining data from the last block generated (#1379)SmallRng::seed_from_u64
implementation (#1203)UniformFloat::new
samples andUniformFloat::sample_single
to yieldhigh
(#1462)Slice
(#1469)Uniform
forusize
portable viaUniformUsize
(#1487)IndexdRandom::choose_multiple_weighted
for very small seeds and optimize for large input length / low memory (#1530)Reproducibility-breaking optimisations
sample_floyd
, affecting output ofrand::seq::index::sample
andrand::seq::SliceRandom::choose_multiple
(#1277)IteratorRandom::choose
andchoose_stable
(#1268)SliceRandom::shuffle
andpartial_shuffle
(#1272)Uniform
: use Canon's method (single sampling) / Lemire's method (distribution sampling) for faster sampling (breaks value stability; #1287)sample_single_inclusive
for floats (+~20% perf) (#1289)Other optimisations
SmallRng
initialization performance (#1482)Other
Cargo.lock.msrv
file (#1275)rustfmt
and enforce (#1448)benches
crate (#1329, #1439) and migrate to Criterion (#1490)Documentation
ThreadRng
related docs (#1257)--generate-link-to-definition
feature (#1327)doc_auto_cfg
(#1411, #1450)seanmonstar/reqwest (reqwest)
v0.12.19
Compare Source
cookies
feature is enabled (by the way, it's a noop feature in wasm).v0.12.18
Compare Source
socks
enabled without TLS.v0.12.17
Compare Source
v0.12.16
Compare Source
ClientBuilder::http3_congestion_bbr()
to enable BBR congestion control.ClientBuilder::http3_send_grease()
to configure whether to send use QUIC grease.ClientBuilder::http3_max_field_section_size()
to configure the maximum response headers.ClientBuilder::tcp_keepalive_interval()
to configure TCP probe interval.ClientBuilder::tcp_keepalive_retries()
to configure TCP probe count.Proxy::headers()
to add extra headers that should be sent to a proxy.redirect::Policy::limit()
which had an off-by-1 error, allowing 1 more redirect than specified.Response::bytes_stream()
.launchbadge/sqlx (sqlx)
v0.8.6
Compare Source
9 pull requests were merged this release cycle.
Added
Changed
tempfile
dependency [[@paolobarbolini]]Fixed
attrubute
typo in doc [[@kujeger]]v0.8.5
Hotfix release to address two new issues:
sqlx-cli@0.8.4
broke.env
default resolution mechanismsqlx@0.8.4
broke test fixture setupThe
0.8.4
release will be yanked as of publishing this one.Added
sqlx-cli
now accepts--no-dotenv
in subcommand arguments.sqlx-cli
to CI.#[sqlx::test]
twice in CI to cover cleanup.Fixed
sqlx-cli
correctly reads.env
files by default again.#[sqlx::test]
.v0.8.4
50 pull requests were merged this release cycle.
Added
push_values
is passed an empty set of tuples [[@chanmaoganda]]transaction_depth
throughget_transaction_depth()
method [[@mpyw]]Connection::is_in_transaction
in [#3765]begin_with
methods to support database-specific transaction options [[@bonsairobo]]Changed
#[track_caller]
toRow::get()
[[@karambarakat]]futures-core
/futures-util
APIs withstd
variants [[@paolobarbolini]]Fixed
SQLITE_OPEN_URI
on in-memory sqlite [[@LecrisUT]]PgCopyIn
[[@joeydewaal]]CARGO_MANIFEST_DIR
[[@joeydewaal]]limit: 0
for allExecute
messagesCertificateInput::from
infer any PEM-encoded documentPGSSLKEY
not being parsed correctly when containing a PEM-encoded private key.PgConnectOptions
PGHOSTADDR
now can be used to overridePGHOST
.tokio-rs/tokio (tokio)
v1.45.1
: Tokio v1.45.1Compare Source
1.45.1 (May 24th, 2025)
This fixes a regression on the wasm32-unknown-unknown target, where code that previously did not panic due to calls to
Instant::now()
started failing. This is due to the stabilization of the first time-based metric.Fixed
v1.45.0
: Tokio v1.45.0Compare Source
Added
worker_total_busy_duration
,worker_park_count
, andworker_unpark_count
(#6899, #7276)Command::spawn_with
(#7249)Changed
Unpin
for some trait impls (#7204)runtime::Handle
as unwind safe (#7230)Unstable
v1.44.2
: Tokio v1.44.2Compare Source
This release fixes a soundness issue in the broadcast channel. The channel
accepts values that are
Send
but!Sync
. Previously, the channel calledclone()
on these values without synchronizing. This release fixes the channelby synchronizing calls to
.clone()
(Thanks Austin Bonander for finding andreporting the issue).
Fixed
clone()
call in broadcast channel (#7232)uuid-rs/uuid (uuid)
v1.17.0
Compare Source
What's Changed
wasm32v1-none
Support by @bushrat011899 in https://github.com/uuid-rs/uuid/pull/828New Contributors
Full Changelog: https://github.com/uuid-rs/uuid/compare/v1.16.0...v1.17.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.
This PR has been generated by Renovate Bot.
988c7c4e08
to7b5397934e
7b5397934e
toc404a59197
fix(deps): update all dependenciesto fix(deps): update rust crate rand to 0.9.0fix(deps): update rust crate rand to 0.9.0to fix(deps): update all dependenciesc404a59197
to5aad74cef6
5aad74cef6
to4220feb151
4220feb151
toc12abf19a8
c12abf19a8
tof7cefeff54
f7cefeff54
toa5df8c7b03
a5df8c7b03
to8a165779c5
8a165779c5
todfffe8eba9
dfffe8eba9
to3a97811727
3a97811727
to94c981f3c1
94c981f3c1
to0cd2aa12a8
0cd2aa12a8
to5364d0d358
5364d0d358
to60205cdf0e
60205cdf0e
to71b7d7d0a0
71b7d7d0a0
to0c733149c5
0c733149c5
to9575ebff59
9575ebff59
tod5cd7c8252
d5cd7c8252
tof3b336d9c8
f3b336d9c8
tobcfa860545
bcfa860545
to9ef892b9ce
9ef892b9ce
todc13f70dd5
dc13f70dd5
to5aa23827c7
5aa23827c7
toafc7a0e526
afc7a0e526
to86af0e93ec
86af0e93ec
to14936d422d
14936d422d
to9edcc9c40e
9edcc9c40e
to45946693fd
45946693fd
tob2dbc7c244
b2dbc7c244
tof5468a8825
f5468a8825
toaa274a75a3
aa274a75a3
to7525549a14
7525549a14
to4ef418ea3b
4ef418ea3b
to43ad1d54d3
43ad1d54d3
tobc6660ca73
bc6660ca73
to539fa20aa9
539fa20aa9
toebab5fbebc
ebab5fbebc
tob3548e385f
b3548e385f
toa0ad727c7f
a0ad727c7f
to9840dce300
9840dce300
to4740247b44
4740247b44
to316d4013d5
316d4013d5
tof88ae53c12
f88ae53c12
tocba5af8f25
cba5af8f25
to30b67839d5
30b67839d5
to9f264aac36
9f264aac36
to58c271afd3
58c271afd3
to5b5336e9f3
5b5336e9f3
toe2ed2097a7
e2ed2097a7
toce39ff4835
ce39ff4835
toe1c714d7eb
e1c714d7eb
toa3c0527f7f
a3c0527f7f
to10f765dfba
10f765dfba
tobb2e09663e
bb2e09663e
to18d3ec1baf
18d3ec1baf
toca607ee690
ca607ee690
to792d33cffd
792d33cffd
to4850aa1cab
4850aa1cab
to7e8f345453
7e8f345453
to80265d5950
80265d5950
tocfd8692d58
cfd8692d58
toaad3a322a3
aad3a322a3
tocb1223bd39
cb1223bd39
to1c5447df8f
1c5447df8f
tof8809fc612
f8809fc612
to5d76570bb3
5d76570bb3
to6eada22839
6eada22839
tode68e4bcf1
de68e4bcf1
to3d8ebd4dd9
3d8ebd4dd9
to8bf1723687
8bf1723687
to5d8bb5b044
5d8bb5b044
to2bafe60282
2bafe60282
toe1c163d9b0
e1c163d9b0
to8fcaa87d43
8fcaa87d43
toadd671ba1b
add671ba1b
toa318733f18
a318733f18
to5925955e62
5925955e62
toca0de16418
ca0de16418
toe798f88eba
e798f88eba
to84a3b099b4
84a3b099b4
to0d83fc1230
0d83fc1230
to3bc2d542f0
3bc2d542f0
toa08da6b4a0
a08da6b4a0
to88ce1de2bd
88ce1de2bd
to25bd4d4221
25bd4d4221
toa5f7fab00b
a5f7fab00b
to4d088e33b2
4d088e33b2
tof63a3e3a12
f63a3e3a12
tob311b60eaa
b311b60eaa
tof6b4471369
f6b4471369
tod9cd6e3162
d9cd6e3162
toacaf03307d
acaf03307d
to5b2c7cd08d
5b2c7cd08d
to0a92ee12b2
Checkout
From your project repository, check out a new branch and test the changes.