Version Packages (#14570)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/14574/head svelte@5.7.0
github-actions[bot] 3 weeks ago committed by GitHub
parent 0a9890bb1e
commit 7f5172745d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: treat `undefined` and `null` the same for the initial input value

@ -1,5 +0,0 @@
---
'svelte': minor
---
feat: add `createSubscriber` function for creating reactive values that depend on subscriptions

@ -1,5 +0,0 @@
---
'svelte': minor
---
feat: add reactive `MediaQuery` class, and a `prefersReducedMotion` class instance

@ -1,5 +1,17 @@
# svelte
## 5.7.0
### Minor Changes
- feat: add `createSubscriber` function for creating reactive values that depend on subscriptions ([#14422](https://github.com/sveltejs/svelte/pull/14422))
- feat: add reactive `MediaQuery` class, and a `prefersReducedMotion` class instance ([#14422](https://github.com/sveltejs/svelte/pull/14422))
### Patch Changes
- fix: treat `undefined` and `null` the same for the initial input value ([#14562](https://github.com/sveltejs/svelte/pull/14562))
## 5.6.2
### Patch Changes

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

@ -6,5 +6,5 @@
* https://svelte.dev/docs/svelte-compiler#svelte-version
* @type {string}
*/
export const VERSION = '5.6.2';
export const VERSION = '5.7.0';
export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save