Change8

Migrating to SvelteKit @sveltejs/kit@2.61.0

Version @sveltejs/kit@2.61.0 introduces 1 breaking change. This guide details how to update your code.

Released: 5/22/2026

1
Breaking Changes
1
Migration Steps
4
Affected Symbols

⚠️ Check Your Code

If you use any of these symbols, you need to read this guide:

.run()query()form remote function instancesenhance callback

Breaking Changes

Issue #1

The .run() method has been removed from remote queries on both the client and the server. Use await query() directly instead, as it now works everywhere.

Migration Steps

  1. 1
    Replace usage of the .run() method on remote queries with await query().

Release Summary

This release removes the .run() method for remote queries, allowing them to be awaited universally, and introduces several improvements to query handling and form submissions.

Need More Details?

View the full release notes and all changes for SvelteKit @sveltejs/kit@2.61.0.

View Full Changelog