Skip to content

chore: update all non-major dependencies#55

Merged
derklaro merged 1 commit intomainfrom
renovate/all-minor-patch
Apr 8, 2026
Merged

chore: update all non-major dependencies#55
derklaro merged 1 commit intomainfrom
renovate/all-minor-patch

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Apr 6, 2026

This PR contains the following updates:

Package Change Age Confidence
@biomejs/biome (source) ^2.4.9^2.4.10 age confidence
@biomejs/biome (source) 2.4.92.4.10 age confidence
@bufbuild/buf ^1.66.1^1.67.0 age confidence
@hey-api/openapi-ts (source) ^0.94.5^0.95.0 age confidence
@maplibre/maplibre-gl-style-spec (source) ^24.7.0^24.8.1 age confidence
@tanstack/react-devtools (source) ^0.10.0^0.10.2 age confidence
@tanstack/react-form (source) ^1.28.5^1.28.6 age confidence
@tanstack/react-form-devtools (source) ^0.2.19^0.2.20 age confidence
@tanstack/react-pacer (source) ^0.21.0^0.21.1 age confidence
@tanstack/react-pacer-devtools (source) ^0.6.0^0.6.1 age confidence
@tanstack/react-query (source) ^5.95.2^5.96.2 age confidence
@tanstack/react-query-devtools (source) ^5.95.2^5.96.2 age confidence
@tanstack/react-router (source) ^1.168.8^1.168.10 age confidence
@tanstack/router-plugin (source) ^1.167.9^1.167.12 age confidence
maplibre-gl (source) ^5.21.1^5.22.0 age confidence

Release Notes

biomejs/biome (@​biomejs/biome)

v2.4.10

Compare Source

Patch Changes
  • #​8838 f3a6a6b Thanks @​baeseokjae! - Added new lint nursery rule noImpliedEval.

    The rule detects implied eval() usage through functions like setTimeout, setInterval, and setImmediate when called with string arguments.

    // Invalid
    setTimeout("alert('Hello');", 100);
    
    // Valid
    setTimeout(() => alert("Hello"), 100);
  • #​9320 93c3b6c Thanks @​taberoajorge! - Fixed #​7664: noUnusedVariables no longer reports false positives for TypeScript namespace declarations that participate in declaration merging with an exported or used value declaration (const, function, or class) of the same name. The reverse direction is also handled: a value declaration merged with an exported namespace is no longer flagged.

  • #​9630 1dd4a56 Thanks @​raashish1601! - Fixed #​9629: noNegationElse now keeps ternary branch comments attached to the correct branch when applying its fixer.

  • #​9216 04243b0 Thanks @​FrederickStempfle! - Fixed #​9061: noProcessEnv now also detects process.env when process is imported from the "process" or "node:process" modules.

    Previously, only the global process object was flagged:

    import process from "node:process";
    // This was not flagged, but now it is:
    console.log(process.env.NODE_ENV);
  • #​9692 61b7ec5 Thanks @​mkosei! - Fixed Svelte #each destructuring parsing and formatting for nested patterns such as [key, { a, b }].

  • #​9627 06a0f35 Thanks @​ematipico! - Fixed #​191: Improved the performance of how the Biome Language Server pulls code actions and diagnostics.

    Before, code actions were pulled and computed all at once in one request. This approach couldn't work in big files, and caused Biome to stale and have CPU usage spikes up to 100%.

    Now, code actions are pulled and computed lazily, and Biome won't choke anymore in big files.

  • #​9643 5bfee36 Thanks @​dyc3! - Fixed #​9347: useVueValidVBind no longer reports valid object bindings like v-bind="props".

  • #​9627 06a0f35 Thanks @​ematipico! - Fixed assist diagnostics being invisible when using --diagnostic-level=error. Enforced assist violations (e.g. useSortedKeys) were filtered out before being promoted to errors, causing biome check to incorrectly return success.

  • #​9695 9856a87 Thanks @​dyc3! - Added the new nursery rule noUnsafePlusOperands, which reports + and += operations that use object-like, symbol, unknown, or never operands, or that mix number with bigint.

  • #​9627 06a0f35 Thanks @​ematipico! - Fixed duplicate parse errors in check and ci output. When a file had syntax errors, the same parse error was printed twice and the error count was inflated.

  • #​9627 06a0f35 Thanks @​ematipico! - Improved the performance of the commands lint and check when they are called with --write.

  • #​9627 06a0f35 Thanks @​ematipico! - Fixed --diagnostic-level not fully filtering diagnostics. Setting --diagnostic-level=error now correctly excludes warnings and infos from both the output and the summary counts.

  • #​9623 13b3261 Thanks @​ematipico! - Fixed #​9258: --skip no longer causes suppressions/unused warnings for suppression comments targeting skipped rules or domains.

  • #​9631 599dd04 Thanks @​raashish1601! - Fixed #​9625: experimentalEmbeddedSnippetsEnabled no longer crashes when a file mixes formatable CSS-in-JS templates with tagged templates that the embedded formatter can't currently delegate, such as a styled-components interpolation returning `css```.

