diff --git a/CHANGELOG.md b/CHANGELOG.md index 566fde5005..4669cb906f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Svelte changelog +## 3.15.0 + +* Hide commented sections from preprocessors ([#3894](https://github.com/sveltejs/svelte/pull/3894)) +* Add `seeking` and `ended` bindings to media elements ([#3650](https://github.com/sveltejs/svelte/pull/3650)) +* Add `videoWidth` and `videoHeight` bindings to video elements ([#3927](https://github.com/sveltejs/svelte/pull/3927)) +* Fix for dynamic event handlers ([#3934](https://github.com/sveltejs/svelte/pull/3934)) +* Handle scale transforms when using the `flip` animation ([#3555](https://github.com/sveltejs/svelte/issues/3555)) +* Fix some code generation bugs ([#3929](https://github.com/sveltejs/svelte/issues/3929), [#3939](https://github.com/sveltejs/svelte/issues/3939)) +* Add `aria-hidden="true"` to objects generated when adding resize-listeners, to improve accessibility ([#3948](https://github.com/sveltejs/svelte/issues/3948)) + ## 3.14.1 * Deconflict block method names with other variables ([#3900](https://github.com/sveltejs/svelte/issues/3900)) diff --git a/package-lock.json b/package-lock.json index af3bd9f4b1..1af50ed642 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "svelte", - "version": "3.14.1", + "version": "3.15.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 00f617a5bb..8584ac6ff8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "svelte", - "version": "3.14.1", + "version": "3.15.0", "description": "Cybernetically enhanced web apps", "module": "index.mjs", "main": "index", diff --git a/site/content/docs/02-template-syntax.md b/site/content/docs/02-template-syntax.md index 345dee1556..89506753d6 100644 --- a/site/content/docs/02-template-syntax.md +++ b/site/content/docs/02-template-syntax.md @@ -563,12 +563,14 @@ Elements with the `contenteditable` attribute support `innerHTML` and `textConte --- -Media elements (`