Version Packages (#17508)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
pull/17516/head svelte@5.48.0
github-actions[bot] 7 days ago committed by GitHub
parent 0ce2313e35
commit c1fab8caae
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,5 +0,0 @@
---
"svelte": patch
---
fix: handle non-string values in `svelte:element` `this` attribute

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: faster deduplication of dependencies

@ -1,5 +0,0 @@
---
'svelte': minor
---
feat: export `parseCss` from `svelte/compiler`

@ -1,5 +1,17 @@
# svelte
## 5.48.0
### Minor Changes
- feat: export `parseCss` from `svelte/compiler` ([#17496](https://github.com/sveltejs/svelte/pull/17496))
### Patch Changes
- fix: handle non-string values in `svelte:element` `this` attribute ([#17499](https://github.com/sveltejs/svelte/pull/17499))
- fix: faster deduplication of dependencies ([#17503](https://github.com/sveltejs/svelte/pull/17503))
## 5.47.1
### Patch Changes

@ -2,7 +2,7 @@
"name": "svelte",
"description": "Cybernetically enhanced web apps",
"license": "MIT",
"version": "5.47.1",
"version": "5.48.0",
"type": "module",
"types": "./types/index.d.ts",
"engines": {

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

Loading…
Cancel
Save