Skip to content

Commit 24cd9e6

Browse files
Release: uppy@2.3.2 (#3383)
| Package | Version | Package | Version | | --------------- | ------- | --------------- | ------- | | @uppy/angular | 0.2.8 | @uppy/vue | 0.4.5 | | @uppy/companion | 3.1.4 | uppy | 2.3.2 | | @uppy/svelte | 1.0.7 | | | - meta: fix release script (Antoine du Hamel) - @uppy/core: document file.name (Merlijn Vos / #3381) - @uppy/angular,@uppy/companion,@uppy/svelte,@uppy/vue: add `.npmignore` files to ignore `.gitignore` when packing (Antoine du Hamel / #3380) - meta: add VSCode workspace settings to `.gitignore` (Antoine du Hamel) - @uppy/companion: Upgrade ws in companion (Merlijn Vos / #3377) - meta: use ESBuild to bundle in E2E test suite (Antoine du Hamel / #3375) - meta: update linter config to parse ESM files (Antoine du Hamel / #3371) - meta: move dev workspace to `private/` (Antoine du Hamel / #3368) - meta: use Vite for examples/dev (Antoine du Hamel / #3361) - website: remove dependency on `crypto` in @uppy/transloadit example (Antoine du Hamel / #3367) - meta: enable linter on website examples (Antoine du Hamel / #3366) - meta: enable linter on mjs scripts (Antoine du Hamel / #3364) - @uppy/angular: Fix module field in `package.json` (Merlijn Vos / #3365) - meta: improve release script wording and formatting (Artur Paikin)
1 parent 83d48f0 commit 24cd9e6

File tree

20 files changed

+169
-107
lines changed

20 files changed

+169
-107
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.1/uppy.min.js"></script>`) or bundle it with your webapp.
4+
this from a CDN (`<script src="https://releases.transloadit.com/uppy/v2.3.2/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: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,32 @@ 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.3.2
16+
17+
Released: 2021-12-21
18+
19+
| Package | Version | Package | Version |
20+
| --------------- | ------- | --------------- | ------- |
21+
| @uppy/angular | 0.2.8 | @uppy/vue | 0.4.5 |
22+
| @uppy/companion | 3.1.4 | uppy | 2.3.2 |
23+
| @uppy/svelte | 1.0.7 | | |
24+
25+
- meta: fix release script (Antoine du Hamel)
26+
- @uppy/core: document file.name (Merlijn Vos / #3381)
27+
- @uppy/angular,@uppy/companion,@uppy/svelte,@uppy/vue: add `.npmignore` files to ignore `.gitignore` when packing (Antoine du Hamel / #3380)
28+
- meta: add VSCode workspace settings to `.gitignore` (Antoine du Hamel)
29+
- @uppy/companion: Upgrade ws in companion (Merlijn Vos / #3377)
30+
- meta: use ESBuild to bundle in E2E test suite (Antoine du Hamel / #3375)
31+
- meta: update linter config to parse ESM files (Antoine du Hamel / #3371)
32+
- meta: move dev workspace to `private/` (Antoine du Hamel / #3368)
33+
- meta: use Vite for examples/dev (Antoine du Hamel / #3361)
34+
- website: remove dependency on `crypto` in @uppy/transloadit example (Antoine du Hamel / #3367)
35+
- meta: enable linter on website examples (Antoine du Hamel / #3366)
36+
- meta: enable linter on mjs scripts (Antoine du Hamel / #3364)
37+
- @uppy/angular: Fix module field in `package.json` (Merlijn Vos / #3365)
38+
- meta: improve release script wording and formatting (Artur Paikin)
39+
40+
1541
## 2.3.1
1642

1743
Released: 2021-12-09

README.md

Lines changed: 86 additions & 82 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.1/uppy.min.css" rel="stylesheet">
7+
<link href="https://releases.transloadit.com/uppy/v2.3.2/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.1/uppy.min.js"></script>
11+
<script src="https://releases.transloadit.com/uppy/v2.3.2/uppy.min.js"></script>
1212
<script>
1313
const uppy = new Uppy.Core({debug: true, autoProceed: false})
1414
.use(Uppy.Dashboard, { trigger: '#uppyModalOpener' })

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.1/uppy.min.css" rel="stylesheet">
7+
<link href="https://releases.transloadit.com/uppy/v2.3.2/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.1/uppy.min.js"></script>
11+
<script src="https://releases.transloadit.com/uppy/v2.3.2/uppy.min.js"></script>
1212
<script>
1313
const uppy = new Uppy.Core({debug: true, autoProceed: false})
1414
.use(Uppy.Dashboard, { trigger: '#uppyModalOpener' })

packages/@uppy/angular/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @uppy/angular
22

3+
## 0.2.8
4+
5+
Released: 2021-12-21
6+
Included in: Uppy v2.3.2
7+
8+
- @uppy/angular,@uppy/companion,@uppy/svelte,@uppy/vue: add `.npmignore` files to ignore `.gitignore` when packing (Antoine du Hamel / #3380)
9+
- @uppy/angular: Fix module field in `package.json` (Merlijn Vos / #3365)
10+
311
## 0.2.6
412

513
Released: 2021-12-07

packages/@uppy/angular/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@uppy/angular",
3-
"version": "0.2.7",
3+
"version": "0.2.8",
44
"module": "dist/angular/esm2020/public-api.mjs",
55
"types": "dist/angular/uppy-angular.d.ts",
66
"scripts": {

packages/@uppy/companion/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @uppy/companion
22

3+
## 3.1.4
4+
5+
Released: 2021-12-21
6+
Included in: Uppy v2.3.2
7+
8+
- @uppy/angular,@uppy/companion,@uppy/svelte,@uppy/vue: add `.npmignore` files to ignore `.gitignore` when packing (Antoine du Hamel / #3380)
9+
- @uppy/companion: Upgrade ws in companion (Merlijn Vos / #3377)
10+
311
## 3.1.3
412

513
Released: 2021-12-09

packages/@uppy/companion/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@uppy/companion",
3-
"version": "3.1.3",
3+
"version": "3.1.4",
44
"description": "OAuth helper and remote fetcher for Uppy's (https://uppy.io) extensible file upload widget with support for drag&drop, resumable uploads, previews, restrictions, file processing/encoding, remote providers like Dropbox and Google Drive, S3 and more :dog:",
55
"main": "lib/companion.js",
66
"types": "lib/companion.d.ts",

packages/@uppy/robodog/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ We recommend installing from npm and then using a module bundler such as [Webpac
2020
Alternatively, you can also use this package in a pre-built bundle from Transloadit’s CDN: Edgly.
2121

2222
```html
23-
<link rel="stylesheet" href="https://releases.transloadit.com/uppy/v2.3.1/robodog.min.css">
24-
<script src="https://releases.transloadit.com/uppy/v2.3.1/robodog.min.js"></script>
23+
<link rel="stylesheet" href="https://releases.transloadit.com/uppy/v2.3.2/robodog.min.css">
24+
<script src="https://releases.transloadit.com/uppy/v2.3.2/robodog.min.js"></script>
2525
```
2626

2727
Then, a global `Robodog` variable will be available. For usage instructions, please see the [main Robodog documentation](https://uppy.io/docs/robodog).

0 commit comments

Comments
 (0)