Version Packages (next) (#11874)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/11893/head svelte@5.0.0-next.149
github-actions[bot] 1 year ago committed by GitHub
parent 832f8deeec
commit 5f21d64af5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -124,6 +124,7 @@
"empty-crabs-think",
"empty-flowers-change",
"empty-geckos-pretend",
"empty-horses-tell",
"empty-tools-share",
"fair-bags-smoke",
"fair-crabs-check",
@ -276,6 +277,7 @@
"lovely-houses-own",
"lovely-items-turn",
"lovely-rules-eat",
"lovely-zebras-own",
"lucky-colts-remember",
"lucky-geckos-swim",
"lucky-schools-hang",
@ -416,6 +418,7 @@
"shiny-mayflies-clean",
"shiny-melons-love",
"shiny-months-tease",
"shiny-pillows-relax",
"shiny-rats-heal",
"shiny-shrimps-march",
"short-buses-camp",
@ -536,6 +539,7 @@
"three-suits-grin",
"tidy-buses-whisper",
"tidy-chefs-taste",
"tidy-fans-relax",
"tidy-starfishes-allow",
"tiny-kings-whisper",
"tiny-meals-deliver",

@ -1,5 +1,17 @@
# svelte
## 5.0.0-next.149
### Patch Changes
- fix: keep default values of props a proxy after reassignment ([#11860](https://github.com/sveltejs/svelte/pull/11860))
- fix: address map reactivity regression ([#11882](https://github.com/sveltejs/svelte/pull/11882))
- fix: assign message to error object in `handle_error` using `Object.defineProperty` ([#11675](https://github.com/sveltejs/svelte/pull/11675))
- fix: ensure frozen objects in state are correctly skipped ([#11889](https://github.com/sveltejs/svelte/pull/11889))
## 5.0.0-next.148
### Patch Changes

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

Loading…
Cancel
Save