diff --git a/.changeset/clean-ads-buy.md b/.changeset/clean-ads-buy.md deleted file mode 100644 index 97fa30629..000000000 --- a/.changeset/clean-ads-buy.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@uppy/components": patch ---- - -fix dom ID conflicts in dropzone and file-input diff --git a/.changeset/early-pans-sneeze.md b/.changeset/early-pans-sneeze.md deleted file mode 100644 index 88ff8bc6a..000000000 --- a/.changeset/early-pans-sneeze.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"uppy": patch ---- - -Put "main" back in package.json diff --git a/.changeset/early-rivers-taste.md b/.changeset/early-rivers-taste.md deleted file mode 100644 index 7637bc000..000000000 --- a/.changeset/early-rivers-taste.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@uppy/locales": patch ---- - -Update translations for pl_PL.ts diff --git a/.changeset/happy-pianos-boil.md b/.changeset/happy-pianos-boil.md deleted file mode 100644 index 118408854..000000000 --- a/.changeset/happy-pianos-boil.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -"@uppy/angular": minor -"@uppy/svelte": minor -"@uppy/react": minor -"@uppy/vue": minor ---- - -Add back framework wrappers for @uppy/status-bar plugin diff --git a/.npmrc b/.npmrc new file mode 100644 index 000000000..ae643592e --- /dev/null +++ b/.npmrc @@ -0,0 +1 @@ +//registry.npmjs.org/:_authToken=${NPM_TOKEN} diff --git a/BUNDLE-README.md b/BUNDLE-README.md index 629b1ec7f..6aa87971d 100644 --- a/BUNDLE-README.md +++ b/BUNDLE-README.md @@ -2,7 +2,7 @@ Hi, thanks for trying out the bundled version of the Uppy File Uploader. You can use this from a CDN -(``) +(``) or bundle it with your webapp. Note that the recommended way to use Uppy is to install it with yarn/npm and use diff --git a/README.md b/README.md index 550a07352..b4a0033ac 100644 --- a/README.md +++ b/README.md @@ -103,7 +103,7 @@ npm install @uppy/core @uppy/dashboard @uppy/tus ``` Add CSS -[uppy.min.css](https://releases.transloadit.com/uppy/v5.1.2/uppy.min.css), +[uppy.min.css](https://releases.transloadit.com/uppy/v5.1.3/uppy.min.css), either to your HTML page’s `` or include in JS, if your bundler of choice supports it. @@ -117,7 +117,7 @@ CDN. In that case `Uppy` will attach itself to the global `window.Uppy` object. ```html @@ -128,7 +128,7 @@ CDN. In that case `Uppy` will attach itself to the global `window.Uppy` object. Uppy, Dashboard, Tus, - } from 'https://releases.transloadit.com/uppy/v5.1.2/uppy.min.mjs' + } from 'https://releases.transloadit.com/uppy/v5.1.3/uppy.min.mjs' const uppy = new Uppy() uppy.use(Dashboard, { target: '#files-drag-drop' }) diff --git a/packages/@uppy/angular/projects/uppy/angular/CHANGELOG.md b/packages/@uppy/angular/projects/uppy/angular/CHANGELOG.md index 42e12e47a..a832cb6d3 100644 --- a/packages/@uppy/angular/projects/uppy/angular/CHANGELOG.md +++ b/packages/@uppy/angular/projects/uppy/angular/CHANGELOG.md @@ -1,5 +1,11 @@ # @uppy/angular +## 1.1.0 + +### Minor Changes + +- 92a0a0d: Add back framework wrappers for @uppy/status-bar plugin + ## 1.0.1 ### Patch Changes diff --git a/packages/@uppy/angular/projects/uppy/angular/package.json b/packages/@uppy/angular/projects/uppy/angular/package.json index 8534db9f4..ffa921e15 100644 --- a/packages/@uppy/angular/projects/uppy/angular/package.json +++ b/packages/@uppy/angular/projects/uppy/angular/package.json @@ -1,7 +1,7 @@ { "name": "@uppy/angular", "description": "Angular component wrappers around Uppy's official UI plugins.", - "version": "1.0.1", + "version": "1.1.0", "license": "MIT", "homepage": "https://uppy.io", "keywords": [ diff --git a/packages/@uppy/components/CHANGELOG.md b/packages/@uppy/components/CHANGELOG.md index f1fb57e6f..a44af71eb 100644 --- a/packages/@uppy/components/CHANGELOG.md +++ b/packages/@uppy/components/CHANGELOG.md @@ -1,5 +1,11 @@ # @uppy/components +## 1.0.3 + +### Patch Changes + +- d6b3aa5: fix dom ID conflicts in dropzone and file-input + ## 1.0.2 ### Patch Changes diff --git a/packages/@uppy/components/package.json b/packages/@uppy/components/package.json index fd1d56908..cef8aa6f3 100644 --- a/packages/@uppy/components/package.json +++ b/packages/@uppy/components/package.json @@ -1,7 +1,7 @@ { "name": "@uppy/components", "description": "Headless Uppy components, made in Preact", - "version": "1.0.2", + "version": "1.0.3", "license": "MIT", "type": "module", "sideEffects": [ diff --git a/packages/@uppy/locales/CHANGELOG.md b/packages/@uppy/locales/CHANGELOG.md index 63b4b841d..f4d84f636 100644 --- a/packages/@uppy/locales/CHANGELOG.md +++ b/packages/@uppy/locales/CHANGELOG.md @@ -1,5 +1,11 @@ # @uppy/locales +## 5.0.1 + +### Patch Changes + +- 48cfa09: Update translations for pl_PL.ts + ## 5.0.0 ### Major Changes diff --git a/packages/@uppy/locales/package.json b/packages/@uppy/locales/package.json index d1c86810a..996e66291 100644 --- a/packages/@uppy/locales/package.json +++ b/packages/@uppy/locales/package.json @@ -1,7 +1,7 @@ { "name": "@uppy/locales", "description": "Uppy language packs", - "version": "5.0.0", + "version": "5.0.1", "license": "MIT", "type": "module", "sideEffects": false, diff --git a/packages/@uppy/react/CHANGELOG.md b/packages/@uppy/react/CHANGELOG.md index fee12704c..d891e01c4 100644 --- a/packages/@uppy/react/CHANGELOG.md +++ b/packages/@uppy/react/CHANGELOG.md @@ -1,5 +1,16 @@ # @uppy/react +## 5.1.0 + +### Minor Changes + +- 92a0a0d: Add back framework wrappers for @uppy/status-bar plugin + +### Patch Changes + +- Updated dependencies [d6b3aa5] + - @uppy/components@1.0.3 + ## 5.0.3 ### Patch Changes diff --git a/packages/@uppy/react/package.json b/packages/@uppy/react/package.json index 15d32f0f7..9a194b7bc 100644 --- a/packages/@uppy/react/package.json +++ b/packages/@uppy/react/package.json @@ -1,7 +1,7 @@ { "name": "@uppy/react", "description": "React component wrappers around Uppy's official UI plugins.", - "version": "5.0.3", + "version": "5.1.0", "license": "MIT", "type": "module", "sideEffects": [ diff --git a/packages/@uppy/svelte/CHANGELOG.md b/packages/@uppy/svelte/CHANGELOG.md index 8ea6cefea..45e49d696 100644 --- a/packages/@uppy/svelte/CHANGELOG.md +++ b/packages/@uppy/svelte/CHANGELOG.md @@ -1,5 +1,16 @@ # @uppy/svelte +## 5.1.0 + +### Minor Changes + +- 92a0a0d: Add back framework wrappers for @uppy/status-bar plugin + +### Patch Changes + +- Updated dependencies [d6b3aa5] + - @uppy/components@1.0.3 + ## 5.0.1 ### Patch Changes diff --git a/packages/@uppy/svelte/package.json b/packages/@uppy/svelte/package.json index e85f8b07a..16b8ba5dd 100644 --- a/packages/@uppy/svelte/package.json +++ b/packages/@uppy/svelte/package.json @@ -1,6 +1,6 @@ { "name": "@uppy/svelte", - "version": "5.0.1", + "version": "5.1.0", "description": "Uppy plugin that helps integrate Uppy into your Svelte project.", "type": "module", "sideEffects": [ diff --git a/packages/@uppy/vue/CHANGELOG.md b/packages/@uppy/vue/CHANGELOG.md index 0c4de3be2..f3b36fb73 100644 --- a/packages/@uppy/vue/CHANGELOG.md +++ b/packages/@uppy/vue/CHANGELOG.md @@ -1,5 +1,16 @@ # @uppy/vue +## 3.1.0 + +### Minor Changes + +- 92a0a0d: Add back framework wrappers for @uppy/status-bar plugin + +### Patch Changes + +- Updated dependencies [d6b3aa5] + - @uppy/components@1.0.3 + ## 3.0.3 ### Patch Changes diff --git a/packages/@uppy/vue/package.json b/packages/@uppy/vue/package.json index 612e5e97b..bc950ad91 100644 --- a/packages/@uppy/vue/package.json +++ b/packages/@uppy/vue/package.json @@ -1,6 +1,6 @@ { "name": "@uppy/vue", - "version": "3.0.3", + "version": "3.1.0", "license": "MIT", "type": "module", "sideEffects": [ diff --git a/packages/uppy/CHANGELOG.md b/packages/uppy/CHANGELOG.md index 742916f05..9862d0784 100644 --- a/packages/uppy/CHANGELOG.md +++ b/packages/uppy/CHANGELOG.md @@ -1,5 +1,13 @@ # uppy +## 5.1.3 + +### Patch Changes + +- ce0c9d6: Put "main" back in package.json +- Updated dependencies [48cfa09] + - @uppy/locales@5.0.1 + ## 5.1.2 ### Patch Changes diff --git a/packages/uppy/package.json b/packages/uppy/package.json index 67ef1808c..39de8a7e6 100644 --- a/packages/uppy/package.json +++ b/packages/uppy/package.json @@ -1,7 +1,7 @@ { "name": "uppy", "description": "Extensible JavaScript file upload widget with support for drag&drop, resumable uploads, previews, restrictions, file processing/encoding, remote providers like Instagram, Dropbox, Google Drive, S3 and more :dog:", - "version": "5.1.2", + "version": "5.1.3", "license": "MIT", "main": "lib/index.js", "module": "lib/index.js",