fix(deps): update all non-major dependencies #195
+647
−349
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
v4.1.7
->v4.2.2
1.0.86
->1.0.95
0.4.11
->0.4.18
0.3.5
->0.3.6
0.1.80
->0.1.85
1.5.0
->1.5.13
1.32.0
->1.68.0
0.7.5
->0.8.0
0.4.1
->0.5.0
1.6.0
->1.9.0
1.1.13
->1.2.8
0.4.38
->0.4.39
4.5.4
->4.5.26
4.5.2
->4.5.42
0.2.0
->0.4.0
0.2.32
->0.2.34
1.0.122
->1.0.136
1.0.122
->1.0.136
0.2.4
->0.2.5
0.6.0
->0.6.1
0.3.30
->0.3.31
0.1.1
->0.1.2
2.2.6
->2.7.0
0.17.8
->0.17.9
=1.0.5
->=1.0.14
0.11.5
->0.12.0
1.4.0
->1.5.0
0.4.21
->0.4.22
0.3.30
->0.3.31
1.10.4
->1.11.1
0.12.4
->0.12.12
0.9.6
->0.9.7
1.0.203
->1.0.217
1.0.117
->1.0.135
1.0.117
->1.0.135
3.8.1
->3.12.0
3.10.1
->3.15.0
3.10.1
->3.15.0
1.38.0
->1.43.0
0.7.11
->0.7.13
0.8.13
->0.8.19
0.5.2
->0.6.0
0.1.40
->0.1.41
0.2.0
->0.2.1
0.3.18
->0.3.19
1.8.0
->1.11.1
2.3.4
->2.4.0
Release Notes
actions/checkout (actions/checkout)
v4.2.2
Compare Source
url-helper.ts
now leverages well-known environment variables by @jww3 in https://github.com/actions/checkout/pull/1941isGhes
by @jww3 in https://github.com/actions/checkout/pull/1946v4.2.1
Compare Source
v4.2.0
Compare Source
dtolnay/anyhow (anyhow)
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)Nullus157/async-compression (async-compression)
v0.4.18
Compare Source
Fixed
Level::Precise
clamp range for flate2.v0.4.17
Compare Source
Fixed
v0.4.16
Compare Source
Other
AsyncBufRead
on write-based encoders & decoders.v0.4.15
Compare Source
Feature
AsyncRead
orAsyncWrite
where appropriate.AsyncRead
/AsyncWrite
bounds on*::{get_ref, get_mut, get_pin_mut, into_inner}()
methods.v0.4.14
Compare Source
Fixed
v0.4.13
Compare Source
Feature
brotli
dependency to to7
.v0.4.12
Compare Source
Feature
tokio-rs/async-stream (async-stream)
v0.3.6
Compare Source
dtolnay/async-trait (async-trait)
v0.1.85
Compare Source
Self: 'async_trait
bound in impl when not needed by signature (#284)v0.1.84
Compare Source
impl Trait
in return type (#282)v0.1.83
Compare Source
v0.1.82
Compare Source
v0.1.81
Compare Source
syn
dependency (#272, thanks @klensy)tokio-rs/axum (axum)
v0.8.0
: axum v0.8.0Compare Source
since rc.1
axum::extract::ws::Message
now usesBytes
in place ofVec<u8>
,and a new
Utf8Bytes
type in place ofString
, for its variants (#3078)OptionalFromRequestParts
impl forQuery
(#3088)tokio-tungstenite
to 0.26 (#3078)serde_path_to_error
to report fields that failed to parse (#3081)full changelog
Note: there are further relevant changes in axum-core's changelog
/:single
and/*many
to/{single}
and/{*many}
; the old syntax produces a panic to avoid silent change in behavior (#2645)Sync
for all handlers and services added toRouter
andMethodRouter
(#2473)Path
extractor deserializers now check that the number of parameters matches the tuple length exactly (#2931)Host
extractor toaxum-extra
(#2956)WebSocket::close
. Users should explicitly send close messages themselves. (#2974)serve
generic over the listener and IO types (#2941)Serve::tcp_nodelay
andWithGracefulShutdown::tcp_nodelay
.See
serve::ListenerExt
for an API that let you set arbitrary TCP stream properties. (#2941)Option<Path<T>>
no longer swallows all error conditions,instead rejecting the request in many cases; see its documentation for details (#2475)
axum::extract::ws::Message
now usesBytes
in place ofVec<u8>
,and a new
Utf8Bytes
type in place ofString
, for its variants (#3078)serde_json::RawValue
inEvent::json_data
(#2992)content-length
before middleware.This allows middleware to add bodies to requests without needing to manually set
content-length
(#2897)tokio-tungstenite
to 0.26 (#3078)serde_path_to_error
to report fields that failed to parse (#3081)method_not_allowed_fallback
to set a fallback when a path matches but there is no handler for the given HTTP method (#2903)NoContent
as a self-described shortcut forStatusCode::NO_CONTENT
(#2978)get(ws_endpoint)
handlers toany(ws_endpoint)
(#2894)MethodFilter::CONNECT
,routing::connect[_service]
andMethodRouter::connect[_service]
(#2961)FailedToDeserializePathParams::kind
enum with (ErrorKind::DeserializeError
). This new variant captures bothkey
,value
, andmessage
from named path parameters parse errors, instead of only deserialization error message inErrorKind::Message
. (#2720)v0.7.9
: axum - v0.7.9Compare Source
v0.7.8
: axum - v0.7.8Compare Source
serde_json::RawValue
inEvent::json_data
(#2992)method_not_allowed_fallback
to set a fallback when a path matches but there is no handler for the given HTTP method (#2903)MethodFilter::CONNECT
,routing::connect[_service]
and
MethodRouter::connect[_service]
(#2961)NoContent
as a self-described shortcut forStatusCode::NO_CONTENT
(#2978)v0.7.7
: axum - v0.7.7Compare Source
rustdoc now generates tables of content in the sidebar (#2921)
v0.7.6
: axum - v0.7.6Compare Source
Arc
during deserialization ofPath
axum::serve::Serve::tcp_nodelay
andaxum::serve::WithGracefulShutdown::tcp_nodelay
(#2653)Router::has_routes
function (#2790)Serve::local_addr
andWithGracefulShutdown::local_addr
functions (#2881)tokio-rs/bytes (bytes)
v1.9.0
Compare Source
Added
Bytes::from_owner
to enable externally-allocated memory (#742)Documented
Internal changes
v1.8.0
Compare Source
split_off
/split_to
for empty slices (#740)v1.7.2
Compare Source
Fixed
Buf::{get_int, get_int_le}
(#732)Documented
Internal changes
v1.7.1
Compare Source
This release reverts the following change due to a regression:
<BytesMut as Buf>::advance
impl (#698)The revert can be found at #726.
v1.7.0
Compare Source
Added
Bytes
toBytesMut
(#695, #710)Documented
BytesMut::zeroed
works (#714)Buf::chunk
(#717)Changed
BytesMut::truncate
<BytesMut as Buf>::advance
impl (#698)must_use
suggestion ofBytesMut::split
(#699)Internal changes
ManuallyDrop
instead ofmem::forget
(#678)len
inBytesMut::reserve
(#682)Bytes::copy_to_bytes
(#688)BytesMut::truncate
(#694)BytesMut::resize
(#696)Bytes::split_to
,Bytes::split_off
(#689, #693)offset_from
in more places (#705)IntoIter
(#707)v1.6.1
Compare Source
This release fixes a bug where
Bytes::is_unique
returns incorrect values whenthe
Bytes
originates from a sharedBytesMut
. (#718)rust-lang/cc-rs (cc)
v1.2.8
Compare Source
Other
is_like_clang_cl()
getter (#1357)windows-bindgen
dependency (#1347)v1.2.7
Compare Source
Other
find_tool
(#1335)v1.2.6
Compare Source
Other
/Oy
flag for 64-bit targets (#1330)v1.2.5
Compare Source
Other
v1.2.4
Compare Source
Other
qcc
(#1319)v1.2.3
Compare Source
Other
v1.2.2
Compare Source
Other
Build::target
is manually set (#1299)v1.2.1
Compare Source
Other
cl -?
, set stdin to null (#1288)v1.2.0
Compare Source
Added
Other
v1.1.37
Compare Source
Other
v1.1.36
Compare Source
Other
v1.1.35
Compare Source
Other
v1.1.34
Compare Source
Other
v1.1.33
Compare Source
Other
cc::Build
and size of generated targets (#1257)v1.1.32
Compare Source
Other
rustc
's knowledge of LLVM/Clang target triples (#1252)v1.1.31
Compare Source
Other
v1.1.30
Compare Source
Other
v1.1.29
Compare Source
Other
v1.1.28
Compare Source
Other
v1.1.27
Compare Source
Other
CC_ENABLE_DEBUG_OUTPUT
if it is set to "0" (#1234)v1.1.26
Compare Source
Other
v1.1.25
Compare Source
Other
v1.1.24
Compare Source
Other
v1.1.23
Compare Source
Other
v1.1.22
Compare Source
Other
v1.1.21
Compare Source
Other
-none
(#1212)v1.1.20
Compare Source
Other
v1.1.19
Compare Source
Other
v1.1.18
Compare Source
Other
StderrForwarder::forward_available
(#1203)v1.1.17
Compare Source
Fixed
v1.1.16
Compare Source
Other
v1.1.15
Compare Source
Other
v1.1.14
Compare Source
Other
chronotope/chrono (chrono)
v0.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.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 itv4.5.13
Compare Source
Fixes
#[flatten]
ing an optional#[group(skip)]
v4.5.12
Compare Source
v4.5.11
Compare Source
v4.5.10
Compare Source
v4.5.9
Compare Source
Fixes
v4.5.8
Compare Source
Fixes
v4.5.7
Compare Source
Fixes
num_args
v4.5.6
Compare Source
v4.5.5
Compare Source
Fixes
exclusive
to overriderequired_unless_present
,required_unless_present_any
,required_unless_present_all
tokio-rs/console (console-subscriber)
v0.4.1
Compare Source
Added
v0.4.0
Compare Source
Breaking Changes
This is a breaking change for users of
console-api
andconsole-subscriber
, as it changes the publictonic
,prost
andprost-types
dependency to a semver-incompatible version. This breakscompatibility with
tonic
0.11.x as well asprost
/prost-types
0.12.x.
Added
TOKIO_CONSOLE_BUFFER_CAPACITY
env variable (#568) (a6cf14b)Fixed
AggregatorHandle
and fix other lints (#578) (c442063)Updated
v0.3.0
Compare Source
console-subscriber-v0.3.0 - (2024-06-10)
Breaking Changes
This is a breaking change for users of
console-api
andconsole-subscriber
, as it changes the publictonic
dependency to asemver-incompatible version. This breaks compatibility with
tonic
0.10.x.
Added
grpc-web
feature (#498) (4150253)Documented
Fixed
Updated
rodrimati1992/const_format_crates (const_format)
v0.2.34
Now all features that used to require nightly only require Rust 1.83.0
Added
"rust_1_83"
feature that enables"rust_1_64"
featureChanged
"fmt"
feature to enable"rust_1_83"
featureMade many macros forward compatible with inline const patterns(when the
"rust_1_83"
feature is enabled):concatc
concatcp
formatc
formatcp
map_ascii_case
str_get
str_index
str_repeat
str_replace
Added these macros:
str_splice_out
str_split_alt
v0.2.33
Fixed Rust Analyzer style warning for assertion macros.
dtolnay/cxx (cxx)
v1.0.136
Compare Source
UniquePtr::as_ptr
andUniquePtr::as_mut_ptr
(#892, thanks @adetaylor)rust_cxx_bridge
(#1416, thanks @wmatthews-google)v1.0.135
Compare Source
cxx::CxxString
is used in a#[cxx::bridge]
(#1414, thanks @anforowicz)unused_unsafe
warnings within the generated code (#1415, thanks @anforowicz)v1.0.134
Compare Source
v1.0.133
Compare Source
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.