Version Packages (next) (#10052)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
ts-satisfies svelte@5.0.0-next.28
github-actions[bot] 7 months ago committed by GitHub
parent 5f3fcaf88a
commit fa8aa2d481
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -25,6 +25,8 @@
"cool-ants-leave",
"cuddly-pianos-drop",
"curly-lizards-dream",
"curvy-ties-shout",
"dirty-bats-punch",
"dirty-garlics-design",
"dirty-tips-add",
"dry-clocks-grow",
@ -54,6 +56,7 @@
"happy-suits-film",
"healthy-planes-vanish",
"heavy-ears-rule",
"hip-balloons-begin",
"honest-icons-change",
"hungry-dots-fry",
"hungry-tips-unite",
@ -80,6 +83,7 @@
"lucky-schools-hang",
"moody-frogs-exist",
"moody-owls-cry",
"nasty-lions-double",
"neat-dingos-clap",
"new-boats-wait",
"ninety-dingos-walk",
@ -88,12 +92,14 @@
"odd-shoes-cheat",
"old-flies-jog",
"old-mails-sneeze",
"orange-dingos-poke",
"polite-dolphins-care",
"polite-pumpkins-guess",
"polite-ravens-study",
"poor-eggs-enjoy",
"poor-seahorses-flash",
"popular-mangos-rest",
"pretty-ties-help",
"purple-dragons-peel",
"quiet-camels-mate",
"rare-pears-whisper",
@ -125,10 +131,12 @@
"strong-gifts-smoke",
"strong-lemons-provide",
"sweet-mangos-beg",
"sweet-pens-sniff",
"swift-donkeys-perform",
"swift-ravens-hunt",
"swift-seahorses-deliver",
"tall-books-grin",
"tall-garlics-try",
"tall-shrimps-worry",
"tall-tigers-wait",
"tasty-numbers-perform",
@ -140,12 +148,14 @@
"thirty-ghosts-fix",
"thirty-impalas-repair",
"thirty-wombats-relax",
"three-suits-grin",
"tiny-kings-whisper",
"twelve-dragons-join",
"twelve-onions-juggle",
"two-dragons-yell",
"two-falcons-buy",
"unlucky-boxes-obey",
"unlucky-trees-lick",
"wet-games-fly",
"wicked-clouds-exercise",
"wicked-doors-train",

@ -1,5 +1,29 @@
# svelte
## 5.0.0-next.28
### Patch Changes
- fix: deeply unstate objects passed to inspect ([#10056](https://github.com/sveltejs/svelte/pull/10056))
- fix: handle delegated events of elements moved outside the container ([#10060](https://github.com/sveltejs/svelte/pull/10060))
- fix: improve script `lang` attribute detection ([#10046](https://github.com/sveltejs/svelte/pull/10046))
- fix: improve pseudo class parsing ([#10055](https://github.com/sveltejs/svelte/pull/10055))
- fix: add types for popover attributes and events ([#10041](https://github.com/sveltejs/svelte/pull/10041))
- fix: skip generating $.proxy() calls for unary and binary expressions ([#9979](https://github.com/sveltejs/svelte/pull/9979))
- fix: allow pseudo classes after `:global(..)` ([#10055](https://github.com/sveltejs/svelte/pull/10055))
- fix: bail-out event handler referencing each index ([#10063](https://github.com/sveltejs/svelte/pull/10063))
- fix: parse `:nth-of-type(xn+y)` correctly ([#9970](https://github.com/sveltejs/svelte/pull/9970))
- fix: ensure if block is executed in correct order ([#10053](https://github.com/sveltejs/svelte/pull/10053))
## 5.0.0-next.27
### Patch Changes

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

Loading…
Cancel
Save