Version Packages (next) (#9856)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/9898/head svelte@5.0.0-next.23
github-actions[bot] 7 months ago committed by GitHub
parent 56de55bb77
commit a8e5cc83cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -56,6 +56,7 @@
"kind-deers-lay",
"kind-eagles-join",
"large-clouds-carry",
"late-crabs-lay",
"lazy-masks-sit",
"lazy-months-knock",
"lazy-spiders-think",
@ -81,10 +82,12 @@
"poor-eggs-enjoy",
"poor-seahorses-flash",
"popular-mangos-rest",
"purple-dragons-peel",
"quiet-camels-mate",
"rare-pears-whisper",
"rich-sheep-burn",
"rich-tables-sing",
"rotten-bags-type",
"rotten-buckets-develop",
"selfish-tools-hide",
"serious-socks-cover",
@ -96,6 +99,7 @@
"shiny-baboons-play",
"shiny-shrimps-march",
"slimy-clouds-talk",
"slow-chefs-dream",
"small-papayas-laugh",
"smart-parents-swim",
"soft-clocks-remember",
@ -104,11 +108,13 @@
"sour-rules-march",
"spicy-plums-admire",
"stale-comics-look",
"strong-gifts-smoke",
"strong-lemons-provide",
"sweet-mangos-beg",
"swift-donkeys-perform",
"swift-ravens-hunt",
"swift-seahorses-deliver",
"tall-books-grin",
"tall-shrimps-worry",
"tall-tigers-wait",
"tasty-numbers-perform",
@ -128,6 +134,7 @@
"wet-games-fly",
"wicked-clouds-exercise",
"wicked-doors-train",
"wise-dancers-hang",
"wise-donkeys-marry",
"witty-camels-warn"
]

@ -1,5 +1,23 @@
# svelte
## 5.0.0-next.23
### Patch Changes
- feat: add `gamepadconnected` and `gamepaddisconnected` events ([#9861](https://github.com/sveltejs/svelte/pull/9861))
- fix: improve unstate type definition ([#9895](https://github.com/sveltejs/svelte/pull/9895))
- fix: correctly reflect readonly proxy marker ([#9893](https://github.com/sveltejs/svelte/pull/9893))
- chore: improve each block fast-path heuristic ([#9855](https://github.com/sveltejs/svelte/pull/9855))
- fix: improve html tag svg behaviour ([#9894](https://github.com/sveltejs/svelte/pull/9894))
- fix: ensure class constructor values are proxied ([#9888](https://github.com/sveltejs/svelte/pull/9888))
- fix: improve each block index handling ([#9889](https://github.com/sveltejs/svelte/pull/9889))
## 5.0.0-next.22
### Patch Changes

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

Loading…
Cancel
Save