Release: uppy@3.24.1 (#5069)

| Package          | Version | Package          | Version |
| ---------------- | ------- | ---------------- | ------- |
| @uppy/companion  |  4.13.1 | uppy             |  3.24.1 |
| @uppy/file-input |   3.1.1 |                  |         |

- @uppy/companion: upgrade redis (Mikael Finstad / #5065)
- meta: fix `watch:*` scripts (Antoine du Hamel / #5046)
- meta: include more packages in `compare_diff` CI (Antoine du Hamel / #5044)
- @uppy/file-input: add missing export (Antoine du Hamel / #5045)
- meta: Bump express from 4.18.1 to 4.19.2 in /packages/@uppy/companion (dependabot[bot] / #5036)
- @uppy/companion: Bump express from 4.18.1 to 4.19.2 (dependabot[bot] / #5037)
This commit is contained in:
github-actions[bot] 2024-04-10 13:16:49 +00:00 committed by GitHub
parent 1df1b082fb
commit 3deb64b34a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 49 additions and 18 deletions

View file

@ -4,7 +4,7 @@
<meta charset="utf-8" />
<title>Uppy</title>
<link
href="https://releases.transloadit.com/uppy/v3.24.0/uppy.min.css"
href="https://releases.transloadit.com/uppy/v3.24.1/uppy.min.css"
rel="stylesheet"
/>
</head>
@ -22,7 +22,7 @@
DragDrop,
ProgressBar,
AwsS3,
} from 'https://releases.transloadit.com/uppy/v3.24.0/uppy.min.mjs'
} from 'https://releases.transloadit.com/uppy/v3.24.1/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/v3.24.0/uppy.min.css"
href="https://releases.transloadit.com/uppy/v3.24.1/uppy.min.css"
rel="stylesheet"
/>
</head>
@ -16,7 +16,7 @@
Uppy,
Dashboard,
AwsS3,
} from 'https://releases.transloadit.com/uppy/v3.24.0/uppy.min.mjs'
} from 'https://releases.transloadit.com/uppy/v3.24.1/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.