Version Packages (next) (#11899)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/11923/head svelte@5.0.0-next.150
github-actions[bot] 4 weeks ago committed by GitHub
parent 1331cdc1de
commit 8c9d9a4a44
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -66,6 +66,7 @@
"clever-rockets-burn",
"clever-sloths-push",
"clever-stingrays-shout",
"cold-beans-tease",
"cold-birds-own",
"cold-cheetahs-judge",
"cold-masks-learn",
@ -139,6 +140,7 @@
"few-clouds-shop",
"few-mugs-fail",
"few-teachers-know",
"few-zoos-own",
"fifty-masks-give",
"fifty-rice-wait",
"fifty-steaks-float",
@ -215,6 +217,7 @@
"honest-icons-change",
"honest-nails-share",
"honest-pans-kick",
"hot-cooks-repair",
"hot-jobs-tap",
"hungry-boxes-relate",
"hungry-dots-fry",
@ -229,6 +232,7 @@
"itchy-kings-deliver",
"itchy-lions-wash",
"itchy-panthers-shave",
"itchy-peaches-compare",
"itchy-terms-guess",
"khaki-cooks-develop",
"khaki-ligers-sing",
@ -273,6 +277,7 @@
"loud-numbers-flow",
"loud-ravens-drop",
"loud-socks-look",
"lovely-bugs-sneeze",
"lovely-carpets-lick",
"lovely-houses-own",
"lovely-items-turn",
@ -522,6 +527,7 @@
"thick-pans-tell",
"thick-shirts-deliver",
"thick-swans-type",
"thin-colts-yawn",
"thin-foxes-lick",
"thin-years-rhyme",
"thirty-flowers-sit",
@ -539,6 +545,7 @@
"three-suits-grin",
"tidy-buses-whisper",
"tidy-chefs-taste",
"tidy-deers-hope",
"tidy-fans-relax",
"tidy-starfishes-allow",
"tiny-kings-whisper",

@ -1,5 +1,23 @@
# svelte
## 5.0.0-next.150
### Patch Changes
- fix: populate `this.#sources` when constructing reactive map ([#11913](https://github.com/sveltejs/svelte/pull/11913))
- fix: omit `state_referenced_locally` warning for component exports ([#11905](https://github.com/sveltejs/svelte/pull/11905))
- fix: ensure event.target is correct for delegation ([#11900](https://github.com/sveltejs/svelte/pull/11900))
- chore: speed up regex ([#11918](https://github.com/sveltejs/svelte/pull/11918))
- feat: bind `activeElement` and `pointerLockElement` in `<svelte:document>` ([#11879](https://github.com/sveltejs/svelte/pull/11879))
- fix: correctly backport `svelte:element` to old AST ([#11917](https://github.com/sveltejs/svelte/pull/11917))
- fix: add `unused-export-let` to legacy lint replacements ([#11896](https://github.com/sveltejs/svelte/pull/11896))
## 5.0.0-next.149
### Patch Changes

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

Loading…
Cancel
Save