diff --git a/CHANGELOG.md b/CHANGELOG.md index e8f1c6ecfbc0..1527b96b84e6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Svelte changelog +## 2.14.0 + +* Refactor internals ([#1678](https://github.com/sveltejs/svelte/issues/1678)) +* Deprecate `onerror` option ([#1745](https://github.com/sveltejs/svelte/issues/1745)) +* Handle edge cases where `destroy` is called before `mount` ([#1653](https://github.com/sveltejs/svelte/pull/1653)) +* Make `scroll` binding more efficient ([#1579](https://github.com/sveltejs/svelte/pull/1770)) +* Make 'readonly property' store error more informative ([#1761](https://github.com/sveltejs/svelte/pull/1761)) + ## 2.13.5 * Fix missing dependencies in shorthand class directives ([#1739](https://github.com/sveltejs/svelte/issues/1739)) diff --git a/package-lock.json b/package-lock.json index 454e973b5621..779db1820407 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1268,8 +1268,8 @@ "integrity": "sha1-N53Ocw9hZvds76TmcHoVmwLFpvo=", "dev": true, "requires": { - "esutils": "2.0.2", - "isarray": "1.0.0" + "esutils": "^2.0.2", + "isarray": "^1.0.0" } } } @@ -5893,7 +5893,7 @@ "integrity": "sha512-oreip9rJZkzvA8Qzk9HFs8fZGF/u7H/gtrE8EN6RjKJ9kh2HlC+yQ2QezifqTZfGyiuAV0dRv5a+y/8gBb1m9w==", "dev": true, "requires": { - "vlq": "0.2.3" + "vlq": "^0.2.2" } }, "vlq": { @@ -6589,7 +6589,7 @@ "dependencies": { "minimist": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", + "resolved": "http://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", "dev": true } diff --git a/package.json b/package.json index 3916130a8f63..5e63178c16d9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "svelte", - "version": "2.13.5", + "version": "2.14.0", "description": "The magical disappearing UI framework", "main": "compiler/svelte.js", "bin": {