Skip to content

chore(deps): update backend dependencies - #927

Open
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/backend-dependencies
Open

chore(deps): update backend dependencies#927
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/backend-dependencies

Conversation

@renovate

@renovate renovate Bot commented Jun 22, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Type Update Change
actix-http (source) dependencies minor 3.12.13.13.3
actix-web (source) dependencies minor 4.13.04.14.1
chrono dependencies patch 0.4.440.4.45
futures-util (source) dependencies patch 0.3.320.3.34
lettre (source) dependencies patch 0.11.220.11.23
mockall dev-dependencies minor 0.14.00.15.0
quote dependencies patch ^1.0.45^1.0.47
rand (source) dependencies patch 0.10.10.10.2
regex dependencies minor 1.12.31.13.1
serde (source) dependencies patch 1.0.2281.0.229
serde_json dependencies patch 1.0.1501.0.151
syn dependencies patch ^2.0.117^2.0.119
testcontainers dev-dependencies minor 0.27.30.28.0
thiserror dependencies patch 2.0.182.0.20
tokio (source) workspace.dependencies minor 1.52.31.53.1
uuid dependencies minor 1.23.21.24.1
validator dependencies minor 0.20.00.21.0

Release Notes

chronotope/chrono (chrono)

v0.4.45: 0.4.45

Compare Source

What's Changed

rust-lang/futures-rs (futures-util)

v0.3.34

Compare Source

v0.3.33