bufbuild/buf (@​bufbuild/buf)

v1.67.0

Compare Source

  • Fix LSP not skipping buf.build/docs links for lint rules from check plugins and policies.
  • Fix buf dep graph --format json silently dropping dependencies when a dependency was already seen.
  • Add support for --rbs_out as a protoc_builtin plugin (requires protoc v34.0+).
  • Add relevant links from CEL LSP hover documentation to either <celbyexample.com> or <protovalidate.com>
  • Add OpenBSD and FreeBSD release binaries for amd64 and arm64.
  • Skip writing unchanged output files in buf generate to preserve modification times
  • Update buf beta registry plugin delete to prompt the user for deletion, matching the UX of the other deletion commands.
    Use --force to restore the old behavior.
hey-api/openapi-ts (@​hey-api/openapi-ts)

v0.95.0

Minor Changes
Validator request schemas

Valibot plugin no longer exports composite request Data schemas. Instead, each layer is exported as a separate schema. If you're using validators with SDKs, you can preserve the composite schema with shouldExtract:

export default {
  input: "hey-api/backend", // sign up at app.heyapi.dev
  output: "src/client",
  plugins: [
    // ...other plugins
    {
      name: "sdk",
      validator: "valibot",
    },
    {
      name: "valibot",
      requests: {
        shouldExtract: true,
      },
    },
  ],
};
Removed plugin.getSymbol() function

This function has been removed. You can use plugin.querySymbol() instead. It accepts the same arguments and returns the same result.

Validator request schemas

Zod plugin no longer exports composite request Data schemas. Instead, each layer is exported as a separate schema. If you're using validators with SDKs, you can preserve the composite schema with shouldExtract:

export default {
  input: "hey-api/backend", // sign up at app.heyapi.dev
  output: "src/client",
  plugins: [
    // ...other plugins
    {
      name: "sdk",
      validator: "zod",
    },
    {
      name: "zod",
      requests: {
        shouldExtract: true,
      },
    },
  ],
};
Patch Changes
Updated Dependencies:
maplibre/maplibre-style-spec (@​maplibre/maplibre-gl-style-spec)

v24.8.1

Compare Source

