Version Packages (next) (#10434)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/10449/head svelte@5.0.0-next.52
github-actions[bot] 11 months ago committed by GitHub
parent 999fca97cf
commit 89123a8117
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -116,6 +116,7 @@
"light-pens-watch",
"long-buckets-lay",
"long-crews-return",
"long-lobsters-mate",
"loud-cheetahs-flow",
"loud-ravens-drop",
"lovely-carpets-lick",
@ -124,6 +125,7 @@
"lucky-schools-hang",
"lucky-toes-begin",
"many-trees-fix",
"mighty-files-hammer",
"moody-frogs-exist",
"moody-owls-cry",
"nasty-lions-double",
@ -146,6 +148,7 @@
"olive-shirts-complain",
"olive-socks-kick",
"orange-dingos-poke",
"pink-mayflies-tie",
"polite-dolphins-care",
"polite-pumpkins-guess",
"polite-ravens-study",
@ -183,6 +186,7 @@
"shiny-baboons-play",
"shiny-shrimps-march",
"short-buses-camp",
"silent-apes-report",
"silver-points-approve",
"sixty-items-crash",
"slimy-clouds-talk",

@ -1,5 +1,17 @@
# svelte
## 5.0.0-next.52
### Patch Changes
- fix: use hybrid scoping strategy for consistent specificity increase ([#10443](https://github.com/sveltejs/svelte/pull/10443))
- fix: throw validation error when binding to each argument in runes mode ([#10441](https://github.com/sveltejs/svelte/pull/10441))
- fix: make CSS animation declaration transformation more robust ([#10432](https://github.com/sveltejs/svelte/pull/10432))
- fix: handle sole empty expression tags ([#10433](https://github.com/sveltejs/svelte/pull/10433))
## 5.0.0-next.51
### Patch Changes

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

Loading…
Cancel
Save