diff --git a/.changeset/shared-thumbnail-queue.md b/.changeset/shared-thumbnail-queue.md deleted file mode 100644 index afc819710..000000000 --- a/.changeset/shared-thumbnail-queue.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"dropzone": patch ---- - -Give each dropzone its own thumbnail queue. It lived on the prototype, so every dropzone on a page shared one: queuing a thumbnail on one was visible from the others, and they rendered from a single queue guarded by a single lock. Only pages with more than one dropzone were affected. diff --git a/.changeset/typescript-types.md b/.changeset/typescript-types.md deleted file mode 100644 index d4a1a1586..000000000 --- a/.changeset/typescript-types.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -"dropzone": minor ---- - -Ship TypeScript types. The library is now written in TypeScript and the package carries its own declarations, so `dropzone` is typed from its own source. - -If you installed `@types/dropzone`, uninstall it: it is stuck at `5.7.9` and describes the v5 API, so it will now conflict with — and is less accurate than — the types shipped here. - -`Dropzone.prototype.Emitter` is now `Dropzone.Emitter`. It was undocumented and described in the source as being exposed for tests, so this is unlikely to affect you; if you reached for it, the class is in the same place under the shorter name. diff --git a/packages/dropzone/CHANGELOG.md b/packages/dropzone/CHANGELOG.md index 6b324b1ff..33e8d6833 100644 --- a/packages/dropzone/CHANGELOG.md +++ b/packages/dropzone/CHANGELOG.md @@ -1,3 +1,17 @@ +## 6.3.0 + +### Minor Changes + +- [#2361](https://github.com/enyo/dropzone/pull/2361) [`4724f39`](https://github.com/enyo/dropzone/commit/4724f3907036904eefa8c3e82240ac47813f288f) - Ship TypeScript types. The library is now written in TypeScript and the package carries its own declarations, so `dropzone` is typed from its own source. + + If you installed `@types/dropzone`, uninstall it: it is stuck at `5.7.9` and describes the v5 API, so it will now conflict with — and is less accurate than — the types shipped here. + + `Dropzone.prototype.Emitter` is now `Dropzone.Emitter`. It was undocumented and described in the source as being exposed for tests, so this is unlikely to affect you; if you reached for it, the class is in the same place under the shorter name. + +### Patch Changes + +- [#2361](https://github.com/enyo/dropzone/pull/2361) [`4724f39`](https://github.com/enyo/dropzone/commit/4724f3907036904eefa8c3e82240ac47813f288f) - Give each dropzone its own thumbnail queue. It lived on the prototype, so every dropzone on a page shared one: queuing a thumbnail on one was visible from the others, and they rendered from a single queue guarded by a single lock. Only pages with more than one dropzone were affected. + ## 6.2.1 ### Patch Changes diff --git a/packages/dropzone/package.json b/packages/dropzone/package.json index 88ed3cc94..d82dcb14a 100644 --- a/packages/dropzone/package.json +++ b/packages/dropzone/package.json @@ -1,6 +1,6 @@ { "name": "dropzone", - "version": "6.2.1", + "version": "6.3.0", "description": "Handles drag and drop of files for you.", "keywords": [ "drag and drop",