Version Packages (#14031)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/14045/head svelte@5.1.5
github-actions[bot] 6 days ago committed by GitHub
parent 4157db94c4
commit f519b3d7b7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: replace typo in compiler error messages

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: preserve the separator between selectors when an unused selector is in between

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: more robust re-subscribe detection for `fromStore`

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: allow to pass in TS preference to migration

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: extend derived/state validation error to indirect exports

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: minify inject CSS in prod mode

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: ensure toStore subscription correctly syncs latest value

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: don't access `requestAnimationFrame` until needed to reduce need for mocks during testing

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: ensure element effects are executed in the correct order

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: make compiler error extend from `Error`

@ -1,5 +1,29 @@
# svelte
## 5.1.5
### Patch Changes
- fix: replace typo in compiler error messages ([#14044](https://github.com/sveltejs/svelte/pull/14044))
- fix: preserve the separator between selectors when an unused selector is in between ([#13954](https://github.com/sveltejs/svelte/pull/13954))
- fix: more robust re-subscribe detection for `fromStore` ([#13995](https://github.com/sveltejs/svelte/pull/13995))
- fix: allow to pass in TS preference to migration ([#13929](https://github.com/sveltejs/svelte/pull/13929))
- fix: extend derived/state validation error to indirect exports ([#14039](https://github.com/sveltejs/svelte/pull/14039))
- fix: minify inject CSS in prod mode ([#14006](https://github.com/sveltejs/svelte/pull/14006))
- fix: ensure toStore subscription correctly syncs latest value ([#14015](https://github.com/sveltejs/svelte/pull/14015))
- fix: don't access `requestAnimationFrame` until needed to reduce need for mocks during testing ([#14040](https://github.com/sveltejs/svelte/pull/14040))
- fix: ensure element effects are executed in the correct order ([#14038](https://github.com/sveltejs/svelte/pull/14038))
- fix: make compiler error extend from `Error` ([#14036](https://github.com/sveltejs/svelte/pull/14036))
## 5.1.4
### Patch Changes

@ -2,7 +2,7 @@
"name": "svelte",
"description": "Cybernetically enhanced web apps",
"license": "MIT",
"version": "5.1.4",
"version": "5.1.5",
"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.1.4';
export const VERSION = '5.1.5';
export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save