Skip to content

chore(deps): update dependency @sveltejs/kit to v2.61.1#208

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/sveltejs-kit-2.x-lockfile
Open

chore(deps): update dependency @sveltejs/kit to v2.61.1#208
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/sveltejs-kit-2.x-lockfile

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Dec 2, 2025

This PR contains the following updates:

Package Change Age Confidence
@sveltejs/kit (source) 2.49.02.61.1 age confidence

Release Notes

sveltejs/kit (@​sveltejs/kit)

v2.61.1

Compare Source

Patch Changes
  • fix: regression where routes starting and ending with a route group are not matched correctly (#​15903)

v2.61.0

Compare Source

Minor Changes
  • breaking: the .run() method has been removed from remote queries on both the client and the server. Use await query() directly instead — it now works everywhere (#​15779)

  • feat: remote queries can now be awaited in any context (event handlers, module scope, async callbacks), not just inside reactive contexts. The cache is shared across reactive and non-reactive subscribers, so awaiting a query in an event handler will dedupe with components that have already subscribed to the same query. (#​15779)

  • feat: live query instances are now themselves async-iterable (#​15878)

  • feat: add programmatic submit method to form remote function instances (#​15657)

  • feat: pass form remote function instance into enhance callback (#​15657)

Patch Changes
  • fix: resolve the app payload without using process.env.NODE_ENV (#​15852)

  • fix: support exactOptionalPropertyTypes for optional route params (#​15825)

  • fix: correctly send true value to the server for 'submit' and 'hidden' form fields (#​15858)

  • fix: avoid build warnings about undefined universal hooks (#​15895)

  • fix: prefer default error page when failing to decode the URL pathname (#​15744)

  • fix: disable link prefetching on slow internet connections (#​15885)

  • fix: allow routes ending with optional parameters next to more specific routes (#​15861)

  • fix: remove reliance on Content-Length header in deserialize_binary_form, which caused failures when proxies (e.g. Vercel, Azure) strip the header and use chunked transfer encoding (#​15796)

v2.60.1

Compare Source

Patch Changes
  • chore: bump svelte and devalue (#​15836)

  • fix: prevent query.batch cross-talk (dadaefc)

v2.60.0

Compare Source

Minor Changes
  • feat: allow 'submit' and 'hidden' form fields to accept numbers and booleans (#​15802)

  • feat: warn on unread form remote function validation issues (#​15653)

Patch Changes
  • fix: abort navigation after async rendering if obsolete (#​15811)

  • fix: skip refreshing queries on full-page reload form submissions (#​15803)

v2.59.1

Compare Source

Patch Changes
  • fix: resolve paths to route files with the letter drive on Windows (#​15793)

v2.59.0

Compare Source

Minor Changes
  • feat: support query.batch in requested(...) (#​15751)

  • breaking: on the server, make the promise returned from refresh represent adding the refresh to the map, not the time it takes to run the remote function (#​15705)

  • feat: experimental query.live function (#​15705)

Patch Changes
  • fix: unwrap Promise in RemoteCommand output type (#​15771)

  • fix: empty call to .updates() on a command/form invocation means "don't update anything" (#​15705)

  • fix: form.fields.foo.as('checkbox', default_value) now works (#​15752)

  • fix: remote forms with default values defined by field.as('text', defaultValue) now correctly reset to the provided default values once submitted (#​15753)

  • fix: make sure queries always get started correctly (#​15705)

  • fix: allow plain functions as overrides in updates (#​15705)

v2.58.0

Compare Source

Minor Changes
  • breaking: require limit in requested (as originally intended) (#​15739)

  • feat: RemoteQueryFunction gains an optional third generic parameter Validated (defaulting to Input) that represents the argument type after schema validation/transformation (#​15739)

  • breaking: requested now yields { arg, query } entries instead of the validated argument (#​15739)

Patch Changes
  • fix: allow query().current, .error, .loading, and .ready to work in non-reactive contexts (#​15699)

  • fix: prevent deep_set crash on nullish nested values (#​15600)

  • fix: restore correct RemoteFormFields typing for nullable array fields (e.g. when a schema uses .default([])), so .as('checkbox') and friends work again (#​15723)

  • fix: don't warn about removed SSI comments in transformPageChunk (#​15695)

    Server-side include (SSI) directives like <!--#include virtual="..." --> are HTML comments that are replaced by servers such as nginx. Previously, removing them in transformPageChunk would trigger a false positive warning about breaking Svelte's hydration. Since SSI comments always start with <!--# and Svelte's hydration comments never do, they can be safely excluded from the check.

  • Change enhance function return type from void to MaybePromise. (#​15710)

  • fix: throw an error when resolve is called with an external URL (#​15733)

  • fix: avoid FOUC for CSR-only pages by loading styles and fonts before CSR starts (#​15718)

  • fix: reset form result on redirect (#​15724)

v2.57.1

Compare Source

Patch Changes
  • fix: better validation for redirect inputs (10d7b44)

  • fix: enforce BODY_SIZE_LIMIT on chunked requests (3202ed6)

  • fix: use default values as fallbacks (#​15680)

  • fix: relax form typings for union types (#​15687)

v2.57.0

Compare Source

Minor Changes
  • feat: return boolean from submit to indicate submission validity for enhanced form remote functions (#​15530)
Patch Changes
  • fix: use array type for select fields that accept multiple values (#​15591)

  • fix: silently 404 Chrome DevTools workspaces request in dev and preview (#​15656)

  • fix: config.kit.csp.directives['trusted-types'] requires 'svelte-trusted-html' (and 'sveltekit-trusted-url' when a service worker is automatically registered) if it is configured (#​15323)

  • fix: avoid inlineDynamicImports ignored with codeSplitting warning when using Vite 8 (#​15647)

  • fix: reimplement treeshaking non-dynamic prerendered remote functions (#​15447)

v2.56.1

Compare Source

Patch Changes

v2.56.0

Compare Source

Minor Changes
  • breaking: rework client-driven refreshes (#​15562)

  • breaking: stabilize remote function caching by sorting object keys (#​15570)

  • breaking: add run() method to queries, disallow awaiting queries outside render (#​15533)

  • feat: support TypeScript 6.0 (#​15595)

  • breaking: isolate command-triggered query refresh failures per-query (#​15562)

  • feat: use hydratable for remote function transport (#​15533)

  • feat: allow form fields to specify a default value (field.as(type, value)) (#​15577)

Patch Changes
  • fix: don't request new data when .refresh is called on a query with no cache entry (#​15533)

  • fix: allow using multiple remote functions within one async derived (#​15561)

  • fix: avoid false-positive overridden Vite base setting warning when setting a paths.base in svelte.config.js (#​15623)

  • fix: manage queries in their own $effect.root (#​15533)

  • fix: avoid inlineDynamicImports deprecation warning when building the service worker with Vite 8 (#​15550)

  • fix: correctly escape backticks when precomputing CSS (#​15593)

  • fix: discard obsolete forks before finishing navigation (#​15634)

  • chore: tighten up override implementation (#​15562)

  • fix: ensure the default Svelte 5 error.svelte file uses runes mode (#​15609)

  • fix: deduplicate same-cache-key batch calls during SSR (#​15533)

  • fix: decrement pending_count when form callback doesn't call submit() (#​15520)

v2.55.0

Compare Source

Minor Changes
  • feat: page and layout params with matchers are now type narrowed in $app/types, leading to better type safety when working with params in $app/types, $app/state, and hooks. (#​15502)

v2.54.0

Compare Source

Minor Changes
  • feat: allow error boundaries to catch errors on the server (#​15308)
Patch Changes
  • chore: upgrade devalue (#​15535)

  • fix: don't wait for remote functions that are not awaited in the template (#​15280)

  • feat: allow resolve() to accept pathnames with a search string and/or hash (#​15458)

  • chore: remove deprecation warnings for config.kit.files.* options when validating the Svelte config file (#​15482)

  • fix: handles form target attribute in remote form redirects (#​15457)

v2.53.4

Compare Source

Patch Changes
  • fix: avoid Vite warning about unknown codeSplitting option (#​15451)

v2.53.3

Compare Source

Patch Changes
  • fix: prevent overlapping file metadata in remote functions form (faba869)

v2.53.2

Compare Source

Patch Changes
  • fix: server-render nested form value sets (#​15378)

  • fix: use deep partial types for form remote functions .value() and .set(...) (#​14837)

  • fix: provide correct url info to remote functions (#​15418)

  • fix: allow optional types for remote query/command/prerender functions (#​15293)

  • fix: allow commands in more places (#​15288)

v2.53.1

Compare Source

Patch Changes
  • fix: address warning about inlineDynamicImports when using Vite 8 (#​15403)

v2.53.0

Compare Source

Minor Changes
Patch Changes
  • fix: remove event listeners on form attachment cleanup (#​15286)

  • fix: apply queries refreshed in a form remote function when a redirect is thrown (#​15362)

v2.52.2

Compare Source

Patch Changes
  • fix: validate form file information to prevent amplification attacks (3e607b3)

  • chore: upgrade devalue and svelte (#​15339)

  • fix: parse file offset table more strictly (f47c01b)

v2.52.0

Compare Source

Minor Changes
  • feat: match function to map a path back to a route id and params (#​14997)
Patch Changes
  • fix: respect scroll-margin when navigating to a url-supplied anchor (#​15246)

  • fix: resolve will narrow types to follow trailing slash page settings (#​15027)

v2.51.0

Compare Source

Minor Changes
  • feat: add scroll property to NavigationTarget in navigation callbacks (#​15248)

    Navigation callbacks (beforeNavigate, onNavigate, and afterNavigate) now include scroll position information via the scroll property on from and to targets:

    • from.scroll: The scroll position at the moment navigation was triggered
    • to.scroll: In beforeNavigate and onNavigate, this is populated for popstate navigations (back/forward) with the scroll position that will be restored, and null for other navigation types. In afterNavigate, this is always the final scroll position after navigation completed.

    This enables use cases like animating transitions based on the target scroll position when using browser back/forward navigation.

  • feat: hydratable's injected script now works with CSP (#​15048)

Patch Changes
  • fix: put preloads before styles (#​15232)

  • fix: suppress false-positive inner content warning when children prop is forwarded to a child component (#​15269)

  • fix: fetch not working when URL is same host but different than paths.base (#​15291)

  • fix: navigate to hash link when base element is present (#​15236)

  • fix: avoid triggering handleError when redirecting in a remote function (#​15222)

  • fix: include test directory in generated tsconfig.json alongside existing tests entry (#​15254)

  • fix: generate tsconfig.json using the value of kit.files.src (#​15253)

v2.50.2

Compare Source

Patch Changes
  • fix: ensure inlined CSS follows paths.assets and paths.relative settings (#​15153)

  • fix: emit script CSP nonces when unsafe-inline is present if strict-dynamic is also present (#​15221)

  • fix: re-export browser/dev from esm-env (#​15206)

  • fix: use validated args in batch resolver in both csr and ssr (#​15215)

  • fix: ensure CSS inlining includes components that are conditionally rendered (#​15153)

  • fix: only match rest params with matchers when the matcher matches (#​15216)

  • fix: properly handle percent-encoded anchors (e.g. <a href="#sparkles-%E2%9C%A8">) during prerendering. (#​15231)

v2.50.1

Compare Source

Patch Changes
  • fix: include hooks.server and hooks.universal as explicit Vite build inputs to ensure assets imported by hooks files are correctly discovered (#​15178)

  • fix: improves fields type for generic components (#​14974)

  • fix: preload links if href changes (#​15191)

v2.50.0

Compare Source

Minor Changes
  • breaking: remove buttonProps from experimental remote form functions; use e.g. <button {...myForm.fields.action.as('submit', 'register')}>Register</button> button instead (#​15144)

v2.49.5

Compare Source

Patch Changes
  • fix: avoid overriding Vite default base when running Vitest 4 (#​14866)

  • fix: ensure url decoded pathnames are not mistaken as rerouted requests (d9ae9b0)

  • fix: add length checks to remote forms (8ed8155)

v2.49.4

Compare Source

Patch Changes
  • fix: support instrumentation for vite preview (#​15105)

  • fix: support for URLSearchParams.has(name, value) overload (#​15076)

  • fix: put forking behind experimental.forkPreloads (#​15135)

v2.49.3

Compare Source

Patch Changes
  • fix: avoid false-positive Vite config overridden warning when using Vitest 4 (#​15121)

  • fix: add typescript as an optional peer dependency (#​15074)

  • fix: use hasOwn check when deep-setting object properties (#​15127)

v2.49.2

Compare Source

Patch Changes
  • fix: Stop re-loading already-loaded CSS during server-side route resolution (#​15014)

  • fix: posixify the instrumentation file import on Windows (#​14993)

  • fix: Correctly handle shared memory when decoding binary form data (#​15028)

v2.49.1

Compare Source

Patch Changes
  • fix: suppress state_referenced_locally warnings in .svelte-kit/generated/root.svelte (#​15013)

  • fix: TypeError when doing response.clone() in page load (#​15005)


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • 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.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


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

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

@coolify-spences10
Copy link
Copy Markdown

coolify-spences10 Bot commented Dec 2, 2025

The preview deployment for skykit:main failed. 🔴

Open Build Logs

Last updated at: 2026-05-24 00:38:02 CET

@renovate renovate Bot changed the title chore(deps): update dependency @sveltejs/kit to v2.49.1 chore(deps): update dependency @sveltejs/kit to v2.49.2 Dec 8, 2025
@renovate renovate Bot force-pushed the renovate/sveltejs-kit-2.x-lockfile branch from c4ae4d1 to 580a0a3 Compare December 8, 2025 23:07
@renovate renovate Bot force-pushed the renovate/sveltejs-kit-2.x-lockfile branch 2 times, most recently from 5c1c7c1 to 545983d Compare January 5, 2026 18:02
@renovate renovate Bot changed the title chore(deps): update dependency @sveltejs/kit to v2.49.2 chore(deps): update dependency @sveltejs/kit to v2.49.3 Jan 5, 2026
@renovate renovate Bot force-pushed the renovate/sveltejs-kit-2.x-lockfile branch from 545983d to 1b3014b Compare January 9, 2026 02:09
@renovate renovate Bot changed the title chore(deps): update dependency @sveltejs/kit to v2.49.3 chore(deps): update dependency @sveltejs/kit to v2.49.4 Jan 9, 2026
@renovate renovate Bot changed the title chore(deps): update dependency @sveltejs/kit to v2.49.4 chore(deps): update dependency @sveltejs/kit to v2.49.5 Jan 15, 2026
@renovate renovate Bot force-pushed the renovate/sveltejs-kit-2.x-lockfile branch 2 times, most recently from 745402e to f1fd696 Compare January 17, 2026 17:45
@renovate renovate Bot changed the title chore(deps): update dependency @sveltejs/kit to v2.49.5 chore(deps): update dependency @sveltejs/kit to v2.50.0 Jan 17, 2026
@renovate renovate Bot force-pushed the renovate/sveltejs-kit-2.x-lockfile branch from f1fd696 to df071ad Compare January 23, 2026 01:07
@renovate renovate Bot changed the title chore(deps): update dependency @sveltejs/kit to v2.50.0 chore(deps): update dependency @sveltejs/kit to v2.50.1 Jan 23, 2026
@renovate renovate Bot force-pushed the renovate/sveltejs-kit-2.x-lockfile branch 2 times, most recently from a556903 to 5773a71 Compare February 3, 2026 01:35
@renovate renovate Bot changed the title chore(deps): update dependency @sveltejs/kit to v2.50.1 chore(deps): update dependency @sveltejs/kit to v2.50.2 Feb 3, 2026
@renovate renovate Bot force-pushed the renovate/sveltejs-kit-2.x-lockfile branch from 5773a71 to 865a2d6 Compare February 12, 2026 11:12
@renovate renovate Bot changed the title chore(deps): update dependency @sveltejs/kit to v2.50.2 chore(deps): update dependency @sveltejs/kit to v2.51.0 Feb 12, 2026
@renovate renovate Bot force-pushed the renovate/sveltejs-kit-2.x-lockfile branch 2 times, most recently from 7131aac to 639ea3a Compare February 15, 2026 05:48
@renovate renovate Bot changed the title chore(deps): update dependency @sveltejs/kit to v2.51.0 chore(deps): update dependency @sveltejs/kit to v2.52.0 Feb 15, 2026
@renovate renovate Bot force-pushed the renovate/sveltejs-kit-2.x-lockfile branch from 639ea3a to 62f9396 Compare February 18, 2026 22:39
@renovate renovate Bot changed the title chore(deps): update dependency @sveltejs/kit to v2.52.0 chore(deps): update dependency @sveltejs/kit to v2.52.2 Feb 18, 2026
@renovate renovate Bot changed the title chore(deps): update dependency @sveltejs/kit to v2.52.2 chore(deps): update dependency @sveltejs/kit to v2.53.0 Feb 20, 2026
@renovate renovate Bot force-pushed the renovate/sveltejs-kit-2.x-lockfile branch 2 times, most recently from d7770a6 to 98df7b7 Compare February 25, 2026 01:34
@renovate renovate Bot changed the title chore(deps): update dependency @sveltejs/kit to v2.53.0 chore(deps): update dependency @sveltejs/kit to v2.53.1 Feb 25, 2026
@renovate renovate Bot force-pushed the renovate/sveltejs-kit-2.x-lockfile branch from 98df7b7 to 1f09a95 Compare February 25, 2026 18:15
@renovate renovate Bot changed the title chore(deps): update dependency @sveltejs/kit to v2.53.1 chore(deps): update dependency @sveltejs/kit to v2.53.2 Feb 25, 2026
@renovate renovate Bot force-pushed the renovate/sveltejs-kit-2.x-lockfile branch from 1f09a95 to f69e2e7 Compare February 27, 2026 02:35
@renovate renovate Bot changed the title chore(deps): update dependency @sveltejs/kit to v2.53.2 chore(deps): update dependency @sveltejs/kit to v2.53.3 Feb 27, 2026
@renovate renovate Bot force-pushed the renovate/sveltejs-kit-2.x-lockfile branch from f69e2e7 to 3190a60 Compare February 28, 2026 01:39
@renovate renovate Bot changed the title chore(deps): update dependency @sveltejs/kit to v2.53.3 chore(deps): update dependency @sveltejs/kit to v2.53.4 Feb 28, 2026
@renovate renovate Bot changed the title chore(deps): update dependency @sveltejs/kit to v2.53.4 chore(deps): update dependency @sveltejs/kit to v2.54.0 Mar 11, 2026
@renovate renovate Bot force-pushed the renovate/sveltejs-kit-2.x-lockfile branch from 3190a60 to 3428c8a Compare March 11, 2026 17:32
@renovate renovate Bot changed the title chore(deps): update dependency @sveltejs/kit to v2.54.0 chore(deps): update dependency @sveltejs/kit to v2.55.0 Mar 13, 2026
@renovate renovate Bot force-pushed the renovate/sveltejs-kit-2.x-lockfile branch from 3428c8a to 5665766 Compare March 13, 2026 01:48
@renovate renovate Bot force-pushed the renovate/sveltejs-kit-2.x-lockfile branch 2 times, most recently from baaa718 to db89446 Compare April 3, 2026 21:59
@renovate renovate Bot changed the title chore(deps): update dependency @sveltejs/kit to v2.55.0 chore(deps): update dependency @sveltejs/kit to v2.56.1 Apr 3, 2026
@renovate renovate Bot force-pushed the renovate/sveltejs-kit-2.x-lockfile branch from db89446 to aeb186d Compare April 8, 2026 01:45
@renovate renovate Bot changed the title chore(deps): update dependency @sveltejs/kit to v2.56.1 chore(deps): update dependency @sveltejs/kit to v2.57.0 Apr 8, 2026
@renovate renovate Bot force-pushed the renovate/sveltejs-kit-2.x-lockfile branch 2 times, most recently from a87ec11 to 8264320 Compare April 10, 2026 00:32
@renovate renovate Bot changed the title chore(deps): update dependency @sveltejs/kit to v2.57.0 chore(deps): update dependency @sveltejs/kit to v2.57.1 Apr 10, 2026
@renovate renovate Bot force-pushed the renovate/sveltejs-kit-2.x-lockfile branch from 8264320 to b5cf773 Compare April 24, 2026 01:46
@renovate renovate Bot changed the title chore(deps): update dependency @sveltejs/kit to v2.57.1 chore(deps): update dependency @sveltejs/kit to v2.58.0 Apr 24, 2026
@renovate renovate Bot force-pushed the renovate/sveltejs-kit-2.x-lockfile branch 2 times, most recently from debbe5f to 92e68b1 Compare May 1, 2026 16:48
@renovate renovate Bot changed the title chore(deps): update dependency @sveltejs/kit to v2.58.0 chore(deps): update dependency @sveltejs/kit to v2.59.0 May 1, 2026
@renovate renovate Bot force-pushed the renovate/sveltejs-kit-2.x-lockfile branch from 92e68b1 to cb388e6 Compare May 5, 2026 10:28
@renovate renovate Bot changed the title chore(deps): update dependency @sveltejs/kit to v2.59.0 chore(deps): update dependency @sveltejs/kit to v2.59.1 May 5, 2026
@renovate renovate Bot force-pushed the renovate/sveltejs-kit-2.x-lockfile branch from cb388e6 to df1d953 Compare May 14, 2026 20:58
@renovate renovate Bot changed the title chore(deps): update dependency @sveltejs/kit to v2.59.1 chore(deps): update dependency @sveltejs/kit to v2.60.1 May 14, 2026
@renovate renovate Bot force-pushed the renovate/sveltejs-kit-2.x-lockfile branch from df1d953 to 2f00504 Compare May 23, 2026 01:00
@renovate renovate Bot changed the title chore(deps): update dependency @sveltejs/kit to v2.60.1 chore(deps): update dependency @sveltejs/kit to v2.61.0 May 23, 2026
@renovate renovate Bot force-pushed the renovate/sveltejs-kit-2.x-lockfile branch from 2f00504 to ff8a68f Compare May 24, 2026 00:36
@renovate renovate Bot changed the title chore(deps): update dependency @sveltejs/kit to v2.61.0 chore(deps): update dependency @sveltejs/kit to v2.61.1 May 24, 2026
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