Skip to content

Bump the js-production-dependencies group across 1 directory with 10 updates#5563

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/js-production-dependencies-4d0babaa5b
Closed

Bump the js-production-dependencies group across 1 directory with 10 updates#5563
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/js-production-dependencies-4d0babaa5b

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 25, 2026

Bumps the js-production-dependencies group with 7 updates in the / directory:

Package From To
@uppy/aws-s3 3.6.2 5.1.0
@uppy/core 3.13.1 5.2.0
@uppy/file-input 3.1.2 4.2.2
@uppy/informer 3.1.0 4.3.2
@uppy/progress-bar 3.1.1 4.3.2
@uppy/thumbnail-generator 3.1.0 5.1.0
@transloadit/prettier-bytes 0.3.4 0.3.5

Updates @uppy/aws-s3 from 3.6.2 to 5.1.0

Changelog

Sourced from @​uppy/aws-s3's changelog.

Changelog

This is our changelog which contains planned todos and past dones.

Items can be optionally tagged by the GitHub issue's owner, if a discussion happened / is needed.

Please add your entries in this format:

  • - [ ] (<plugin name>|website|core|meta|build|test): <Present tense verb> <subject> \(<list of associated owners/gh-issues>\).

In the current stage we aim to release a new version at least every month.

4.18.0

Released: 2025-06-30