✨ Features and improvements
  • Add AllPaintProperties and AllLayoutProperties typescript definitions (#​1579) (by @​CommanderStorm)
  • Update TS definitions to allow var as the 3rd arg of comparator functions (#​1564) (by k-yle)
🐞 Bug fixes
  • Fix get expression inside join expression (#​1583) (by 1ec5)

v24.8.0

Compare Source

✨ Features and improvements
TanStack/devtools (@​tanstack/react-devtools)

v0.10.2

Compare Source

Patch Changes

v0.10.1

Patch Changes
TanStack/form (@​tanstack/react-form)

v1.28.6

Compare Source

Patch Changes
TanStack/form (@​tanstack/react-form-devtools)

v0.2.20

Compare Source

Patch Changes
TanStack/pacer (@​tanstack/react-pacer)

v0.21.1

Compare Source

Patch Changes
TanStack/pacer (@​tanstack/react-pacer-devtools)

v0.6.1

Compare Source

Patch Changes
TanStack/query (@​tanstack/react-query)

v5.96.2

Compare Source

Patch Changes

v5.96.1

Compare Source

Patch Changes

v5.96.0

Compare Source

Patch Changes
TanStack/query (@​tanstack/react-query-devtools)

v5.96.2

Compare Source

Patch Changes

v5.96.1

Compare Source

Patch Changes

v5.96.0

Compare Source

Patch Changes
TanStack/router (@​tanstack/react-router)

v1.168.10

Compare Source

Patch Changes
  • Preserve component-thrown notFound() errors through framework error boundaries so route notFoundComponent handlers render without requiring an explicit routeId. (#​7077)

  • Updated dependencies [796406d]:

v1.168.9

Compare Source

Patch Changes
TanStack/router (@​tanstack/router-plugin)

v1.167.12

Compare Source

Patch Changes

v1.167.11

Compare Source

Patch Changes

v1.167.10

Compare Source

Patch Changes
  • Initialize import.meta.hot.data before storing stable split components so Vitest does not crash when HMR data is missing. (#​7074)
maplibre/maplibre-gl-js (maplibre-gl)

v5.22.0

Compare Source

✨ Features and improvements
  • Make line-cap, line-miter-limit, and line-round-limit data-driven properties, allowing per-feature values (#​7351) (by @​CommanderStorm)
  • GPU performance optimization: early culling of transparent symbols in vertex shaders (#​7364) (by @​xavierjs)
  • Add example showing how to measure map performance using built-in events (load, idle, render) (#​7077) (by @​CommanderStorm)
  • UX: Clarify error message language so if layout and paint properties are confused in setPaintProperty or setLayoutProperty (#​6954) (by @​Willjfield and @​CommanderStorm)
🐞 Bug fixes
  • Fix startup crash caused by a stale async style load completing after the style was cleared or replaced (#​7377)
  • Make fitBounds and fitScreenCoordinates respect the zoomSnap map option by snapping the zoom level down to keep bounds fully visible (#​7332 (by @​CommanderStorm)
  • Make jumpTo, easeTo, and flyTo respect the zoomSnap map option by snapping the zoom level to the nearest valid increment (#​7333 (by @​CommanderStorm)
  • Fix setState crash when switching styles while globe projection is active (#​7314) (by @​ashwinuae)
  • Prevent crashes when calling map.remove() immediately after creation by canceling in-flight style URL loads (#​7368) (by @​CommanderStorm)
  • Fixed symbol collision flickering by adding tolerance to GridIndex AABB comparison (#​7360) (by @​kkokkoejong)
  • Fix fitBounds ignoring maxZoom option in vertical-perspective projection (#​7372) (by @​CommanderStorm)
  • Prevent stale async style loads from completing after style clear (#​7378) (by @​Lievesley)
  • Fix broken example for fill-pattern (#​7326) (by @​k-yle)

Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) in timezone UTC, 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 derklaro April 6, 2026 02:09
@cloudflare-workers-and-pages
Copy link
Copy Markdown

cloudflare-workers-and-pages bot commented Apr 6, 2026

Deploying sit-frontend with  Cloudflare Pages  Cloudflare Pages

Latest commit: 09c809b
Status: ✅  Deploy successful!
Preview URL: https://ddd8e930.sit-frontend.pages.dev
Branch Preview URL: https://renovate-all-minor-patch.sit-frontend.pages.dev

View logs

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 80b9115 to 72f2119 Compare April 6, 2026 21:38
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 72f2119 to 09c809b Compare April 7, 2026 20:59
@derklaro derklaro merged commit 2b6b728 into main Apr 8, 2026
5 checks passed
@derklaro derklaro deleted the renovate/all-minor-patch branch April 8, 2026 03:52
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.

1 participant