Skip to content

chore(deps): update all non-major dependencies#3662

Merged
renovate[bot] merged 1 commit intomainfrom
renovate/all-minor-patch
Oct 14, 2025
Merged

chore(deps): update all non-major dependencies#3662
renovate[bot] merged 1 commit intomainfrom
renovate/all-minor-patch

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Oct 13, 2025

This PR contains the following updates:

Package Change Age Confidence
@biomejs/biome (source) 2.2.5 -> 2.2.6 age confidence
@modelcontextprotocol/sdk (source) 1.19.1 -> 1.20.0 age confidence
@pandacss/dev (source) 1.4.1 -> 1.4.2 age confidence
@pandacss/preset-base (source) 1.4.1 -> 1.4.2 age confidence
@pandacss/preset-panda (source) 1.4.1 -> 1.4.2 age confidence
@sveltejs/kit (source) 2.44.0 -> 2.46.5 age confidence
@tanstack/svelte-form (source) 1.23.5 -> 1.23.7 age confidence
@tanstack/vue-form (source) 1.23.5 -> 1.23.7 age confidence
@types/bun (source) 1.2.23 -> 1.3.0 age confidence
@types/node (source) 24.6.2 -> 24.7.2 age confidence
@types/react (source) 19.2.0 -> 19.2.2 age confidence
@types/react-dom (source) 19.2.0 -> 19.2.2 age confidence
better-auth (source) 1.3.26 -> 1.3.27 age confidence
effect (source) 3.18.2 -> 3.18.4 age confidence
lucide-react (source) 0.544.0 -> 0.545.0 age confidence
lucide-solid (source) 0.544.0 -> 0.545.0 age confidence
lucide-svelte (source) 0.544.0 -> 0.545.0 age confidence
lucide-vue-next (source) 0.544.0 -> 0.545.0 age confidence
next (source) 15.5.4 -> 15.5.5 age confidence
nuxt (source) 4.1.2 -> 4.1.3 age confidence
react-hook-form (source) 7.64.0 -> 7.65.0 age confidence
svelte (source) 5.39.9 -> 5.39.12 age confidence
svelte-check 4.3.2 -> 4.3.3 age confidence
vercel (source) 48.2.0 -> 48.2.9 age confidence
vue-router (source) 4.5.1 -> 4.6.0 age confidence
vue-tsc (source) 3.1.0 -> 3.1.1 age confidence

Release Notes

biomejs/biome (@​biomejs/biome)

v2.2.6

Compare Source

Patch Changes
  • #​7071 a8e7301 Thanks @​ptkagori! - Added the useQwikMethodUsage lint rule for the Qwik domain.

    This rule validates Qwik hook usage. Identifiers matching useXxx must be called only within serialisable reactive contexts (for example, inside component$, route loaders/actions, or within other Qwik hooks), preventing common Qwik antipatterns.

    Invalid:

    // Top-level hook call is invalid.
    const state = useStore({ count: 0 });
    
    function helper() {
      // Calling a hook in a non-reactive function is invalid.
      const loc = useLocation();
    }

    Valid:

    component$(() => {
      const state = useStore({ count: 0 }); // OK inside component$.
      return <div>{state.count}</div>;
    });
    
    const handler = $(() => {
      const loc = useLocation(); // OK inside a $-wrapped closure.
      console.log(loc.params);
    });
  • #​7685 52071f5 Thanks @​denbezrukov! - Fixed #​6981: The NoUnknownPseudoClass rule no longer reports local pseudo-classes when CSS Modules are used.

  • #​7640 899f7b2 Thanks @​arendjr! - Fixed #​7638: useImportExtensions no longer emits diagnostics on valid import paths that end with a query or hash.

