Version Packages (next) (#10457)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/10470/head svelte@5.0.0-next.53
github-actions[bot] 5 months ago committed by GitHub
parent 4942d6b9cc
commit 9cee83c864
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -17,6 +17,7 @@
"beige-rabbits-shave",
"big-cars-serve",
"big-eyes-carry",
"big-geese-act",
"blue-timers-film",
"brave-shrimps-kiss",
"brave-walls-destroy",
@ -38,6 +39,7 @@
"curvy-cups-cough",
"curvy-ties-shout",
"cyan-flowers-destroy",
"cyan-spies-grin",
"dirty-bats-punch",
"dirty-garlics-design",
"dirty-tips-add",
@ -147,6 +149,7 @@
"olive-seals-sell",
"olive-shirts-complain",
"olive-socks-kick",
"orange-crews-rescue",
"orange-dingos-poke",
"pink-mayflies-tie",
"polite-dolphins-care",
@ -205,6 +208,7 @@
"sour-forks-stare",
"sour-rules-march",
"sour-weeks-fix",
"spicy-jeans-deliver",
"spicy-plums-admire",
"spotty-pens-agree",
"spotty-spiders-compare",

@ -1,5 +1,17 @@
# svelte
## 5.0.0-next.53
### Patch Changes
- fix: only throw bind error when not passing a value ([#10090](https://github.com/sveltejs/svelte/pull/10090))
- fix: improve global transition handling of effect cleardown ([#10469](https://github.com/sveltejs/svelte/pull/10469))
- fix: improve handling of object property deletions ([#10456](https://github.com/sveltejs/svelte/pull/10456))
- fix: ensure inspect fires on prop changes ([#10468](https://github.com/sveltejs/svelte/pull/10468))
## 5.0.0-next.52
### Patch Changes

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

Loading…
Cancel
Save