Version Packages (#15052)

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

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: omit unnecessary nullish coallescing in template expressions

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: more efficient template effect grouping

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: ensure untrack correctly retains the active reaction

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: initialize `files` bind on hydration

@ -1,5 +1,17 @@
# svelte # svelte
## 5.19.1
### Patch Changes
- fix: omit unnecessary nullish coallescing in template expressions ([#15056](https://github.com/sveltejs/svelte/pull/15056))
- fix: more efficient template effect grouping ([#15050](https://github.com/sveltejs/svelte/pull/15050))
- fix: ensure untrack correctly retains the active reaction ([#15065](https://github.com/sveltejs/svelte/pull/15065))
- fix: initialize `files` bind on hydration ([#15059](https://github.com/sveltejs/svelte/pull/15059))
## 5.19.0 ## 5.19.0
### Minor Changes ### Minor 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.19.0", "version": "5.19.1",
"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.19.0'; export const VERSION = '5.19.1';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save