Compare Source

  • Fix ReadLine's soundness issue regarding to exception safety. (#​3020)
  • Fix unsound Send impl for IterPinRef and Iter. (#​3003)
  • Fix stacked borrows violation in compat01as03 implementation. (#​3012)
  • Fix memory leak in FuturesUnordered::IntoIter. (#​3005)
  • Add portable-atomic-alloc feature and use it in FuturesUnordered. (#​3007)
  • Re-export alloc::task::Wake. (#​3010)
  • Update spin to 0.12. (#​3014)
lettre/lettre (lettre)

v0.11.23

Compare Source

Bug Fixes
  • Separate lines of multiline SMTP error replies (#​1153)
Misc
asomers/mockall (mockall)

v0.15.0

Compare Source

Added
  • Compatibility with the #[auto_impl] macro.
    (#​686)
dtolnay/quote (quote)

v1.0.47

Compare Source

  • Documentation improvements

v1.0.46

Compare Source

rust-random/rand (rand)

v0.10.2

Compare Source

Fixes
  • Fix possible memory safety violation due to deserialization of UniformChar from bad source (#​1790)
Changes
  • Document required output order of fn partial_shuffle and apply #[must_use] (#​1769)
  • Avoid usage of unsafe in contexts where non-local memory corruption could invalidate contract (#​1791)
rust-lang/regex (regex)

v1.13.1

Compare Source

===================
This is a release that fixes a bug where incorrect regex match offsets could be
reported. Note that this doesn't impact whether a match occurs or not, just
where it occurs. The match offsets are still valid for slicing, they just may
not refer to the correct leftmost-first match. See
#​1364 for (many) more details.

Bug fixes:

  • #​1354:
    Fixes previously unsound reverse suffix and inner optimizations.

v1.13.0

Compare Source

===================
This release includes a new API, a regex! macro, for lazy compilation of
a regex from a string literal. If you use regexes a lot, it's likely you've
already written one exactly like it. The new macro can be used like this:

use regex::regex;

fn is_match(line: &str) -> bool {
    // The regex will be compiled approximately once and reused automatically.
    // This avoids the footgun of using `Regex::new` here, which would
    // guarantee that it would be compiled every time this routine is called.
    // This would likely make this routine much slower than it needs to be.
    regex!(r"bar|baz").is_match(line)
}

let hay = "\
path/to/foo:54:Blue Harvest
path/to/bar:90:Something, Something, Something, Dark Side
path/to/baz:3:It's a Trap!
";

let matches = hay.lines().filter(|line| is_match(line)).count();
assert_eq!(matches, 2);

Improvements:

  • #​709:
    Add a new regex! macro for efficient and automatic reuse of a compiled regex.

v1.12.4

Compare Source

===================
This release includes a performance optimization for compilation of regexes
with very large character classes.

Improvements:

  • #​1308:
    Avoid re-canonicalizing the entire interval set when pushing new class ranges.
serde-rs/serde (serde)

v1.0.229

Compare Source

  • Update to syn 3
serde-rs/json (serde_json)

v1.0.151

Compare Source

dtolnay/syn (syn)

v2.0.119

Compare Source

  • Preserve attributes on tail-call expressions in statement position (#​1994)
  • Parse field-representing types builtin in type position (#​1996)

v2.0.118

Compare Source

  • Documentation improvements
testcontainers/testcontainers-rs (testcontainers)

v0.28.0

Compare Source

Details
Miscellaneous Tasks
  • Update astral-tokio-tar from 0.6.0 to 0.6.1 (#​940)
  • Update parse-display requirement from 0.9.0 to 0.11.0 (#​942)
  • Bump testcontainers/sshd image from 1.3.0 to 1.4.0 (#​952)
  • Update russh requirement from 0.60.0 to 0.61.2 (#​950)
  • [❗] Update bollard 0.20 to 0.21 (#​943)
  • Update docker-compose-types requirement from 0.23 to 0.24 (#​951)
dtolnay/thiserror (thiserror)

v2.0.20

Compare Source

  • Suppress redundant_field_names clippy lint in generated code (#​454)

v2.0.19

Compare Source

  • Update to syn 3
tokio-rs/tokio (tokio)

v1.53.1: Tokio v1.53.1

Compare Source

1.53.1 (July 20th, 2026)

Fixed
  • signal: restore MSRV by removing OnceLock::wait from the Windows handler (#​8300)
Fixed (unstable)
  • time: fix alt timer cancellation and insertion race (#​8252)
Documented
  • runtime: remove dead link definition in Runtime::block_on (#​8301)

v1.53.0: Tokio v1.53.0

Compare Source

1.53.0 (July 17th, 2026)

Added
  • fs: implement From<OwnedFd> and From<OwnedHandle> for File (#​8266)
  • metrics: add task schedule latency metric (#​7986)
  • net: add SocketAddr methods to Unix sockets (#​8144)
Changed
  • io: add #[inline] to IO trait impls for in-memory types (#​8242)
  • net: implement UCred::pid on FreeBSD (#​8086)
  • net: support Nuttx target os (#​8259)
  • signal: refactor global variables on Windows (#​8231)
  • sync: mpsc::{Receiver,UnboundedReceiver} now drops waker on drop, even if there are still senders (#​8095)
  • taskdump: support taskdumps on s390x (#​8192)
  • time: add #[track_caller] to timeout_at() (#​8077)
  • time: consolidate mutex locks on spurious poll (#​8124)
  • time: defer waker clone on spurious poll (#​8107)
  • time: move lazy-registration state into Sleep (#​8132)
  • tracing: remove unnecessary span clone (#​8126)
Fixed
  • io: do not treat zero-length reads as EOF in Chain (#​8251)
  • net: use getpeereid for QNX peer credentials (#​8270)
  • runtime: avoid illegal state in FastRand (#​8078)
  • sync: wake mpsc receiver when a queued reserve[_many] returns permits (#​8260)
  • taskdump: skip double wake on Trace::capture/Trace::trace_with (#​8043)
  • time: avoid stack overflow in runtime constructor (#​8093)
  • time (alt timer): ensure timers stay in the same runtime after .reset() (#​8169)
IO uring (unstable)
  • fs: use io-uring for fs::try_exists (#​8080)
  • fs: use io-uring for renaming files (#​7800)
  • rt: flush io-uring CQE in case of CQE overflow (#​8277)
Documented
  • docs: clarify cancel safety wording (#​8181)
  • fs: clarify create_dir_all succeeds if path exists (#​8149)
  • io: add warning about stdout reordering with multiple handles (#​8276)
  • net: document pipe try_read*/try_write* readiness behavior (#​8032)
  • runtime: document interaction with fork() (#​8202)
  • sync: clarify broadcast lagging semantics (#​8239)
  • sync: document memory ordering guarantees for Semaphore (#​8119)
  • task: explain why yield_now defers its waker (#​8254)
  • time: add panic docs to timeout_at() (#​8077)
  • time: fix reversed poll order in timeout doc (#​8214)

v1.52.4: Tokio v1.52.4

Compare Source

1.52.4 (July 16th, 2026)

Fixed
  • runtime: don't skip the driver when before_park schedules work (#​8222)
Fixed (unstable)
  • taskdump: remove crate disambiguators from output (#​8264)
uuid-rs/uuid (uuid)

v1.24.1

Compare Source

What's Changed

New Contributors

Full Changelog: uuid-rs/uuid@v1.24.0...v1.24.1

v1.24.0

Compare Source

What's Changed

New Contributors

Full Changelog: uuid-rs/uuid@v1.23.5...v1.24.0

v1.23.5

Compare Source

What's Changed

New Contributors

Full Changelog: uuid-rs/uuid@v1.23.4...v1.23.5

v1.23.4

Compare Source

What's Changed

New Contributors

Full Changelog: uuid-rs/uuid@v1.23.3...v1.23.4

v1.23.3

Compare Source

What's Changed

Full Changelog: uuid-rs/uuid@v1.23.2...v1.23.3

Keats/validator (validator)

v0.21.0

  • Replace dep proc-macro-error2 with proc-macro-error3
  • Edition 2024

Configuration

📅 Schedule: (in timezone Europe/Warsaw)

  • Branch creation
    • Between 12:00 AM and 03:59 AM, only on Monday (* 0-3 * * 1)
  • 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.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate
renovate Bot requested a review from a team as a code owner June 22, 2026 00:34
@renovate
renovate Bot force-pushed the renovate/backend-dependencies branch 4 times, most recently from bc4ad27 to 85a3326 Compare June 29, 2026 00:00
@renovate
renovate Bot force-pushed the renovate/backend-dependencies branch from 85a3326 to ce4362c Compare July 2, 2026 12:53
@renovate
renovate Bot force-pushed the renovate/backend-dependencies branch 4 times, most recently from 6be7227 to c119b38 Compare July 15, 2026 22:31
@hack4krak-frontend-dokploy

hack4krak-frontend-dokploy Bot commented Jul 15, 2026

Copy link
Copy Markdown

Dokploy Preview Deployment

Name Status Preview Updated (UTC)
Frontend ✅ Done Preview URL 2026-07-15T22:37:30.314Z

@renovate
renovate Bot force-pushed the renovate/backend-dependencies branch 5 times, most recently from 655a924 to b59be4f Compare July 20, 2026 19:13
@renovate
renovate Bot force-pushed the renovate/backend-dependencies branch from b59be4f to 659c7b5 Compare July 27, 2026 10:16
@renovate
renovate Bot force-pushed the renovate/backend-dependencies branch 5 times, most recently from 01a1282 to cf643c6 Compare August 9, 2026 02:01
@renovate
renovate Bot force-pushed the renovate/backend-dependencies branch from cf643c6 to b0972d2 Compare August 12, 2026 00:57
@renovate
renovate Bot force-pushed the renovate/backend-dependencies branch from b0972d2 to 41de568 Compare August 14, 2026 23:56
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants