Release: uppy@4.0.0-beta.8 (#5189)

| Package              |      Version | Package              |      Version |
| -------------------- | ------------ | -------------------- | ------------ |
| @uppy/aws-s3         | 4.0.0-beta.4 | @uppy/status-bar     | 4.0.0-beta.8 |
| @uppy/companion      | 5.0.0-beta.7 | @uppy/svelte         | 4.0.0-beta.4 |
| @uppy/compressor     | 2.0.0-beta.8 | @uppy/tus            | 4.0.0-beta.5 |
| @uppy/core           | 4.0.0-beta.8 | @uppy/utils          | 6.0.0-beta.7 |
| @uppy/dashboard      | 4.0.0-beta.8 | @uppy/vue            | 2.0.0-beta.3 |
| @uppy/image-editor   | 3.0.0-beta.5 | @uppy/webcam         | 4.0.0-beta.7 |
| @uppy/provider-views | 4.0.0-beta.6 | uppy                 | 4.0.0-beta.8 |

- @uppy/core: resolve some (breaking) TODOs (Antoine du Hamel / #4824)
- @uppy/companion: encode `uploadId` (Mikael Finstad / #5168)
- @uppy/companion: bump `express-session` (Antoine du Hamel / #5177)
- @uppy/companion: remove dependency on `express-request-id` (Antoine du Hamel / #5176)
- @uppy/companion: bump prom to v15 (Antoine du Hamel / #5175)
- docs: fix linter (Antoine du Hamel)
- meta: remove `nodemon` from the deps (Antoine du Hamel / #5172)
- docs: update `@uppy/aws-s3` docs (Antoine du Hamel / #5093)
- meta: update more dependencies (Antoine du Hamel / #5171)
- @uppy/companion: upgrade deps (Antoine du Hamel / #5119)
This commit is contained in:
github-actions[bot] 2024-05-22 08:14:30 +00:00 committed by GitHub
parent 30725ced4d
commit e47a7e9c21
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
23 changed files with 70 additions and 26 deletions

View file

@ -4,7 +4,7 @@
<meta charset="utf-8" />
<title>Uppy</title>
<link
href="https://releases.transloadit.com/uppy/v4.0.0-beta.7/uppy.min.css"
href="https://releases.transloadit.com/uppy/v4.0.0-beta.8/uppy.min.css"
rel="stylesheet"
/>
</head>
@ -22,7 +22,7 @@
DragDrop,
ProgressBar,
AwsS3,
} from 'https://releases.transloadit.com/uppy/v4.0.0-beta.7/uppy.min.mjs'
} from 'https://releases.transloadit.com/uppy/v4.0.0-beta.8/uppy.min.mjs'
// Function for displaying uploaded files
const onUploadSuccess = (elForUploadedFiles) => (file, response) => {

View file

@ -4,7 +4,7 @@
<meta charset="utf-8" />
<title>Uppy AWS upload example</title>
<link
href="https://releases.transloadit.com/uppy/v4.0.0-beta.7/uppy.min.css"
href="https://releases.transloadit.com/uppy/v4.0.0-beta.8/uppy.min.css"
rel="stylesheet"
/>
</head>
@ -16,7 +16,7 @@
Uppy,
Dashboard,
AwsS3,
} from 'https://releases.transloadit.com/uppy/v4.0.0-beta.7/uppy.min.mjs'
} from 'https://releases.transloadit.com/uppy/v4.0.0-beta.8/uppy.min.mjs'
/**
* This generator transforms a deep object into URL-encodable pairs
* to work with `URLSearchParams` on the client and `body-parser` on the server.