release missing packages (#6025)

@uppy/xhr-upload, @uppy/webcam, @uppy/status-bar

fixes #6019

---------

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Mikael Finstad 2025-10-22 21:01:00 +08:00 committed by GitHub
parent f34f685c84
commit 8ac1654484
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 21 additions and 0 deletions

5
.changeset/status-bar.md Normal file
View file

@ -0,0 +1,5 @@
---
"@uppy/status-bar": patch
---
Change internal type from `any` to `unknown`.

8
.changeset/webcam.md Normal file
View file

@ -0,0 +1,8 @@
---
"@uppy/webcam": patch
---
- Remove TagFile type - Use UppyFile instead.
- Split UppyFile into two interfaces distinguished by the `isRemote` boolean:
- LocalUppyFile
- RemoteUppyFile

8
.changeset/xhr-upload.md Normal file
View file

@ -0,0 +1,8 @@
---
"@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