mirror of
https://github.com/transloadit/uppy.git
synced 2026-01-23 02:25:07 +00:00
[ci] release (#5901)
This PR was opened by the [Changesets release](https://github.com/changesets/action) GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated. # Releases ## @uppy/core@4.5.3 ### Patch Changes -eee05db: Fix retry after setting missed metaFields requiring you to click "retry" and then "upload" again. Now "retry" immediately restarts the upload. ## @uppy/golden-retriever@4.2.3 ### Patch Changes -a0a248a: Fix golden retriever crash when removing a file after restoring and clicking upload - Updated dependencies [eee05db] - @uppy/core@4.5.3 ## @uppy/provider-views@4.5.3 ### Patch Changes -2f62f40: VirtualList now virtualises rows in the file list, as was intented. This means better performance when scrolling thousands for files. - Updated dependencies [eee05db] - @uppy/core@4.5.3 ## @uppy/react-native@0.6.5 ### Patch Changes - Updated dependencies [eee05db] - @uppy/core@4.5.3 ## @uppy/thumbnail-generator@4.2.3 ### Patch Changes -79502f7: Make tiny/small thumbnails look better by not scaling them to cover the entire grid item - Updated dependencies [eee05db] - @uppy/core@4.5.3 ## uppy@4.18.3 ### Patch Changes - Updated dependencies [a0a248a] - Updated dependencies [2f62f40] - Updated dependencies [eee05db] - Updated dependencies [79502f7] - @uppy/golden-retriever@4.2.3 - @uppy/provider-views@4.5.3 - @uppy/core@4.5.3 - @uppy/thumbnail-generator@4.2.3 Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
a0a248a6fc
commit
1c3fc13957
18 changed files with 60 additions and 30 deletions
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
"@uppy/golden-retriever": patch
|
||||
---
|
||||
|
||||
Fix golden retriever crash when removing a file after restoring and clicking upload
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
"@uppy/provider-views": patch
|
||||
---
|
||||
|
||||
VirtualList now virtualises rows in the file list, as was intented. This means better performance when scrolling thousands for files.
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
"@uppy/core": patch
|
||||
---
|
||||
|
||||
Fix retry after setting missed metaFields requiring you to click "retry" and then "upload" again. Now "retry" immediately restarts the upload.
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
"@uppy/thumbnail-generator": patch
|
||||
---
|
||||
|
||||
Make tiny/small thumbnails look better by not scaling them to cover the entire grid item
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
Hi, thanks for trying out the bundled version of the Uppy File Uploader. You can
|
||||
use this from a CDN
|
||||
(`<script src="https://releases.transloadit.com/uppy/v4.18.2/uppy.min.js"></script>`)
|
||||
(`<script src="https://releases.transloadit.com/uppy/v4.18.3/uppy.min.js"></script>`)
|
||||
or bundle it with your webapp.
|
||||
|
||||
Note that the recommended way to use Uppy is to install it with yarn/npm and use
|
||||
|
|
|
|||
|
|
@ -103,7 +103,7 @@ npm install @uppy/core @uppy/dashboard @uppy/tus
|
|||
```
|
||||
|
||||
Add CSS
|
||||
[uppy.min.css](https://releases.transloadit.com/uppy/v4.18.2/uppy.min.css),
|
||||
[uppy.min.css](https://releases.transloadit.com/uppy/v4.18.3/uppy.min.css),
|
||||
either to your HTML page’s `<head>` 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
|
||||
<!-- 1. Add CSS to `<head>` -->
|
||||
<link
|
||||
href="https://releases.transloadit.com/uppy/v4.18.2/uppy.min.css"
|
||||
href="https://releases.transloadit.com/uppy/v4.18.3/uppy.min.css"
|
||||
rel="stylesheet"
|
||||
/>
|
||||
|
||||
|
|
@ -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/v4.18.2/uppy.min.mjs'
|
||||
} from 'https://releases.transloadit.com/uppy/v4.18.3/uppy.min.mjs'
|
||||
|
||||
const uppy = new Uppy()
|
||||
uppy.use(Dashboard, { target: '#files-drag-drop' })
|
||||
|
|
|
|||
|
|
@ -1,5 +1,11 @@
|
|||
# @uppy/core
|
||||
|
||||
## 4.5.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- eee05db: Fix retry after setting missed metaFields requiring you to click "retry" and then "upload" again. Now "retry" immediately restarts the upload.
|
||||
|
||||
## 4.5.2
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@uppy/core",
|
||||
"description": "Core module for the 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": "4.5.2",
|
||||
"version": "4.5.3",
|
||||
"license": "MIT",
|
||||
"main": "lib/index.js",
|
||||
"style": "dist/style.min.css",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,13 @@
|
|||
# @uppy/golden-retriever
|
||||
|
||||
## 4.2.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- a0a248a: Fix golden retriever crash when removing a file after restoring and clicking upload
|
||||
- Updated dependencies [eee05db]
|
||||
- @uppy/core@4.5.3
|
||||
|
||||
## 4.2.2
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@uppy/golden-retriever",
|
||||
"description": "The GoldenRetriever Uppy plugin saves selected files in browser cache to seamlessly resume uploding after browser crash or accidentally closed tab",
|
||||
"version": "4.2.2",
|
||||
"version": "4.2.3",
|
||||
"license": "MIT",
|
||||
"main": "lib/index.js",
|
||||
"type": "module",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,13 @@
|
|||
# @uppy/provider-views
|
||||
|
||||
## 4.5.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 2f62f40: VirtualList now virtualises rows in the file list, as was intented. This means better performance when scrolling thousands for files.
|
||||
- Updated dependencies [eee05db]
|
||||
- @uppy/core@4.5.3
|
||||
|
||||
## 4.5.2
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@uppy/provider-views",
|
||||
"description": "View library for Uppy remote provider plugins.",
|
||||
"version": "4.5.2",
|
||||
"version": "4.5.3",
|
||||
"license": "MIT",
|
||||
"main": "lib/index.js",
|
||||
"style": "dist/style.min.css",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,12 @@
|
|||
# @uppy/react-native
|
||||
|
||||
## 0.6.5
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [eee05db]
|
||||
- @uppy/core@4.5.3
|
||||
|
||||
## 0.6.4
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@uppy/react-native",
|
||||
"description": "React Native Uppy UI components",
|
||||
"version": "0.6.4",
|
||||
"version": "0.6.5",
|
||||
"main": "file-picker/index.js",
|
||||
"license": "MIT",
|
||||
"keywords": [
|
||||
|
|
|
|||
|
|
@ -1,5 +1,13 @@
|
|||
# @uppy/thumbnail-generator
|
||||
|
||||
## 4.2.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 79502f7: Make tiny/small thumbnails look better by not scaling them to cover the entire grid item
|
||||
- Updated dependencies [eee05db]
|
||||
- @uppy/core@4.5.3
|
||||
|
||||
## 4.2.2
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@uppy/thumbnail-generator",
|
||||
"description": "Uppy plugin that generates small previews of images to show on your upload UI.",
|
||||
"version": "4.2.2",
|
||||
"version": "4.2.3",
|
||||
"license": "MIT",
|
||||
"main": "lib/index.js",
|
||||
"type": "module",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,18 @@
|
|||
# uppy
|
||||
|
||||
## 4.18.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [a0a248a]
|
||||
- Updated dependencies [2f62f40]
|
||||
- Updated dependencies [eee05db]
|
||||
- Updated dependencies [79502f7]
|
||||
- @uppy/golden-retriever@4.2.3
|
||||
- @uppy/provider-views@4.5.3
|
||||
- @uppy/core@4.5.3
|
||||
- @uppy/thumbnail-generator@4.2.3
|
||||
|
||||
## 4.18.2
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -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": "4.18.2",
|
||||
"version": "4.18.3",
|
||||
"license": "MIT",
|
||||
"main": "lib/index.js",
|
||||
"module": "lib/index.js",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue