Version Packages (next) (#12395)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/12406/head svelte@5.0.0-next.182
github-actions[bot] 2 months ago committed by GitHub
parent 277370a79d
commit bf0d1efb00
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -46,6 +46,7 @@
"breezy-waves-camp",
"bright-berries-smell",
"bright-falcons-float",
"bright-needles-pretend",
"bright-peas-juggle",
"bright-snakes-sing",
"brown-geckos-fry",
@ -160,6 +161,7 @@
"fast-donkeys-pay",
"fast-penguins-matter",
"fast-weeks-clean",
"few-badgers-guess",
"few-cheetahs-taste",
"few-clouds-shop",
"few-mugs-fail",
@ -227,12 +229,14 @@
"gorgeous-singers-rest",
"great-fans-unite",
"great-icons-retire",
"great-plums-pretend",
"green-eggs-approve",
"green-fishes-lie",
"green-hounds-play",
"green-snails-tickle",
"green-tigers-judge",
"grumpy-avocados-fetch",
"grumpy-insects-sleep",
"grumpy-jars-sparkle",
"happy-beds-scream",
"happy-dogs-jump",
@ -450,6 +454,7 @@
"red-doors-own",
"red-feet-worry",
"red-poets-study",
"red-pots-pretend",
"rich-cobras-exist",
"rich-garlics-laugh",
"rich-olives-yell",
@ -592,6 +597,7 @@
"swift-ravens-hunt",
"swift-seahorses-deliver",
"tall-books-grin",
"tall-dragons-switch",
"tall-garlics-try",
"tall-mugs-buy",
"tall-shrimps-worry",
@ -649,6 +655,7 @@
"tough-buckets-thank",
"tough-radios-punch",
"tough-tomatoes-explain",
"tricky-ears-shout",
"tricky-laws-bathe",
"twelve-beans-drive",
"twelve-cows-learn",

@ -1,5 +1,23 @@
# svelte
## 5.0.0-next.182
### Patch Changes
- fix: abort outro when intro starts ([#12321](https://github.com/sveltejs/svelte/pull/12321))
- feat: warn in dev on `{@html ...}` block hydration mismatch ([#12396](https://github.com/sveltejs/svelte/pull/12396))
- feat: only create a maximum of one document event listener per event ([#12383](https://github.com/sveltejs/svelte/pull/12383))
- fix: disallow using `let:` directives with component render tags ([#12400](https://github.com/sveltejs/svelte/pull/12400))
- fix: mark variables in shorthand style directives as referenced ([#12392](https://github.com/sveltejs/svelte/pull/12392))
- fix: handle empty else if block in legacy AST ([#12397](https://github.com/sveltejs/svelte/pull/12397))
- fix: properly delay intro transitions ([#12389](https://github.com/sveltejs/svelte/pull/12389))
## 5.0.0-next.181
### Patch Changes

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

Loading…
Cancel
Save