Comparing version 1.53.0 to 1.54.0
# Svelte changelog | ||
## 1.54.0 | ||
* Run `oncreate` hooks depth-first, top-to-bottom ([#1135](https://github.com/sveltejs/svelte/issues/1135)) | ||
* Render boolean attributes correctly in SSR mode ([#1109](https://github.com/sveltejs/svelte/issues/1109)) | ||
* Add `feed` aria role to expected roles when doing a11y checks ([#1124](https://github.com/sveltejs/svelte/pull/1124)) | ||
* More complete fix for case sensitive attributes ([#1062](https://github.com/sveltejs/svelte/issues/1062)) | ||
* Handle CLRF line endings in await block comments ([#1132](https://github.com/sveltejs/svelte/issues/1132)) | ||
## 1.53.0 | ||
@@ -4,0 +12,0 @@ |
{ | ||
"name": "svelte", | ||
"version": "1.53.0", | ||
"version": "1.54.0", | ||
"description": "The magical disappearing UI framework", | ||
@@ -60,3 +60,3 @@ "main": "compiler/svelte.js", | ||
"is-reference": "^1.1.0", | ||
"jsdom": "^11.1.0", | ||
"jsdom": "^11.6.1", | ||
"locate-character": "^2.0.0", | ||
@@ -63,0 +63,0 @@ "magic-string": "^0.22.3", |
@@ -575,3 +575,3 @@ function noop() {} | ||
function callAll(fns) { | ||
while (fns && fns.length) fns.pop()(); | ||
while (fns && fns.length) fns.shift()(); | ||
} | ||
@@ -578,0 +578,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
2287629
19946