Example
// This no longer warns if `index.css` exists:
import style from "../theme/index.css?inline";
  • #​7071 a8e7301 Thanks @​ptkagori! - Added the useQwikValidLexicalScope rule to the Qwik domain.

    This rule helps you avoid common bugs in Qwik components by checking that your variables and functions are declared in the correct place.

    Invalid:

    // Invalid: state defined outside the component's lexical scope.
    let state = useStore({ count: 0 });
    const Component = component$(() => {
      return (
        <button onClick$={() => state.count++}>Invalid: {state.count}</button>
      );
    });

    Valid:

    // Valid: state initialised within the component's lexical scope and captured by the event.
    const Component = component$(() => {
      const state = useStore({ count: 0 });
      return <button onClick$={() => state.count++}>Valid: {state.count}</button>;
    });
  • #​7620 5beb1ee Thanks @​Netail! - Added the rule useDeprecatedDate, which makes a deprecation date required for the graphql @deprecated directive.

    Invalid
    query {
      member @&#8203;deprecated(reason: "Use `members` instead") {
        id
      }
    }
    Valid
    query {
      member
        @&#8203;deprecated(reason: "Use `members` instead", deletionDate: "2099-12-25") {
        id
      }
    }
  • #​7709 d6da4d5 Thanks @​siketyan! - Fixed #​7704: The useExhaustiveDependencies rule now correctly adds an object dependency when its method is called within the closure.

    For example:

    function Component(props) {
      useEffect(() => {
        props.foo();
      }, []);
    }

    will now be fixed to:

    function Component(props) {
      useEffect(() => {
        props.foo();
      }, [props]);
    }
  • #​7624 309ae41 Thanks @​lucasweng! - Fixed #​7595: noUselessEscapeInString no longer reports $\{ escape in template literals.

  • #​7665 29e4229 Thanks @​ryan-m-walker! - Fixed #​7619: Added support for parsing the CSS :state() pseudo-class.

    custom-selector:state(checked) {
    }
  • #​7608 41df59b Thanks @​ritoban23! - Fixed #​7604: the useMaxParams rule now highlights parameter lists instead of entire function bodies. This provides more precise error highlighting. Previously, the entire function was highlighted; now only the parameter list is highlighted, such as (a, b, c, d, e, f, g, h).

  • #​7643 459a6ac Thanks @​daivinhtran! - Fixed #​7580: Include plugin in summary report

modelcontextprotocol/typescript-sdk (@​modelcontextprotocol/sdk)

v1.20.0

Compare Source

What's Changed

New Contributors 🙏

Full Changelog: modelcontextprotocol/typescript-sdk@1.19.0...1.20.0

chakra-ui/panda (@​pandacss/dev)

v1.4.2

Compare Source

Patch Changes
chakra-ui/panda (@​pandacss/preset-base)

v1.4.2

Compare Source

Patch Changes
chakra-ui/panda (@​pandacss/preset-panda)

v1.4.2

Compare Source

Patch Changes
sveltejs/kit (@​sveltejs/kit)

v2.46.5

Compare Source

Patch Changes
  • fix: ensure form remote functions' fields.set triggers reactivity (#​14661)

v2.46.4

Compare Source

