mirror of
https://github.com/transloadit/uppy.git
synced 2026-01-23 02:25:07 +00:00
[ci] release (#6027)
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/status-bar@5.0.2 ### Patch Changes -8ac1654: Change internal type from `any` to `unknown`. ## @uppy/webcam@5.0.2 ### Patch Changes -8ac1654: - Remove TagFile type - Use UppyFile instead. - Split UppyFile into two interfaces distinguished by the `isRemote` boolean: - LocalUppyFile - RemoteUppyFile ## @uppy/xhr-upload@5.0.2 ### Patch Changes -8ac1654: - 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 interfaces distinguished by the `isRemote` boolean: - LocalUppyFile - RemoteUppyFile ## uppy@5.1.8 ### Patch Changes - Updated dependencies [8ac1654] - Updated dependencies [8ac1654] - Updated dependencies [8ac1654] - @uppy/status-bar@5.0.2 - @uppy/webcam@5.0.2 - @uppy/xhr-upload@5.0.2 Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
8ac1654484
commit
55e926c347
13 changed files with 43 additions and 29 deletions
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
"@uppy/status-bar": patch
|
||||
---
|
||||
|
||||
Change internal type from `any` to `unknown`.
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
---
|
||||
"@uppy/webcam": patch
|
||||
---
|
||||
|
||||
- Remove TagFile type - Use UppyFile instead.
|
||||
- Split UppyFile into two interfaces distinguished by the `isRemote` boolean:
|
||||
- LocalUppyFile
|
||||
- RemoteUppyFile
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
---
|
||||
"@uppy/xhr-upload": patch
|
||||
---
|
||||
|
||||
- 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 interfaces distinguished by the `isRemote` boolean:
|
||||
- LocalUppyFile
|
||||
- RemoteUppyFile
|
||||
|
|
@ -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/v5.1.7/uppy.min.js"></script>`)
|
||||
(`<script src="https://releases.transloadit.com/uppy/v5.1.8/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/v5.1.7/uppy.min.css),
|
||||
[uppy.min.css](https://releases.transloadit.com/uppy/v5.1.8/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/v5.1.7/uppy.min.css"
|
||||
href="https://releases.transloadit.com/uppy/v5.1.8/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/v5.1.7/uppy.min.mjs'
|
||||
} from 'https://releases.transloadit.com/uppy/v5.1.8/uppy.min.mjs'
|
||||
|
||||
const uppy = new Uppy()
|
||||
uppy.use(Dashboard, { target: '#files-drag-drop' })
|
||||
|
|
|
|||
|
|
@ -1,5 +1,11 @@
|
|||
# @uppy/status-bar
|
||||
|
||||
## 5.0.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 8ac1654: Change internal type from `any` to `unknown`.
|
||||
|
||||
## 5.0.1
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@uppy/status-bar",
|
||||
"description": "A progress bar for Uppy, with many bells and whistles.",
|
||||
"version": "5.0.1",
|
||||
"version": "5.0.2",
|
||||
"license": "MIT",
|
||||
"style": "dist/style.min.css",
|
||||
"type": "module",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,14 @@
|
|||
# @uppy/webcam
|
||||
|
||||
## 5.0.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 8ac1654: - Remove TagFile type - Use UppyFile instead.
|
||||
- Split UppyFile into two interfaces distinguished by the `isRemote` boolean:
|
||||
- LocalUppyFile
|
||||
- RemoteUppyFile
|
||||
|
||||
## 5.0.1
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@uppy/webcam",
|
||||
"description": "Uppy plugin that takes photos or records videos using the device's camera.",
|
||||
"version": "5.0.1",
|
||||
"version": "5.0.2",
|
||||
"license": "MIT",
|
||||
"style": "dist/style.min.css",
|
||||
"type": "module",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,14 @@
|
|||
# @uppy/xhr-upload
|
||||
|
||||
## 5.0.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 8ac1654: - 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 interfaces distinguished by the `isRemote` boolean:
|
||||
- LocalUppyFile
|
||||
- RemoteUppyFile
|
||||
|
||||
## 5.0.1
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@uppy/xhr-upload",
|
||||
"description": "Plain and simple classic HTML multipart form uploads with Uppy, as well as uploads using the HTTP PUT method.",
|
||||
"version": "5.0.1",
|
||||
"version": "5.0.2",
|
||||
"license": "MIT",
|
||||
"type": "module",
|
||||
"sideEffects": false,
|
||||
|
|
|
|||
|
|
@ -1,5 +1,16 @@
|
|||
# uppy
|
||||
|
||||
## 5.1.8
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [8ac1654]
|
||||
- Updated dependencies [8ac1654]
|
||||
- Updated dependencies [8ac1654]
|
||||
- @uppy/status-bar@5.0.2
|
||||
- @uppy/webcam@5.0.2
|
||||
- @uppy/xhr-upload@5.0.2
|
||||
|
||||
## 5.1.7
|
||||
|
||||
### 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": "5.1.7",
|
||||
"version": "5.1.8",
|
||||
"license": "MIT",
|
||||
"main": "lib/index.js",
|
||||
"module": "lib/index.js",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue