Version Packages (#9121)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/9229/head svelte@4.2.1
github-actions[bot] 1 year ago committed by GitHub
parent 26eb2a2f89
commit bd5e5eef9b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: update style directive when style attribute is present and is updated via an object prop

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: css sourcemap generation with unicode filenames

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: do not add module declared variables as dependencies

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: handle `svelte:element` with dynamic this and spread attributes

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: silence false positive reactive component warning

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: head duplication when binding is present

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: take custom attribute name into account when reflecting property

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: add `indeterminate` to the list of HTMLAttributes

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: recognize option value on spread attribute

@ -1,5 +1,27 @@
# svelte
## 4.2.1
### Patch Changes
- fix: update style directive when style attribute is present and is updated via an object prop ([#9187](https://github.com/sveltejs/svelte/pull/9187))
- fix: css sourcemap generation with unicode filenames ([#9120](https://github.com/sveltejs/svelte/pull/9120))
- fix: do not add module declared variables as dependencies ([#9122](https://github.com/sveltejs/svelte/pull/9122))
- fix: handle `svelte:element` with dynamic this and spread attributes ([#9112](https://github.com/sveltejs/svelte/pull/9112))
- fix: silence false positive reactive component warning ([#9094](https://github.com/sveltejs/svelte/pull/9094))
- fix: head duplication when binding is present ([#9124](https://github.com/sveltejs/svelte/pull/9124))
- fix: take custom attribute name into account when reflecting property ([#9140](https://github.com/sveltejs/svelte/pull/9140))
- fix: add `indeterminate` to the list of HTMLAttributes ([#9180](https://github.com/sveltejs/svelte/pull/9180))
- fix: recognize option value on spread attribute ([#9125](https://github.com/sveltejs/svelte/pull/9125))
## 4.2.0
### Minor Changes

@ -1,6 +1,6 @@
{
"name": "svelte",
"version": "4.2.0",
"version": "4.2.1",
"description": "Cybernetically enhanced web apps",
"type": "module",
"module": "src/runtime/index.js",

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

Loading…
Cancel
Save