svelte 3.52.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,11 @@
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
+
3
9
  ## 3.52.0
4
10
 
5
11
  * Throw compile-time error when attempting to update `const` variable ([#4895](https://github.com/sveltejs/svelte/issues/4895))
@@ -1201,7 +1207,7 @@ Also:
1201
1207
  ## 2.12.0
1202
1208
 
1203
1209
  * Initialise actions on mount rather than hydrate ([#1653](https://github.com/sveltejs/svelte/pull/1653))
1204
- * 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))
1205
1211
  * Pass AMD ID from CLI correctly ([#1672](https://github.com/sveltejs/svelte/pull/1672))
1206
1212
  * Minor AST tweaks ([#1673](https://github.com/sveltejs/svelte/pull/1673), [#1674](https://github.com/sveltejs/svelte/pull/1674))
1207
1213
  * Reduce code duplication in component initialisation ([#1670](https://github.com/sveltejs/svelte/pull/1670))