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

@ -1,5 +1,19 @@
# 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
### Patch Changes

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

Loading…
Cancel
Save