Version Packages (next) (#12718)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/12741/head
github-actions[bot] 5 months ago committed by GitHub
parent 59ea0b9e13
commit e747a6f75d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -67,6 +67,7 @@
"chilled-ladybugs-invite",
"chilled-pumas-invite",
"chilled-seas-jog",
"chilly-carpets-switch",
"chilly-dolphins-lick",
"chilly-laws-juggle",
"chilly-pans-raise",
@ -115,6 +116,7 @@
"dirty-donuts-yell",
"dirty-eyes-itch",
"dirty-garlics-design",
"dirty-pens-look",
"dirty-pianos-eat",
"dirty-tips-add",
"dry-clocks-grow",
@ -264,6 +266,7 @@
"happy-moles-live",
"happy-suits-film",
"healthy-ants-film",
"healthy-mangos-brush",
"healthy-planes-vanish",
"healthy-zebras-accept",
"heavy-comics-move",
@ -354,6 +357,7 @@
"loud-cheetahs-flow",
"loud-insects-arrive",
"loud-mugs-smile",
"loud-news-deliver",
"loud-numbers-flow",
"loud-penguins-unite",
"loud-ravens-drop",
@ -495,6 +499,7 @@
"red-cycles-pretend",
"red-doors-own",
"red-feet-worry",
"red-kings-draw",
"red-poets-study",
"red-pots-pretend",
"rich-cobras-exist",

@ -1,5 +1,19 @@
# svelte
## 5.0.0-next.209
### Patch Changes
- fix: add css hash to custom element rendered with `svelte:element` ([#12715](https://github.com/sveltejs/svelte/pull/12715))
- fix: correctly handle SvelteDate methods with arguments ([#12738](https://github.com/sveltejs/svelte/pull/12738))
- fix: add touch events on microtask to avoid Chromium bug ([#12735](https://github.com/sveltejs/svelte/pull/12735))
- fix: allow deletion of $restProps properties ([#12736](https://github.com/sveltejs/svelte/pull/12736))
- feat: more efficient code generation when referencing globals ([#12712](https://github.com/sveltejs/svelte/pull/12712))
## 5.0.0-next.208
### Patch Changes

@ -2,7 +2,7 @@
"name": "svelte",
"description": "Cybernetically enhanced web apps",
"license": "MIT",
"version": "5.0.0-next.208",
"version": "5.0.0-next.209",
"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.208';
export const VERSION = '5.0.0-next.209';
export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save