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

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

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

Loading…
Cancel
Save