chore(deps): update all dependencies #1
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:
0.7.9
->0.8.0
0.7.4
->0.7.7
0.7.4
->0.7.7
0.7.4
->0.7.7
0.7.4
->0.7.7
0.4.25
->0.4.26
1.0.136
->1.0.139
0.7.4
->0.7.7
1.12.0
->1.15.1
Release Notes
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
You can also read the blog post on tokio
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)leptos-rs/leptos (leptos)
v0.7.7
If you're migrating from 0.6 to 0.7, please see the 0.7.0 release notes here.
This is a small patch release including primarily bugfixes, and some small ergonomic improvements.
What's Changed
From<ArcField<T>>
forField<T>
by @gbj in https://github.com/leptos-rs/leptos/pull/3533Attribute
forEither<A, B>
by @alexisfontaine in https://github.com/leptos-rs/leptos/pull/3556cargo install --locked
forcargo-leptos
installation by @gbj in https://github.com/leptos-rs/leptos/pull/3559style:
etc. (closes #3554) by @gbj in https://github.com/leptos-rs/leptos/pull/3558erase_components
onEither<A, B>
by @alexisfontaine in https://github.com/leptos-rs/leptos/pull/3572store
attribute signature error message by @DanikVitek in https://github.com/leptos-rs/leptos/pull/3567:capture
flag for events to handle them during capture phase (closes #3457) by @gbj in https://github.com/leptos-rs/leptos/pull/3575<fieldset>
attributes by @alexisfontaine in https://github.com/leptos-rs/leptos/pull/3581New Contributors
Full Changelog: https://github.com/leptos-rs/leptos/compare/v0.7.5...v0.7.7
v0.7.5
Compare Source
If you're migrating from 0.6 to 0.7, please see the 0.7.0 release notes here.
This is a small patch release including primarily bugfixes.
What's Changed
ErrorBoundary
through reactive views (closes #3487) by @gbj in https://github.com/leptos-rs/leptos/pull/3492#[lazy]
macros to support lazy loading and code splitting by @gbj in https://github.com/leptos-rs/leptos/pull/3477leptos_0.8
branch by @gbj in https://github.com/leptos-rs/leptos/pull/3500node_ref
after{..}
on arbitrary components by @gbj in https://github.com/leptos-rs/leptos/pull/3503either_of
): Extent API; Implement other iterator methods; Update deps by @DanikVitek in https://github.com/leptos-rs/leptos/pull/3478matches
method for Callback and UnsyncCallback by @geoffreygarrett in https://github.com/leptos-rs/leptos/pull/3520New Contributors
Full Changelog: https://github.com/leptos-rs/leptos/compare/v0.7.4...v0.7.5
rust-lang/log (log)
v0.4.26
Compare Source
serde-rs/json (serde_json)
v1.0.139
Compare Source
v1.0.138
Compare Source
v1.0.137
Compare Source
uuid-rs/uuid (uuid)
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
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ 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 has been generated by Renovate Bot.
⚠️ 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
f3f0bcf02e
tocb95813436
cb95813436
to3f1e5d3f8c
chore(deps): update rust crate axum to 0.8to chore(deps): update all dependencies3f1e5d3f8c
to5e3140e3e6
5e3140e3e6
to247953ba03
247953ba03
to68dadd1c5b
68dadd1c5b
to4eabf15136
4eabf15136
to1f49fc0a47
1f49fc0a47
to824a92b1f0
824a92b1f0
tod618989860
d618989860
tof5fa1c7e50
f5fa1c7e50
to442ff5974e
442ff5974e
to01bce81f92
01bce81f92
todb62639f39
db62639f39
to1cba80e9e2
1cba80e9e2
to557af389a7
557af389a7
to54a2be2630
54a2be2630
to3630272750
3630272750
todf5640ded3
df5640ded3
tofa7d51a921
fa7d51a921
to83d59247ad
83d59247ad
todbfda2a260
dbfda2a260
tof9eeaeaeb6
f9eeaeaeb6
to6040b92371
6040b92371
tof149408940
f149408940
toff875c85fb
ff875c85fb
to405e0e88c1
405e0e88c1
tob913a214d4
b913a214d4
tofa10ed656e
fa10ed656e
to1092b24f4a
1092b24f4a
to7ac14cb8f9
7ac14cb8f9
tof4384afb36
f4384afb36
toa1d4c17398
a1d4c17398
to2f74b08e1d
2f74b08e1d
tobf4f94da42
bf4f94da42
tob8523945e5
b8523945e5
to3284cdc880
3284cdc880
to99bd4e0249
99bd4e0249
tod43f01248c
d43f01248c
tof42fa748ed
f42fa748ed
to9b78dd5ddf
9b78dd5ddf
to36bf0758e2
36bf0758e2
to19a8bdf781
19a8bdf781
tofb5250ee58
fb5250ee58
tob07d60d348
b07d60d348
to850497d054
850497d054
to19bd097cc0
19bd097cc0
to098bc3dad6
098bc3dad6
to4c1a568686
4c1a568686
to165193bbf8
165193bbf8
toeaec6e1a9e
eaec6e1a9e
toe2b0834b10
e2b0834b10
toce21720fec
ce21720fec
to6e51d4b329
6e51d4b329
to0a22f1b1da
0a22f1b1da
toc3ebf79844
c3ebf79844
tofaa3579c10
faa3579c10
tobadccf41ba
badccf41ba
to6b576edea0
6b576edea0
to74815fc9c4
74815fc9c4
toc67a27ba94
c67a27ba94
to363b588f38
363b588f38
to9f858510ec
9f858510ec
to3802746bb5
3802746bb5
tod81ebcefaa
d81ebcefaa
to50b0107c85
50b0107c85
to17ad1283f7
17ad1283f7
tob7b5b9bfe1
b7b5b9bfe1
to1c61c0c604
1c61c0c604
to1219e56373
1219e56373
to4ae94b575d
4ae94b575d
to3cb354d74b
3cb354d74b
toc2c38d8972
c2c38d8972
to481b3bfd6e
481b3bfd6e
toa33b8f51dd
a33b8f51dd
to5971cd95ad
5971cd95ad
toe51886ef9c
e51886ef9c
to23be176af7
23be176af7
tocbe24a661f
cbe24a661f
to8d3019ef00
8d3019ef00
toe9f0a74681
e9f0a74681
to9c3b128321
9c3b128321
to7ed2789a96
Checkout
From your project repository, check out a new branch and test the changes.