Skip to content

Releases: NicolasCARPi/dropzone

7.3.0

03 Mar 15:55
7.3.0
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 7.2.1...7.3.0

dropzone-7.2.1

19 Feb 21:20
7.2.1
Compare
Choose a tag to compare

What's Changed

  • add null check to prevent uncaught type error on parent node by @toegl in #34

New Contributors

  • @toegl made their first contribution in #34

Full Changelog: 7.2.0...7.2.1

dropzone-7.2.0

29 Nov 09:36
7.2.0
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 7.1.6...7.2.0

dropzone-7.1.6

30 Oct 15:35
7.1.6
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 7.1.5...7.1.6

dropzone-7.1.5

12 Aug 10:20
7.1.5
Compare
Choose a tag to compare

7.1.5

  • Fix SASS deprecation warnings with version 1.77.7 (PR #14 by Jules)
  • Fix import statements in README.md (fix #16)
  • Mention the need for secure context in README (fix #13)
  • Upgrade @swc/helpers from 0.5.11 to 0.5.12

dropzone-7.1.4

07 Jul 13:59
7.1.4
Compare
Choose a tag to compare

Fix bug where using an ID for selecting the dropzone element would make the lib crash. fix #12

Full Changelog: 7.1.3...7.1.4

dropzone-7.1.3

05 Jul 15:33
7.1.3
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 7.1.2...7.1.3

7.1.2

23 Apr 15:58
7.1.2
Compare
Choose a tag to compare

7.1.2

A small patch release with an important bugfix that was asked by the community for a long time:

dropzone-7.1.1

13 Apr 01:28
7.1.1
Compare
Choose a tag to compare

7.1.1

A small patch release with an important bugfix that was asked by the community for a long time:

dropzone-7.1.0

12 Apr 22:24
7.1.0
Compare
Choose a tag to compare

7.1.0

With this release, we drop deprecated and old things, and bring back the test suite.

Breaking change

If you have acceptedMimeTypes in your options, replace it with acceptedFiles. This option was deprecated 3 years ago, and has now been completely removed.

The use of crypto.randomUUID() only works in secure contexts. If your service is running on HTTP, this might cause an issue.

Changes

  • All tests now run: a previous change made it run only one single test! (by using describe.only() instead of describe())
  • The test suite now runs on each commit in a GH Action
  • Remove a dependency on just-extend: use Object.assign() instead
  • Simplify greatly the browser detection and remove blockedBrowser code that only targeted opera 12 from 12 years ago
  • Removed some IE related code and simplified some code paths as we now expect a decent enough browser
  • Some code cleanup: remove unused variables
  • Use crypto.randomUUID instead of a custom function
  • Run CodeQL only in src/
  • Update cypress config