ampmod/aw3
4
2
Fork
You've already forked aw3
1

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

Merged
ampelc merged 1 commit from renovate/sveltejs-kit-2.x-lockfile into develop 2026年07月07日 18:13:06 +02:00

This PR contains the following updates:

Package Change Age Confidence
@sveltejs/kit (source) 2.57.12.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)


Configuration

📅 Schedule: (in timezone 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 has been generated by Mend Renovate.

This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [@sveltejs/kit](https://svelte.dev) ([source](https://github.com/sveltejs/kit/tree/HEAD/packages/kit)) | [`2.57.1` → `2.61.1`](https://renovatebot.com/diffs/npm/@sveltejs%2fkit/2.57.1/2.61.1) | ![age](https://developer.mend.io/api/mc/badges/age/npm/@sveltejs%2fkit/2.61.1?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@sveltejs%2fkit/2.57.1/2.61.1?slim=true) | --- ### Release Notes <details> <summary>sveltejs/kit (@&#8203;sveltejs/kit)</summary> ### [`v2.61.1`](https://github.com/sveltejs/kit/blob/HEAD/packages/kit/CHANGELOG.md#2611) [Compare Source](https://github.com/sveltejs/kit/compare/@sveltejs/kit@2.61.0...@sveltejs/kit@2.61.1) ##### Patch Changes - fix: regression where routes starting and ending with a route group are not matched correctly ([#&#8203;15903](https://github.com/sveltejs/kit/pull/15903)) ### [`v2.61.0`](https://github.com/sveltejs/kit/blob/HEAD/packages/kit/CHANGELOG.md#2610) [Compare Source](https://github.com/sveltejs/kit/compare/@sveltejs/kit@2.60.1...@sveltejs/kit@2.61.0) ##### 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 ([#&#8203;15779](https://github.com/sveltejs/kit/pull/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. ([#&#8203;15779](https://github.com/sveltejs/kit/pull/15779)) - feat: live query instances are now themselves async-iterable ([#&#8203;15878](https://github.com/sveltejs/kit/pull/15878)) - feat: add programmatic `submit` method to `form` remote function instances ([#&#8203;15657](https://github.com/sveltejs/kit/pull/15657)) - feat: pass `form` remote function instance into `enhance` callback ([#&#8203;15657](https://github.com/sveltejs/kit/pull/15657)) ##### Patch Changes - fix: resolve the app payload without using `process.env.NODE_ENV` ([#&#8203;15852](https://github.com/sveltejs/kit/pull/15852)) - fix: support `exactOptionalPropertyTypes` for optional route params ([#&#8203;15825](https://github.com/sveltejs/kit/pull/15825)) - fix: correctly send `true` value to the server for 'submit' and 'hidden' form fields ([#&#8203;15858](https://github.com/sveltejs/kit/pull/15858)) - fix: avoid build warnings about undefined universal hooks ([#&#8203;15895](https://github.com/sveltejs/kit/pull/15895)) - fix: prefer default error page when failing to decode the URL pathname ([#&#8203;15744](https://github.com/sveltejs/kit/pull/15744)) - fix: disable link prefetching on slow internet connections ([#&#8203;15885](https://github.com/sveltejs/kit/pull/15885)) - fix: allow routes ending with optional parameters next to more specific routes ([#&#8203;15861](https://github.com/sveltejs/kit/pull/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 ([#&#8203;15796](https://github.com/sveltejs/kit/pull/15796)) ### [`v2.60.1`](https://github.com/sveltejs/kit/blob/HEAD/packages/kit/CHANGELOG.md#2601) [Compare Source](https://github.com/sveltejs/kit/compare/@sveltejs/kit@2.60.0...@sveltejs/kit@2.60.1) ##### Patch Changes - chore: bump `svelte` and `devalue` ([#&#8203;15836](https://github.com/sveltejs/kit/pull/15836)) - fix: prevent `query.batch` cross-talk ([`dadaefc`](https://github.com/sveltejs/kit/commit/dadaefc2e647a0a62f49f3ee8bc7aa46f5e27056)) ### [`v2.60.0`](https://github.com/sveltejs/kit/blob/HEAD/packages/kit/CHANGELOG.md#2600) [Compare Source](https://github.com/sveltejs/kit/compare/@sveltejs/kit@2.59.1...@sveltejs/kit@2.60.0) ##### Minor Changes - feat: allow 'submit' and 'hidden' form fields to accept numbers and booleans ([#&#8203;15802](https://github.com/sveltejs/kit/pull/15802)) - feat: warn on unread `form` remote function validation issues ([#&#8203;15653](https://github.com/sveltejs/kit/pull/15653)) ##### Patch Changes - fix: abort navigation after async rendering if obsolete ([#&#8203;15811](https://github.com/sveltejs/kit/pull/15811)) - fix: skip refreshing queries on full-page reload form submissions ([#&#8203;15803](https://github.com/sveltejs/kit/pull/15803)) ### [`v2.59.1`](https://github.com/sveltejs/kit/blob/HEAD/packages/kit/CHANGELOG.md#2591) [Compare Source](https://github.com/sveltejs/kit/compare/@sveltejs/kit@2.59.0...@sveltejs/kit@2.59.1) ##### Patch Changes - fix: resolve paths to route files with the letter drive on Windows ([#&#8203;15793](https://github.com/sveltejs/kit/pull/15793)) ### [`v2.59.0`](https://github.com/sveltejs/kit/blob/HEAD/packages/kit/CHANGELOG.md#2590) [Compare Source](https://github.com/sveltejs/kit/compare/@sveltejs/kit@2.58.0...@sveltejs/kit@2.59.0) ##### Minor Changes - feat: support `query.batch` in `requested(...)` ([#&#8203;15751](https://github.com/sveltejs/kit/pull/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 ([#&#8203;15705](https://github.com/sveltejs/kit/pull/15705)) - feat: experimental `query.live` function ([#&#8203;15705](https://github.com/sveltejs/kit/pull/15705)) ##### Patch Changes - fix: unwrap `Promise` in `RemoteCommand` output type ([#&#8203;15771](https://github.com/sveltejs/kit/pull/15771)) - fix: empty call to `.updates()` on a command/form invocation means "don't update anything" ([#&#8203;15705](https://github.com/sveltejs/kit/pull/15705)) - fix: `form.fields.foo.as('checkbox', default_value)` now works ([#&#8203;15752](https://github.com/sveltejs/kit/pull/15752)) - fix: remote forms with default values defined by `field.as('text', defaultValue)` now correctly reset to the provided default values once submitted ([#&#8203;15753](https://github.com/sveltejs/kit/pull/15753)) - fix: make sure queries always get started correctly ([#&#8203;15705](https://github.com/sveltejs/kit/pull/15705)) - fix: allow plain functions as overrides in `updates` ([#&#8203;15705](https://github.com/sveltejs/kit/pull/15705)) ### [`v2.58.0`](https://github.com/sveltejs/kit/blob/HEAD/packages/kit/CHANGELOG.md#2580) [Compare Source](https://github.com/sveltejs/kit/compare/@sveltejs/kit@2.57.1...@sveltejs/kit@2.58.0) ##### Minor Changes - breaking: require `limit` in `requested` (as originally intended) ([#&#8203;15739](https://github.com/sveltejs/kit/pull/15739)) - feat: `RemoteQueryFunction` gains an optional third generic parameter `Validated` (defaulting to `Input`) that represents the argument type after schema validation/transformation ([#&#8203;15739](https://github.com/sveltejs/kit/pull/15739)) - breaking: `requested` now yields `{ arg, query }` entries instead of the validated argument ([#&#8203;15739](https://github.com/sveltejs/kit/pull/15739)) ##### Patch Changes - fix: allow `query().current`, `.error`, `.loading`, and `.ready` to work in non-reactive contexts ([#&#8203;15699](https://github.com/sveltejs/kit/pull/15699)) - fix: prevent `deep_set` crash on nullish nested values ([#&#8203;15600](https://github.com/sveltejs/kit/pull/15600)) - fix: restore correct `RemoteFormFields` typing for nullable array fields (e.g. when a schema uses `.default([])`), so `.as('checkbox')` and friends work again ([#&#8203;15723](https://github.com/sveltejs/kit/pull/15723)) - fix: don't warn about removed SSI comments in `transformPageChunk` ([#&#8203;15695](https://github.com/sveltejs/kit/pull/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<void>. ([#&#8203;15710](https://github.com/sveltejs/kit/pull/15710)) - fix: throw an error when `resolve` is called with an external URL ([#&#8203;15733](https://github.com/sveltejs/kit/pull/15733)) - fix: avoid FOUC for CSR-only pages by loading styles and fonts before CSR starts ([#&#8203;15718](https://github.com/sveltejs/kit/pull/15718)) - fix: reset form result on redirect ([#&#8203;15724](https://github.com/sveltejs/kit/pull/15724)) </details> --- ### Configuration 📅 **Schedule**: (in timezone 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. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xNTAuMCIsInVwZGF0ZWRJblZlciI6IjQzLjE5OC4wIiwidGFyZ2V0QnJhbmNoIjoiZGV2ZWxvcCIsImxhYmVscyI6WyJLaW5kL0RlcGVuZGVuY2llcyJdfQ==-->
ampmod-bot force-pushed renovate/sveltejs-kit-2.x-lockfile from e1113858fa
Some checks failed
ci/woodpecker/push/build Pipeline failed
ci/woodpecker/push/renovate Pipeline was successful
to ca6e6d2d68
Some checks failed
ci/woodpecker/push/build Pipeline failed
ci/woodpecker/push/renovate Pipeline was successful
2026年05月17日 00:35:58 +02:00
Compare
ampmod-bot changed title from (削除) chore(deps): update dependency @sveltejs/kit to v2.58.0 (削除ここまで) to chore(deps): update dependency @sveltejs/kit to v2.60.1 2026年05月17日 00:36:14 +02:00
ampmod-bot force-pushed renovate/sveltejs-kit-2.x-lockfile from ca6e6d2d68
Some checks failed
ci/woodpecker/push/build Pipeline failed
ci/woodpecker/push/renovate Pipeline was successful
to 1ace96fa7d
Some checks failed
ci/woodpecker/push/build Pipeline failed
ci/woodpecker/push/renovate Pipeline was successful
2026年05月28日 21:16:39 +02:00
Compare
ampmod-bot changed title from (削除) chore(deps): update dependency @sveltejs/kit to v2.60.1 (削除ここまで) to chore(deps): update dependency @sveltejs/kit to v2.61.1 2026年05月28日 21:16:59 +02:00

wait what WE'RE LAGGING BEHIND 😮

wait what WE'RE LAGGING BEHIND 😮
ampelc deleted branch renovate/sveltejs-kit-2.x-lockfile 2026年07月07日 18:13:07 +02:00
Sign in to join this conversation.
No reviewers
Labels
Clear labels
BREAKING CHANGE
Breaking change that won't be backward compatible
Kind
Bug
Something is not working
Kind
Dependencies
Bot-authored dependency updates
Kind
Enhancement
Improve existing functionality
Kind
Feature
New functionality
Kind
RFC
Requests for comment
Kind
Testing
Issue or pull request related to testing
Priority
Critical
The priority is critical
Priority
High
The priority is high
Priority
Low
The priority is low
Priority
Medium
The priority is medium
Reviewed
Confirmed
Issue has been confirmed
Reviewed
Duplicate
This issue or pull request already exists
Reviewed
Invalid
Invalid issue
Reviewed
Won't Fix
This issue won't be fixed
Status
Abandoned
Somebody has started to work on this but abandoned work
Status
Blocked
Something is blocking this issue or pull request
Status
Need More Info
Feedback is required to reproduce issue or to continue work
Status
Reported to Upstream
This has been reported to upstream
Milestone
Clear milestone
No items
No milestone
Projects
Clear projects
No items
No project
Assignees
Clear assignees
No assignees
2 participants
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
ampmod/aw3!79
Reference in a new issue
ampmod/aw3
No description provided.
Delete branch "renovate/sveltejs-kit-2.x-lockfile"

Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?