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

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

Loading…
Cancel
Save