diff --git a/.changeset/pre.json b/.changeset/pre.json index 3b1cecf80dc0..dbd356383dda 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -56,6 +56,7 @@ "chilled-pumas-invite", "chilled-seas-jog", "chilly-dolphins-lick", + "chilly-pans-raise", "chilly-rocks-hug", "chilly-snakes-scream", "clean-eels-beg", @@ -63,6 +64,7 @@ "clever-maps-travel", "clever-rockets-burn", "clever-sloths-push", + "clever-stingrays-shout", "cold-birds-own", "cold-cheetahs-judge", "cold-masks-learn", @@ -153,6 +155,7 @@ "fresh-beds-wash", "fresh-dots-destroy", "fresh-impalas-bow", + "fresh-walls-bathe", "fresh-weeks-trade", "friendly-candles-relate", "friendly-lies-camp", @@ -166,6 +169,7 @@ "gentle-spies-happen", "gentle-toys-chew", "gentle-trees-exercise", + "gentle-wasps-pull", "giant-bananas-turn", "giant-moons-own", "giant-planets-shake", @@ -190,6 +194,7 @@ "grumpy-avocados-fetch", "grumpy-jars-sparkle", "happy-beds-scream", + "happy-dogs-jump", "happy-suits-film", "healthy-ants-film", "healthy-planes-vanish", @@ -375,6 +380,7 @@ "rotten-rules-invite", "rude-ghosts-tickle", "selfish-dragons-knock", + "selfish-panthers-add", "selfish-socks-smile", "selfish-spies-help", "selfish-tools-hide", @@ -418,6 +424,7 @@ "sixty-items-crash", "sixty-numbers-hope", "sixty-pandas-rush", + "sleepy-cats-eat", "slimy-clouds-talk", "slimy-laws-explode", "slimy-onions-approve", @@ -437,6 +444,7 @@ "smart-turkeys-tell", "smart-zebras-pay", "smooth-kids-protect", + "smooth-pens-protect", "smooth-rings-rush", "soft-clocks-remember", "soft-geese-learn", diff --git a/packages/svelte/CHANGELOG.md b/packages/svelte/CHANGELOG.md index 0970f114f2a4..e5ce16a4e6d3 100644 --- a/packages/svelte/CHANGELOG.md +++ b/packages/svelte/CHANGELOG.md @@ -1,5 +1,25 @@ # svelte +## 5.0.0-next.142 + +### Patch Changes + +- fix: allow runelike writable as prop ([#11768](https://github.com/sveltejs/svelte/pull/11768)) + +- fix: support `array.lastIndexOf` without second argument ([#11766](https://github.com/sveltejs/svelte/pull/11766)) + +- fix: handle `this` parameter in TypeScript-annotated functions ([#11795](https://github.com/sveltejs/svelte/pull/11795)) + +- fix: allow classes to be reassigned ([#11794](https://github.com/sveltejs/svelte/pull/11794)) + +- fix: capture the correct event names when spreading attributes ([#11783](https://github.com/sveltejs/svelte/pull/11783)) + +- fix: allow global next to `&` for nesting ([#11784](https://github.com/sveltejs/svelte/pull/11784)) + +- fix: parse ongotpointercapture and onlostpointercapture events correctly ([#11790](https://github.com/sveltejs/svelte/pull/11790)) + +- fix: only inject push/pop in SSR components when necessary ([#11771](https://github.com/sveltejs/svelte/pull/11771)) + ## 5.0.0-next.141 ### Patch Changes diff --git a/packages/svelte/package.json b/packages/svelte/package.json index c5fefdf531ce..98fd76b00747 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.141", + "version": "5.0.0-next.142", "type": "module", "types": "./types/index.d.ts", "engines": { diff --git a/packages/svelte/src/version.js b/packages/svelte/src/version.js index d8395f336369..6f63a9d73139 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.141'; +export const VERSION = '5.0.0-next.142'; export const PUBLIC_VERSION = '5';