Skip to content

Commit 0fc3336

Browse files
Release: uppy@2.4.0 (#3420)
| Package | Version | Package | Version | | -------------------- | ------- | -------------------- | ------- | | @uppy/drag-drop | 2.0.6 | @uppy/tus | 2.2.0 | | @uppy/image-editor | 1.1.1 | @uppy/utils | 4.0.5 | | @uppy/screen-capture | 2.0.6 | @uppy/robodog | 2.2.0 | | @uppy/transloadit | 2.1.0 | uppy | 2.4.0 | - @uppy/transloadit: ignore rate limiting errors when polling (Antoine du Hamel / #3418) - @uppy/tus: pause all requests in response to server rate limiting (Antoine du Hamel / #3394) - @uppy/transloadit: better defaults for rate limiting (Antoine du Hamel / #3414) - @uppy/companion: Fix Companion deploys (kiloreux / #3388) - meta: update aws-presigned-url example to use esm (Antoine du Hamel / #3413) - @uppy/image-editor: namespace input range css (Merlijn Vos / #3406) - @uppy/screen-capture: Add missing option to the screen capture types (Mustafa Navruz / #3400) - @uppy/drag-drop: fix `undefined is not a function` TypeError (Antoine du Hamel / #3397) - website: update december 2021 blog post (Antoine du Hamel / #3396) - website: Polished the latest update blog (AJvanLoon / #3390) - website: docs: fix typo in audio.md (heocoi / #3389) - website: 2.0-2.3 post draft (Artur Paikin / #3370)
1 parent e2c6259 commit 0fc3336

File tree

29 files changed

+155
-93
lines changed

29 files changed

+155
-93
lines changed

BUNDLE-README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Uppy
22

33
Hi, thanks for trying out the bundled version of the Uppy File Uploader. You can use
4-
this from a CDN (`<script src="https://releases.transloadit.com/uppy/v2.3.3/uppy.min.js"></script>`) or bundle it with your webapp.
4+
this from a CDN (`<script src="https://releases.transloadit.com/uppy/v2.4.0/uppy.min.js"></script>`) or bundle it with your webapp.
55

66
Note that the recommended way to use Uppy is to install it with yarn/npm and use a
77
bundler like Webpack so that you can create a smaller custom build with only the

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,31 @@ Please add your entries in this format:
1212

1313
In the current stage we aim to release a new version at least every month.
1414

15+
## 2.4.0
16+
17+
Released: 2022-01-10
18+
19+
| Package | Version | Package | Version |
20+
| -------------------- | ------- | -------------------- | ------- |
21+
| @uppy/drag-drop | 2.0.6 | @uppy/tus | 2.2.0 |
22+
| @uppy/image-editor | 1.1.1 | @uppy/utils | 4.0.5 |
23+
| @uppy/screen-capture | 2.0.6 | @uppy/robodog | 2.2.0 |
24+
| @uppy/transloadit | 2.1.0 | uppy | 2.4.0 |
25+
26+
- @uppy/transloadit: ignore rate limiting errors when polling (Antoine du Hamel / #3418)
27+
- @uppy/tus: pause all requests in response to server rate limiting (Antoine du Hamel / #3394)
28+
- @uppy/transloadit: better defaults for rate limiting (Antoine du Hamel / #3414)
29+
- @uppy/companion: Fix Companion deploys (kiloreux / #3388)
30+
- meta: update aws-presigned-url example to use esm (Antoine du Hamel / #3413)
31+
- @uppy/image-editor: namespace input range css (Merlijn Vos / #3406)
32+
- @uppy/screen-capture: Add missing option to the screen capture types (Mustafa Navruz / #3400)
33+
- @uppy/drag-drop: fix `undefined is not a function` TypeError (Antoine du Hamel / #3397)
34+
- website: update december 2021 blog post (Antoine du Hamel / #3396)
35+
- website: Polished the latest update blog (AJvanLoon / #3390)
36+
- website: docs: fix typo in audio.md (heocoi / #3389)
37+
- website: 2.0-2.3 post draft (Artur Paikin / #3370)
38+
39+
1540
## 2.3.3
1641

1742
Released: 2022-01-04

README.md

Lines changed: 57 additions & 57 deletions
Large diffs are not rendered by default.

examples/cdn-example/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
<title></title>
55
<meta charset="UTF-8">
66
<meta name="viewport" content="width=device-width, initial-scale=1">
7-
<link href="https://releases.transloadit.com/uppy/v2.3.3/uppy.min.css" rel="stylesheet">
7+
<link href="https://releases.transloadit.com/uppy/v2.4.0/uppy.min.css" rel="stylesheet">
88
</head>
99
<body>
1010
<button id="uppyModalOpener">Open Modal</button>
11-
<script src="https://releases.transloadit.com/uppy/v2.3.3/uppy.min.js"></script>
11+
<script src="https://releases.transloadit.com/uppy/v2.4.0/uppy.min.js"></script>
1212
<script>
1313
const uppy = new Uppy.Core({debug: true, autoProceed: false})
1414
.use(Uppy.Dashboard, { trigger: '#uppyModalOpener' })

examples/transloadit-textarea/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html>
33
<head>
44
<meta charset="utf-8">
5-
<link rel="stylesheet" href="https://releases.transloadit.com/uppy/robodog/v2.1.5/robodog.css">
5+
<link rel="stylesheet" href="https://releases.transloadit.com/uppy/robodog/v2.2.0/robodog.css">
66
<style>
77
body {
88
font-family: Roboto, Open Sans;

examples/uppy-with-companion/client/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
<title></title>
55
<meta charset="UTF-8">
66
<meta name="viewport" content="width=device-width, initial-scale=1">
7-
<link href="https://releases.transloadit.com/uppy/v2.3.3/uppy.min.css" rel="stylesheet">
7+
<link href="https://releases.transloadit.com/uppy/v2.4.0/uppy.min.css" rel="stylesheet">
88
</head>
99
<body>
1010
<button id="uppyModalOpener">Open Modal</button>
11-
<script src="https://releases.transloadit.com/uppy/v2.3.3/uppy.min.js"></script>
11+
<script src="https://releases.transloadit.com/uppy/v2.4.0/uppy.min.js"></script>
1212
<script>
1313
const uppy = new Uppy.Core({debug: true, autoProceed: false})
1414
.use(Uppy.Dashboard, { trigger: '#uppyModalOpener' })

packages/@uppy/drag-drop/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @uppy/drag-drop
22

3+
## 2.0.6
4+
5+
Released: 2022-01-10
6+
Included in: Uppy v2.4.0
7+
8+
- @uppy/drag-drop: fix `undefined is not a function` TypeError (Antoine du Hamel / #3397)
9+
310
## 2.0.5
411

512
Released: 2021-12-07

packages/@uppy/drag-drop/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@uppy/drag-drop",
33
"description": "Droppable zone UI for Uppy. Drag and drop files into it to upload.",
4-
"version": "2.0.5",
4+
"version": "2.0.6",
55
"license": "MIT",
66
"main": "lib/index.js",
77
"style": "dist/style.min.css",

packages/@uppy/image-editor/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @uppy/image-editor
22

3+
## 1.1.1
4+
5+
Released: 2022-01-10
6+
Included in: Uppy v2.4.0
7+
8+
- @uppy/image-editor: namespace input range css (Merlijn Vos / #3406)
9+
310
## 1.1.0
411

512
Released: 2021-12-07

packages/@uppy/image-editor/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@uppy/image-editor",
33
"description": "Image editor and cropping UI",
4-
"version": "1.1.0",
4+
"version": "1.1.1",
55
"license": "MIT",
66
"main": "lib/index.js",
77
"style": "dist/style.min.css",

0 commit comments

Comments
 (0)