fix(deps): update all dependencies #14
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.96
->1.0.98
4.5.30
->4.5.40
3.10.0
->3.11.0
3.10.0
->3.11.0
0.12.12
->0.12.22
1.43.0
->1.46.1
1.14.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)v1.0.97
Compare Source
clap-rs/clap (clap)
v4.5.40
Compare Source
Features
arg!()
macro (e.g.arg!("check-config": ...)
)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 argumentsv4.5.33
Compare Source
Fixes
v4.5.32
Compare Source
Features
Error::remove
Documentation
humantime
tojiff
Internal
pulldown-cmark
v4.5.31
Compare Source
Features
ValueParserFactory
forSaturating<T>
obmarg/cynic (cynic)
v3.11.0
Compare Source
New Features
QueryFragment
can now be marked with#[cynic(default)]
. If this directive is present the field does not have tobe wrapped in
Option
and theDefault
impl of the type will be used if thefield is null (#1144)
cynic-introspection
now includes directives in its SDL (#1140)Bug Fixes
DateTime<Utc>
is now allowed) (#1131)
they are needed (#1151)
seanmonstar/reqwest (reqwest)
v0.12.22
Compare Source
v0.12.21
Compare Source
socks4a://
instead ofsocks4h://
.Error::is_timeout()
to check for hyper and IO timeouts too.Error
to again include URLs when possible.Default
forBody
.v0.12.20
Compare Source
ClientBuilder::tcp_user_timeout(Duration)
option to setTCP_USER_TIMEOUT
.Error::is_status()
.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()
.v0.12.15
Compare Source
ProxyOverride
andNO_PROXY
.v0.12.14
Compare Source
fetch_mode_no_cors()
, marking as deprecated when not on WASM.v0.12.13
Compare Source
Form::into_reader()
for blockingmultipart
forms.Form::into_stream()
for asyncmultipart
forms.RequestBuilder::form()
from overwriting a previously setContent-Type
header, like the other builder methods.blocking::Request
.ProxyOverride
as aNO_PROXY
value.Error::is_timeout()
to return true when from a request timeout.tokio-rs/tokio (tokio)
v1.46.1
: Tokio v1.46.1Compare Source
1.46.1 (July 4th, 2025)
This release fixes incorrect spawn locations in runtime task hooks for tasks
spawned using
tokio::spawn
rather thanRuntime::spawn
. This issue onlyeffected the spawn location in
TaskMeta::spawned_at
, and did not effect tasklocations in Tracing events.
Unstable
TaskMeta::spawn_location
tracking where a task was spawned(#7440)
v1.46.0
: Tokio v1.46.0Compare Source
1.46.0 (July 2nd, 2025)
Fixed
TcpStream::shutdown
incorrectly returning an error on macOS (#7290)Added
mpsc::OwnedPermit::{same_channel, same_channel_as_sender}
methods (#7389)biased
option forjoin!
andtry_join!
, similar toselect!
(#7307)pope::OpenOptions::read_write
on Android (#7426)Clone
implementation fornet::unix::SocketAddr
(#7422)Changed
queue::Local<T>
(#7340)LocalSet::{poll,drop}
(#7372)Unstable
TaskMeta::spawn_location
tracking where a task was spawned (#7417)LocalOptions
parameter toruntime::Builder::build_local
(#7346)Documented
start_seek
is not used (#7366)AsyncWriteExt::flush
(#7364)recv_buffer_size
method (#7336)RawFd
inTcpSocket
docs (#7416)AsRawFd
doc link to current Rust stdlib location (#7429)on_*_task_poll
is unstable (#7311)time::advance
(#7394)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)v1.44.1
: Tokio v1.44.1Compare Source
1.44.1 (March 13th, 2025)
Fixed
block_in_place
context (#7216)v1.44.0
: Tokio v1.44.0Compare 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
task::coop
module (#7116)Command::get_kill_on_drop()
(#7086)broadcast::Sender::closed
(#6685, #7090)broadcast::WeakSender
(#7100)oneshot::Receiver::is_empty()
(#7153)oneshot::Receiver::is_terminated()
(#7152)Fixed
File
should not start a background read (#7139)start_kill
on exited child should not fail (#7160)CTRL_CLOSE
,CTRL_LOGOFF
,CTRL_SHUTDOWN
on windows (#7122)Changes
select!
budget-aware (#7164)from_std
(#7166)Changes to unstable APIs
Documented
select!
alternatives (#7110)send_to
(#7146)Child
stdout (#7141)Child::kill
behavior (#7162)ChildStdin
struct doc comment (#7192)worker_threads
instead ofcore_threads
(#7186)v1.43.1
Compare Source
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
v1.16.0
Compare Source
What's Changed
Uuid::new_v8
const by @tguichaoua in https://github.com/uuid-rs/uuid/pull/815New 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
Debug
implementation for NonNilUUid by @rick-de-water in https://github.com/uuid-rs/uuid/pull/808New Contributors
Full Changelog: https://github.com/uuid-rs/uuid/compare/v1.14.0...v1.15.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.
chore(deps): update rust crate clap to v4.5.31to chore(deps): update all dependenciesf537f60f79
toee95b6667f
ee95b6667f
tof554e7526a
f554e7526a
tob4bee11b52
b4bee11b52
to64fb410a6e
64fb410a6e
tof066a25b1e
f066a25b1e
to4ac1d24e67
4ac1d24e67
to1742d152b2
1742d152b2
to7ba47b68e6
7ba47b68e6
to19a71ebd1a
19a71ebd1a
to777a5b4991
777a5b4991
to839fba805d
839fba805d
tod817827363
d817827363
to65970aaa5a
65970aaa5a
to875afa67aa
875afa67aa
to0022dbebea
0022dbebea
to4ec14b04ae
chore(deps): update all dependenciesto fix(deps): update all dependencies4ec14b04ae
toa4c60065d0
a4c60065d0
to93243f6243
93243f6243
tobaa66895f4
baa66895f4
to50e4c1e06e
50e4c1e06e
tob076573a2b
b076573a2b
to313c6d7e8e
313c6d7e8e
tof6f463ed6f
f6f463ed6f
to8e97e69988
8e97e69988
to495f1753a0
495f1753a0
to6587fc58a4
6587fc58a4
to212cfeb648
212cfeb648
to12e9dd40b5
12e9dd40b5
to2d7f6d0701
2d7f6d0701
to41bc25d7d4
41bc25d7d4
toc49ddc44c7
c49ddc44c7
tofd4f502400
fd4f502400
to355b529c95
355b529c95
toee068bd315
ee068bd315
tofd11317ef1
fd11317ef1
to7c11c06c29
7c11c06c29
to065d2d8c16
065d2d8c16
to71e63cf609
71e63cf609
to1f8211d99e
1f8211d99e
to98bfdf9e9c
98bfdf9e9c
toabdf023129
abdf023129
to260b81d599
260b81d599
to255d9df613
255d9df613
tofafafeb23b
fafafeb23b
tobae39d6487
bae39d6487
to2da46f74b0
2da46f74b0
to2b45c12543
2b45c12543
toce3c487c13
ce3c487c13
tod0fe4272f5
d0fe4272f5
to98636364ae
98636364ae
toe4a20977a6
e4a20977a6
toc935498d3c
c935498d3c
to1e6b32c4e3
1e6b32c4e3
tob66cd81567
b66cd81567
to39e04ebb3e
39e04ebb3e
to5079356bbb
5079356bbb
tobed70496b3
bed70496b3
todce5be44bb
dce5be44bb
toe721a1b0be
e721a1b0be
to2f96c62181
2f96c62181
tocde20a2f2b
cde20a2f2b
to8db4e1a211
8db4e1a211
todec41cb204
dec41cb204
toa94f3ba920
a94f3ba920
to2ce1c94868
2ce1c94868
to812c1570bd
812c1570bd
to53ed9a3a79
53ed9a3a79
tod750e434ac
d750e434ac
to1f790e3a6d
1f790e3a6d
to402c83bb6c
402c83bb6c
todafa327549
dafa327549
to2d1911f3be
2d1911f3be
toa97d15944c
a97d15944c
to6d758e3707
6d758e3707
tob6644c2420
b6644c2420
toea6ce88450
ea6ce88450
to8d1c49ddf8
8d1c49ddf8
to34b43c10f7
34b43c10f7
to7d8b1cc56f
7d8b1cc56f
to94069dbc2b
94069dbc2b
toaa8b1f1bc6
aa8b1f1bc6
toea341936b9
ea341936b9
to2e2e68bd54
2e2e68bd54
toded7f988bb
ded7f988bb
tob5457ca552
b5457ca552
toa2ee2e2302
a2ee2e2302
to4029192175
4029192175
tof89c3e46d7
f89c3e46d7
to74ba18b612
74ba18b612
to1c33995ee3
1c33995ee3
to61c0796cb6
61c0796cb6
to1544fd2877
1544fd2877
to78b1f0359e
78b1f0359e
to83cd26d9db
83cd26d9db
to4cd9f19684
4cd9f19684
to1a78a96be6
1a78a96be6
to52b9f1b0df
52b9f1b0df
to5f9b1664d1
5f9b1664d1
to1782693671
1782693671
to10515a4bbb
10515a4bbb
to8b7596683a
8b7596683a
to70928dd20f
70928dd20f
to1d1ddf978b
1d1ddf978b
to74f3393da7
74f3393da7
to452f884f90
452f884f90
tof970591e5c
f970591e5c
to5e2a751190
5e2a751190
to08c0bda2f9
08c0bda2f9
toc8a3bb6408
c8a3bb6408
to7dfb0639b7
7dfb0639b7
toe7df9fdd8a
e7df9fdd8a
to3bc4d3d07f
3bc4d3d07f
toe811858cf4
e811858cf4
to7505a33a44
7505a33a44
to7f1f585f88
7f1f585f88
tocd5aebb1b7
cd5aebb1b7
to70baee8d36
70baee8d36
to3471df6375
3471df6375
to40ed267ce8
40ed267ce8
to87ae116321
87ae116321
to04e0d63505
04e0d63505
to31aac7066b
31aac7066b
to7e720787ea
7e720787ea
tof5c6a61e30
f5c6a61e30
to5457bdd5ed
5457bdd5ed
to15e87d4154
15e87d4154
to2a97add713
2a97add713
to4bc44a1596
4bc44a1596
to5dc6347d48
5dc6347d48
to31ab3f82a8
31ab3f82a8
tofbbf6cd4e0
fbbf6cd4e0
to5e77a25bd6
5e77a25bd6
toe97226144a
e97226144a
to2857dd4a74
2857dd4a74
to69ef4e7a05
69ef4e7a05
toa2263c0780
a2263c0780
to28e8c04213
28e8c04213
tofd8733f74e
fd8733f74e
tof5bedcfe04
f5bedcfe04
to25debb4802
25debb4802
to06d29278b3
06d29278b3
to3e9f1e715d
3e9f1e715d
to2df8200d20
2df8200d20
tof1a8742e72
f1a8742e72
to1b8f1da9f2
1b8f1da9f2
to12b9d1472b
12b9d1472b
to36e71b5360
36e71b5360
to9e1524348c
9e1524348c
to970630a5ee
970630a5ee
toa44e05a82d
a44e05a82d
to588d93424f
588d93424f
to70acc65806
70acc65806
to7e23603137
7e23603137
to27ef6d41c2
27ef6d41c2
to65b7407fed
65b7407fed
to6b12b45606
6b12b45606
to148114403b
148114403b
to93d4a0bcce
93d4a0bcce
tof0d2dd07ad
f0d2dd07ad
to7acea1a4c2
7acea1a4c2
to4cb3ecc2a9
4cb3ecc2a9
to745c9177e3
745c9177e3
todba2ea26e3
dba2ea26e3
to35e34e10df
35e34e10df
to45a2199009
45a2199009
toa5e7ab5b6e
a5e7ab5b6e
to3db34d637a
3db34d637a
tof4fbfb8bed
f4fbfb8bed
to34dbf23be8
34dbf23be8
to9b2acf3e2a
9b2acf3e2a
to43199508bf
43199508bf
to245e359b61
245e359b61
toea46181cbc
ea46181cbc
to85ded4cbbe
85ded4cbbe
tod8d310e259
d8d310e259
to25c8d939ce
25c8d939ce
to5fff05dfeb
5fff05dfeb
to04a3c4776f
04a3c4776f
to31466c5352
31466c5352
toe38294bbc6
e38294bbc6
tofc75b6292c
fc75b6292c
to5909a9d2a9
5909a9d2a9
tofb0ab5b584
fb0ab5b584
to770f392e0f
770f392e0f
tobdb6d2bb0b
bdb6d2bb0b
tobd2e8d030d
bd2e8d030d
tod7f85855cd
d7f85855cd
todb7575c540
db7575c540
to141aab12ef
141aab12ef
to2658c88a25
2658c88a25
to752c174a01
752c174a01
tod9600f9e91
d9600f9e91
to6a35986a7a
6a35986a7a
tofb8d2e056f
fb8d2e056f
toe03e51f5f2
e03e51f5f2
tobfe6dd7e12
bfe6dd7e12
to2a5ceb097c
2a5ceb097c
to346b6d0a43
346b6d0a43
to8cc144e471
8cc144e471
to92ed46005c
92ed46005c
to52ec84807d
52ec84807d
tod8624c3f99
d8624c3f99
tobea6613b87
bea6613b87
to1fbd673eff
1fbd673eff
to4d48a83b3d
4d48a83b3d
toa5ee4e339c
a5ee4e339c
toa3c1381d0b
a3c1381d0b
to10ce89e906
10ce89e906
todbdbce08e5
dbdbce08e5
tod9a5a68d78
d9a5a68d78
to69206e2322
69206e2322
tofbc66ed477
fbc66ed477
tofa8459aa39
fa8459aa39
to05e2471b76
05e2471b76
tod62feaf3a4
d62feaf3a4
to627e927225
627e927225
to731ba1ab14
731ba1ab14
to8d55de67a7
8d55de67a7
to025bfa7c88
025bfa7c88
tobc92811093
bc92811093
to2e61a81a39
2e61a81a39
to5ae84132cd
5ae84132cd
to915d0abff9
915d0abff9
tocdef8b1fc5
cdef8b1fc5
to2ff38aa014
2ff38aa014
to1b6f760534
1b6f760534
toc56712e037
c56712e037
tof099183db9
f099183db9
tof8a58ed69d
f8a58ed69d
to7efb38c344
7efb38c344
toa084cf99d8
a084cf99d8
tob2f5d755a5
Checkout
From your project repository, check out a new branch and test the changes.