diff --git a/CHANGELOG.md b/CHANGELOG.md index f079922149..1dd186cfcb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,13 @@ # Svelte changelog -## Unreleased +## 3.46.4 * Avoid `maximum call stack size exceeded` errors on large components ([#4694](https://github.com/sveltejs/svelte/issues/4694)) -* Keep space in `
` tags or when `preserveWhitespace` is `true`([#6437](https://github.com/sveltejs/svelte/issues/6437), [#4731](https://github.com/sveltejs/svelte/issues/4731)) -* Better error message when trying to use style directives on inline components ([#7177](https://github.com/sveltejs/svelte/issues/7177)) +* Preserve leading space with `preserveWhitespace: true` ([#4731](https://github.com/sveltejs/svelte/issues/4731)) +* Preserve leading space in `` tags ([#6437](https://github.com/sveltejs/svelte/issues/6437)) +* Improve error message when trying to use `style:` directives on inline components ([#7177](https://github.com/sveltejs/svelte/issues/7177)) * Add `FormData` as a known global ([#7199](https://github.com/sveltejs/svelte/pull/7199)) -* Mark `css`/`instance`/`module` Ast properties as optional ([#7204](https://github.com/sveltejs/svelte/pull/7204)) +* Mark `css`/`instance`/`module` AST properties as optional in types ([#7204](https://github.com/sveltejs/svelte/pull/7204)) ## 3.46.3 diff --git a/package-lock.json b/package-lock.json index 7681615287..e9b672d689 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { "name": "svelte", - "version": "3.46.3", + "version": "3.46.4", "lockfileVersion": 2, "requires": true, "packages": { "": { - "version": "3.46.3", + "version": "3.46.4", "license": "MIT", "devDependencies": { "@ampproject/remapping": "^0.3.0", diff --git a/package.json b/package.json index e20d33f81d..2ca79c5fa8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "svelte", - "version": "3.46.3", + "version": "3.46.4", "description": "Cybernetically enhanced web apps", "module": "index.mjs", "main": "index",