diff --git a/.changeset/destroy-instances.md b/.changeset/destroy-instances.md deleted file mode 100644 index 102182c0b..000000000 --- a/.changeset/destroy-instances.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"dropzone": patch ---- - -Stop `destroy()` removing a different instance. `Dropzone.instances.splice(indexOf(this), 1)` dropped the last entry whenever `indexOf` returned -1 — calling `destroy()` twice was enough — evicting an unrelated live Dropzone from the registry. diff --git a/.changeset/form-enctype.md b/.changeset/form-enctype.md deleted file mode 100644 index f9867a3f2..000000000 --- a/.changeset/form-enctype.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"dropzone": patch ---- - -Set `enctype="multipart/form-data"` on a form again. `init()` compared `tagName` against lower-case `"form"`, which never matches, so the attribute was never set. Only affects forms that are also submitted natively; the XHR upload is unchanged. diff --git a/packages/dropzone/CHANGELOG.md b/packages/dropzone/CHANGELOG.md index 4aa6007e9..8aa2f1838 100644 --- a/packages/dropzone/CHANGELOG.md +++ b/packages/dropzone/CHANGELOG.md @@ -1,3 +1,11 @@ +## 6.3.4 + +### Patch Changes + +- [#2377](https://github.com/enyo/dropzone/pull/2377) [`0b302ee`](https://github.com/enyo/dropzone/commit/0b302eee30dd709ea00f58ad43d33e3a48502cbb) - Stop `destroy()` removing a different instance. `Dropzone.instances.splice(indexOf(this), 1)` dropped the last entry whenever `indexOf` returned -1 — calling `destroy()` twice was enough — evicting an unrelated live Dropzone from the registry. + +- [#2377](https://github.com/enyo/dropzone/pull/2377) [`dc5d7bf`](https://github.com/enyo/dropzone/commit/dc5d7bfb1dd450baa467d4682d9fb3d12be30758) - Set `enctype="multipart/form-data"` on a form again. `init()` compared `tagName` against lower-case `"form"`, which never matches, so the attribute was never set. Only affects forms that are also submitted natively; the XHR upload is unchanged. + ## 6.3.3 ### Patch Changes diff --git a/packages/dropzone/package.json b/packages/dropzone/package.json index abfbee39d..02744eec5 100644 --- a/packages/dropzone/package.json +++ b/packages/dropzone/package.json @@ -1,6 +1,6 @@ { "name": "dropzone", - "version": "6.3.3", + "version": "6.3.4", "description": "Handles drag and drop of files for you.", "keywords": [ "drag and drop",