Version Packages (next) (#11767)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/11800/head svelte@5.0.0-next.142
github-actions[bot] 7 months ago committed by GitHub
parent 7a1326be06
commit 6e8131d826
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -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",

@ -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

@ -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": {

@ -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';

Loading…
Cancel
Save