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

@ -1,5 +1,19 @@
# svelte # 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 ## 5.0.0-next.208
### Patch Changes ### Patch Changes

@ -2,7 +2,7 @@
"name": "svelte", "name": "svelte",
"description": "Cybernetically enhanced web apps", "description": "Cybernetically enhanced web apps",
"license": "MIT", "license": "MIT",
"version": "5.0.0-next.208", "version": "5.0.0-next.209",
"type": "module", "type": "module",
"types": "./types/index.d.ts", "types": "./types/index.d.ts",
"engines": { "engines": {

@ -6,5 +6,5 @@
* https://svelte.dev/docs/svelte-compiler#svelte-version * https://svelte.dev/docs/svelte-compiler#svelte-version
* @type {string} * @type {string}
*/ */
export const VERSION = '5.0.0-next.208'; export const VERSION = '5.0.0-next.209';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save