fix(deps): update all dependencies #2
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.86
->1.0.98
0.4.38
->0.4.40
4.5.13
->4.5.36
v2.7.0
->v3.0.0
v24.2.1
->v25.1.1
15-alpine
->17-alpine
0.8.5
->0.9.0
1.0.122
->1.0.140
0.7.3
->0.8.0
1.39.2
->1.44.2
0.5.2
->0.6.0
1.10.0
->1.16.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
v1.0.96
Compare Source
v1.0.95
Compare Source
Error::from_boxed
(#401, #402)v1.0.94
Compare Source
v1.0.93
Compare Source
thiserror
v2v1.0.92
Compare Source
&raw const
and&raw mut
syntax insideensure!
(#390)v1.0.91
Compare Source
v1.0.90
Compare Source
v1.0.89
Compare Source
UnwindSafe
andRefUnwindSafe
impl consistently available between versions of Rust newer and older than 1.72 (#386)v1.0.88
Compare Source
v1.0.87
Compare Source
Error::new
andError::chain
, in no-std mode on Rust 1.81+ (#383)chronotope/chrono (chrono)
v0.4.40
: 0.4.40Compare Source
What's Changed
write_to
forDelayedFormat
by @tugtugtug in https://github.com/chronotope/chrono/pull/1654v0.4.39
: 0.4.39Compare Source
What's Changed
from_timestamp_nanos()
by @sgoll in https://github.com/chronotope/chrono/pull/1591NaiveWeek
methods by @bragov4ik in https://github.com/chronotope/chrono/pull/1600PartialEq
,Eq
,Hash
,Copy
andClone
onNaiveWeek
by @DSeeLP in https://github.com/chronotope/chrono/pull/1618#[inline]
tonum_days
by @CommanderStorm in https://github.com/chronotope/chrono/pull/1627clap-rs/clap (clap)
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>
v4.5.30
Compare Source
Fixes
num_args(0..=1)
to be used withSetTrue
takes_values
assertionsv4.5.29
Compare Source
Fixes
ArgMatches::args_present
so not-present flags are considered not-present (matching the documentation)v4.5.28
Compare Source
Features
unstable-markdown
v4.5.27
Compare Source
Documentation
v4.5.26
Compare Source
Fixes
suggestions
featurev4.5.25
Compare Source
Fixes
v4.5.24
Compare Source
Fixes
ignore_errors(true)
and when a suggestion is provided for an unknown argumentv4.5.23
Compare Source
Fixes
allow_negative_numbers
, allowE
againv4.5.22
Compare Source
Fixes
v4.5.21
Compare Source
Fixes
ignore_errors(true)
v4.5.20
Compare Source
Features
CommandExt
v4.5.19
Compare Source
Internal
v4.5.18
Compare Source
Features
Arg::get_display_order
andCommand::get_display_order
v4.5.17
Compare Source
Fixes
v4.5.16
Compare Source
Fixes
derive
feature is missingv4.5.15
Compare Source
Compatiblity
Arg::remove
changed return typesFixes
Arg::remove
return the removed itemv4.5.14
Compare Source
Features
Arg::add
for attaching arbitrary state, like completion hints, toArg
withoutArg
knowing about itrust-random/rand (rand)
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)serde-rs/json (serde_json)
v1.0.140
Compare Source
v1.0.139
Compare Source
v1.0.138
Compare Source
v1.0.137
Compare Source
v1.0.136
Compare Source
v1.0.135
Compare Source
v1.0.134
Compare Source
RawValue
associated constants for literalnull
,true
,false
(#1221, thanks @bheylin)v1.0.133
Compare Source
v1.0.132
Compare Source
v1.0.131
Compare Source
Map<String, Value>
and&Map<String, Value>
(#1135, thanks @swlynch99)v1.0.130
Compare Source
Number
from i128 and u128 (#1141, thanks @druide)v1.0.129
Compare Source
serde_json::Map::sort_keys
andserde_json::Value::sort_all_objects
(#1199)v1.0.128
Compare Source
v1.0.127
Compare Source
v1.0.126
Compare Source
v1.0.125
Compare Source
v1.0.124
Compare Source
v1.0.123
Compare Source
launchbadge/sqlx (sqlx)
v0.8.4
50 pull requests were merged this release cycle.
As of this release, development of
0.9.0
has begun onmain
.Barring urgent hotfixes, this is expected to be the last release of
0.8.x
.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
.v0.8.3
Compare Source
41 pull requests were merged this release cycle.
Added
Uuid
anduuid::fmt::Hyphenated
[[@abonander]]Changed
.pgpass
file warning to a debug message. [[@denschub]]PgListener::try_recv
[[@swlynch99]]UNION ALL
instead ofUNION
in nullable check [[@Suficio]]Fixed
no-transaction
flag in down migrations [[@manifest]]sqlformat
[[@tbar4]]query_as
[[@xuehaonan27]]INTERVAL[]
[[@Ddystopia]]EXPLAIN
in nullability check for QuestDB [[@Suficio]]v0.8.2
Compare Source
10 pull requests were merged this release cycle.
This release addresses a few regressions that have occurred, and refines SQLx's MSRV policy (see the FAQ).
Added
Changed
Cargo.toml
files in examples [[@carschandler]]Fixed
#[sqlx(no_pg_array)]
being forbidden on#[derive(Type)]
structs.PgListener
,PgStream::recv()
[[@abonander]]unknown message: "\\0"
errorv0.8.1
Compare Source
16 pull requests were merged this release cycle.
This release contains a fix for RUSTSEC-2024-0363.
Postgres users are advised to upgrade ASAP as a possible exploit has been demonstrated:
#3440 (comment)
MySQL and SQLite do not appear to be exploitable, but upgrading is recommended nonetheless.
Added
MySqlConnectOptions::no_engine_substitution()
[[@kolinfluence]]MySqlConnectOptions::no_engine_subsitution()
(oops) in favor of the correctly spelled version.Changed
spec_error
module [[@abonander]]Use at your own risk.
libsqlite3-sys=0.30.1
to support sqlite 3.46 [[@CommanderStorm]]ring
(the existing implementation),and
aws-lc-rs
which has optional FIPS certification.runtime-tokio-rustls
,runtime-async-std-rustls
,tls-rustls
)enable the
ring
provider of RusTLS to match the existing behavior so this should not be a breaking change.tls-rustls-aws-lc-rs
feature to use theaws-lc-rs
provider.runtime-tokio-rustls
orruntime-async-std-rustls
,this will necessitate switching to the appropriate non-legacy runtime feature:
runtime-tokio
orruntime-async-std
Fixed
sqlx::Type
[[@alu]]node12
inSQLx
action [[@hamirmahal]]v0.18.1
to avoid yankedv0.14.3
[[@CommanderStorm]]v0.8.0
Compare Source
70 pull requests were merged this release cycle.
#2697 was merged the same day as release 0.7.4 and so was missed by the automatic CHANGELOG generation.
Breaking
#[sqlx::test]
usages are applied in the correct order now.MigrateError
.-- no-transaction
to the beginning.Migration
i64
as intermediate when decoding [[@abonander]]#[derive(sqlx::Type)]
in Postgres [[@abonander]]#[sqlx(no_pg_array)]
where conflicts occur.PgTypeInfo::with_name()
infers types that start with_
to be arrays of the un-prefixed type. Wrap type names in quotes to bypass this behavior.FromRow
, returnError::ColumnDecode
forTryFrom
errors [[@abonander]]#[sqlx(try_from = "T")]
now returnError::ColumnDecode
instead ofError::ColumnNotFound
.#[sqlx(default)]
on an individual field or the struct itself would have previously suppressed the error.This doesn't seem like good behavior as it could result in some potentially very difficult bugs.
From
and apply the default explicitly.#[sqlx(rename)]
and#[sqlx(rename_all)]
to match the expected behavior (rename
wins).ConnectOptions::to_url_lossy()
to match what parsing expects.Added
MySqlTime
, auditmysql::types
for panics [[@abonander]]NonZero*
scalar types [[@AlphaKeks]]Changed
Send
trait bound from argument binding [[@bobozaur]]libsqlite3-sys
are not considered breaking changes as per our semver guarantees.MySqlConnection
to reduce sizes of futures [[@stepantubanov]]sqlx migrate add ...
[[@CommanderStorm]]Fixed
ConnectionHandleRaw
type [[@abonander]]docker compose
instead ofdocker-compose
[[@abonander]]path
ownership problems when usingsqlx_macros_unstable
[[@lily-mosquitoes]]sqlx_postgres::any
[[@Zarathustra2]]migrate
error message. (#3275) [[@nk9]]persistent
query setting when preparing queries with theAny
driver [[@etorreborre]]select_input_type!()
being unhygenic [[@CommanderStorm]]M
orC
Notice fields are not UTF-8 [[@YgorSouza]]json
-feature should activatesqlx-postgres?/json
as well [[@CommanderStorm]]clock
andstd
features ofworkspace.dependencies.chrono
.tokio-rs/tokio (tokio)
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
v1.43.0
: Tokio v1.43.0Compare Source
1.43.0 (Jan 8th, 2025)
Added
UdpSocket::peek
methods (#7068)Command::into_std()
(#7014)SignalKind::info
on illumos (#6995)Fixed
set_len
before initializing vector inBlocking
(#7054)clippy::needless_return
in#[tokio::main]
(#6874)Changes
unsync_load
(#7073)Buf::put_bytes
inRepeat
read impl (#7055)Changes to unstable APIs
Documented
ReadBuf::uninit
allows initialized buffers as well (#7053)TcpStream::try_write_vectored
docs (#7067)LocalRuntime
doc links (#7074)watch::Receiver::wait_for
(#7038)OnceCell
docs (#7047)v1.42.1
: Tokio v1.42.1Compare 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 channel by synchronizing calls to.clone()
(Thanks Austin Bonander for finding and reporting the issue).Fixed
clone()
call in broadcast channel (#7232)v1.42.0
: Tokio v1.42.0Compare Source
1.42.0 (Dec 3rd, 2024)
Added
AsyncFd::{try_io, try_io_mut}
(#6967)Fixed
ptr->ref->ptr
roundtrip in RegistrationSet (#6929)yield_now
insideblock_in_place
(#6999)Changes
Documented
tokio::net::unix::{pid_t, gid_t, uid_t}
(#6791)Instant
docs (#6982)v1.41.1
: Tokio v1.41.1Compare Source
1.41.1 (Nov 7th, 2024)
Fixed
net
requirement fornet::UdpSocket
in docs (#6938)TcpStream
internal comment (#6944)v1.41.0
: Tokio v1.41.0Compare Source
1.41.0 (Oct 22th, 2024)
Added
global_queue_depth
(#6854, #6918)SocketAddr
(#6868)watch::Sender::sender_count
(#6836)mpsc::Receiver::blocking_recv_many
(#6867)Id
apis (#6793, #6891)Added (unstable)
LocalRuntime
(#6808)Changed
#[must_use]
toNotified
(#6828)watch
cooperative (#6846)broadcast::Receiver
cooperative (#6870)cfg_fs
forwasi
target (#6822)Fixed
Documented
OwnedFd
withAsyncFd
(#6821)AsyncFd
methods (#6890)join
andtry_join
(#6814, #6841)TcpSocket::set_nodelay
andTcpSocket::nodelay
(#6840)v1.40.0
: Tokio v1.40.0Compare Source
1.40.0 (August 30th, 2024)
Added
util::SimplexStream
(#6589)Command::process_group
(#6731){TrySendError,SendTimeoutError}::into_inner
(#6755)JoinSet::join_all
(#6784)Added (unstable)
Builder::{on_task_spawn, on_task_terminate}
(#6742)Changed
write_all_buf
when possible (#6724)UnwindSafe
(#6783)Sleep
andBatchSemaphore
instrumentation explicit roots (#6727)NonZeroU64
fortask::Id
(#6733)JoinError
(#6753)#[must_use]
toJoinHandle::abort_handle
(#6762)Documented
[build]
section doesn't go in Cargo.toml (#6728)select!
(#6774)v1.39.3
: Tokio v1.39.3Compare Source
1.39.3 (August 17th, 2024)
This release fixes a regression where the unix socket api stopped accepting the abstract socket namespace. (#6772)
tower-rs/tower-http (tower-http)
v0.6.2
Compare Source
Changed:
CompressionBody<B>
now propagatesB
's size hint in itshttp_body::Body
implementation, if compression is disabled (#531)
content-length
to be included in an HTTP message with thisbody for those cases
New Contributors
Full Changelog: https://github.com/tower-rs/tower-http/compare/tower-http-0.6.1...tower-http-0.6.2
v0.6.1
: v0.6.1Compare Source
Fixed
New Contributors
v0.6.0
: v0.6.0Compare Source
Changed:
body
module is disabled except forcatch-panic
,decompression-*
,fs
, orlimit
features (BREAKING) (#477)tower
0.5 (#503)Fixed
uuid-rs/uuid (uuid)
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
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
wasm32
withatomics
by @bushrat011899 in https://github.com/uuid-rs/uuid/pull/797New 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
to0.3
andrand
to0.9
. It is a potentially breaking change for the following users:no-std users who enable the
rng
featureuuid
still usesgetrandom
by default on these platforms. Upgrade your version ofgetrandom
and follow its new docs on configuring a custom backend.wasm32-unknown-unknown
users who enable therng
feature without thejs
featureUpgrade your version of
getrandom
and follow its new docs on configuring a backend.You'll also need to enable the
rng-getrandom
orrng-rand
feature ofuuid
to force it to usegetrandom
as its backend:If you're on
wasm32-unknown-unknown
and using thejs
feature ofuuid
you shouldn't see any breakage. We've kept this behavior by vendoring ingetrandom
's web-based backend when thejs
feature is enabled.What's Changed
getrandom
to0.3
andrand
to0.9
by @KodrAus in https://github.com/uuid-rs/uuid/pull/793getrandom
onwasm32-unknown-unknown
without JavaScript by @KodrAus in https://github.com/uuid-rs/uuid/pull/794Full 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 onUuid
, which can break inference in some cases.What's Changed
NonZeroUuid
type for optimizedOption<Uuid>
representation by @ab22593k in https://github.com/uuid-rs/uuid/pull/779NonNilUuid
by @KodrAus in https://github.com/uuid-rs/uuid/pull/783New 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.
This PR has been generated by Renovate Bot.
ecf328e49a
toee68c15b72
ee68c15b72
to56999b02d7
56999b02d7
to15f8c1fc21
15f8c1fc21
to37f2867a92
37f2867a92
toab0890fd76
ab0890fd76
toa0c3a860af
a0c3a860af
todf826b37e6
df826b37e6
tocd25675872
cd25675872
to033cd4ac6c
033cd4ac6c
tod7a5558179
d7a5558179
to8d68148750
8d68148750
to1c6a064ea6
1c6a064ea6
to326ed640ac
326ed640ac
toa45c129346
a45c129346
to64de3789ba
64de3789ba
to4a9fd9e26a
4a9fd9e26a
to87a3d07239
87a3d07239
to85decd28cd
85decd28cd
tob393b391d9
b393b391d9
to7bced30408
7bced30408
to7b22eca3a7
7b22eca3a7
to73323f4675
73323f4675
to52e908b372
52e908b372
tode042edc9a
de042edc9a
to6733ec99a3
6733ec99a3
to130b970eac
130b970eac
to381c9efcd7
381c9efcd7
tob60807ba11
b60807ba11
to03a17225b5
03a17225b5
to64c655b4e6
64c655b4e6
tof7376e5b3b
f7376e5b3b
to4c21710a20
4c21710a20
to4698594a79
4698594a79
to585e4e7f0c
585e4e7f0c
to6f5b59c6d5
6f5b59c6d5
tof0b0df3123
f0b0df3123
toe8ea7e50f5
e8ea7e50f5
to8083f5992f
8083f5992f
to9ecd00f879
9ecd00f879
toe5cafe2028
e5cafe2028
to5376708ca0
5376708ca0
to35e22aad49
35e22aad49
tob59563d42c
b59563d42c
to60052ed0ee
60052ed0ee
to2097bc16df
2097bc16df
tobe472c3025
be472c3025
toc01b723cc5
c01b723cc5
to2edb423a51
2edb423a51
toc25a85cbea
c25a85cbea
to5e35e3c2e1
5e35e3c2e1
toc29b60a152
c29b60a152
to29e458c9ec
29e458c9ec
tod13034b692
d13034b692
toc9cf6a4abb
c9cf6a4abb
to75d0d28b38
75d0d28b38
to25b6f7e6bb
25b6f7e6bb
to888f8332a8
888f8332a8
toa575a4a159
a575a4a159
to63debc6bc3
63debc6bc3
tob90cf0ebd4
b90cf0ebd4
to6bc8a4c090
6bc8a4c090
to0d358bd7e6
0d358bd7e6
to8c28f4d9a0
8c28f4d9a0
to3911679653
3911679653
to3d44fba04d
3d44fba04d
to597519bdcd
597519bdcd
to18ede6ddc4
18ede6ddc4
to8d37ac11a9
8d37ac11a9
toe11ea4db19
e11ea4db19
toa740b494b8
a740b494b8
to2d6ebd48da
2d6ebd48da
to5a2b57e273
5a2b57e273
tof2cc10ea4b
f2cc10ea4b
to166bc2884b
166bc2884b
to8409dff029
8409dff029
to5fa23772a5
5fa23772a5
todec425c736
dec425c736
to145a712ea1
145a712ea1
to6946fb2927
6946fb2927
to392b99040d
392b99040d
to3f951171a2
3f951171a2
to5731ec8518
5731ec8518
to9badb7f44d
9badb7f44d
to5de67bdb4e
5de67bdb4e
to9c869fb48a
9c869fb48a
to7ccbfb513e
7ccbfb513e
to7513a0d004
7513a0d004
to80c7f0542c
80c7f0542c
to422cb38299
422cb38299
to2610cf1ee7
2610cf1ee7
to77562d9aa1
77562d9aa1
to476116b641
476116b641
to7645344fb0
⚠️ Artifact update problem
Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.
♻ Renovate will retry this branch, including artifacts, only when one of the following happens:
The artifact failure details are included below:
File name: Cargo.lock
7645344fb0
to53524ff894
53524ff894
toab994c7029
ab994c7029
to78d2db69d1
78d2db69d1
to84687a8a8d
84687a8a8d
tob306ddacf0
b306ddacf0
to1b1670f2fc
1b1670f2fc
tofd9fff6d1a
fd9fff6d1a
to5d60bc1b38
5d60bc1b38
to219d8af89f
219d8af89f
tob20a22cf54
b20a22cf54
to156a2fc4d2
156a2fc4d2
to1683bc2fea
1683bc2fea
toa9ce1980da
a9ce1980da
to742f53239b
742f53239b
to7e7f260922
7e7f260922
to00ca21ff63
00ca21ff63
toa90127a32b
a90127a32b
to1745cb4307
1745cb4307
to325330ee0a
325330ee0a
to03bd59e29e
03bd59e29e
toefa9a0c003
efa9a0c003
tobdd48ddc52
bdd48ddc52
to4aab24b946
4aab24b946
to8c4078d2e0
8c4078d2e0
toa4c635f4b3
a4c635f4b3
to59ec116011
59ec116011
tof95e5d1132
f95e5d1132
to9914992dda
9914992dda
tod8b5788e6e
d8b5788e6e
to3d661cc8c3
3d661cc8c3
to4188f1f1e3
4188f1f1e3
to5401ec031d
5401ec031d
todee5a68727
dee5a68727
to9e5a0d13c4
9e5a0d13c4
tod7ff0778cb
d7ff0778cb
toc3aacdf5a1
c3aacdf5a1
tof52221a666
f52221a666
to166972f4c4
166972f4c4
to5b08159690
5b08159690
toc9c3501adc
c9c3501adc
to95546235ac
95546235ac
to3069e69b2d
3069e69b2d
to383d6bfeb7
383d6bfeb7
toadbc0c1af2
adbc0c1af2
toeba9bafd03
eba9bafd03
to3c0808d99e
3c0808d99e
todf15ad1769
df15ad1769
to34580aff0d
34580aff0d
to095f760383
095f760383
to2d4f62d2a1
2d4f62d2a1
tof41a7a1408
f41a7a1408
to604f2a5b93
604f2a5b93
to2d8146e23d
2d8146e23d
toef33c05a67
ef33c05a67
tocf95216398
cf95216398
toe7f84cd95a
e7f84cd95a
to7445c3687b
7445c3687b
to7bdcaa75f3
7bdcaa75f3
to813b3f910b
813b3f910b
toa9bb149bf0
a9bb149bf0
tob6c6432b30
b6c6432b30
to9ccbfeeedf
9ccbfeeedf
to3c0e0dec53
3c0e0dec53
to743e4bcfdc
743e4bcfdc
tobcd969513d
bcd969513d
to4dcd599f0d
4dcd599f0d
to0a0982ab55
0a0982ab55
tocbb9092d40
cbb9092d40
toca46501d57
ca46501d57
toa96000e167
a96000e167
to321c751ec0
321c751ec0
to638f0d1bfe
638f0d1bfe
to081fa827b8
081fa827b8
tof0adf5fda8
f0adf5fda8
to1fd17d3071
1fd17d3071
to1a73692c48
chore(deps): update all dependenciesto fix(deps): update all dependencies1a73692c48
to3a32332c36
3a32332c36
tof812c3d2b8
f812c3d2b8
toe4277a7cc7
e4277a7cc7
to2e763e0ba4
2e763e0ba4
to24c97e6bcc
24c97e6bcc
to93862178cd
93862178cd
to46ca334516
46ca334516
to6477185878
6477185878
tobb1ff6437a
bb1ff6437a
toe03dcf8ca8
e03dcf8ca8
to45eae70942
45eae70942
to0f280f759f
0f280f759f
to60ca01bcf2
60ca01bcf2
toaf6d37b8dd
af6d37b8dd
to11839fcb97
11839fcb97
toc1dee053df
c1dee053df
to03f844f010
03f844f010
to67460946a6
67460946a6
to8d13b5be24
8d13b5be24
to42feb58477
42feb58477
toe14af141ce
e14af141ce
tob1e67e1a02
b1e67e1a02
to00aff0dac1
00aff0dac1
tod9c5a396a2
d9c5a396a2
to2fafe5829e
2fafe5829e
to2d4e1027b4
2d4e1027b4
to54cd77f5d4
54cd77f5d4
tof7926d3668
f7926d3668
to47293ce1c6
47293ce1c6
tob0172a771f
b0172a771f
to42427e5b9d
42427e5b9d
to86647bbda2
86647bbda2
toa9e2899c9b
a9e2899c9b
to1f3bd21914
1f3bd21914
to16f63291c7
16f63291c7
to9e1511017f
9e1511017f
tobf7dd43ce7
bf7dd43ce7
to51c4d4b856
51c4d4b856
to0b143fa292
0b143fa292
to97333c8f64
97333c8f64
to3165dca89e
3165dca89e
tofcd4d2bbf9
fcd4d2bbf9
to8c00128b3b
8c00128b3b
toa50b4491c6
a50b4491c6
to8309190aaf
8309190aaf
to95ebf39894
95ebf39894
tod988e23c87
d988e23c87
to0b0031dfc0
0b0031dfc0
to78d7b2150d
78d7b2150d
todeb6658cf0
deb6658cf0
to7e44b7d748
7e44b7d748
to3c4976ef5b
3c4976ef5b
to36f79ea73b
36f79ea73b
to718b3a28de
718b3a28de
toffd17f6903
ffd17f6903
tofea8ae944a
fea8ae944a
toc80eb2354d
c80eb2354d
to8d1ce83d13
8d1ce83d13
to3e2484c44f
3e2484c44f
tocd27390781
cd27390781
to96fdeeeefd
96fdeeeefd
toce86f91fc2
ce86f91fc2
to5b7b6a3258
5b7b6a3258
toff499f238f
ff499f238f
to1363a1e474
1363a1e474
to89743f7b75
89743f7b75
toa143c26627
a143c26627
to59db4639b0
59db4639b0
to46fb4c43f7
46fb4c43f7
tocf68399b84
cf68399b84
to8496e4e853
8496e4e853
to879a7dd58e
879a7dd58e
tof9b2d37ab8
f9b2d37ab8
to4d1424c387
4d1424c387
to02efec7192
02efec7192
to889003011e
889003011e
tof640853e3c
f640853e3c
to636357cc89
636357cc89
tof0e2bebd43
f0e2bebd43
to14309b6b23
14309b6b23
to8430310c6d
8430310c6d
to6c851b095b
6c851b095b
to1361df33ae
1361df33ae
tofc6c47f06f
fc6c47f06f
to92689961be
92689961be
to6d2e334a57
6d2e334a57
to2fb95f1395
2fb95f1395
to687006b108
687006b108
toeb1aafb425
eb1aafb425
to6d3f954850
6d3f954850
tob930431c7c
b930431c7c
to43121b1fd4
43121b1fd4
to2bb092b87e
2bb092b87e
to35bcf12679
35bcf12679
to4fdd3e23bf
4fdd3e23bf
to78935bf348
78935bf348
to69a0aaa7f7
69a0aaa7f7
tod2097f0d40
d2097f0d40
to244a1656e4
244a1656e4
to640d0b051b
640d0b051b
to5cd0ae8b5a
5cd0ae8b5a
todddb221856
dddb221856
to577cdf3168
577cdf3168
to033a14f494
033a14f494
to927ec71838
927ec71838
to2cae3b2d8c
2cae3b2d8c
toeff1e79029
eff1e79029
to3312bf17ce
3312bf17ce
tobff38803d9
bff38803d9
to33ecf70ad5
33ecf70ad5
tobff3d68ad8
bff3d68ad8
tod466df7f97
d466df7f97
to50e48a12bd
50e48a12bd
to0c0c6d9453
0c0c6d9453
to6f13c4acf7
6f13c4acf7
to4c649df305
4c649df305
to57a247f6dd
57a247f6dd
to201e421b4e
201e421b4e
to93bc5e88f5
93bc5e88f5
to6065cf6eda
6065cf6eda
to3127efd24e
3127efd24e
tob0bc23f170
b0bc23f170
todf088ba894
df088ba894
to6e2b97dfd1
Checkout
From your project repository, check out a new branch and test the changes.