Version Packages (next) (#12349)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/12356/head svelte@5.0.0-next.177
github-actions[bot] 1 year ago committed by GitHub
parent 66a184689b
commit 787e091a5e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -245,6 +245,7 @@
"heavy-ducks-leave", "heavy-ducks-leave",
"heavy-ears-rule", "heavy-ears-rule",
"hip-balloons-begin", "hip-balloons-begin",
"hip-garlics-tap",
"hip-pumpkins-boil", "hip-pumpkins-boil",
"honest-buses-add", "honest-buses-add",
"honest-dragons-turn", "honest-dragons-turn",
@ -305,6 +306,7 @@
"lemon-trees-act", "lemon-trees-act",
"light-badgers-glow", "light-badgers-glow",
"light-days-clean", "light-days-clean",
"light-hounds-carry",
"light-humans-hang", "light-humans-hang",
"light-penguins-invent", "light-penguins-invent",
"light-pens-watch", "light-pens-watch",
@ -343,6 +345,7 @@
"mighty-cooks-scream", "mighty-cooks-scream",
"mighty-files-hammer", "mighty-files-hammer",
"mighty-frogs-obey", "mighty-frogs-obey",
"mighty-paws-smash",
"mighty-shoes-nail", "mighty-shoes-nail",
"modern-apricots-promise", "modern-apricots-promise",
"modern-fishes-double", "modern-fishes-double",
@ -502,6 +505,7 @@
"silver-sheep-knock", "silver-sheep-knock",
"six-bears-trade", "six-bears-trade",
"six-boats-shave", "six-boats-shave",
"six-chicken-kneel",
"six-gorillas-obey", "six-gorillas-obey",
"sixty-items-crash", "sixty-items-crash",
"sixty-numbers-hope", "sixty-numbers-hope",
@ -626,6 +630,7 @@
"tidy-chefs-taste", "tidy-chefs-taste",
"tidy-deers-hope", "tidy-deers-hope",
"tidy-fans-relax", "tidy-fans-relax",
"tidy-lizards-happen",
"tidy-starfishes-allow", "tidy-starfishes-allow",
"tiny-kings-whisper", "tiny-kings-whisper",
"tiny-meals-deliver", "tiny-meals-deliver",

@ -1,5 +1,19 @@
# svelte # svelte
## 5.0.0-next.177
### Patch Changes
- breaking: play transitions on `mount` by default ([#12351](https://github.com/sveltejs/svelte/pull/12351))
- fix: make `<select>` `<option value>` behavior consistent ([#12316](https://github.com/sveltejs/svelte/pull/12316))
- chore: stricter control flow syntax validation in runes mode ([#12342](https://github.com/sveltejs/svelte/pull/12342))
- fix: resolve legacy component props equality for mutations ([#12348](https://github.com/sveltejs/svelte/pull/12348))
- fix: make `$state` component exports settable ([#12345](https://github.com/sveltejs/svelte/pull/12345))
## 5.0.0-next.176 ## 5.0.0-next.176
### 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.176", "version": "5.0.0-next.177",
"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.176'; export const VERSION = '5.0.0-next.177';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save