Package Version Package Version
@​uppy/components 0.2.0 @​uppy/remote-sources 2.3.4
@​uppy/core 4.4.7 @​uppy/screen-capture 4.3.1
@​uppy/google-drive-picker 0.3.6 @​uppy/svelte 4.5.0
@​uppy/google-photos-picker 0.3.6 @​uppy/vue 2.3.0
@​uppy/locales 4.6.0 @​uppy/webcam 4.2.1
@​uppy/provider-views 4.4.5 uppy 4.18.0
@​uppy/react 4.4.0
  • meta: Remove remark reference from CI (Murderlon)
  • @​uppy/components,@​uppy/screen-capture: useScreenCapture fixes (Prakash / #5793)
  • examples: Add useRemoteSource (Merlijn Vos / #5778)
  • @​uppy/components: Use webcam fixes2 (Mikael Finstad / #5791)
  • meta: Remove remark (Merlijn Vos / #5790)
  • meta: Delete old, unused files (Merlijn Vos / #5788)
  • meta: Sort package.json (Murderlon)
  • examples: Headless Hooks: Add useScreenCapture (Prakash / #5784)
  • @​uppy/locales: Update pt_BR localization (Gabriel Pereira / #5780)
  • e2e: Skip for now then (Murderlon)
  • e2e: fixup! Fix CI for now (Murderlon)
  • e2e: Fix CI for now (Murderlon)
  • examples: Add useWebcam (Merlijn Vos / #5741)
  • @​uppy/react,@​uppy/svelte,@​uppy/vue: Add useDropzone & useFileInput (Merlijn Vos / #5735)
  • meta: build(deps): bump base-x from 3.0.9 to 3.0.11 (dependabot[bot] / #5772)
  • @​uppy/provider-views: improve metadata handling in Google Photos Picker (ben rosenbaum / #5769)

4.17.0

Released: 2025-06-02

... (truncated)

Commits
  • 556e36d [ci] release (#6060)
  • 5b680f2 build(deps): bump body-parser from 1.20.3 to 1.20.4 (#6070)
  • 39b82fd build(deps): bump express from 4.19.2 to 4.22.0 (#6079)
  • 21a8f1a build(deps): bump @​angular/common from 19.2.14 to 19.2.16 (#6072)
  • d2637e4 build(deps): bump validator from 13.12.0 to 13.15.20 (#6041)
  • 80addcc build(deps): bump js-yaml from 3.14.1 to 3.14.2 (#6067)
  • 52704c6 build(deps): bump node-forge from 1.3.1 to 1.3.2 (#6071)
  • 3197264 build(deps): bump docker/metadata-action from 5.9.0 to 5.10.0 (#6077)
  • d3baf1b build(deps): bump @​angular/compiler from 19.2.14 to 19.2.17 (#6078)
  • 54a3316 Fix changeset
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by uppydev, a new releaser for @​uppy/aws-s3 since your current version.


Updates @uppy/core from 3.13.1 to 5.2.0

Release notes

Sourced from @​uppy/core's releases.

@​uppy/core@​5.2.0

Minor Changes

  • 79e6460: - Add PluginTypeRegistry and typed getPlugin overload in @​uppy/core
    • Register plugin ids across packages so uppy.getPlugin('Dashboard' | 'Webcam') returns the concrete plugin type and removes the need to pass generics in getPlugin()

Patch Changes

  • ac12f35: Fix: Move completed uploads exclusion logic into uploaders. This fixes the problem where postprocessors would not run for already uploaded files.
  • 4817585: added icon to webdav provider, add css to truncate large file names
  • Updated dependencies [ac12f35]
    • @​uppy/utils@​7.1.4

@​uppy/core@​5.1.1

Patch Changes

  • 0c16fe4: - Make file.data nullable - Because for ghosts it will be undefined and we don't have any type to distinguish ghosts from other (local) files. This caused a crash, because we didn't check for undefined everywhere (when trying to store a blob that was undefined)
    • Introduce new field progress.complete: if there is a post-processing step, set it to true once post processing is complete. If not, set it to true once upload has finished.
    • Throw a proper Nonexistent upload error message if trying to upload a non-existent upload, instead of TypeError
    • Rewrite Uppy.upload() - this fixes two bugs:
      1. No more duplicate emit call when this.#restricter.validateMinNumberOfFiles throws (#informAndEmit and this.emit('error'))
      2. 'restriction-failed' now also gets correctly called when checkRequiredMetaFields check errors.
    • Don't re-upload completed files #5930
    • Split UppyFile into two intefaces distinguished by the isRemote boolean:
      • LocalUppyFile
      • RemoteUppyFile
    • Remove TagFile type - Use UppyFile instead.
    • Make name required on UppyFile (it is in reality always set)
    • Fix bug: RestrictionError sometimes thrown with a file property that was not a UppyFile, but a File. This would happen if someone passed a File instead of a MinimalRequiredUppyFile into core.addFile (which is valid to do according to our API)
    • Improve some log messages
    • Simplify Uppy postprocess-complete handler
  • Updated dependencies [0c16fe4]
    • @​uppy/utils@​7.1.1

@​uppy/core@​5.1.0

Minor Changes

  • 5ba2c1c: Introduce the concept of server-side search and add support for it for the Dropbox provider. Previously, only client-side filtering in the currently viewed folder was possible, which was limiting. Now users using Companion with Dropbox can perform a search across their entire account.

Patch Changes

  • Updated dependencies [5ba2c1c]
    • @​uppy/utils@​7.1.0
Changelog

Sourced from @​uppy/core's changelog.

Changelog

This is our changelog which contains planned todos and past dones.

Items can be optionally tagged by the GitHub issue's owner, if a discussion happened / is needed.

Please add your entries in this format:

  • - [ ] (<plugin name>|website|core|meta|build|test): <Present tense verb> <subject> \(<list of associated owners/gh-issues>\).

In the current stage we aim to release a new version at least every month.

4.18.0

Released: 2025-06-30

Package Version Package Version
@​uppy/components 0.2.0 @​uppy/remote-sources 2.3.4
@​uppy/core 4.4.7 @​uppy/screen-capture 4.3.1
@​uppy/google-drive-picker 0.3.6 @​uppy/svelte 4.5.0
@​uppy/google-photos-picker 0.3.6 @​uppy/vue 2.3.0
@​uppy/locales 4.6.0 @​uppy/webcam 4.2.1
@​uppy/provider-views 4.4.5 uppy 4.18.0
@​uppy/react 4.4.0
  • meta: Remove remark reference from CI (Murderlon)
  • @​uppy/components,@​uppy/screen-capture: useScreenCapture fixes (Prakash / #5793)
  • examples: Add useRemoteSource (Merlijn Vos / #5778)
  • @​uppy/components: Use webcam fixes2 (Mikael Finstad / #5791)
  • meta: Remove remark (Merlijn Vos / #5790)
  • meta: Delete old, unused files (Merlijn Vos / #5788)
  • meta: Sort package.json (Murderlon)
  • examples: Headless Hooks: Add useScreenCapture (Prakash / #5784)
  • @​uppy/locales: Update pt_BR localization (Gabriel Pereira / #5780)
  • e2e: Skip for now then (Murderlon)
  • e2e: fixup! Fix CI for now (Murderlon)
  • e2e: Fix CI for now (Murderlon)
  • examples: Add useWebcam (Merlijn Vos / #5741)
  • @​uppy/react,@​uppy/svelte,@​uppy/vue: Add useDropzone & useFileInput (Merlijn Vos / #5735)
  • meta: build(deps): bump base-x from 3.0.9 to 3.0.11 (dependabot[bot] / #5772)
  • @​uppy/provider-views: improve metadata handling in Google Photos Picker (ben rosenbaum / #5769)

4.17.0

Released: 2025-06-02

... (truncated)

Commits
  • 556e36d [ci] release (#6060)
  • 5b680f2 build(deps): bump body-parser from 1.20.3 to 1.20.4 (#6070)
  • 39b82fd build(deps): bump express from 4.19.2 to 4.22.0 (#6079)
  • 21a8f1a build(deps): bump @​angular/common from 19.2.14 to 19.2.16 (#6072)
  • d2637e4 build(deps): bump validator from 13.12.0 to 13.15.20 (#6041)
  • 80addcc build(deps): bump js-yaml from 3.14.1 to 3.14.2 (#6067)
  • 52704c6 build(deps): bump node-forge from 1.3.1 to 1.3.2 (#6071)
  • 3197264 build(deps): bump docker/metadata-action from 5.9.0 to 5.10.0 (#6077)
  • d3baf1b build(deps): bump @​angular/compiler from 19.2.14 to 19.2.17 (#6078)
  • 54a3316 Fix changeset
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by uppydev, a new releaser for @​uppy/core since your current version.


Updates @uppy/file-input from 3.1.2 to 4.2.2

Release notes

Sourced from @​uppy/file-input's releases.

@​uppy/aws-s3@​5.1.0

Minor Changes

  • 79e6460: - Add PluginTypeRegistry and typed getPlugin overload in @​uppy/core
    • Register plugin ids across packages so uppy.getPlugin('Dashboard' | 'Webcam') returns the concrete plugin type and removes the need to pass generics in getPlugin()

Patch Changes

  • ac12f35: Fix: Move completed uploads exclusion logic into uploaders. This fixes the problem where postprocessors would not run for already uploaded files.
  • Updated dependencies [79e6460]
  • Updated dependencies [ac12f35]
  • Updated dependencies [4817585]

@​uppy/zoom@​4.1.0

Minor Changes

  • 79e6460: - Add PluginTypeRegistry and typed getPlugin overload in @​uppy/core
    • Register plugin ids across packages so uppy.getPlugin('Dashboard' | 'Webcam') returns the concrete plugin type and removes the need to pass generics in getPlugin()

Patch Changes

  • Updated dependencies [e661348]
  • Updated dependencies [79e6460]
  • Updated dependencies [ac12f35]
  • Updated dependencies [4817585]
    • @​uppy/provider-views@​5.2.0
    • @​uppy/core@​5.2.0
    • @​uppy/utils@​7.1.4

@​uppy/box@​4.1.0

Minor Changes

  • 79e6460: - Add PluginTypeRegistry and typed getPlugin overload in @​uppy/core
    • Register plugin ids across packages so uppy.getPlugin('Dashboard' | 'Webcam') returns the concrete plugin type and removes the need to pass generics in getPlugin()

Patch Changes

  • Updated dependencies [e661348]
  • Updated dependencies [79e6460]
  • Updated dependencies [ac12f35]
  • Updated dependencies [4817585]
    • @​uppy/provider-views@​5.2.0
    • @​uppy/core@​5.2.0
    • @​uppy/utils@​7.1.4

@​uppy/drop-target@​4.1.0

Minor Changes

... (truncated)

Changelog

Sourced from @​uppy/file-input's changelog.

Changelog

This is our changelog which contains planned todos and past dones.

Items can be optionally tagged by the GitHub issue's owner, if a discussion happened / is needed.

Please add your entries in this format:

  • - [ ] (<plugin name>|website|core|meta|build|test): <Present tense verb> <subject> \(<list of associated owners/gh-issues>\).

In the current stage we aim to release a new version at least every month.

4.18.0

Released: 2025-06-30

Package Version Package Version
@​uppy/components 0.2.0 @​uppy/remote-sources 2.3.4
@​uppy/core 4.4.7 @​uppy/screen-capture 4.3.1
@​uppy/google-drive-picker 0.3.6 @​uppy/svelte 4.5.0
@​uppy/google-photos-picker 0.3.6 @​uppy/vue 2.3.0
@​uppy/locales 4.6.0 @​uppy/webcam 4.2.1
@​uppy/provider-views 4.4.5 uppy 4.18.0
@​uppy/react 4.4.0
  • meta: Remove remark reference from CI (Murderlon)
  • @​uppy/components,@​uppy/screen-capture: useScreenCapture fixes (Prakash / #5793)
  • examples: Add useRemoteSource (Merlijn Vos / #5778)
  • @​uppy/components: Use webcam fixes2 (Mikael Finstad / #5791)
  • meta: Remove remark (Merlijn Vos / #5790)
  • meta: Delete old, unused files (Merlijn Vos / #5788)
  • meta: Sort package.json (Murderlon)
  • examples: Headless Hooks: Add useScreenCapture (Prakash / #5784)
  • @​uppy/locales: Update pt_BR localization (Gabriel Pereira / #5780)
  • e2e: Skip for now then (Murderlon)
  • e2e: fixup! Fix CI for now (Murderlon)
  • e2e: Fix CI for now (Murderlon)
  • examples: Add useWebcam (Merlijn Vos / #5741)
  • @​uppy/react,@​uppy/svelte,@​uppy/vue: Add useDropzone & useFileInput (Merlijn Vos / #5735)
  • meta: build(deps): bump base-x from 3.0.9 to 3.0.11 (dependabot[bot] / #5772)
  • @​uppy/provider-views: improve metadata handling in Google Photos Picker (ben rosenbaum / #5769)

4.17.0

Released: 2025-06-02

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by uppydev, a new releaser for @​uppy/file-input since your current version.


Updates @uppy/informer from 3.1.0 to 4.3.2

Release notes

Sourced from @​uppy/informer's releases.

@​uppy/zoom@​4.1.0

Minor Changes

  • 79e6460: - Add PluginTypeRegistry and typed getPlugin overload in @​uppy/core
    • Register plugin ids across packages so uppy.getPlugin('Dashboard' | 'Webcam') returns the concrete plugin type and removes the need to pass generics in getPlugin()

Patch Changes

  • Updated dependencies [e661348]
  • Updated dependencies [79e6460]
  • Updated dependencies [ac12f35]
  • Updated dependencies [4817585]
    • @​uppy/provider-views@​5.2.0
    • @​uppy/core@​5.2.0
    • @​uppy/utils@​7.1.4
Changelog

Sourced from @​uppy/informer's changelog.

Changelog

This is our changelog which contains planned todos and past dones.

Items can be optionally tagged by the GitHub issue's owner, if a discussion happened / is needed.

Please add your entries in this format:

  • - [ ] (<plugin name>|website|core|meta|build|test): <Present tense verb> <subject> \(<list of associated owners/gh-issues>\).

In the current stage we aim to release a new version at least every month.

4.18.0

Released: 2025-06-30

Package Version Package Version
@​uppy/components 0.2.0 @​uppy/remote-sources 2.3.4
@​uppy/core 4.4.7 @​uppy/screen-capture 4.3.1
@​uppy/google-drive-picker 0.3.6 @​uppy/svelte 4.5.0
@​uppy/google-photos-picker 0.3.6 @​uppy/vue 2.3.0
@​uppy/locales 4.6.0 @​uppy/webcam 4.2.1
@​uppy/provider-views 4.4.5 uppy 4.18.0
@​uppy/react 4.4.0
  • meta: Remove remark reference from CI (Murderlon)
  • @​uppy/components,@​uppy/screen-capture: useScreenCapture fixes (Prakash / #5793)
  • examples: Add useRemoteSource (Merlijn Vos / #5778)
  • @​uppy/components: Use webcam fixes2 (Mikael Finstad / #5791)
  • meta: Remove remark (Merlijn Vos / #5790)
  • meta: Delete old, unused files (Merlijn Vos / #5788)
  • meta: Sort package.json (Murderlon)
  • examples: Headless Hooks: Add useScreenCapture (Prakash / #5784)
  • @​uppy/locales: Update pt_BR localization (Gabriel Pereira / #5780)
  • e2e: Skip for now then (Murderlon)
  • e2e: fixup! Fix CI for now (Murderlon)
  • e2e: Fix CI for now (Murderlon)
  • examples: Add useWebcam (Merlijn Vos / #5741)
  • @​uppy/react,@​uppy/svelte,@​uppy/vue: Add useDropzone & useFileInput (Merlijn Vos / #5735)
  • meta: build(deps): bump base-x from 3.0.9 to 3.0.11 (dependabot[bot] / #5772)
  • @​uppy/provider-views: improve metadata handling in Google Photos Picker (ben rosenbaum / #5769)

4.17.0

Released: 2025-06-02

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by uppydev, a new releaser for @​uppy/informer since your current version.


Updates @uppy/progress-bar from 3.1.1 to 4.3.2

Release notes

Sourced from @​uppy/progress-bar's releases.

@​uppy/aws-s3@​5.1.0

Minor Changes

  • 79e6460: - Add PluginTypeRegistry and typed getPlugin overload in @​uppy/core
    • Register plugin ids across packages so uppy.getPlugin('Dashboard' | 'Webcam') returns the concrete plugin type and removes the need to pass generics in getPlugin()

Patch Changes

  • ac12f35: Fix: Move completed uploads exclusion logic into uploaders. This fixes the problem where postprocessors would not run for already uploaded files.
  • Updated dependencies [79e6460]
  • Updated dependencies [ac12f35]
  • Updated dependencies [4817585]

@​uppy/zoom@​4.1.0

Minor Changes

  • 79e6460: - Add PluginTypeRegistry and typed getPlugin overload in @​uppy/core
    • Register plugin ids across packages so uppy.getPlugin('Dashboard' | 'Webcam') returns the concrete plugin type and removes the need to pass generics in getPlugin()

Patch Changes

  • Updated dependencies [e661348]
  • Updated dependencies [79e6460]
  • Updated dependencies [ac12f35]
  • Updated dependencies [4817585]
    • @​uppy/provider-views@​5.2.0
    • @​uppy/core@​5.2.0
    • @​uppy/utils@​7.1.4

@​uppy/box@​4.1.0

Minor Changes

  • 79e6460: - Add PluginTypeRegistry and typed getPlugin overload in @​uppy/core
    • Register plugin ids across packages so uppy.getPlugin('Dashboard' | 'Webcam') returns the concrete plugin type and removes the need to pass generics in getPlugin()

Patch Changes

  • Updated dependencies [e661348]
  • Updated dependencies [79e6460]
  • Updated dependencies [ac12f35]
  • Updated dependencies [4817585]
    • @​uppy/provider-views@​5.2.0
    • @​uppy/core@​5.2.0
    • @​uppy/utils@​7.1.4

@​uppy/drop-target@​4.1.0

Minor Changes

... (truncated)

Changelog

Sourced from @​uppy/progress-bar's changelog.

Changelog

This is our changelog which contains planned todos and past dones.

Items can be optionally tagged by the GitHub issue's owner, if a discussion happened / is needed.

Please add your entries in this format:

  • - [ ] (<plugin name>|website|core|meta|build|test): <Present tense verb> <subject> \(<list of associated owners/gh-issues>\).

In the current stage we aim to release a new version at least every month.

4.18.0

Released: 2025-06-30

Package Version Package Version
@​uppy/components 0.2.0 @​uppy/remote-sources 2.3.4
@​uppy/core 4.4.7 @​uppy/screen-capture 4.3.1
@​uppy/google-drive-picker 0.3.6 @​uppy/svelte 4.5.0
@​uppy/google-photos-picker 0.3.6 @​uppy/vue 2.3.0
@​uppy/locales 4.6.0 @​uppy/webcam 4.2.1
@​uppy/provider-views 4.4.5 uppy 4.18.0
@​uppy/react 4.4.0
  • meta: Remove remark reference from CI (Murderlon)
  • @​uppy/components,@​uppy/screen-capture: useScreenCapture fixes (Prakash / #5793)
  • examples: Add useRemoteSource (Merlijn Vos / #5778)
  • @​uppy/components: Use webcam fixes2 (Mikael Finstad / #5791)
  • meta: Remove remark (Merlijn Vos / #5790)
  • meta: Delete old, unused files (Merlijn Vos / #5788)
  • meta: Sort package.json (Murderlon)
  • examples: Headless Hooks: Add useScreenCapture (Prakash / #5784)
  • @​uppy/locales: Update pt_BR localization (Gabriel Pereira / #5780)
  • e2e: Skip for now then (Murderlon)
  • e2e: fixup! Fix CI for now (Murderlon)
  • e2e: Fix CI for now (Murderlon)
  • examples: Add useWebcam (Merlijn Vos / #5741)
  • @​uppy/react,@​uppy/svelte,@​uppy/vue: Add useDropzone & useFileInput (Merlijn Vos / #5735)
  • meta: build(deps): bump base-x from 3.0.9 to 3.0.11 (dependabot[bot] / #5772)
  • @​uppy/provider-views: improve metadata handling in Google Photos Picker (ben rosenbaum / #5769)

4.17.0

Released: 2025-06-02

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by uppydev, a new releaser for @​uppy/progress-bar since your current version.


Updates @uppy/thumbnail-generator from 3.1.0 to 5.1.0

Release notes

Sourced from @​uppy/thumbnail-generator's releases.

@​uppy/thumbnail-generator@​5.1.0

Minor Changes

  • 79e6460: - Add PluginTypeRegistry and typed getPlugin overload in @​uppy/core
    • Register plugin ids across packages so uppy.getPlugin('Dashboard' | 'Webcam') returns the concrete plugin type and removes the need to pass generics in getPlugin()

Patch Changes

  • Updated dependencies [79e6460]
  • Updated dependencies [ac12f35]
  • Updated dependencies [4817585]

@​uppy/thumbnail-generator@​5.0.2

Patch Changes

  • 0c16fe4: - Make file.data nullable - Because for ghosts it will be undefined and we don't have any type to distinguish ghosts from other (local) files. This caused a crash, because we didn't check for undefined everywhere (when trying to store a blob that was undefined). This means we have to add null checks in some packages
    • Split UppyFile into two intefaces distinguished by the isRemote boolean:
      • LocalUppyFile
      • RemoteUppyFile
  • Updated dependencies [0c16fe4]
Changelog

Sourced from @​uppy/thumbnail-generator's changelog.

Changelog

This is our changelog which contains planned todos and past dones.

Items can be optionally tagged by the GitHub issue's owner, if a discussion happened / is needed.

Please add your entries in this format:

  • - [ ] (<plugin name>|website|core|meta|build|test): <Present tense verb> <subject> \(<list of associated owners/gh-issues>\).

In the current stage we aim to release a new version at least every month.

4.18.0

Released: 2025-06-30

Package Version Package Version
@​uppy/components 0.2.0 @​uppy/remote-sources 2.3.4
@​uppy/core 4.4.7 @​uppy/screen-capture 4.3.1
@​uppy/google-drive-picker 0.3.6 @​uppy/svelte 4.5.0
@​uppy/google-photos-picker 0.3.6 @​uppy/vue 2.3.0
@​uppy/locales 4.6.0 @​uppy/webcam 4.2.1
@​uppy/provider-views 4.4.5 uppy 4.18.0
@​uppy/react 4.4.0
  • meta: Remove remark reference from CI (Murderlon)
  • @​uppy/components,@​uppy/screen-capture: useScreenCapture fixes (Prakash / #5793)
  • examples: Add useRemoteSource (Merlijn Vos / #5778)
  • @​uppy/components: Use webcam fixes2 (Mikael Finstad / #5791)
  • meta: Remove remark (Merlijn Vos / #5790)
  • meta: Delete old, unused files (Merlijn Vos / #5788)
  • meta: Sort package.json (Murderlon)
  • examples: Headless Hooks: Add useScreenCapture (Prakash / #5784)
  • @​uppy/locales: Update pt_BR localization (Gabriel Pereira / #5780)
  • e2e: Skip for now then (Murderlon)
  • e2e: fixup! Fix CI for now (Murderlon)
  • e2e: Fix CI for now (Murderlon)
  • examples: Add useWebcam (Merlijn Vos / #5741)
  • @​uppy/react,@​uppy/svelte,@​uppy/vue: Add useDropzone & useFileInput (Merlijn Vos / #5735)
  • meta: build(deps): bump base-x from 3.0.9 to 3.0.11 (dependabot[bot] / #5772)
  • @​uppy/provider-views: improve metadata handling in Google Photos Picker (ben rosenbaum / #5769)

4.17.0

Released: 2025-06-02

... (truncated)

Commits
  • 556e36d [ci] release (#6060)
  • 5b680f2 build(deps): bump body-parser from 1.20.3 to 1.20.4 (#6070)
  • 39b82fd build(deps): bump express from 4.19.2 to 4.22.0 (#6079)
  • 21a8f1a build(deps): bump @​angular/common from 19.2.14 to 19.2.16 (#6072)
  • d2637e4 build(deps): bump validator from 13.12.0 to 13.15.20 (#6041)
  • 80addcc build(deps): bump js-yaml from 3.14.1 to 3.14.2 (#6067)
  • 52704c6 build(deps): bump node-forge from 1.3.1 to 1.3.2 (#6071)
  • 3197264 build(deps): bump docker/metadata-action from 5.9.0 to 5.10.0 (#6077)
  • d3baf1b build(deps): bump @​angular/compiler from 19.2.14 to 19.2.17 (#6078)
  • 54a3316 Fix changeset
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by uppydev, a new releaser for @​uppy/thumbnail-generator since your current version.


Updates @transloadit/prettier-bytes from 0.3.4 to 0.3.5

Release notes

Sourced from @​transloadit/prettier-bytes's releases.

@​transloadit/prettier-bytes@​0.3.5

Patch Changes

  • 07ca1ed: Switch to turbo
Changelog

Sourced from @​transloadit/prettier-bytes's changelog.

0.3.5

Patch Changes

  • 07ca1ed: Switch to turbo
Commits

Updates @uppy/companion-client from 3.8.1 to 5.1.1

Release notes

Sourced from @​uppy/companion-client's releases.

@​uppy/companion-client@​5.1.1

Patch Changes

  • 0c16fe4: - Split UppyFile into two intefaces distinguished by the isRemote boolean:
    • LocalUppyFile
    • RemoteUppyFile
  • Updated dependencies [0c16fe4]

@​uppy/companion-client@​5.1.0

Minor Changes

  • 5ba2c1c: Introduce the concept of server-side search and add support for it for the Dropbox provider. Previously, only client-side filtering in the currently viewed folder was possible, which was limiting. Now users using Companion with Dropbox can perform a search across their entire account.

Patch Changes

  • Updated dependencies [5ba2c1c]
Changelog

Sourced from @​uppy/companion-client's changelog.

Changelog

This is our changelog which contains planned todos and past dones.

Items can be optionally tagged by the GitHub issue's owner, if a discussion happened / is needed.

Please add your entries in this format:

  • - [ ] (<plugin name>|website|core|meta|build|test): <Present tense verb> <subject> \(<list of associated owners/gh-issues>\).

In the current stage we aim to release a new version at least every month.

4.18.0

Released: 2025-06-30

Package Version Package Version
@​uppy/components 0.2.0 @​uppy/remote-sources 2.3.4
@​uppy/core 4.4.7 @​uppy/screen-capture 4.3.1
@​uppy/google-drive-picker 0.3.6 @​uppy/svelte 4.5.0
@​uppy/google-photos-picker 0.3.6 @​uppy/vue 2.3.0
@​uppy/locales 4.6.0 @​uppy/webcam 4.2.1
@​uppy/provider-views 4.4.5 uppy 4.18.0
@​uppy/react 4.4.0
  • meta: Remove remark reference from CI (Murderlon)
  • @​uppy/components,@​uppy/screen-capture: useScreenCapture fixes (Prakash / #5793)
  • examples: Add useRemoteSource (Merlijn Vos / #5778)
  • @​uppy/components: Use webcam fixes2 (Mikael Finstad / #5791)
  • meta: Remove remark (Merlijn Vos / #5790)
  • meta: Delete old, unused files (Merlijn Vos / #5788)
  • meta: Sort package.json (Murderlon)
  • examples: Headless Hooks: Add useScreenCapture (Prakash / #5784)
  • @​uppy/locales: Update pt_BR localization (Gabriel Pereira / #5780)
  • e2e: Skip for now then (Murderlon)
  • e2e: fixup! Fix CI for now (Murderlon)
  • e2e: Fix CI for now (Murderlon)
  • examples: Add useWebcam (Merlijn Vos / #5741)
  • @​uppy/react,@​uppy/svelte,@​uppy/vue: Add useDropzone & useFileInput (Merlijn Vos / #5735)
  • meta: build(deps): bump base-x from 3.0.9 to 3.0.11 (dependabot[bot] / #5772)
  • @​uppy/provider-views: improve metadata handling in Google Photos Picker (ben rosenbaum / #5769)

4.17.0

Released: 2025-06-02

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by uppydev, a new releaser for @​uppy/companion-client since your current version.


Updates @uppy/store-default from 3.2.2 to 5.0.0

Release notes

Sourced from @​uppy/store-default's releases.

@​uppy/aws-s3@​5.1.0

Minor Changes

  • 79e6460: - Add PluginTypeRegistry and typed getPlugin overload in @​uppy/core
    • Register plugin ids across packages so uppy.getPlugin('Dashboard' | 'Webcam') returns the concrete plugin type and removes the need to pass generics in getPlugin()

Patch Changes

  • ac12f35: Fix: Move completed uploads exclusion logic into uploaders. This fixes the problem where postprocessors would not run for already uploaded files.
  • Updated dependencies [79e6460]
  • Updated dependencies [ac12f35]
  • Updated dependencies [4817585]

@​uppy/zoom@​4.1.0

Minor Changes

  • 79e6460: - Add PluginTypeRegistry and typed getPlugin overload in @​uppy/core
    • Register plugin ids across packages so uppy.getPlugin('Dashboard' | 'Webcam') returns the concrete plugin type and removes the need to pass generics in getPlugin()

Patch Changes

  • Updated dependencies [e661348]
  • Updated dependencies [79e6460]
  • Updated dependencies [ac12f35]
  • Updated dependencies [4817585]
    • @​uppy/provider-views@​5.2.0
    • @​uppy/core@​5.2.0
    • @​uppy/utils@​7.1.4

@​uppy/box@​4.1.0

Minor Changes

  • 79e6460: - Add PluginTypeRegistry and typed getPlugi...

    Description has been truncated

…updates

Bumps the js-production-dependencies group with 7 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@uppy/aws-s3](https://github.com/transloadit/uppy) | `3.6.2` | `5.1.0` |
| [@uppy/core](https://github.com/transloadit/uppy) | `3.13.1` | `5.2.0` |
| [@uppy/file-input](https://github.com/transloadit/uppy) | `3.1.2` | `4.2.2` |
| [@uppy/informer](https://github.com/transloadit/uppy) | `3.1.0` | `4.3.2` |
| [@uppy/progress-bar](https://github.com/transloadit/uppy) | `3.1.1` | `4.3.2` |
| [@uppy/thumbnail-generator](https://github.com/transloadit/uppy) | `3.1.0` | `5.1.0` |
| [@transloadit/prettier-bytes](https://github.com/transloadit/monolib/tree/HEAD/packages/prettier-bytes) | `0.3.4` | `0.3.5` |



Updates `@uppy/aws-s3` from 3.6.2 to 5.1.0
- [Release notes](https://github.com/transloadit/uppy/releases)
- [Changelog](https://github.com/transloadit/uppy/blob/main/CHANGELOG.md)
- [Commits](https://github.com/transloadit/uppy/compare/@uppy/aws-s3@3.6.2...@uppy/aws-s3@5.1.0)

Updates `@uppy/core` from 3.13.1 to 5.2.0
- [Release notes](https://github.com/transloadit/uppy/releases)
- [Changelog](https://github.com/transloadit/uppy/blob/main/CHANGELOG.md)
- [Commits](https://github.com/transloadit/uppy/compare/@uppy/core@3.13.1...@uppy/core@5.2.0)

Updates `@uppy/file-input` from 3.1.2 to 4.2.2
- [Release notes](https://github.com/transloadit/uppy/releases)
- [Changelog](https://github.com/transloadit/uppy/blob/main/CHANGELOG.md)
- [Commits](https://github.com/transloadit/uppy/compare/@uppy/file-input@3.1.2...@uppy/file-input@4.2.2)

Updates `@uppy/informer` from 3.1.0 to 4.3.2
- [Release notes](https://github.com/transloadit/uppy/releases)
- [Changelog](https://github.com/transloadit/uppy/blob/main/CHANGELOG.md)
- [Commits](https://github.com/transloadit/uppy/compare/@uppy/informer@3.1.0...@uppy/informer@4.3.2)

Updates `@uppy/progress-bar` from 3.1.1 to 4.3.2
- [Release notes](https://github.com/transloadit/uppy/releases)
- [Changelog](https://github.com/transloadit/uppy/blob/main/CHANGELOG.md)
- [Commits](https://github.com/transloadit/uppy/compare/@uppy/progress-bar@3.1.1...@uppy/progress-bar@4.3.2)

Updates `@uppy/thumbnail-generator` from 3.1.0 to 5.1.0
- [Release notes](https://github.com/transloadit/uppy/releases)
- [Changelog](https://github.com/transloadit/uppy/blob/main/CHANGELOG.md)
- [Commits](https://github.com/transloadit/uppy/compare/@uppy/thumbnail-generator@3.1.0...@uppy/thumbnail-generator@5.1.0)

Updates `@transloadit/prettier-bytes` from 0.3.4 to 0.3.5
- [Release notes](https://github.com/transloadit/monolib/releases)
- [Changelog](https://github.com/transloadit/monolib/blob/main/packages/prettier-bytes/CHANGELOG.md)
- [Commits](https://github.com/transloadit/monolib/commits/@transloadit/prettier-bytes@0.3.5/packages/prettier-bytes)

Updates `@uppy/companion-client` from 3.8.1 to 5.1.1
- [Release notes](https://github.com/transloadit/uppy/releases)
- [Changelog](https://github.com/transloadit/uppy/blob/main/CHANGELOG.md)
- [Commits](https://github.com/transloadit/uppy/compare/@uppy/companion-client@3.8.1...@uppy/companion-client@5.1.1)

Updates `@uppy/store-default` from 3.2.2 to 5.0.0
- [Release notes](https://github.com/transloadit/uppy/releases)
- [Changelog](https://github.com/transloadit/uppy/blob/main/CHANGELOG.md)
- [Commits](https://github.com/transloadit/uppy/compare/@uppy/store-default@3.2.2...@uppy/store-default@5.0.0)

Updates `@uppy/utils` from 5.9.0 to 6.2.2
- [Release notes](https://github.com/transloadit/uppy/releases)
- [Changelog](https://github.com/transloadit/uppy/blob/main/CHANGELOG.md)
- [Commits](https://github.com/transloadit/uppy/compare/@uppy/utils@5.9.0...@uppy/utils@6.2.2)

---
updated-dependencies:
- dependency-name: "@uppy/aws-s3"
  dependency-version: 5.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: js-production-dependencies
- dependency-name: "@uppy/core"
  dependency-version: 5.2.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: js-production-dependencies
- dependency-name: "@uppy/file-input"
  dependency-version: 4.2.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: js-production-dependencies
- dependency-name: "@uppy/informer"
  dependency-version: 4.3.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: js-production-dependencies
- dependency-name: "@uppy/progress-bar"
  dependency-version: 4.3.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: js-production-dependencies
- dependency-name: "@uppy/thumbnail-generator"
  dependency-version: 5.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: js-production-dependencies
- dependency-name: "@transloadit/prettier-bytes"
  dependency-version: 0.3.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: js-production-dependencies
- dependency-name: "@uppy/companion-client"
  dependency-version: 5.1.1
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: js-production-dependencies
- dependency-name: "@uppy/store-default"
  dependency-version: 5.0.0
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: js-production-dependencies
- dependency-name: "@uppy/utils"
  dependency-version: 6.2.2
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: js-production-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Mar 25, 2026
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Mar 26, 2026

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Mar 26, 2026
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/js-production-dependencies-4d0babaa5b branch March 26, 2026 03:35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants