New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

uppy

Package Overview
Dependencies
Maintainers
0
Versions
282
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

uppy - npm Package Versions

1
29

0.25.5

Diff

Changelog

Source

0.25.5

Released: 2018-06-13.

  • build: exclude and ignore node_modules from test/endtoend (@arturi, @kvz / #a60c2f0c641f7db580937ebbc0884e25c8ef8583, #355f696a74d8ec56381578f1fb5ad9c913fe8200)
arturi
published 0.25.4 •

Changelog

Source

0.25.4

Released: 2018-06-13.

  • providers: hanging URL upload (#8e13f416f74e7a453e7bdc829e9618f3b7d68804 / @ifedapoolarewaju)
  • url: fix input focus (#3f9aa3bb7fc7ce5814fe50268a6f88f5965d9f16 / @arturi)
arturi
published 0.25.3 •

Changelog

Source

0.25.3

Released: 2018-06-12.

  • core: fix/refactor uppy.close() and uppy.removePlugin(plugin): Remove plugins immutably when uppy.close() is called, not just uninstall; emit event plugin-remove before removing plugin; remove plugins from Dashboard when they are removed from Uppy; check if plugin exists in Uppy before re-rendering, since debounced re-render can happen after a plugin is removed, that’s been causing issues in #890 (#898 / @arturi)
  • tests: run integration tests with npm-installed uppy (#880 / @ifedapoolarewaju)
  • xhrupload: add withCredentials option (#874 / @tuoxiansp, @b1ncer)
  • xhrupload: Move .withCredentials assignment to after open(): IE 10 doesn't allow setting it before open() is called (#2698b599d716743bbf7ed3ac70c648fef0fd8976 / @goto-bus-stop)
  • thumbnailgenerator: Polyfill Math.log2 since IE11 doesn't support this method (#4ddc9da47b13c9dfe49155d8c3bcd76b9fa494f2. #892 / @DJWassink)
  • core: add eslint-plugin-compat (@goto-bus-stop, #894)
  • dashboard: remove Dashboard bottom margin, since “powered by” has been moved (#a561e4e7a2c18f5092ba03185e0836ffa6796d04 / @arturi)
  • dashboard: fix Dashboard open/close animation on small screen (#982d27f62693c0eb026e381d10157afffe1eeb64 / @arturi)
  • awss3: Don't set uploadURL when success_action_status was missing (#900 / @goto-bus-stop)
  • thumbnailgenerator: Add id option to ThumbnailGenerator (#8cded8160b19d3324d9e14be122c4038ed0b9403 / @arturi)
  • react: tiny improvement for Uppy React example (645e15166a6bd100351de131982df080bc71aac6 / @arturi)
arturi
published 0.25.2 •

Changelog

Source

0.25.2

Released: 2018-06-05.

  • transloadit: file.remote --> file.remote.host, since remote is an object (aa8247b6e2aeffc5aa237b983d88faae53819133 / @ifedapoolarewaju, @arturi)
  • dashboard: Move poweredByUppy inside the Dashboard (a5f23c7fd57a0a0a554580b5d5423f54b39c2444 / @arturi)
arturi
published 0.25.1 •

Changelog

Source

0.25.1

Released: 2018-06-05.

  • provider: fix — match origin pattern for non-static hosts, add hostPattern option — a regular expression, for Uppy Server running on server1.example.com and server2.example.com, you should set hostPattern: '.example.com$' (644da749dfb4ecc5c32c744f155fc4c1b07fce13 / @ifedapoolarewaju)
  • provider: fix — check for non protocol defined urls in provider requests (5af90f4fe5c10ee4f32cc4471458cea994ef519a / @ifedapoolarewaju)
  • provider: fix — strip protocol before comparing urls (a22c897013e3de5b324bb31683706e8390169978 / @ifedapoolarewaju)
  • provider: feature: display username in provider view by @ifedapoolarewaju, this is a fix, got lost in PR merge/rebase (1f3a2bb7ddce2b6f1eaa5476be28cebb4529a3bd / @ifedapoolarewaju)
  • provider: Tolerate trailing slashes in host options (having a trailing slash in a host option used to break providers) (#885 / @goto-bus-stop)
  • s3: Fix uploadURL for presigned PUT uploads — strips the query string from the URL used for a successful PUT upload to determine the uploadURL (#886 / @goto-bus-stop)
  • dashboard: fix line-height in Dashboard tabs (3a7ee860340afcf7abf61be38b0e1398fbe75923 / @arturi)
  • docs: typos and polish (@AJvanLoon)
  • website: improve syntax highlighting on the website — uses prismjs for syntax highlighting instead of highlight.js; the primary motivation is that highlight.js does not support JSX, while prism does (#884 / @goto-bus-stop)
arturi
published 0.25.0 •

Changelog

Source

0.25.0

Released: 2018-06-01.

  • core: ⚠️ breaking Removed .run() (to solve issues like #756), just .use() all the way (#793 / goto-bus-stop)
  • core: ⚠️ breaking Changed some of the strings that we were concatenating in Preact, now their interpolation is handled by the Translator instead. This is important for languages that have different word order than English. (#845 / @goto-bus-stop) Changed strings:
    • core: failedToUpload needs to contain %{file}, substituted by the name of the file that failed
    • dashboard: dropPaste and dropPasteImport need to contain %{browse}, substituted by the "browse" text button
    • dashboard: editing needs to contain %{file}, substituted by the name of the file being edited
    • dashboard: fileSource and importFrom need to contain %{name}, substituted by the name of the provider
    • dragdrop: dropHereOr needs to contain %{browse}, substituted by the "browse" text button
  • providers: ⚠️ breaking select files only after “select” is pressed, don’t add them right away when they are checked — better UI + solves issue with autoProceed uploading in background, which is weird; re-read https://github.com/transloadit/uppy/pull/419#issuecomment-345210519(#826 / @goto-bus-stop, @arturi)
  • core: Add error if trying to setFileState() for a file that’s been removed; clear error on cancelAll (#864 / @goto-bus-stop, @arturi)
  • core: Debounce render calls again, fixes #669 (#796 / @goto-bus-stop)
  • core: add more mime-to-extension mappings from https://github.com/micnic/mime.json/blob/master/index.json (#806 /@arturi, @goto-bus-stop)
  • core: addFile not passing restrictions shouldn’t throw when called from UI (@arturi)
  • core: set bytesUploaded = bytesTotal when upload is complete (#f51ab0f / @arturi)
  • core: use uppy.getState() instead of uppy.state (#863 / @goto-bus-stop)
  • dashboard & statusbar: allow to hide cancel, pause-resume and retry buttons: hideUploadButton: false, hideRetryButton: false, hidePauseResumeCancelButtons: false (#821, #853 / @mrbatista, @arturi)
  • dashboard: Dashboard open/close animation; move ESC and TAB event listener, improve FOCUSABLE_ELEMENTS, update docs (#852 / @arturi)
  • dashboard: Don’t use h1-h6 tags (add role=heading), might solve some styling issues for embedded Uppy; fix weird artifacts instead of ellipsis issue (#868 / @arturi)
  • dashboard: Use i18n for save/cancel in Dashboard file card (#841 / @arturi)
  • dashboard: disallow removing files if bundle: true in XHRUpload (#853 / @arturi)
  • docs: improve on React docs https://uppy.io/docs/react/, add small example for each component: Dashboard, DragDrop, ProgressBar, etc; more plugin options, better group (#845 / @goto-bus-stop)
  • provider: Fix an issue where .focus() is scrolling the page, same as in UrlUI (#51df805 / @arturi)
  • provider: show message for empty provider files (#ff628b6 / @ifedapoolarewaju)
  • providers: Add user/account names to Uppy provider views (61bf0a7 / @ifedapoolarewaju)
  • providers: display username in provider view (61bf0a7 / @ifedapoolarewaju)
  • react: Added tests for mounting/unmounting React components (#854 / @goto-bus-stop)
  • react: Fixed plugin ID mismatch in React components, fixes #850 (#854 / @goto-bus-stop)
  • s3: implement multipart uploads (#726 / @goto-bus-stop)
  • tus: add filename and filetype, so that tusd servers knows what headers to set (#844 / @vith)
  • ui-plugins: Add try/catch to addfile() calls from UI plugins (@arturi / #867)
  • uppy-server: benchmarks / stress test, large file, uppy-server / tus / S3 (10 GB) (@ifedapoolarewaju)
  • uppy-server: document docker image setup for uppy-server (@ifedapoolarewaju)
  • url: Add support for drag-dropping urls, links or images from webpages (#836 / @arturi)
  • webcam: swap record/stop button icons, fixes #859 (#fdcca95 / @arturi)
  • xhrupload: fix bytesUploaded and bytesTotal for bundled progress (#864 / @arturi)
  • xhrupload: fix retry/timer issues, add timer.done() to cancel-all events; disable progress throttling in Core; Ignore progress events in timeout tracker after upload was aborted (#864 / @goto-bus-stop, @arturi)
  • Server: Allow custom headers to be set for remote multipart uploads (@ifedapoolarewaju)
  • Server: Add type to metadata as filetype
  • uppy/uppy-server: refactor oauth flow tonot use cookies anymore (@ifedapoolarewaju)
arturi
published 0.24.4 •

Changelog

Source

0.24.4

Released: 2018-05-14.

  • core: Pass allowedFileTypes and maxNumberOfFiles to input[type=file] in UI components: Dashboard, DragDrop, FileInput (#814 / @arturi)
  • transloadit: Update Transloadit plugin's Uppy Server handling (#804 / @goto-bus-stop)
  • tus: respect limit option for upload parameter requests (#817 / @ap--)
  • docs: Explain name metadata vs. $_FILES[]["name"] (#1c1bf2e / @goto-bus-stop)
  • dashboard: improve “powered by” icon (#0284c8e / @arturi)
  • statusbar: add default string for cancel button (#822 / @mrbatista)
arturi
published 0.24.3 •

Changelog

Source

0.24.3

Released: 2018-05-10.

  • core: add uppy.getFiles() method (@goto-bus-stop / #770)
  • core: merge meta data when add file (#810 / @mrbatista)
  • dashboard: fix duplicate plugin IDs, see #702 (@goto-bus-stop)
  • dashboard/statusbar: fix some unicode characters showing up as gibberish (#787 / @goto-bus-stop)
  • dashboard: Fix grid item height in remote providers with few files (#791 / @goto-bus-stop)
  • dashboard: Add rel="noopener noreferrer" to links containing target="_blank" (#767 / @kvz)
  • instagram: add extensions to instagram files (@ifedapoolarewaju)
  • transloadit: More robust failure handling for Transloadit, closes #708 (#805 / @goto-bus-stop)
  • docs: Document "headers" upload parameter in AwsS3 plugin (#780 / @janko-m)
  • docs: Update some uppy.state docs to align with the Stores feature (#792 / @goto-bus-stop)
  • dragdrop: Add inputName option like FileInput has, set empty value="", closes #729 (#778 / @goto-bus-stop, @arturi)
  • docs: Google Cloud Storage setup for the AwsS3 plugin (#777 / goto-bus-stop)
  • react: Update React component PropTypes (#776 / @arturi)
  • statusbar: add some spacing between text elements (#760 / @goto-bus-stop)
arturi
published 0.24.2 •

Changelog

Source

0.24.2

Released: 2018-04-17.

  • dashboard: Fix showLinkToFileUploadResult option (@arturi / #763)
  • docs: Consistent shape for the getResponseData (responseText, response) (@arturi / #765)
arturi
published 0.24.1 •

Changelog

Source

0.24.1

Released: 2018-04-16.

  • dashboard: ⚠️ breaking maxWidth, maxHeight --> width and height; update docs and React props too; regardless of what we call those internally, this makes more sense, I think (@arturi)
  • core: Avoid important for those styles that need to be overriden by inline-styles + microtip (@arturi)
  • tus & xhrupload: Retain uppy-server error messages, fixes #707 (@goto-bus-stop / #759)
  • dragdrop: Link <label> and <input>, fixes #749 (@goto-bus-stop / #757)
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc