Version Packages (next) (#9807)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/9830/head svelte@5.0.0-next.20
github-actions[bot] 1 year ago committed by GitHub
parent fb853106a9
commit 384e3a42b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -30,6 +30,7 @@
"famous-knives-sneeze", "famous-knives-sneeze",
"few-mugs-fail", "few-mugs-fail",
"fifty-steaks-float", "fifty-steaks-float",
"five-tigers-search",
"flat-melons-protect", "flat-melons-protect",
"forty-comics-invent", "forty-comics-invent",
"fresh-weeks-trade", "fresh-weeks-trade",
@ -40,6 +41,7 @@
"great-icons-retire", "great-icons-retire",
"green-eggs-approve", "green-eggs-approve",
"green-hounds-play", "green-hounds-play",
"healthy-planes-vanish",
"honest-icons-change", "honest-icons-change",
"hungry-dots-fry", "hungry-dots-fry",
"hungry-tips-unite", "hungry-tips-unite",
@ -68,6 +70,7 @@
"odd-schools-wait", "odd-schools-wait",
"odd-shoes-cheat", "odd-shoes-cheat",
"old-flies-jog", "old-flies-jog",
"polite-dolphins-care",
"polite-pumpkins-guess", "polite-pumpkins-guess",
"polite-ravens-study", "polite-ravens-study",
"poor-eggs-enjoy", "poor-eggs-enjoy",
@ -86,6 +89,8 @@
"shiny-shrimps-march", "shiny-shrimps-march",
"slimy-clouds-talk", "slimy-clouds-talk",
"small-papayas-laugh", "small-papayas-laugh",
"smart-parents-swim",
"soft-clocks-remember",
"soft-geese-learn", "soft-geese-learn",
"sour-forks-stare", "sour-forks-stare",
"sour-rules-march", "sour-rules-march",
@ -93,10 +98,12 @@
"stale-comics-look", "stale-comics-look",
"strong-lemons-provide", "strong-lemons-provide",
"sweet-mangos-beg", "sweet-mangos-beg",
"swift-donkeys-perform",
"swift-ravens-hunt", "swift-ravens-hunt",
"swift-seahorses-deliver", "swift-seahorses-deliver",
"tall-shrimps-worry", "tall-shrimps-worry",
"tall-tigers-wait", "tall-tigers-wait",
"tasty-numbers-perform",
"ten-worms-reflect", "ten-worms-reflect",
"thin-foxes-lick", "thin-foxes-lick",
"thirty-flowers-sit", "thirty-flowers-sit",
@ -107,6 +114,7 @@
"twelve-onions-juggle", "twelve-onions-juggle",
"two-dragons-yell", "two-dragons-yell",
"two-falcons-buy", "two-falcons-buy",
"unlucky-boxes-obey",
"wet-games-fly", "wet-games-fly",
"wicked-clouds-exercise", "wicked-clouds-exercise",
"wicked-doors-train", "wicked-doors-train",

@ -1,5 +1,25 @@
# svelte # svelte
## 5.0.0-next.20
### Patch Changes
- fix: better readonly checks for proxies ([#9808](https://github.com/sveltejs/svelte/pull/9808))
- fix: prevent infinite loops stemming from invalidation method ([#9811](https://github.com/sveltejs/svelte/pull/9811))
- fix: improve non state referenced warning ([#9809](https://github.com/sveltejs/svelte/pull/9809))
- fix: reuse existing proxy when object has multiple references ([#9821](https://github.com/sveltejs/svelte/pull/9821))
- fix: improve consistency issues around binding invalidation ([#9810](https://github.com/sveltejs/svelte/pull/9810))
- fix: tweak css nth regex ([#9806](https://github.com/sveltejs/svelte/pull/9806))
- fix: adjust children snippet default type ([`dcdd64548`](https://github.com/sveltejs/svelte/commit/dcdd645480ab412eb563632e70801f4d61c1d787))
- fix: correctly apply scope on component children ([#9824](https://github.com/sveltejs/svelte/pull/9824))
## 5.0.0-next.19 ## 5.0.0-next.19
### 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.19", "version": "5.0.0-next.20",
"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.19'; export const VERSION = '5.0.0-next.20';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save