diff --git a/.changeset/cute-boats-hide.md b/.changeset/cute-boats-hide.md deleted file mode 100644 index 7f08f12839e1..000000000000 --- a/.changeset/cute-boats-hide.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@sveltejs/kit': patch ---- - -fix: ensure `form()` remote functions work when the app is configured to a single output diff --git a/.changeset/dry-owls-open.md b/.changeset/dry-owls-open.md deleted file mode 100644 index cd4d1e106be7..000000000000 --- a/.changeset/dry-owls-open.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@sveltejs/kit': patch ---- - -fix: use the configured base path when calling remote functions from the client diff --git a/packages/kit/CHANGELOG.md b/packages/kit/CHANGELOG.md index d283c3639f32..eadd55dd82cb 100644 --- a/packages/kit/CHANGELOG.md +++ b/packages/kit/CHANGELOG.md @@ -1,5 +1,14 @@ # @sveltejs/kit +## 2.27.2 +### Patch Changes + + +- fix: ensure `form()` remote functions work when the app is configured to a single output ([#14127](https://github.com/sveltejs/kit/pull/14127)) + + +- fix: use the configured base path when calling remote functions from the client ([#14106](https://github.com/sveltejs/kit/pull/14106)) + ## 2.27.1 ### Patch Changes diff --git a/packages/kit/package.json b/packages/kit/package.json index ab375785256c..5cdc5394b03a 100644 --- a/packages/kit/package.json +++ b/packages/kit/package.json @@ -1,6 +1,6 @@ { "name": "@sveltejs/kit", - "version": "2.27.1", + "version": "2.27.2", "description": "SvelteKit is the fastest way to build Svelte apps", "keywords": [ "framework", diff --git a/packages/kit/src/version.js b/packages/kit/src/version.js index d24ec9f1922d..292148453626 100644 --- a/packages/kit/src/version.js +++ b/packages/kit/src/version.js @@ -1,4 +1,4 @@ // generated during release, do not modify /** @type {string} */ -export const VERSION = '2.27.1'; +export const VERSION = '2.27.2';