Comparing version 1.25.1 to 1.26.0
# Svelte changelog | ||
## 1.26.0 | ||
* Enforce correct order of operations when initialising ([#708](https://github.com/sveltejs/svelte/issues/708) and [#714](https://github.com/sveltejs/svelte/issues/714)) | ||
* Ensure data is up-to-date when re-rendering yield block ([#711](https://github.com/sveltejs/svelte/issues/711)) | ||
* Fix unescaping of strings, preserve at-rules in CSS ([#712](https://github.com/sveltejs/svelte/issues/712)) | ||
* Preserve whitespace at end of each blocks ([#713](https://github.com/sveltejs/svelte/issues/713)) | ||
## 1.25.1 | ||
@@ -4,0 +11,0 @@ |
{ | ||
"name": "svelte", | ||
"version": "1.25.1", | ||
"version": "1.26.0", | ||
"description": "The magical disappearing UI framework", | ||
@@ -5,0 +5,0 @@ "main": "compiler/svelte.js", |
@@ -424,3 +424,8 @@ function noop() {} | ||
this._set(assign({}, newState)); | ||
if (this._root._lock) return; | ||
this._root._lock = true; | ||
callAll(this._root._beforecreate); | ||
callAll(this._root._oncreate); | ||
callAll(this._root._aftercreate); | ||
this._root._lock = false; | ||
} | ||
@@ -427,0 +432,0 @@ |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1777325
15761
31
49
6
302