Version Packages (#14970)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/15005/head svelte@5.17.4
github-actions[bot] 8 months ago committed by GitHub
parent 8a1acac084
commit efa5acf24e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: never consider inert boundary effects

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: store access on component destroy

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: correctly transform `pre` with no content

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: wrap each block expression in derived to encapsulate effects

@ -1,5 +1,17 @@
# svelte # svelte
## 5.17.4
### Patch Changes
- fix: never consider inert boundary effects ([#14999](https://github.com/sveltejs/svelte/pull/14999))
- fix: store access on component destroy ([#14968](https://github.com/sveltejs/svelte/pull/14968))
- fix: correctly transform `pre` with no content ([#14973](https://github.com/sveltejs/svelte/pull/14973))
- fix: wrap each block expression in derived to encapsulate effects ([#14967](https://github.com/sveltejs/svelte/pull/14967))
## 5.17.3 ## 5.17.3
### 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.17.3", "version": "5.17.4",
"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.17.3'; export const VERSION = '5.17.4';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save