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

@ -1,5 +1,15 @@
# 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
### Patch Changes

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

Loading…
Cancel
Save