Version Packages (next) (#11162)

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

@ -11,6 +11,7 @@
"changesets": [ "changesets": [
"afraid-dogs-matter", "afraid-dogs-matter",
"afraid-geckos-dance", "afraid-geckos-dance",
"afraid-kids-hide",
"afraid-moose-matter", "afraid-moose-matter",
"angry-books-jam", "angry-books-jam",
"angry-plums-punch", "angry-plums-punch",
@ -38,6 +39,7 @@
"brown-houses-obey", "brown-houses-obey",
"brown-months-fry", "brown-months-fry",
"brown-spoons-boil", "brown-spoons-boil",
"calm-pandas-vanish",
"calm-ravens-sneeze", "calm-ravens-sneeze",
"chatty-beans-divide", "chatty-beans-divide",
"chatty-cups-drop", "chatty-cups-drop",
@ -100,6 +102,7 @@
"fast-weeks-clean", "fast-weeks-clean",
"few-clouds-shop", "few-clouds-shop",
"few-mugs-fail", "few-mugs-fail",
"few-teachers-know",
"fifty-rice-wait", "fifty-rice-wait",
"fifty-steaks-float", "fifty-steaks-float",
"five-tigers-search", "five-tigers-search",
@ -301,6 +304,7 @@
"shiny-shrimps-march", "shiny-shrimps-march",
"short-buses-camp", "short-buses-camp",
"short-countries-rush", "short-countries-rush",
"shy-fishes-drive",
"silent-apes-report", "silent-apes-report",
"silly-laws-happen", "silly-laws-happen",
"silly-lies-film", "silly-lies-film",
@ -389,6 +393,7 @@
"three-rice-tie", "three-rice-tie",
"three-suits-grin", "three-suits-grin",
"tidy-buses-whisper", "tidy-buses-whisper",
"tidy-chefs-taste",
"tidy-starfishes-allow", "tidy-starfishes-allow",
"tiny-kings-whisper", "tiny-kings-whisper",
"tough-radios-punch", "tough-radios-punch",
@ -407,6 +412,7 @@
"wicked-clouds-exercise", "wicked-clouds-exercise",
"wicked-doors-train", "wicked-doors-train",
"wicked-hairs-cheer", "wicked-hairs-cheer",
"wicked-wasps-allow",
"wild-foxes-wonder", "wild-foxes-wonder",
"wild-moose-compare", "wild-moose-compare",
"wise-apples-care", "wise-apples-care",

@ -1,5 +1,21 @@
# svelte # svelte
## 5.0.0-next.103
### Patch Changes
- fix: throw error when auto-subscribed store variable shadow by local variable ([#11170](https://github.com/sveltejs/svelte/pull/11170))
- fix: make ownership validation work correctly with HMR ([#11171](https://github.com/sveltejs/svelte/pull/11171))
- fix: revert ownership widening change ([#11161](https://github.com/sveltejs/svelte/pull/11161))
- fix: fix string name of reactive map and set iterator ([#11169](https://github.com/sveltejs/svelte/pull/11169))
- feat: reactive `URL` and `URLSearchParams` classes ([#11157](https://github.com/sveltejs/svelte/pull/11157))
- feat: update error message for snippet binding and assignments ([#11168](https://github.com/sveltejs/svelte/pull/11168))
## 5.0.0-next.102 ## 5.0.0-next.102
### 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.102", "version": "5.0.0-next.103",
"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.102'; export const VERSION = '5.0.0-next.103';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save