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

@ -1,5 +1,17 @@
# svelte # 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 ## 5.0.0-next.51
### 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.51", "version": "5.0.0-next.52",
"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.51'; export const VERSION = '5.0.0-next.52';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save