Version Packages (next) (#10290)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/10304/head svelte@5.0.0-next.39
github-actions[bot] 7 months ago committed by GitHub
parent 07a0ae449b
commit 5a81610a2e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -93,6 +93,7 @@
"kind-baboons-approve", "kind-baboons-approve",
"kind-deers-lay", "kind-deers-lay",
"kind-eagles-join", "kind-eagles-join",
"kind-rings-flash",
"large-clouds-carry", "large-clouds-carry",
"large-turkeys-deny", "large-turkeys-deny",
"late-crabs-lay", "late-crabs-lay",
@ -192,6 +193,7 @@
"swift-seahorses-deliver", "swift-seahorses-deliver",
"tall-books-grin", "tall-books-grin",
"tall-garlics-try", "tall-garlics-try",
"tall-mugs-buy",
"tall-shrimps-worry", "tall-shrimps-worry",
"tall-tigers-wait", "tall-tigers-wait",
"tame-spies-drum", "tame-spies-drum",
@ -205,6 +207,7 @@
"thirty-flowers-sit", "thirty-flowers-sit",
"thirty-ghosts-fix", "thirty-ghosts-fix",
"thirty-impalas-repair", "thirty-impalas-repair",
"thirty-pears-hug",
"thirty-wombats-relax", "thirty-wombats-relax",
"three-camels-sell", "three-camels-sell",
"three-suits-grin", "three-suits-grin",

@ -1,5 +1,15 @@
# svelte # svelte
## 5.0.0-next.39
### Patch Changes
- fix: handle deep assignments to `$state()` class properties correctly ([#10289](https://github.com/sveltejs/svelte/pull/10289))
- fix: prevent false positive store error in module script ([#10291](https://github.com/sveltejs/svelte/pull/10291))
- fix: allow type selector in `:global()` when it's at a start of a compound selector ([#10287](https://github.com/sveltejs/svelte/pull/10287))
## 5.0.0-next.38 ## 5.0.0-next.38
### 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.38", "version": "5.0.0-next.39",
"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.38'; export const VERSION = '5.0.0-next.39';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save