chore(deps): update all dependencies #8
Loading…
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:
^20
->^22.0.0
10.4.19
->10.4.20
0.7.5
->0.7.9
0.6.14
->0.6.15
0.6.14
->0.6.15
0.6.14
->0.6.15
0.6.14
->0.6.15
8.4.38
->8.4.49
0.6.14
->0.6.15
0.7.3
->0.8.0
3.4.3
->3.4.15
1
->2
1.39.3
->1.41.1
0.5.0
->0.5.1
0.5.2
->0.6.0
0.5
->0.6
5.4.4
->5.6.3
1.7.0
->1.11.0
Release Notes
postcss/autoprefixer (autoprefixer)
v10.4.20
Compare Source
fit-content
prefix for Firefox.tokio-rs/axum (axum)
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)leptos-rs/leptos (leptos)
v0.6.15
Compare Source
Belated release notes for 0.6.15. This was a quick patch release to incorporate two changes, one to improve rust-analyzer support and the other to switch from the unmaintained
proc-macro-error
toproc-macro-error2
per RUSTSEC.What's Changed
proc-macro-error2
to address unmaintained security advisory. by @azriel91 in https://github.com/leptos-rs/leptos/pull/2935Full Changelog: https://github.com/leptos-rs/leptos/compare/v0.6.14...v0.6.15
postcss/postcss (postcss)
v8.4.49
Compare Source
source.offset
(by @romainmenke).v8.4.48
Compare Source
v8.4.47
Compare Source
v8.4.46
Compare Source
Cannot read properties of undefined (reading 'before')
.v8.4.45
Compare Source
v8.4.44
Compare Source
markClean is not a function
error.v8.4.43
Compare Source
markClean is not a function
error.v8.4.42
Compare Source
v8.4.41
Compare Source
v8.4.40
Compare Source
v8.4.39
Compare Source
CssSyntaxError
types (by @romainmenke).launchbadge/sqlx (sqlx)
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
Fixed
v0.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
Changed
Fixed
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
Added
Changed
Fixed
clock
andstd
features ofworkspace.dependencies.chrono
.v0.7.4
Compare Source
38 pull requests were merged this release cycle.
This is officially the last release of the 0.7.x release cycle.
As of this release, development of 0.8.0 has begun on
main
and only high-priority bugfixes may be backported.Added
Changed
Fixed
tailwindlabs/tailwindcss (tailwindcss)
v3.4.15
Compare Source
boxShadow
theme configuration allows arrays (#14856)selection:*
variant works in Chrome 131 (#15003)v3.4.14
Compare Source
Fixed
display: none
on elements that usehidden="until-found"
(#14625)v3.4.13
Compare Source
Fixed
v3.4.12
Compare Source
Fixed
@apply
with utilities that use@defaults
works with rules defined in the base layer when usingoptimizeUniversalDefaults
(#14427)v3.4.11
Compare Source
Fixed
anchor-size(…)
in arbitrary values (#14393)v3.4.10
Compare Source
Fixed
v3.4.9
Compare Source
Fixed
vendor
foldersv3.4.8
Compare Source
Fixed
v3.4.7
Compare Source
Fixed
data-*
andaria-*
modifiers are always quoted in the generated CSS (#14037)v3.4.6
Compare Source
Fixed
Changed
:is()
wrapping rules when using an important selector (#13900)v3.4.5
Compare Source
Fixed
var()
injection for anchor properties (#13826)blur(0px)
forbackdrop-blur-none
andblur-none
utilities (#13830).mts
and.cts
config file detection (#13940)px-1
unnecessarily when using utilities likepx-1.5
(#13959)-webkit-backdrop-filter
forbackdrop-*
utilities (#13997)v3.4.4
Compare Source
Fixed
<alpha-value>
placeholders in a single color definition (#13740)has-*
,group-has-*
, andpeer-has-*
variants (#13770){col,row}-{start,end}
utilities (#13781)dtolnay/thiserror (thiserror)
v2.0.3
Compare Source
v2.0.2
Compare Source
v2.0.1
Compare Source
v2.0.0
Compare Source
Breaking changes
Referencing keyword-named fields by a raw identifier like
{r#type}
inside a format string is no longer accepted; simply use the unraw name like{type}
(#347)This aligns thiserror with the standard library's formatting macros, which gained support for implicit argument capture later than the release of this feature in thiserror 1.x.
Trait bounds are no longer inferred on fields whose value is shadowed by an explicit named argument in a format message (#345)
Tuple structs and tuple variants can no longer use numerical
{0}
{1}
access at the same time as supplying extra positional arguments for a format message, as this makes it ambiguous whether the number refers to a tuple field vs a different positional arg (#354)Code containing invocations of thiserror's
derive(Error)
must now have a direct dependency on thethiserror
crate regardless of the error data structure's contents (#368, #369, #370, #372)Features
Support disabling thiserror's standard library dependency by disabling the default "std" Cargo feature:
thiserror = { version = "2", default-features = false }
(#373)Support using
r#source
as field name to opt out of a field named "source" being treated as an error'sError::source()
(#350)Infinite recursion in a generated Display impl now produces an
unconditional_recursion
warning (#359)A new attribute
#[error(fmt = path::to::myfmt)]
can be used to write formatting logic for an enum variant out-of-line (#367)Enums with an enum-level format message are now able to have individual variants that are
transparent
to supersede the enum-level message (#366)v1.0.69
Compare Source
v1.0.68
Compare Source
v1.0.67
Compare Source
v1.0.66
Compare Source
v1.0.65
Compare Source
v1.0.64
Compare Source
tokio-rs/tokio (tokio)
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)tower-rs/tower (tower)
v0.5.1
: tower 0.5.1Compare Source
tower-layer
dependency (#787)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
microsoft/TypeScript (typescript)
v5.6.3
: TypeScript 5.6.3Compare Source
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
Downloads are available on:
v5.6.2
: TypeScript 5.6Compare Source
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
Downloads are available on:
v5.5.4
: TypeScript 5.5.4Compare Source
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
Downloads are available on:
v5.5.3
: TypeScript 5.5.3Compare Source
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
Downloads are available on:
v5.5.2
: TypeScript 5.5Compare Source
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
Downloads are available on:
v5.4.5
: TypeScript 5.4.5Compare Source
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
Downloads are available on:
uuid-rs/uuid (uuid)
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
v1.10.0
Compare Source
Deprecations
This release deprecates and renames the following functions:
Builder::from_rfc4122_timestamp
->Builder::from_gregorian_timestamp
Builder::from_sorted_rfc4122_timestamp
->Builder::from_sorted_gregorian_timestamp
Timestamp::from_rfc4122
->Timestamp::from_gregorian
Timestamp::to_rfc4122
->Timestamp::to_gregorian
What's Changed
New Contributors
Full Changelog: https://github.com/uuid-rs/uuid/compare/1.9.1...1.10.0
v1.9.1
Compare Source
What's Changed
Full Changelog: https://github.com/uuid-rs/uuid/compare/1.9.0...1.9.1
v1.9.0
Compare Source
Uuid::now_v7()
is guaranteed to be monotonicBefore this release,
Uuid::now_v7()
would only use the millisecond-precision timestamp for ordering. It now also uses a global 42-bit counter that's re-initialized each millisecond so that the following will always pass:What's Changed
New Contributors
Full Changelog: https://github.com/uuid-rs/uuid/compare/1.8.0...1.9.0
v1.8.0
Compare Source
⚠️ Potential Breakage ⚠️
A new
impl AsRef<Uuid> for Uuid
bound has been added, which can break inference on code like:You can fix these by explicitly typing the result of the conversion:
or by calling
as_bytes
instead:What's Changed
wasm-bindgen
as a dependency onwasm32-unknown-unknown
by @emilk in https://github.com/uuid-rs/uuid/pull/738New Contributors
Full Changelog: https://github.com/uuid-rs/uuid/compare/1.7.0...1.8.0
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 artifacts 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: cuddle-leptos/Cargo.lock
File name: cuddle-rust-service/Cargo.lock
File name: cuddle-rust-cli/Cargo.lock
File name: cuddle-node-service/yarn.lock
2d2dec67a7
toa8a59f797d
a8a59f797d
to0a0fa31761
0a0fa31761
to1f2628b355
1f2628b355
tof2c3fd820d
f2c3fd820d
tob6e62e71b4
b6e62e71b4
to886dea3754
886dea3754
to422c085f49
422c085f49
to96e2a32c54
96e2a32c54
to9deffe76c4
9deffe76c4
to59d9b3852b
59d9b3852b
to4ddccd81ae
4ddccd81ae
tod93d8d917b
d93d8d917b
to9c80743e6a
9c80743e6a
to3fdd412d93
3fdd412d93
to09fafde603
09fafde603
to4c5961ae74
4c5961ae74
toca040b4ceb
ca040b4ceb
to7cbf0f5ee2
7cbf0f5ee2
to7beb29472a
7beb29472a
to8384471a26
8384471a26
toa4aa4189f5
a4aa4189f5
to612a62c5bf
612a62c5bf
to7cc0237ee1
7cc0237ee1
to757e4ac758
757e4ac758
to7e740c6fd5
7e740c6fd5
to194bb483ac
194bb483ac
to394095fcc1
394095fcc1
to1ce1695132
1ce1695132
to32dd7879ba
32dd7879ba
to3e55415874
3e55415874
to6725dc63b1
6725dc63b1
to95703c39b4
95703c39b4
to7e4e50d13f
7e4e50d13f
toff7e1871b0
ff7e1871b0
to6dd4585412
6dd4585412
to7f7615870a
7f7615870a
tobaf52eca78
baf52eca78
toaea269594e
aea269594e
toc71acffa98
c71acffa98
todef0e52bfb
def0e52bfb
to5fa6cabb77
5fa6cabb77
tocdb15e11aa
cdb15e11aa
toa3282afd47
a3282afd47
to2b6c5e0f54
2b6c5e0f54
tod568230fcd
d568230fcd
to5f536d8d92
5f536d8d92
to9058103f0b
9058103f0b
to845e719a89
845e719a89
toa32b7f5dda
a32b7f5dda
to70169b5f9f
70169b5f9f
to382f207898
382f207898
toe31c413f20
e31c413f20
tob9620997f9
b9620997f9
to0bcf7d90a2
0bcf7d90a2
tocb43ae26c9
cb43ae26c9
to27706fe522
27706fe522
tofb864ab584
fb864ab584
to0dc041449a
0dc041449a
to0971a2807b
0971a2807b
to9d5180cbf8
9d5180cbf8
to9164e5c9c4
9164e5c9c4
toc3e2522164
c3e2522164
to06c21ac088
06c21ac088
to660aa1b600
660aa1b600
to50737c35fd
50737c35fd
to009fbf3d58
009fbf3d58
to63c6646dcb
63c6646dcb
tof998cafdbb
f998cafdbb
to3356e14c74
3356e14c74
to12574cc47b
12574cc47b
to28c701d068
28c701d068
to3d855917d0
3d855917d0
tob987161eba
b987161eba
toa64d66d440
a64d66d440
to49e6b7f73c
49e6b7f73c
to482cb5ac69
482cb5ac69
tofe2b1fb82a
fe2b1fb82a
to46a445e49a
46a445e49a
tof26e23060e
f26e23060e
to883887c633
883887c633
toe91e385bc5
e91e385bc5
toe89d03145b
e89d03145b
to4a8fe92227
4a8fe92227
to2bf2ba343c
2bf2ba343c
to87feff6f7a
87feff6f7a
to45c95e0e60
45c95e0e60
to4c3ce0f181
4c3ce0f181
to08e1b4643e
08e1b4643e
to38198d370e
38198d370e
to7ce78590b5
7ce78590b5
to07f1007d66
07f1007d66
toc10617d7dd
c10617d7dd
toc0048e0d55
c0048e0d55
to17529eaebf
17529eaebf
to9ed0a8ba5d
9ed0a8ba5d
toee680b5538
ee680b5538
to85c9494912
85c9494912
to3d199f5afb
3d199f5afb
to9f821a45c7
9f821a45c7
to272f06d399
272f06d399
toe1be9a822f
e1be9a822f
to9bb35e67f1
9bb35e67f1
toe7fc7a12ba
e7fc7a12ba
tob1d7b6b748
b1d7b6b748
to8366345737
Checkout
From your project repository, check out a new branch and test the changes.