Skip to content

Update dependency react-dropzone to v14 - autoclosed

Renovate Bot requested to merge renovate/react-dropzone-14.x into master

This MR contains the following updates:

Package Change Age Adoption Passing Confidence
react-dropzone ^11.4.2 -> ^14.0.0 age adoption passing confidence

Release Notes

react-dropzone/react-dropzone

v14.2.3

Compare Source

Bug Fixes

v14.2.2

Compare Source

Bug Fixes
  • allow {accept} file selection w/o using the OS options (8127759)

v14.2.1

Compare Source

Bug Fixes
  • call onError if FS access API fails in secure ctx (a2039fd)

v14.2.0

Compare Source

Features
  • bump file-selector to v0.6 (239dd29)

v14.1.2

Compare Source

Bug Fixes
  • add missing onError type (7aff9a5)

v14.1.1

Compare Source

Bug Fixes
  • apply custom validator on {isDragAccept,isDragReject} (2d33fdf)

v14.1.0

Compare Source

Features

v14.0.1

Compare Source

Bug Fixes

v14.0.0

Compare Source

Features
BREAKING CHANGES
  • the {draggedFiles} prop on the returned hook state has been removed and the accept/reject state is only computed on drag enter and drop.

v13.0.0

Compare Source

Features
  • add {onError} cb to allow users to handle errors (9134893)
  • allow passing file ext. to the file picker options and close #​1141 (58976f4)
BREAKING CHANGES
  • The {accept} prop will now require an object instead of a string or array of strings:

Before:

useDropzone({
  accept: ".jpeg,.png"
  // accept: [".jpeg", ".png"]
})

After:

useDropzone({
  accept: {
    "image/*": [".jpeg", ".png"]
  }
})

v12.1.0

Compare Source

Features
  • deps: bump file-selector from 0.4.0 to 0.5.0 (2a71cc9)

v12.0.6

Compare Source

Bug Fixes
  • remove autocomplete for file input type (5bc4273)

v12.0.5

Compare Source

Bug Fixes
  • use KeyboardEvent.key to detect space/enter events (67e3f59)

v12.0.4

Compare Source

Bug Fixes

v12.0.3

Compare Source

Bug Fixes
  • fallback to input click to open the file picker (dbaec3f)

v12.0.2

Compare Source

Bug Fixes
  • do not use FS access API if code is not in secure context (8eb49d4)

v12.0.1

Compare Source

Bug Fixes
  • add useFsAccessApi type (df8a9b4)

v12.0.0

Compare Source

Features
  • enable file system access API by default (a034252)
BREAKING CHANGES

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever MR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this MR and you won't be reminded about this update again.


  • If you want to rebase/retry this MR, check this box

This MR has been generated by Renovate Bot.

Merge request reports