From 722bd56bc44f818d6f14c73558644c7d99fd6b9b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 24 Jan 2024 12:09:07 +0000 Subject: [PATCH] Version Packages (next) (#10229) Co-authored-by: github-actions[bot] --- .changeset/pre.json | 15 ++++++++++++++- packages/svelte/CHANGELOG.md | 30 ++++++++++++++++++++++++++++++ packages/svelte/package.json | 2 +- packages/svelte/src/version.js | 2 +- 4 files changed, 46 insertions(+), 3 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 47d11aa004..970ff39da1 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -11,6 +11,7 @@ "changesets": [ "afraid-moose-matter", "angry-books-jam", + "angry-plums-punch", "beige-flies-wash", "beige-rabbits-shave", "big-cars-serve", @@ -50,6 +51,7 @@ "empty-tools-share", "fair-crabs-check", "fair-pianos-talk", + "famous-falcons-melt", "famous-knives-sneeze", "fast-weeks-clean", "few-mugs-fail", @@ -64,6 +66,7 @@ "friendly-lies-camp", "funny-wombats-argue", "gentle-sheep-hug", + "gentle-spies-happen", "giant-moons-own", "giant-roses-press", "good-cars-visit", @@ -75,7 +78,9 @@ "healthy-planes-vanish", "heavy-ears-rule", "hip-balloons-begin", + "honest-buses-add", "honest-icons-change", + "hungry-boxes-relate", "hungry-dots-fry", "hungry-tips-unite", "hungry-trees-travel", @@ -105,6 +110,7 @@ "lovely-rules-eat", "lucky-schools-hang", "lucky-toes-begin", + "many-trees-fix", "moody-frogs-exist", "moody-owls-cry", "nasty-lions-double", @@ -139,9 +145,12 @@ "rich-cobras-exist", "rich-sheep-burn", "rich-tables-sing", + "rich-waves-mix", "rotten-bags-type", "rotten-buckets-develop", + "selfish-dragons-knock", "selfish-tools-hide", + "serious-kids-deliver", "serious-socks-cover", "serious-zebras-scream", "seven-deers-jam", @@ -163,6 +172,7 @@ "smart-zebras-pay", "soft-clocks-remember", "soft-geese-learn", + "soft-months-grab", "soft-tigers-wink", "sour-forks-stare", "sour-rules-march", @@ -177,6 +187,7 @@ "sweet-mangos-beg", "sweet-pens-sniff", "swift-donkeys-perform", + "swift-fans-stare", "swift-ravens-hunt", "swift-seahorses-deliver", "tall-books-grin", @@ -195,6 +206,7 @@ "thirty-ghosts-fix", "thirty-impalas-repair", "thirty-wombats-relax", + "three-camels-sell", "three-suits-grin", "tidy-buses-whisper", "tiny-kings-whisper", @@ -211,6 +223,7 @@ "wild-foxes-wonder", "wise-dancers-hang", "wise-donkeys-marry", - "witty-camels-warn" + "witty-camels-warn", + "witty-steaks-dream" ] } diff --git a/packages/svelte/CHANGELOG.md b/packages/svelte/CHANGELOG.md index e58f61218b..49e16f0b83 100644 --- a/packages/svelte/CHANGELOG.md +++ b/packages/svelte/CHANGELOG.md @@ -1,5 +1,35 @@ # svelte +## 5.0.0-next.38 + +### Patch Changes + +- chore: improve should_proxy_or_freeze logic internally ([#10249](https://github.com/sveltejs/svelte/pull/10249)) + +- fix: add back `derived` type overload ([`776ac3c1762da5f8147c457a997a417cfae67e4c`](https://github.com/sveltejs/svelte/commit/776ac3c1762da5f8147c457a997a417cfae67e4c)) + +- fix: more robust url equality check at dev time ([`14d7b26897cbfa129847c446b0ecf9557d77ef7c`](https://github.com/sveltejs/svelte/commit/14d7b26897cbfa129847c446b0ecf9557d77ef7c)) + +- fix: correct increment/decrement code generation ([`2861ad66e054d2b14f382aaada4512e3e5d56db8`](https://github.com/sveltejs/svelte/commit/2861ad66e054d2b14f382aaada4512e3e5d56db8)) + +- fix: sanitize component event names ([#10235](https://github.com/sveltejs/svelte/pull/10235)) + +- fix: don't hoist function when already referenced in module scope ([`1538264bd5ed431d3048d54efe9c83c4db7fb42a`](https://github.com/sveltejs/svelte/commit/1538264bd5ed431d3048d54efe9c83c4db7fb42a)) + +- fix: try-catch deep read during `$inspect` ([#10270](https://github.com/sveltejs/svelte/pull/10270)) + +- fix: allow ts casts in bindings ([#10181](https://github.com/sveltejs/svelte/pull/10181)) + +- fix: allow `:global(..)` in compound selectors ([#10266](https://github.com/sveltejs/svelte/pull/10266)) + +- fix: hydrate controlled each blocks correctly ([#10259](https://github.com/sveltejs/svelte/pull/10259)) + +- chore: improve $state static reference warning heuristics ([#10275](https://github.com/sveltejs/svelte/pull/10275)) + +- fix: correctly cleanup unowned derived dependency memory ([#10280](https://github.com/sveltejs/svelte/pull/10280)) + +- fix: ensure proxy is updated before notifying listeners ([#10267](https://github.com/sveltejs/svelte/pull/10267)) + ## 5.0.0-next.37 ### Patch Changes diff --git a/packages/svelte/package.json b/packages/svelte/package.json index 7e614b8620..1df764f884 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.37", + "version": "5.0.0-next.38", "type": "module", "types": "./types/index.d.ts", "engines": { diff --git a/packages/svelte/src/version.js b/packages/svelte/src/version.js index 1d84b3c0f4..0825ec611e 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.37'; +export const VERSION = '5.0.0-next.38'; export const PUBLIC_VERSION = '5';