svelte 3.51.0 → 3.53.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Svelte changelog
2
2
 
3
+ ## 3.53.0
4
+
5
+ * Check whether `parentNode` exists before removing child ([#6037](https://github.com/sveltejs/svelte/issues/6037))
6
+ * Upgrade various dependencies, notably `css-tree` to `2.2.1` ([#7572](https://github.com/sveltejs/svelte/pull/7572), [#7982](https://github.com/sveltejs/svelte/pull/7982))
7
+ * Extend `css` compiler option with `'external' | 'injected' | 'none'` settings and deprecate old `true | false` values ([#7914](https://github.com/sveltejs/svelte/pull/7914))
8
+
9
+ ## 3.52.0
10
+
11
+ * Throw compile-time error when attempting to update `const` variable ([#4895](https://github.com/sveltejs/svelte/issues/4895))
12
+ * Warn when using `<a target="_blank">` without `rel="noreferrer"` ([#6188](https://github.com/sveltejs/svelte/issues/6188))
13
+ * Support `style:foo|important` modifier ([#7365](https://github.com/sveltejs/svelte/issues/7365))
14
+ * Fix hydration regression with `{@html}` and components in `<svelte:head>` ([#7941](https://github.com/sveltejs/svelte/pull/7941))
15
+
3
16
  ## 3.51.0
4
17
 
5
18
  * Add a11y warnings:
@@ -1194,7 +1207,7 @@ Also:
1194
1207
  ## 2.12.0
1195
1208
 
1196
1209
  * Initialise actions on mount rather than hydrate ([#1653](https://github.com/sveltejs/svelte/pull/1653))
1197
- * Allow non-existent components to be destroyed ([#1677](https://github.com/sveltejs/svelte/pull/1677))
1210
+ * Allow nonexistent components to be destroyed ([#1677](https://github.com/sveltejs/svelte/pull/1677))
1198
1211
  * Pass AMD ID from CLI correctly ([#1672](https://github.com/sveltejs/svelte/pull/1672))
1199
1212
  * Minor AST tweaks ([#1673](https://github.com/sveltejs/svelte/pull/1673), [#1674](https://github.com/sveltejs/svelte/pull/1674))
1200
1213
  * Reduce code duplication in component initialisation ([#1670](https://github.com/sveltejs/svelte/pull/1670))