Version Packages (next) (#11714)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/11732/head svelte@5.0.0-next.138
github-actions[bot] 8 months ago committed by GitHub
parent 4a3f7ac257
commit c3489eb5de
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -60,6 +60,7 @@
"chilly-snakes-scream",
"clean-eels-beg",
"clever-chefs-relate",
"clever-maps-travel",
"clever-rockets-burn",
"clever-sloths-push",
"cold-birds-own",
@ -208,6 +209,7 @@
"hungry-tips-unite",
"hungry-trees-travel",
"itchy-beans-melt",
"itchy-beds-kneel",
"itchy-bulldogs-tan",
"itchy-eels-marry",
"itchy-kings-deliver",
@ -268,6 +270,7 @@
"lucky-toes-begin",
"many-rockets-give",
"many-trees-fix",
"mean-jokes-exist",
"metal-clouds-raise",
"metal-lobsters-burn",
"mighty-cooks-scream",
@ -435,6 +438,7 @@
"soft-tigers-wink",
"sour-bags-fail",
"sour-forks-stare",
"sour-jeans-collect",
"sour-rules-march",
"sour-weeks-fix",
"spicy-jeans-deliver",
@ -469,6 +473,7 @@
"tall-shrimps-worry",
"tall-tigers-wait",
"tame-cycles-kneel",
"tame-dots-battle",
"tame-spies-drum",
"tasty-cheetahs-appear",
"tasty-numbers-perform",

@ -1,5 +1,19 @@
# svelte
## 5.0.0-next.138
### Patch Changes
- fix: allow comments after last selector in css ([#11723](https://github.com/sveltejs/svelte/pull/11723))
- fix: don't add scoping modifier to nesting selectors ([#11713](https://github.com/sveltejs/svelte/pull/11713))
- chore: speedup hydration around input and select values ([#11717](https://github.com/sveltejs/svelte/pull/11717))
- fix: update value like attributes in a separate template_effect ([#11720](https://github.com/sveltejs/svelte/pull/11720))
- fix: improve handling of unowned derived signal ([#11712](https://github.com/sveltejs/svelte/pull/11712))
## 5.0.0-next.137
### Patch Changes

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

Loading…
Cancel
Save