Patch Changes
  • fix: prevent access of Svelte 5-only untrack function (#​14658)

v2.46.3

Compare Source

Patch Changes
  • fix: merge field.set(...) calls (#​14651)

  • fix: don't automatically reset form after an enhanced submission (#​14626)

  • fix: normalize path strings when updating field values (#​14649)

v2.46.2

Compare Source

Patch Changes
  • fix: prevent code execution order issues around SvelteKit's env modules (#​14637)

v2.46.1

Compare Source

Patch Changes
  • fix: use $derived for form fields (#​14621)

  • docs: remove @example blocks to allow docs to deploy (#​14636)

  • fix: require a value with submit and hidden fields (#​14635)

  • fix: delete hydration cache on effect teardown (#​14611)

v2.46.0

Compare Source

Minor Changes
  • feat: imperative form validation (#​14624)
Patch Changes
  • fix: wait a tick before collecting form data for validation (#​14631)

  • fix: prevent code execution order issues around SvelteKit's env modules (#​14632)

v2.45.0

Compare Source

Minor Changes
  • feat: form.for(id) now implicitly sets id on form object (#​14623)
Patch Changes
  • fix: allow fetch in remote function without emitting a warning (#​14610)
TanStack/form (@​tanstack/svelte-form)

v1.23.7

Compare Source

Patch Changes

v1.23.6

Compare Source

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

v1.23.7

Compare Source

Patch Changes

v1.23.6

Compare Source

Patch Changes
better-auth/better-auth (better-auth)

v1.3.27

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
Effect-TS/effect (effect)

v3.18.4

Compare Source

Patch Changes
  • #​5617 6ae2f5d Thanks @​gcanti! - JSONSchema: Fix issue where invalid defaults were included in the output.

    Now they are ignored, similar to invalid examples.

    Before

    import { JSONSchema, Schema } from "effect"
    
    const schema = Schema.NonEmptyString.annotations({
      default: ""
    })
    
    const jsonSchema = JSONSchema.make(schema)
    
    console.log(JSON.stringify(jsonSchema, null, 2))
    /*
    Output:
    {
      "$schema": "http://json-schema.org/draft-07/schema#",
      "type": "string",
      "description": "a non empty string",
      "title": "nonEmptyString",
      "default": "",
      "minLength": 1
    }
    */

    After

    import { JSONSchema, Schema } from "effect"
    
    const schema = Schema.NonEmptyString.annotations({
      default: ""
    })
    
    const jsonSchema = JSONSchema.make(schema)
    
    console.log(JSON.stringify(jsonSchema, null, 2))
    /*
    Output:
    {
      "$schema": "http://json-schema.org/draft-07/schema#",
      "type": "string",
      "description": "a non empty string",
      "title": "nonEmptyString",
      "minLength": 1
    }
    */

v3.18.3

Compare Source

Patch Changes
  • #​5612 25fab81 Thanks @​gcanti! - Fix JSON Schema generation with topLevelReferenceStrategy: "skip", closes #​5611

    This patch fixes a bug that occurred when generating JSON Schemas with nested schemas that had identifiers, while using topLevelReferenceStrategy: "skip".

    Previously, the generator would still output $ref entries even though references were supposed to be skipped, leaving unresolved definitions.

    Before

    import { JSONSchema, Schema } from "effect"
    
    const A = Schema.Struct({ value: Schema.String }).annotations({
      identifier: "A"
    })
    const B = Schema.Struct({ a: A }).annotations({ identifier: "B" })
    
    const definitions = {}
    console.log(
      JSON.stringify(
        JSONSchema.fromAST(B.ast, {
          definitions,
          topLevelReferenceStrategy: "skip"
        }),
        null,
        2
      )
    )
    /*
    {
      "type": "object",
      "required": ["a"],
      "properties": {
        "a": {
          "$ref": "#/$defs/A"
        }
      },
      "additionalProperties": false
    }
    */
    console.log(definitions)
    /*
    {
      A: {
        type: "object",
        required: ["value"],
        properties: { value: [Object] },
        additionalProperties: false
      }
    }
    */

    After

    import { JSONSchema, Schema } from "effect"
    
    const A = Schema.Struct({ value: Schema.String }).annotations({
      identifier: "A"
    })
    const B = Schema.Struct({ a: A }).annotations({ identifier: "B" })
    
    const definitions = {}
    console.log(
      JSON.stringify(
        JSONSchema.fromAST(B.ast, {
          definitions,
          topLevelReferenceStrategy: "skip"
        }),
        null,
        2
      )
    )
    /*
    {
      "type": "object",
      "required": ["a"],
      "properties": {
        "a": {
          "type": "object",
          "required": ["value"],
          "properties": {
            "value": { "type": "string" }
          },
          "additionalProperties": false
        }
      },
      "additionalProperties": false
    }
    */
    console.log(definitions)
    /*
    {}
    */

    Now schemas are correctly inlined, and no leftover $ref entries or unused definitions remain.

lucide-icons/lucide (lucide-react)

v0.545.0

Compare Source

lucide-icons/lucide (lucide-solid)

v0.545.0: Version 0.545.0

Compare Source

What's Changed

Full Changelog: lucide-icons/lucide@0.544.0...0.545.0

vercel/next.js (next)

v15.5.5

Compare Source

nuxt/nuxt (nuxt)

v4.1.3

Compare Source

4.1.3 is a regularly scheduled patch release.

✅ Upgrading

Our recommendation for upgrading is to run:

npx nuxt upgrade --dedupe

This will deduplicate your lockfile as well, and help ensure that you pull in updates from other dependencies that Nuxt relies on, particularly in the unjs ecosystem.

👉 Changelog

compare changes

🔥 Performance
  • vite: Use rolldown's replace plugin when applicable (#​33258)
🩹 Fixes
  • kit: Add default values when adding type references in prepare:types hook (#​33239)
  • nuxt: Augment app config in server context (#​33287)
  • nuxt: Make lazy component types compatible with h (#​33046)
  • vite: Deduplicate inlined server style chunks (#​33308)
  • nuxt: Support head option on useHead (#​33318)
  • nuxt: Do not relativise importmap if cdnURL is set (#​33333)
  • nuxt: Resolve aliases in imports.dirs (#​33334)
  • nuxt: Add missing element/vnode props for <NuxtLink> (#​33335)
  • nuxt: Do not generate server placeholder components (#​33345)
  • nuxt: Dedupe generated component names (#​33346)
  • webpack: Test watch instance before closing it (0e5a0a5a0)
  • nuxt: Correctly handle island rendering error (#​33302)
  • nuxt: Support v-slot:fallback longform syntax in <DevOnly> (#​33368)
  • nuxt: Support typeFrom when generating auto-import type templates (#​33373)
  • nuxt: Don't trigger scroll when changing trailing slash (#​33358)
  • nuxt: Add stubs for new scripts from @nuxt/scripts (bed410d60)
  • nuxt: Prevent duplicate execution on key change in useAsyncData (#​33325)
  • nuxt: Make middleware _path property configurable for HMR (#​33379)
  • nuxt: Handle non-immediate useAsyncData with different key on ssr (#​33341)
💅 Refactors
  • nuxt: Improve implementation of error composables (#​33234)
  • nuxt: Resolve path of typed-router.d.ts early for consistency (#​33285)
  • nuxt: Move server references to nitro:prepare:types hook (#​33286)
  • nuxt: Place filename into componentsIslandsTemplate definition (#​33394)
  • nuxt,vite: Use environment-api compatible plugins (#​33403)
📖 Documentation
  • Add 4.x prefix to all internal links (#​33264)
  • Fix more links (#​33265)
  • Update usage instructions for Windows users (#​33284)
  • Update app config paths to use app/app.config.ts (#​33297)
  • Remove d suffix in example (#​33298)
  • Move directory structure to top-level (#​33299)
  • Add information about useFetch reactivity (#​33317)
  • Add more 4.x prefixes in urls (47ea684c7)
  • Lint code samples within docs (#​33271)
  • Remove duplicated documentation from nuxt.config page (b438d44e1)
  • Remove docs for outdated asyncData configuration (3e4a999e6)
  • Note prepare command NODE_ENV behavior (#​33330)
  • Update nuxt command pages (#​33336)
🏡 Chore
✅ Tests
  • nuxt: Set locale to en for nuxt-time tests (#​33343)
  • Double gotoPath timeout in CI (f1e5a2d4c)
🤖 CI
  • Add provenance action to check for downgrades in provenance (5ada6861e)
  • Pass commit sha when triggering ecosystem ci (399df6bab)
❤️ Contributors
react-hook-form/react-hook-form (react-hook-form)

v7.65.0

Compare Source

sveltejs/svelte (svelte)

v5.39.12

Compare Source

Patch Changes
  • fix: better input cursor restoration for bind:value (#​16925)

  • fix: track the user's getter of bind:this (#​16916)

  • fix: generate correct SSR code for the case where pending is an attribute (#​16919)

  • fix: generate correct code for each blocks with async body (#​16923)

v5.39.11

Compare Source

Patch Changes
  • fix: flush batches whenever an async value resolves (#​16912)

v5.39.10

Compare Source

Patch Changes
  • fix: hydrate each blocks inside element correctly (#​16908)

  • fix: allow await in if block consequent and alternate (#​16890)

  • fix: don't replace rest props with $$props for excluded props (#​16898)

  • fix: correctly transform $derived private fields on server (#​16894)

  • fix: add UNKNOWN evaluation value before breaking for binding.initial===SnippetBlock (#​16910)

sveltejs/language-tools (svelte-check)

v4.3.3

Compare Source

Patch Changes
  • fix: prevent file watcher issue (#​2859)

  • fix: allow undefined and null values for #each in Svelte 5 (#​2863)

  • perf: check if file content changed in tsconfig file watch (#​2859)

vercel/vercel (vercel)

v48.2.9

Compare Source

Patch Changes

v48.2.8

Compare Source

Patch Changes
  • Update domains commands to use the new domains APIs (#​14061)

v48.2.7

Compare Source

Patch Changes

v48.2.6

Compare Source

Patch Changes

v48.2.5

Compare Source

Patch Changes

v48.2.4

Compare Source

Patch Changes

v48.2.3

Compare Source

Patch Changes
  • Introduce --standalone flag, allowing build artifacts to be fully contained within the .vercel folder. (#​14049)

v48.2.2

Compare Source

Patch Changes

v48.2.1

Compare Source

Patch Changes

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: 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.


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

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

@vercel
Copy link

vercel bot commented Oct 13, 2025

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Preview Updated (UTC)
ark-docs Ready Ready Preview Oct 14, 2025 11:37am

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b1cc32f to d5f7cf3 Compare October 13, 2025 10:43
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d5f7cf3 to 21639f5 Compare October 13, 2025 13:04
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 21639f5 to ef152f5 Compare October 13, 2025 13:37
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ef152f5 to 88b022c Compare October 13, 2025 15:22
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 88b022c to 7429054 Compare October 13, 2025 15:25
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 7429054 to 00bbb5f Compare October 13, 2025 15:32
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 00bbb5f to 37880c6 Compare October 13, 2025 16:16
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 37880c6 to ee184e9 Compare October 13, 2025 16:43
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ee184e9 to 4c139d8 Compare October 13, 2025 22:08
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 4c139d8 to d2f3fd6 Compare October 14, 2025 11:34
@renovate renovate bot merged commit 892eb6f into main Oct 14, 2025
6 checks passed
@renovate renovate bot deleted the renovate/all-minor-patch branch October 14, 2025 12:40
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