Skip to content

chore(deps): update non-major dependencies - #13

Merged
renovate[bot] merged 1 commit into
mainfrom
renovate/non-major-dependencies
Aug 8, 2026
Merged

chore(deps): update non-major dependencies#13
renovate[bot] merged 1 commit into
mainfrom
renovate/non-major-dependencies

Conversation

@renovate

@renovate renovate Bot commented Aug 7, 2026

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence Type Update Pending
@biomejs/biome (source) 2.5.62.5.7 age confidence devDependencies patch
@types/react (source) 19.2.1719.2.18 age confidence devDependencies patch
@types/react-dom (source) 19.2.319.2.4 age confidence devDependencies patch
@vitejs/plugin-react (source) 6.0.46.0.5 age confidence devDependencies patch
anyhow 1.0.1031.0.104 age confidence dependencies patch
chrono 0.4.440.4.45 age confidence dependencies patch
reqwest 0.13.20.13.4 age confidence dependencies patch
schemars (source) 1.2.11.2.2 age confidence dependencies patch
serde (source) 1.0.2281.0.229 age confidence dependencies patch
serde_json 1.0.1491.0.151 age confidence dependencies patch
tauri (source) 2.11.12.11.5 age confidence dependencies patch
tauri-plugin-dialog 2.6.02.7.2 age confidence dependencies minor
tauri-plugin-opener 2.5.32.5.4 age confidence dependencies patch
tauri-plugin-store 2.4.22.4.4 age confidence dependencies patch
thiserror 2.0.182.0.19 age confidence dependencies patch
tokio (source) 1.49.01.53.1 age confidence dependencies minor
tracing-subscriber (source) 0.3.220.3.23 age confidence dependencies patch
uuid 1.21.01.24.0 age confidence dependencies minor
vite (source) 8.1.58.2.0 age confidence devDependencies minor 8.2.1

Release Notes

biomejs/biome (@​biomejs/biome)

v2.5.7

Compare Source

