From 831552f4b3174c1f20e1f8e1210118571966ebec Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 4 Jul 2024 16:29:58 +0100 Subject: [PATCH] Version Packages (next) (#12282) Co-authored-by: github-actions[bot] --- .changeset/pre.json | 6 ++++++ packages/svelte/CHANGELOG.md | 16 ++++++++++++++++ packages/svelte/package.json | 2 +- packages/svelte/src/version.js | 2 +- 4 files changed, 24 insertions(+), 2 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 99eb932c39..b6b60b2fed 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -110,6 +110,7 @@ "dry-eggs-play", "dry-eggs-retire", "dry-fans-march", + "dry-ghosts-prove", "dry-parrots-bathe", "dry-pillows-exist", "dull-coins-vanish", @@ -144,6 +145,7 @@ "empty-horses-tell", "empty-tools-share", "fair-bags-smoke", + "fair-beers-help", "fair-crabs-check", "fair-pianos-talk", "fair-spies-repeat", @@ -264,6 +266,7 @@ "itchy-lions-wash", "itchy-panthers-shave", "itchy-peaches-compare", + "itchy-pianos-marry", "itchy-terms-guess", "khaki-cheetahs-refuse", "khaki-cooks-develop", @@ -305,10 +308,12 @@ "little-ligers-exist", "little-pans-jog", "long-buckets-lay", + "long-carrots-sneeze", "long-crews-return", "long-humans-repair", "long-lobsters-mate", "loud-cheetahs-flow", + "loud-insects-arrive", "loud-mugs-smile", "loud-numbers-flow", "loud-penguins-unite", @@ -499,6 +504,7 @@ "sixty-pandas-rush", "sixty-plants-cover", "sleepy-cats-eat", + "sleepy-dogs-sit", "slimy-clouds-talk", "slimy-hairs-impress", "slimy-laws-explode", diff --git a/packages/svelte/CHANGELOG.md b/packages/svelte/CHANGELOG.md index d2fe2d3007..e15f22bfab 100644 --- a/packages/svelte/CHANGELOG.md +++ b/packages/svelte/CHANGELOG.md @@ -1,5 +1,21 @@ # svelte +## 5.0.0-next.174 + +### Patch Changes + +- fix: bail out of event hoisting when referencing store subscriptions ([#12301](https://github.com/sveltejs/svelte/pull/12301)) + +- chore: make store initialization logic simpler ([#12281](https://github.com/sveltejs/svelte/pull/12281)) + +- fix: make props optional during SSR ([#12284](https://github.com/sveltejs/svelte/pull/12284)) + +- fix: ensure each blocks properly handle $state.frozen objects in prod ([#12305](https://github.com/sveltejs/svelte/pull/12305)) + +- fix: ensure rest props access on hoisted event handlers works ([#12298](https://github.com/sveltejs/svelte/pull/12298)) + +- fix: lazily create a derived for each read method on `SvelteDate.prototype` ([#12110](https://github.com/sveltejs/svelte/pull/12110)) + ## 5.0.0-next.173 ### Patch Changes diff --git a/packages/svelte/package.json b/packages/svelte/package.json index 42c3ba5f85..fbe846a860 100644 --- a/packages/svelte/package.json +++ b/packages/svelte/package.json @@ -2,7 +2,7 @@ "name": "svelte", "description": "Cybernetically enhanced web apps", "license": "MIT", - "version": "5.0.0-next.173", + "version": "5.0.0-next.174", "type": "module", "types": "./types/index.d.ts", "engines": { diff --git a/packages/svelte/src/version.js b/packages/svelte/src/version.js index d2b156839b..d4253f39a1 100644 --- a/packages/svelte/src/version.js +++ b/packages/svelte/src/version.js @@ -6,5 +6,5 @@ * https://svelte.dev/docs/svelte-compiler#svelte-version * @type {string} */ -export const VERSION = '5.0.0-next.173'; +export const VERSION = '5.0.0-next.174'; export const PUBLIC_VERSION = '5';