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

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

Loading…
Cancel
Save