diff --git a/.changeset/pre.json b/.changeset/pre.json index f2b203735f..138837b375 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -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", diff --git a/packages/svelte/CHANGELOG.md b/packages/svelte/CHANGELOG.md index 0f9afb242d..e0a7194973 100644 --- a/packages/svelte/CHANGELOG.md +++ b/packages/svelte/CHANGELOG.md @@ -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 diff --git a/packages/svelte/package.json b/packages/svelte/package.json index 3cde08871a..d464f21558 100644 --- a/packages/svelte/package.json +++ b/packages/svelte/package.json @@ -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": { diff --git a/packages/svelte/src/version.js b/packages/svelte/src/version.js index ab3307900a..f2f1da80e4 100644 --- a/packages/svelte/src/version.js +++ b/packages/svelte/src/version.js @@ -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';