pull/8571/head v3.59.1
Conduitry 1 year ago
parent b6288ecdb7
commit 64b8c8b33c

@ -1,6 +1,6 @@
# Svelte changelog
## 3.59.1 (Unreleased)
## 3.59.1
* Handle dynamic values in `a11y-autocomplete-valid` ([#8567](https://github.com/sveltejs/svelte/pull/8567))
@ -16,6 +16,7 @@
* Fix type of `VERSION` compiler export ([#8498](https://github.com/sveltejs/svelte/issues/8498))
* Relax `a11y-no-redundant-roles` warning ([#8536](https://github.com/sveltejs/svelte/pull/8536))
* Handle nested array rest destructuring ([#8552](https://github.com/sveltejs/svelte/issues/8552), [#8554](https://github.com/sveltejs/svelte/issues/8554))
## 3.58.0
* Add `bind:innerText` for `contenteditable` elements ([#3311](https://github.com/sveltejs/svelte/issues/3311))

4
package-lock.json generated

@ -1,12 +1,12 @@
{
"name": "svelte",
"version": "3.59.0",
"version": "3.59.1",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "svelte",
"version": "3.59.0",
"version": "3.59.1",
"license": "MIT",
"devDependencies": {
"@ampproject/remapping": "^0.3.0",

@ -1,6 +1,6 @@
{
"name": "svelte",
"version": "3.59.0",
"version": "3.59.1",
"description": "Cybernetically enhanced web apps",
"module": "index.mjs",
"main": "index",

Loading…
Cancel
Save