Version Packages (#16744)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
pull/16749/head svelte@5.38.9
github-actions[bot] 1 week ago committed by GitHub
parent 558a3c963b
commit 96a4b16842
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,5 +0,0 @@
---
'svelte': patch
---
chore: generate CSS hash using the filename

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: correctly analyze `<object.property>` components

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: clean up scheduling system

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: transform input defaults from spread

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: don't destroy contents of `svelte:boundary` unless the boundary is an error boundary

@ -1,5 +1,19 @@
# svelte # svelte
## 5.38.9
### Patch Changes
- chore: generate CSS hash using the filename ([#16740](https://github.com/sveltejs/svelte/pull/16740))
- fix: correctly analyze `<object.property>` components ([#16711](https://github.com/sveltejs/svelte/pull/16711))
- fix: clean up scheduling system ([#16741](https://github.com/sveltejs/svelte/pull/16741))
- fix: transform input defaults from spread ([#16481](https://github.com/sveltejs/svelte/pull/16481))
- fix: don't destroy contents of `svelte:boundary` unless the boundary is an error boundary ([#16746](https://github.com/sveltejs/svelte/pull/16746))
## 5.38.8 ## 5.38.8
### 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.38.8", "version": "5.38.9",
"type": "module", "type": "module",
"types": "./types/index.d.ts", "types": "./types/index.d.ts",
"engines": { "engines": {

@ -4,5 +4,5 @@
* The current version, as set in package.json. * The current version, as set in package.json.
* @type {string} * @type {string}
*/ */
export const VERSION = '5.38.8'; export const VERSION = '5.38.9';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save