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

@ -1,5 +1,17 @@
# svelte # 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 ## 5.0.0-next.52
### 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.52", "version": "5.0.0-next.53",
"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.52'; export const VERSION = '5.0.0-next.53';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save