Patch Changes
  • #​10822 c171b3b Thanks @​pkallos! - Added the option ignoreIfStatements to useNullishCoalescing. Biome now flags if statements that only assign to a nullish variable (such as if (!a) { a = b }) and can rewrite them to ??=. When enabled, Biome ignores those if statements.

  • #​11136 e63354c Thanks @​AkashNaickar! - Added a new nursery rule noExtendNative, which reports extending the prototype of a built-in object.

  • #​10094 e007143 Thanks @​THEjacob1000! - Added the nursery rule noTailwindArbitraryValue. Biome now reports Tailwind CSS arbitrary values such as w-[400px], including in HTML/JSX class attributes, configured utility functions, and tagged templates.

  • #​11184 135f476 Thanks @​subotac! - Fixed #​11176: noUnknownPseudoClass now recognizes Vue's :deep() pseudo-class inside .vue style blocks.

  • #​8239 a519f9d Thanks @​cormacrelf! - Fixed #​8233, where Biome CLI in
    stdin mode didn't work correctly when handling files in projects with nested
    configurations. For example, with the following structure,
    --stdin-file-path=subdirectory/... would not use the nested configuration in
    subdirectory/biome.json:

    ├── biome.json
    └── subdirectory
        ├── biome.json
        └── lib.js
    
    biome format --write --stdin-file-path=subdirectory/lib.js < subdirectory/lib.js

    Now, the nested configuration is correctly picked up and applied.

    In addition, Biome now shows a warning if --stdin-file-path is provided but
    that path is ignored and therefore not formatted or fixed.

  • #​11138 8c2c6bd Thanks @​ematipico! - Fixed noUnnecessaryConditions: Biome now chooses the same function overload as TypeScript when an argument is a callback, so conditions that were previously missed are reported.

    The following code is now invalid, because a parameter typed () => void accepts an async callback and schedule therefore returns string:

    declare function schedule(handler: () => void): string;
    declare function schedule(handler: () => Promise<void>): string | undefined;
    
    schedule(async () => {}) ?? "fallback";

    The following code is also now invalid, because map(() => 42) returns 42:

    type Mapper<T> = () => T;
    declare function map<T>(mapper: Mapper<T>): T;
    
    map(() => 42) || flag;
  • #​11138 8c2c6bd Thanks @​ematipico! - Fixed #​11087: noUnnecessaryConditions no longer reports optional chains and nullish coalescing whose receiver can be nullish.

    For example, the optional chain and fallback in the following code are no longer reported:

    declare const usage: { range: { startDate: string } } | null;
    const startDate = usage?.range.startDate ?? "N/A";
  • #​11118 9c16840 Thanks @​subotac! - Fixed #​11098: The HTML formatter now preserves the configured trailing newline when a file ends with a comment.

    -<!-- trailing comment -->
    \ No newline at end of file
    +<!-- trailing comment -->
  • #​11201 0e80610 Thanks @​Bishwas-py! - Fixed #​11182: suppression comments for noPositiveTabindex now suppress the rule in HTML files when the attributes of the element span multiple lines.

  • #​11079 607afd2 Thanks @​dyc3! - The HTML formatter now lays out the srcset attribute of <img> and <source> as the list of candidates it is. Runs of whitespace between candidates collapse, and once the list no longer fits on one line each candidate goes on its own line with the descriptors aligned:

    - <img srcset="/visual@0.5.png  400w, /visual.png 805w, /visual@2x.png 1610w, /visual@3x.png 2415w" />
    + <img
    +   srcset="
    +     /visual@0.5.png  400w,
    +     /visual.png      805w,
    +     /visual@2x.png  1610w,
    +     /visual@3x.png  2415w
    +   "
    + />
  • #​11156 fed72c7 Thanks @​saberoueslati! - Fixed #​11129: noUnusedVariables no longer reports Vue bindings as unused when they are assigned through automatically unwrapped template refs.

  • #​11124 d890b39 Thanks @​denbezrukov! - Fixed CSS formatting of line comments between a declaration colon and value to preserve their source indentation.

     .test {
       background:
    -  /////// foo
    -  // bar
    +        /////// foo
    +        // bar
         radial-gradient(circle, #&#8203;000, transparent);
     }
  • #​11113 3d8ab73 Thanks @​denbezrukov! - Fixed CSS formatting of long block comments between comma-separated property values:

     .foo {
       box-shadow:
    -    1000px /* long long long long long long long long long long long long comment */ 1000px /* long long long long long long long long long comment */ 2px color(srgb 0.555555555 0.555555555 0.555555555),
    +    1000px
    +      /* long long long long long long long long long long long long comment */
    +      1000px /* long long long long long long long long long comment */ 2px
    +      color(srgb 0.555555555 0.555555555 0.555555555),
         1px 1px black;
     }
  • #​11127 da5c1a5 Thanks @​dyc3! - The HTML formatter now picks the quote character for an attribute by counting the quotes in the value rather than looking only for a double quote. &apos; and &quot; count as the characters they stand for, and only the character that ends up as the delimiter stays escaped:

    - <div title='123 &apos;&quot; 456'></div>
    + <div title="123 '&quot; 456"></div>

    Entities that are not quotes, such as &amp; or &[#&#8203;39](https://redirect.github.com/biomejs/biome/issues/39);, are left exactly as written.

  • #​11193 77035bb Thanks @​dyc3! - Fixed the HTML formatter collapsing the blank line between an element and the text that follows it. A blank line before text is now kept, the way one before another element already was:

      <div>foo</div>
    -
      text
  • #​11106 ad80f57 Thanks @​dyc3! - The HTML formatter now writes the HTML5 doctype in lowercase, matching Prettier:

    - <!DOCTYPE html>
    + <!doctype html>

    This only applies to a plain .html file whose doctype stands alone. A doctype that names a DTD keeps the case it was written with, since the rest of the declaration is not lowercased either:

    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">

    A .vue, .svelte, or .astro file keeps whatever the author wrote.

  • #​11188 60679db Thanks @​dyc3! - Fixed the HTML formatter printing a comment twice when it ended the line of the last element in a document:

    - text<!-- a --><!-- a -->
    + text<!-- a -->
  • #​11077 4dcd0d9 Thanks @​dyc3! - Fixed a bug where the HTML formatter collapsed the whitespace inside <textarea>, <xmp> and <plaintext>, changing what the page renders.

    - <textarea>
    -  line one
    - line two </textarea>
    + <textarea>line one line two</textarea>

    Biome now prints the content of these elements exactly as it appears in the source, matching the existing behavior for <pre>.

  • #​11194 abfbb11 Thanks @​dyc3! - Fixed the HTML formatter refusing to format a Svelte file containing an array pattern that skips a position:

    {#each animals as [, value]}
    	<p>{value}</p>
    {/each}
  • #​10094 e007143 Thanks @​THEjacob1000! - Fixed useSortedClasses to correctly detect unsorted classes in static member expression tagged templates (e.g. tw.div\...``). Previously, these were silently skipped due to surrounding whitespace trivia not being stripped from the tag name.

  • #​11078 10da30e Thanks @​dyc3! - Fixed Vue single-file components failing to parse when they contain a custom block such as <i18n> or <docs>, or a <template> written in another language. Their content is no longer read as HTML, so a block may hold whatever its own tooling expects:

    <docs>
    This block is prose, and it may mention a `<my-component>` without closing it.
    </docs>
    
    <template lang="pug">
      .test
        #foo
    </template>

    Previously both blocks produced a parse error and the whole file was left unformatted. Biome now prints their content unchanged while still formatting the opening tag.

  • #​11231 4afd901 Thanks @​ematipico! - Improved the performance of the following lint rules:

  • #​11134 2fa0a62 Thanks @​yanthomasdev! - Clarified the warning emitted when using the experimental json and json-pretty reporters.

  • #​11198 ed88b13 Thanks @​saberoueslati! - Fixed #​11171: variables referenced only inside a Svelte attachment ({@attach ...}) are no longer reported as unused by noUnusedVariables and noUnusedImports.

  • #​11155 6ee17ea Thanks @​dyc3! - Improved performance when printing diagnostics to the console.

  • #​11160 217f8ad Thanks @​dyc3! - Improved the performance of noFloatingPromises by skipping type inference for assignment statements, which are always considered handled.

  • #​11159 26c23d9 Thanks @​saberoueslati! - Fixed #​11144: noFloatingPromises no longer reports already-awaited optional Promise values.

  • #​11138 8c2c6bd Thanks @​ematipico! - Fixed #​11121: noUnnecessaryConditions no longer reports conditions based on an inapplicable function overload.

    For example, the condition in the following code is no longer reported because query({}) selects the overload that returns boolean:

    declare function query(options: { initial: string }): { isPending: false };
    declare function query(options: { initial?: string }): { isPending: boolean };
    
    const { isPending } = query({});
    isPending || fallback;
  • #​11152 c4fc6a9 Thanks @​dyc3! - Improved the performance of collecting rule timings with --profile-rules in heavily multithreaded environments.

  • #​11128 4d3ff76 Thanks @​ematipico! - Fixed #​7635: noDeprecatedImports now detects deprecated ambient declarations that are exported separately.

  • #​11117 01f7ef5 Thanks @​subotac! - Fixed #​11014: noDelete no longer reports process.env["FOO"] style property deletions.

  • #​11168 9847e68 Thanks @​saberoueslati! - Added the nursery rule noNonScalableViewport, which reports viewport metadata that disables user scaling with user-scalable=no.

    For example:

    <meta name="viewport" content="width=device-width, user-scalable=no" />
  • #​11154 a1d6b1f Thanks @​dyc3! - Improved the performance of noImportCycles by skipping graph traversals for imports that cannot be part of a cycle.

  • #​11175 d96d6dd Thanks @​ematipico! - Fixed CSS parsing of registered custom properties: Biome now correctly validates the syntax descriptor of @property rules.

vitejs/vite-plugin-react (@​vitejs/plugin-react)

v6.0.5

Compare Source

Fixed the react compiler preset filter to be linear (#​1353)

The improved filter in v6.0.3 was non-linear and caused a performance regression (#​1349). The filter was changed to be linear to avoid that.

dtolnay/anyhow (anyhow)

v1.0.104

Compare Source

  • Update syn dev-dependency to version 3
chronotope/chrono (chrono)

v0.4.45: 0.4.45

Compare Source

What's Changed

seanmonstar/reqwest (reqwest)

v0.13.4

Compare Source

  • Add ClientBuilder::tls_sslkeylogfile(bool) option to allow using the related environment variable.
  • Add ClientBuilder::http2_keep_alive_* options for the blocking client.
  • Add TLS 1.3 support when using native-tls backend.
  • Fix redirect handling to strip sensitive headers when the scheme changes.
  • Fix HTTP/3 happy-eyeball connection creation.
  • Upgrade hickory-resolver to 0.26.

v0.13.3

Compare Source

  • Fix CertificateRevocationList parsing of PEM values.
  • Fix logging in resolver to only show host, not full URL.
  • Fix hickory-dns to fallback to a default if /etc/resolv.conf fails.
  • Fix HTTP/3 to handle STOP_SENDING as not an error.
  • Fix HTTP/3 pool to remove timed out QUIC connections.
  • Fix HTTP/3 connection establishment picking IPv4 and IPv6.
  • Upgrade rustls-platform-verifier.
  • (wasm) Only use wasm-bindgen on unknown-* targets.
GREsau/schemars (schemars)

v1.2.2

Compare Source

  • Update to syn 3 in schemars_derive
serde-rs/serde (serde)

v1.0.229

Compare Source

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

v1.0.151

Compare Source

v1.0.150

Compare Source

tauri-apps/tauri (tauri)

v2.11.5: tauri v2.11.5

Compare Source

Cargo Audit

Fetching advisory database from `https://github.com/RustSec/advisory-db.git`
      Loaded 1146 security advisories (from /home/runner/.cargo/advisory-db)
    Updating crates.io index
    Scanning Cargo.lock for vulnerabilities (1085 crate dependencies)
Crate:     atk
Version:   0.18.2
Warning:   unmaintained
Title:     gtk-rs GTK3 bindings - no longer maintained
Date:      2024-03-04
ID:        RUSTSEC-2024-0413
URL:       https://rustsec.org/advisories/RUSTSEC-2024-0413

Crate:     atk-sys
Version:   0.18.2
Warning:   unmaintained
Title:     gtk-rs GTK3 bindings - no longer maintained
Date:      2024-03-04
ID:        RUSTSEC-2024-0416
URL:       https://rustsec.org/advisories/RUSTSEC-2024-0416

Crate:     fxhash
Version:   0.2.1
Warning:   unmaintained
Title:     fxhash - no longer maintained
Date:      2025-09-05
ID:        RUSTSEC-2025-0057
URL:       https://rustsec.org/advisories/RUSTSEC-2025-0057

Crate:     gdk
Version:   0.18.2
Warning:   unmaintained
Title:     gtk-rs GTK3 bindings - no longer maintained
Date:      2024-03-04
ID:        RUSTSEC-2024-0412
URL:       https://rustsec.org/advisories/RUSTSEC-2024-0412

Crate:     gdk-sys
Version:   0.18.2
Warning:   unmaintained
Title:     gtk-rs GTK3 bindings - no longer maintained
Date:      2024-03-04
ID:        RUSTSEC-2024-0418
URL:       https://rustsec.org/advisories/RUSTSEC-2024-0418

Crate:     gdkwayland-sys
Version:   0.18.2
Warning:   unmaintained
Title:     gtk-rs GTK3 bindings - no longer maintained
Date:      2024-03-04
ID:        RUSTSEC-2024-0411
URL:       https://rustsec.org/advisories/RUSTSEC-2024-0411

Crate:     gdkx11
Version:   0.18.2
Warning:   unmaintained
Title:     gtk-rs GTK3 bindings - no longer maintained
Date:      2024-03-04
ID:        RUSTSEC-2024-0417
URL:       https://rustsec.org/advisories/RUSTSEC-2024-0417

Crate:     gdkx11-sys
Version:   0.18.2
Warning:   unmaintained
Title:     gtk-rs GTK3 bindings - no longer maintained
Date:      2024-03-04
ID:        RUSTSEC-2024-0414
URL:       https://rustsec.org/advisories/RUSTSEC-2024-0414

Crate:     gtk
Version:   0.18.2
Warning:   unmaintained
Title:     gtk-rs GTK3 bindings - no longer maintained
Date:      2024-03-04
ID:        RUSTSEC-2024-0415
URL:       https://rustsec.org/advisories/RUSTSEC-2024-0415

Crate:     gtk-sys
Version:   0.18.2
Warning:   unmaintained
Title:     gtk-rs GTK3 bindings - no longer maintained
Date:      2024-03-04
ID:        RUSTSEC-2024-0420
URL:       https://rustsec.org/advisories/RUSTSEC-2024-0420

Crate:     gtk3-macros
Version:   0.18.2
Warning:   unmaintained
Title:     gtk-rs GTK3 bindings - no longer maintained
Date:      2024-03-04
ID:        RUSTSEC-2024-0419
URL:       https://rustsec.org/advisories/RUSTSEC-2024-0419

Crate:     paste
Version:   1.0.15
Warning:   unmaintained
Title:     paste - no longer maintained
Date:      2024-10-07
ID:        RUSTSEC-2024-0436
URL:       https://rustsec.org/advisories/RUSTSEC-2024-0436

Crate:     rustls-pemfile
Version:   1.0.4
Warning:   unmaintained
Title:     rustls-pemfile is unmaintained
Date:      2025-11-28
ID:        RUSTSEC-2025-0134
URL:       https://rustsec.org/advisories/RUSTSEC-2025-0134

Crate:     rustls-pemfile
Version:   2.2.0
Warning:   unmaintained
Title:     rustls-pemfile is unmaintained
Date:      2025-11-28
ID:        RUSTSEC-2025-0134
URL:       https://rustsec.org/advisories/RUSTSEC-2025-0134

Crate:     ttf-parser
Version:   0.25.1
Warning:   unmaintained
Title:     `ttf-parser` is unmaintained
Date:      2026-06-28
ID:        RUSTSEC-2026-0192
URL:       https://rustsec.org/advisories/RUSTSEC-2026-0192

Crate:     unic-char-property
Version:   0.9.0
Warning:   unmaintained
Title:     `unic-char-property` is unmaintained
Date:      2025-10-18
ID:        RUSTSEC-2025-0081
URL:       https://rustsec.org/advisories/RUSTSEC-2025-0081

Crate:     unic-char-range
Version:   0.9.0
Warning:   unmaintained
Title:     `unic-char-range` is unmaintained
Date:      2025-10-18
ID:        RUSTSEC-2025-0075
URL:       https://rustsec.org/advisories/RUSTSEC-2025-0075

Crate:     unic-common
Version:   0.9.0
Warning:   unmaintained
Title:     `unic-common` is unmaintained
Date:      2025-10-18
ID:        RUSTSEC-2025-0080
URL:       https://rustsec.org/advisories/RUSTSEC-2025-0080

Crate:     unic-ucd-ident
Version:   0.9.0
Warning:   unmaintained
Title:     `unic-ucd-ident` is unmaintained
Date:      2025-10-18
ID:        RUSTSEC-2025-0100
URL:       https://rustsec.org/advisories/RUSTSEC-2025-0100

Crate:     unic-ucd-version
Version:   0.9.0
Warning:   unmaintained
Title:     `unic-ucd-version` is unmaintained
Date:      2025-10-18
ID:        RUSTSEC-2025-0098
URL:       https://rustsec.org/advisories/RUSTSEC-2025-0098

Crate:     anyhow
Version:   1.0.95
Warning:   unsound
Title:     Unsoundness in `Error::downcast_mut()`
Date:      2026-06-25
ID:        RUSTSEC-2026-0190
URL:       https://rustsec.org/advisories/RUSTSEC-2026-0190

warning: 21 allowed warnings found

[2.11.5]

Dependencies

Cargo Publish

Updating crates.io index
    Updating git repository `https://github.com/tauri-apps/schemars.git`
   Packaging tauri v2.11.5 (/home/runner/work/tauri/tauri/crates/tauri)
warning: ignoring example `commands` as `../../examples/commands/main.rs` is not included in the published package
warning: ignoring example `drag` as `../../examples/drag/main.rs` is not included in the published package
warning: ignoring example `helloworld` as `../../examples/helloworld/main.rs` is not included in the published package
warning: ignoring example `isolation` as `../../examples/isolation/main.rs` is not included in the published package
warning: ignoring example `multiwebview` as `../../examples/multiwebview/main.rs` is not included in the published package
warning: ignoring example `multiwindow` as `../../examples/multiwindow/main.rs` is not included in the published package
warning: ignoring example `run-return` as `../../examples/run-return/main.rs` is not included in the published package
warning: ignoring example `splashscreen` as `../../examples/splashscreen/main.rs` is not included in the published package
warning: ignoring example `state` as `../../examples/state/main.rs` is not included in the published package
warning: ignoring example `streaming` as `../../examples/streaming/main.rs` is not included in the published package
    Updating crates.io index
    Packaged 142 files, 1.3MiB (290.9KiB compressed)
   Verifying tauri v2.11.5 (/home/runner/work/tauri/tauri/crates/tauri)
 Downloading crates ...
  Downloaded alloc-no-stdlib v2.0.4
  Downloaded anyhow v1.0.95
  Downloaded adler2 v2.0.0
  Downloaded alloc-stdlib v0.2.2
  Downloaded dyn-clone v1.0.17
  Downloaded field-offset v0.3.6
  Downloaded icu_provider_macros v1.5.0
  Downloaded fastrand v2.3.0
  Downloaded dlopen2_derive v0.4.0
  Downloaded dirs v6.0.0
  Downloaded aho-corasick v1.1.3
  Downloaded icu_provider v1.5.0
  Downloaded heck v0.4.1
  Downloaded embed-resource v3.0.5
  Downloaded displaydoc v0.2.5
  Downloaded cfg-if v1.0.1
  Downloaded idna v1.0.3
  Downloaded icu_normalizer_data v1.5.0
  Downloaded futures-core v0.3.31
  Downloaded futures-task v0.3.31
  Downloaded darling_macro v0.20.10
  Downloaded cpufeatures v0.2.16
  Downloaded cssparser-macros v0.6.1
  Downloaded cargo-platform v0.1.8
  Downloaded dtor v0.3.0
  Downloaded cairo-sys-rs v0.18.2
  Downloaded ctor v0.8.0
  Downloaded gdkx11-sys v0.18.2
  Downloaded schemars_derive v0.8.21
  Downloaded icu_properties_data v1.5.0
  Downloaded simd-adler32 v0.3.7
  Downloaded javascriptcore-rs-sys v1.1.1
  Downloaded gdkx11 v0.18.2
  Downloaded form_urlencoded v1.2.1
  Downloaded dirs-sys v0.5.0
  Downloaded glob v0.3.2
  Downloaded gdk-pixbuf-sys v0.18.0
  Downloaded cargo_toml v0.22.3
  Downloaded serde_repr v0.1.19
  Downloaded stable_deref_trait v1.2.0
  Downloaded gdk-pixbuf v0.18.5
  Downloaded atk-sys v0.18.2
  Downloaded cargo_metadata v0.19.0
  Downloaded autocfg v1.4.0
  Downloaded serde_spanned v1.0.4
  Downloaded markup5ever v0.38.0
  Downloaded toml_datetime v0.6.8
  Downloaded getrandom v0.2.15
  Downloaded tokio-macros v2.5.0
  Downloaded time-core v0.1.2
  Downloaded tauri-winres v0.3.2
  Downloaded serde-untagged v0.1.6
  Downloaded memoffset v0.9.1
  Downloaded thiserror-impl v1.0.69
  Downloaded bitflags v2.7.0
  Downloaded utf16_iter v1.0.5
  Downloaded unic-ucd-version v0.9.0
  Downloaded tauri-runtime v2.11.3
  Downloaded getrandom v0.3.3
  Downloaded unic-ucd-ident v0.9.0
  Downloaded unic-common v0.9.0
  Downloaded system-deps v6.2.2
  Downloaded semver v1.0.24
  Downloaded write16 v1.0.0
  Downloaded tray-icon v0.24.0
  Downloaded icu_collections v1.5.0
  Downloaded yoke v0.7.5
  Downloaded serde_derive_internals v0.29.1
  Downloaded x11-dl v2.21.0
  Downloaded zerofrom-derive v0.1.5
  Downloaded tauri-utils v2.9.3
  Downloaded unicode-segmentation v1.12.0
  Downloaded zerovec-derive v0.10.3
  Downloaded libappindicator v0.9.0
  Downloaded winnow v0.7.14
  Downloaded memchr v2.7.4
  Downloaded webkit2gtk v2.0.2
  Downloaded toml_edit v0.20.7
  Downloaded png v0.17.16
  Downloaded serde_with v3.12.0
  Downloaded serde_json v1.0.145
  Downloaded zerovec v0.10.4
  Downloaded winnow v0.5.40
  Downloaded syn v1.0.109
  Downloaded wry v0.55.0
  Downloaded regex v1.11.1
  Downloaded quick-xml v0.32.0
  Downloaded gtk v0.18.2
  Downloaded tao v0.35.0
  Downloaded regex-syntax v0.8.5
  Downloaded syn v2.0.117
  Downloaded png v0.18.1
  Downloaded indexmap v2.11.4
  Downloaded toml_edit v0.19.15
  Downloaded plist v1.7.0
  Downloaded muda v0.19.1
  Downloaded mio v1.0.3
  Downloaded glib v0.18.5
  Downloaded selectors v0.36.1
  Downloaded miniz_oxide v0.8.8
  Downloaded chrono v0.4.41
  Downloaded infer v0.19.0
  Downloaded brotli v8.0.0
  Downloaded indexmap v1.9.3
  Downloaded tokio v1.45.1
  Downloaded web_atoms v0.2.3
  Downloaded regex-automata v0.4.9
  Downloaded socket2 v0.5.8
  Downloaded ryu v1.0.18
  Downloaded num-traits v0.2.19
  Downloaded log v0.4.29
  Downloaded gio v0.18.4
  Downloaded brotli-decompressor v5.0.0
  Downloaded schemars v0.8.21
  Downloaded libc v0.2.178
  Downloaded zerofrom v0.1.5
  Downloaded yoke-derive v0.7.5
  Downloaded typenum v1.20.0
  Downloaded toml_edit v0.22.24
  Downloaded time v0.3.37
  Downloaded gtk-sys v0.18.2
  Downloaded futures-util v0.3.31
  Downloaded x11 v2.21.0
  Downloaded webkit2gtk-sys v2.0.2
  Downloaded uuid v1.11.0
  Downloaded url v2.5.4
  Downloaded http v1.3.1
  Downloaded dbus v0.9.10
  Downloaded libdbus-sys v0.2.7
  Downloaded pango v0.18.3
  Downloaded javascriptcore-rs v1.1.2
  Downloaded hashbrown v0.12.3
  Downloaded writeable v0.5.5
  Downloaded unicode-ident v1.0.14
  Downloaded tauri-macros v2.6.3
  Downloaded tauri-codegen v2.6.3
  Downloaded tauri-build v2.6.3
  Downloaded soup3 v0.5.0
  Downloaded smallvec v1.13.2
  Downloaded serde_with_macros v3.12.0
  Downloaded parking_lot v0.12.3
  Downloaded keyboard-types v0.7.0
  Downloaded jsonptr v0.6.3
  Downloaded json-patch v3.0.1
  Downloaded gdk v0.18.2
  Downloaded dom_query v0.27.0
  Downloaded cc v1.2.51
  Downloaded version-compare v0.2.0
  Downloaded urlpattern v0.3.0
  Downloaded toml_parser v1.0.9+spec-1.1.0
  Downloaded toml v0.8.20
  Downloaded tinystr v0.7.6
  Downloaded thiserror-impl v2.0.12
  Downloaded tauri-runtime-wry v2.11.4
  Downloaded icu_properties v1.5.1
  Downloaded gio-sys v0.18.1
  Downloaded soup3-sys v0.5.0
  Downloaded shlex v1.3.0
  Downloaded sha2 v0.10.8
  Downloaded rustc-hash v2.1.1
  Downloaded quote v1.0.38
  Downloaded pin-project-lite v0.2.16
  Downloaded lock_api v0.4.12
  Downloaded litemap v0.7.4
  Downloaded icu_locid v1.5.0
  Downloaded html5ever v0.38.0
  Downloaded gdk-sys v0.18.2
  Downloaded derive_more-impl v2.0.1
  Downloaded target-lexicon v0.12.16
  Downloaded synstructure v0.13.1
  Downloaded string_cache_codegen v0.6.1
  Downloaded string_cache v0.9.0
  Downloaded slab v0.4.9
  Downloaded signal-hook-registry v1.4.2
  Downloaded phf v0.13.1
  Downloaded ico v0.5.0
  Downloaded flate2 v1.1.1
  Downloaded derive_more v2.0.1
  Downloaded bytes v1.11.1
  Downloaded darling_core v0.20.10
  Downloaded darling v0.20.10
  Downloaded cssparser v0.36.0
  Downloaded cfb v0.7.3
  Downloaded cairo-rs v0.18.5
  Downloaded bit-vec v0.8.0
  Downloaded utf-8 v0.7.6
  Downloaded unic-char-range v0.9.0
  Downloaded unic-char-property v0.9.0
  Downloaded typeid v1.0.2
  Downloaded toml_writer v1.0.6+spec-1.1.0
  Downloaded time-macros v0.2.19
  Downloaded thiserror v2.0.12
  Downloaded tendril v0.5.0
  Downloaded servo_arc v0.4.3
  Downloaded raw-window-handle v0.6.2
  Downloaded proc-macro-error v1.0.4
  Downloaded pkg-config v0.3.31
  Downloaded phf_macros v0.13.1
  Downloaded phf_generator v0.13.1
  Downloaded parking_lot_core v0.9.10
  Downloaded pango-sys v0.18.0
  Downloaded libloading v0.7.4
  Downloaded idna_adapter v1.2.0
  Downloaded icu_locid_transform_data v1.5.0
  Downloaded glib-macros v0.18.5
  Downloaded crc32fast v1.4.2
  Downloaded atk v0.18.2
  Downloaded thiserror v1.0.69
  Downloaded proc-macro-crate v1.3.1
  Downloaded num-conv v0.1.0
  Downloaded icu_normalizer v1.5.0
  Downloaded cookie v0.18.1
  Downloaded camino v1.1.9
  Downloaded iana-time-zone v0.1.61
  Downloaded erased-serde v0.4.9
  Downloaded deranged v0.3.11
  Downloaded libappindicator-sys v0.9.0
  Downloaded rustc_version v0.4.1
  Downloaded pin-utils v0.1.0
  Downloaded percent-encoding v2.3.1
  Downloaded itoa v1.0.14
  Downloaded glib-sys v0.18.1
  Downloaded cfg-expr v0.15.8
  Downloaded siphasher v1.0.1
  Downloaded phf_shared v0.13.1
  Downloaded option-ext v0.2.0
  Downloaded new_debug_unreachable v1.0.6
  Downloaded icu_locid_transform v1.5.0
  Downloaded hex v0.4.3
  Downloaded gobject-sys v0.18.0
  Downloaded gdkwayland-sys v0.18.2
  Downloaded futures-executor v0.3.31
  Downloaded futures-channel v0.3.31
  Downloaded find-msvc-tools v0.1.6
  Downloaded fdeflate v0.3.7
  Downloaded equivalent v1.0.1
  Downloaded dtoa v1.0.9
  Downloaded dlopen2 v0.8.0
  Downloaded ctor-proc-macro v0.0.7
  Downloaded proc-macro-crate v2.0.0
  Downloaded precomputed-hash v0.1.1
  Downloaded phf_codegen v0.13.1
  Downloaded futures-sink v0.3.31
  Downloaded serialize-to-javascript-impl v0.1.2
  Downloaded serialize-to-javascript v0.1.2
  Downloaded serde_spanned v0.6.8
  Downloaded crypto-common v0.1.6
  Downloaded gtk3-macros v0.18.2
  Downloaded futures-macro v0.3.31
  Downloaded futures-io v0.3.31
  Downloaded dtor-proc-macro v0.0.6
  Downloaded dtoa-short v0.3.5
  Downloaded dpi v0.1.1
  Downloaded bit-set v0.8.0
  Downloaded proc-macro-error-attr v1.0.4
   Compiling proc-macro2 v1.0.106
   Compiling unicode-ident v1.0.14
   Compiling serde_core v1.0.228
   Compiling serde v1.0.228
   Compiling smallvec v1.13.2
   Compiling hashbrown v0.16.1
   Compiling equivalent v1.0.1
   Compiling winnow v0.7.14
   Compiling indexmap v2.11.4
   Compiling quote v1.0.38
   Compiling syn v2.0.117
   Compiling pkg-config v0.3.31
   Compiling heck v0.5.0
   Compiling target-lexicon v0.12.16
   Compiling libc v0.2.178
   Compiling version-compare v0.2.0
   Compiling cfg-expr v0.15.8
   Compiling autocfg v1.4.0
   Compiling memchr v2.7.4
   Compiling version_check v0.9.5
   Compiling litemap v0.7.4
   Compiling writeable v0.5.5
   Compiling thiserror v1.0.69
   Compiling cfg-if v1.0.1
   Compiling siphasher v1.0.1
   Compiling itoa v1.0.14
   Compiling phf_shared v0.13.1
   Compiling icu_locid_transform_data v1.5.0
   Compiling fastrand v2.3.0
   Compiling winnow v0.5.40
   Compiling synstructure v0.13.1
   Compiling phf_generator v0.13.1
   Compiling icu_properties_data v1.5.0
   Compiling stable_deref_trait v1.2.0
   Compiling proc-macro-error-attr v1.0.4
   Compiling syn v1.0.109
   Compiling semver v1.0.24
   Compiling proc-macro-error v1.0.4
   Compiling slab v0.4.9
   Compiling fnv v1.0.7
   Compiling write16 v1.0.0
   Compiling utf16_iter v1.0.5
   Compiling once_cell v1.21.4
   Compiling utf8_iter v1.0.4
   Compiling icu_normalizer_data v1.5.0
   Compiling pin-project-lite v0.2.16
   Compiling futures-core v0.3.31
   Compiling serde_derive v1.0.228
   Compiling zerofrom-derive v0.1.5
   Compiling yoke-derive v0.7.5
   Compiling zerovec-derive v0.10.3
   Compiling displaydoc v0.2.5
   Compiling zerofrom v0.1.5
   Compiling thiserror-impl v1.0.69
   Compiling icu_provider_macros v1.5.0
   Compiling yoke v0.7.5
   Compiling futures-macro v0.3.31
   Compiling futures-task v0.3.31
   Compiling pin-utils v0.1.0
   Compiling zerovec v0.10.4
   Compiling futures-util v0.3.31
   Compiling ryu v1.0.18
   Compiling parking_lot_core v0.9.10
   Compiling heck v0.4.1
   Compiling phf_macros v0.13.1
   Compiling futures-channel v0.3.31
   Compiling toml_datetime v0.6.8
   Compiling serde_spanned v0.6.8
   Compiling bitflags v2.7.0
   Compiling toml_edit v0.22.24
   Compiling toml_edit v0.20.7
   Compiling lock_api v0.4.12
   Compiling futures-executor v0.3.31
   Compiling tinystr v0.7.6
   Compiling powerfmt v0.2.0
   Compiling scopeguard v1.2.0
   Compiling num-conv v0.1.0
   Compiling time-core v0.1.2
   Compiling deranged v0.3.11
   Compiling icu_locid v1.5.0
   Compiling toml v0.8.20
   Compiling system-deps v6.2.2
   Compiling proc-macro-crate v2.0.0
   Compiling rustc_version v0.4.1
   Compiling phf_codegen v0.13.1
   Compiling ident_case v1.0.1
   Compiling glib-macros v0.18.5
   Compiling strsim v0.11.1
   Compiling typeid v1.0.2
   Compiling glib-sys v0.18.1
   Compiling gobject-sys v0.18.0
   Compiling gio-sys v0.18.1
   Compiling gdk-sys v0.18.2
   Compiling pango-sys v0.18.0
   Compiling gdk-pixbuf-sys v0.18.0
   Compiling cairo-sys-rs v0.18.2
   Compiling atk-sys v0.18.2
   Compiling darling_core v0.20.10
   Compiling icu_provider v1.5.0
   Compiling log v0.4.29
   Compiling byteorder v1.5.0
   Compiling gio v0.18.4
   Compiling toml_writer v1.0.6+spec-1.1.0
   Compiling erased-serde v0.4.9
   Compiling glib v0.18.5
   Compiling icu_locid_transform v1.5.0
   Compiling gtk-sys v0.18.2
   Compiling darling_macro v0.20.10
   Compiling icu_collections v1.5.0
   Compiling aho-corasick v1.1.3
   Compiling futures-io v0.3.31
   Compiling thiserror v2.0.12
   Compiling unic-char-range v0.9.0
   Compiling unic-common v0.9.0
   Compiling regex-syntax v0.8.5
   Compiling new_debug_unreachable v1.0.6
   Compiling unic-ucd-version v0.9.0
   Compiling unic-char-property v0.9.0
   Compiling icu_properties v1.5.1
   Compiling regex-automata v0.4.9
   Compiling darling v0.20.10
   Compiling phf v0.13.1
   Compiling thiserror-impl v2.0.12
   Compiling string_cache_codegen v0.6.1
   Compiling precomputed-hash v0.1.1
   Compiling bytes v1.11.1
   Compiling serde_json v1.0.145
   Compiling alloc-no-stdlib v2.0.4
   Compiling alloc-stdlib v0.2.2
   Compiling web_atoms v0.2.3
   Compiling regex v1.11.1
   Compiling parking_lot v0.12.3
   Compiling serde_with_macros v3.12.0
   Compiling icu_normalizer v1.5.0
   Compiling unic-ucd-ident v0.9.0
   Compiling quick-xml v0.32.0
   Compiling anyhow v1.0.95
   Compiling base64 v0.22.1
   Compiling idna_adapter v1.2.0
   Compiling string_cache v0.9.0
   Compiling brotli-decompressor v5.0.0
   Compiling http v1.3.1
   Compiling getrandom v0.2.15
   Compiling memoffset v0.9.1
   Compiling serde_spanned v1.0.4
   Compiling toml_datetime v0.7.5+spec-1.1.0
   Compiling toml_parser v1.0.9+spec-1.1.0
   Compiling percent-encoding v2.3.1
   Compiling dtoa v1.0.9
   Compiling ctor-proc-macro v0.0.7
   Compiling utf-8 v0.7.6
   Compiling bitflags v1.3.2
   Compiling same-file v1.0.6
   Compiling ctor v0.8.0
   Compiling toml v0.9.12+spec-1.1.0
   Compiling walkdir v2.5.0
   Compiling tendril v0.5.0
   Compiling dtoa-short v0.3.5
   Compiling form_urlencoded v1.2.1
   Compiling uuid v1.11.0
   Compiling brotli v8.0.0
   Compiling idna v1.0.3
   Compiling cairo-rs v0.18.5
   Compiling selectors v0.36.1
   Compiling field-offset v0.3.6
   Compiling toml_edit v0.19.15
   Compiling cssparser-macros v0.6.1
   Compiling derive_more-impl v2.0.1
   Compiling indexmap v1.9.3
   Compiling dunce v1.0.5
   Compiling camino v1.1.9
   Compiling glob v0.3.2
   Compiling derive_more v2.0.1
   Compiling cssparser v0.36.0
   Compiling url v2.5.4
   Compiling proc-macro-crate v1.3.1
   Compiling gdk-pixbuf v0.18.5
   Compiling pango v0.18.3
   Compiling markup5ever v0.38.0
   Compiling javascriptcore-rs-sys v1.1.1
   Compiling soup3-sys v0.5.0
   Compiling servo_arc v0.4.3
   Compiling gdk v0.18.2
   Compiling serde_derive_internals v0.29.1
   Compiling generic-array v0.14.7
   Compiling gtk v0.18.2
   Compiling rustc-hash v2.1.1
   Compiling hashbrown v0.12.3
   Compiling bit-vec v0.8.0
   Compiling schemars v0.8.21
   Compiling bit-set v0.8.0
   Compiling schemars_derive v0.8.21
   Compiling html5ever v0.38.0
   Compiling gtk3-macros v0.18.2
   Compiling cfb v0.7.3
   Compiling atk v0.18.2
   Compiling jsonptr v0.6.3
   Compiling webkit2gtk-sys v2.0.2
   Compiling time v0.3.37
   Compiling time-macros v0.2.19
   Compiling cargo-platform v0.1.8
   Compiling x11 v2.21.0
   Compiling option-ext v0.2.0
   Compiling typenum v1.20.0
   Compiling dyn-clone v1.0.17
   Compiling foldhash v0.2.0
   Compiling simd-adler32 v0.3.7
   Compiling dom_query v0.27.0
   Compiling plist v1.7.0
   Compiling dirs-sys v0.5.0
   Compiling cargo_metadata v0.19.0
   Compiling serde-untagged v0.1.6
   Compiling json-patch v3.0.1
   Compiling infer v0.19.0
   Compiling urlpattern v0.3.0
   Compiling serde_with v3.12.0
   Compiling gdkx11-sys v0.18.2
   Compiling crossbeam-utils v0.8.21
   Compiling find-msvc-tools v0.1.6
   Compiling shlex v1.3.0
   Compiling adler2 v2.0.0
   Compiling miniz_oxide v0.8.8
   Compiling cc v1.2.51
   Compiling tauri-utils v2.9.3
   Compiling dirs v6.0.0
   Compiling dpi v0.1.1
   Compiling crc32fast v1.4.2
   Compiling cookie v0.18.1
   Compiling x11-dl v2.21.0
   Compiling libdbus-sys v0.2.7
   Compiling flate2 v1.1.1
   Compiling embed-resource v3.0.5
   Compiling soup3 v0.5.0
   Compiling javascriptcore-rs v1.1.2
   Compiling block-buffer v0.10.4
   Compiling crypto-common v0.1.6
   Compiling fdeflate v0.3.7
   Compiling raw-window-handle v0.6.2
   Compiling png v0.17.16
   Compiling digest v0.10.7
   Compiling crossbeam-channel v0.5.15
   Compiling tauri-winres v0.3.2
   Compiling cargo_toml v0.22.3
   Compiling webkit2gtk v2.0.2
   Compiling dlopen2_derive v0.4.0
   Compiling tauri-runtime v2.11.3
   Compiling cpufeatures v0.2.16
   Compiling wry v0.55.0
   Compiling sha2 v0.10.8
   Compiling dlopen2 v0.8.0
   Compiling tauri-build v2.6.3
   Compiling dbus v0.9.10
   Compiling ico v0.5.0
   Compiling gdkx11 v0.18.2
   Compiling gdkwayland-sys v0.18.2
   Compiling getrandom v0.3.3
   Compiling unicode-segmentation v1.12.0
   Compiling tauri-runtime-wry v2.11.4
   Compiling keyboard-types v0.7.0
   Compiling tao v0.35.0
   Compiling tauri-codegen v2.6.3
   Compiling tauri v2.11.5 (/home/runner/work/tauri/tauri/target/package/tauri-2.11.5)
   Compiling serialize-to-javascript-impl v0.1.2
   Compiling tauri-macros v2.6.3
   Compiling serialize-to-javascript v0.1.2
   Compiling muda v0.19.1
   Compiling tokio v1.45.1
   Compiling serde_repr v0.1.19
   Compiling mime v0.3.17
    Finished `dev` profile [unoptimized + debuginfo] target(s) in 1m 29s
   Uploading tauri v2.11.5 (/home/runner/work/tauri/tauri/crates/tauri)
    Uploaded tauri v2.11.5 to registry `crates-io`
note: waiting for tauri v2.11.5 to be available at registry `crates-io`
help: you may press ctrl-c to skip waiting; the crate should be available shortly
   Published tauri v2.11.5 at registry `crates-io`

v2.11.4: tauri v2.11.4

Compare Source

Cargo Audit

Fetching advisory database from `https://github.com/RustSec/advisory-db.git`
      Loaded 1146 security advisories (from /home/runner/.cargo/advisory-db)
    Updating crates.io index
    Scanning Cargo.lock for vulnerabilities (1085 crate dependencies)
Crate:     atk
Version:   0.18.2
Warning:   unmaintained
Title:     gtk-rs GTK3 bindings - no longer maintained
Date:      2024-03-04
ID:        RUSTSEC-2024-0413
URL:       https://rustsec.org/advisories/RUSTSEC-2024-0413

Crate:     atk-sys
Version:   0.18.2
Warning:   unmaintained
Title:     gtk-rs GTK3 bindings - no longer maintained
Date:      2024-03-04
ID:        RUSTSEC-2024-0416
URL:       https://rustsec.org/advisories/RUSTSEC-2024-0416

Crate:     fxhash
Version:   0.2.1
Warning:   unmaintained
Title:     fxhash - no longer maintained
Date:      2025

> ✂ **Note**
> 
> PR body was truncated to here.


</details>

---

### Configuration

📅 **Schedule**: (in timezone Europe/Brussels)

- Branch creation
  - "before 9am on Saturday"
- 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](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/Atypical-Consulting/github-toolkit).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0NC4xMi4wIiwidXBkYXRlZEluVmVyIjoiNDQuMTIuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19-->

@renovate renovate Bot added the dependencies label Aug 7, 2026
@renovate
renovate Bot merged commit c7a5f99 into main Aug 8, 2026
2 checks passed
@renovate
renovate Bot deleted the renovate/non-major-dependencies branch August 8, 2026 01:16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants