Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release: uppy@2.3.2 #3383

Merged
merged 1 commit into from Dec 21, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion BUNDLE-README.md
@@ -1,7 +1,7 @@
# Uppy

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

Note that the recommended way to use Uppy is to install it with yarn/npm and use a
bundler like Webpack so that you can create a smaller custom build with only the
Expand Down
26 changes: 26 additions & 0 deletions CHANGELOG.md
Expand Up @@ -12,6 +12,32 @@ Please add your entries in this format:

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

## 2.3.2

Released: 2021-12-21

| 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)


## 2.3.1

Released: 2021-12-09
Expand Down
168 changes: 86 additions & 82 deletions README.md

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions examples/cdn-example/index.html
Expand Up @@ -4,11 +4,11 @@
<title></title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://releases.transloadit.com/uppy/v2.3.1/uppy.min.css" rel="stylesheet">
<link href="https://releases.transloadit.com/uppy/v2.3.2/uppy.min.css" rel="stylesheet">
</head>
<body>
<button id="uppyModalOpener">Open Modal</button>
<script src="https://releases.transloadit.com/uppy/v2.3.1/uppy.min.js"></script>
<script src="https://releases.transloadit.com/uppy/v2.3.2/uppy.min.js"></script>
<script>
const uppy = new Uppy.Core({debug: true, autoProceed: false})
.use(Uppy.Dashboard, { trigger: '#uppyModalOpener' })
Expand Down
4 changes: 2 additions & 2 deletions examples/uppy-with-companion/client/index.html
Expand Up @@ -4,11 +4,11 @@
<title></title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://releases.transloadit.com/uppy/v2.3.1/uppy.min.css" rel="stylesheet">
<link href="https://releases.transloadit.com/uppy/v2.3.2/uppy.min.css" rel="stylesheet">
</head>
<body>
<button id="uppyModalOpener">Open Modal</button>
<script src="https://releases.transloadit.com/uppy/v2.3.1/uppy.min.js"></script>
<script src="https://releases.transloadit.com/uppy/v2.3.2/uppy.min.js"></script>
<script>
const uppy = new Uppy.Core({debug: true, autoProceed: false})
.use(Uppy.Dashboard, { trigger: '#uppyModalOpener' })
Expand Down
8 changes: 8 additions & 0 deletions packages/@uppy/angular/CHANGELOG.md
@@ -1,5 +1,13 @@
# @uppy/angular

## 0.2.8

Released: 2021-12-21
Included in: Uppy v2.3.2

- @uppy/angular,@uppy/companion,@uppy/svelte,@uppy/vue: add `.npmignore` files to ignore `.gitignore` when packing (Antoine du Hamel / #3380)
- @uppy/angular: Fix module field in `package.json` (Merlijn Vos / #3365)

## 0.2.6

Released: 2021-12-07
Expand Down
2 changes: 1 addition & 1 deletion packages/@uppy/angular/package.json
@@ -1,6 +1,6 @@
{
"name": "@uppy/angular",
"version": "0.2.7",
"version": "0.2.8",
"module": "dist/angular/esm2020/public-api.mjs",
"types": "dist/angular/uppy-angular.d.ts",
"scripts": {
Expand Down
8 changes: 8 additions & 0 deletions packages/@uppy/companion/CHANGELOG.md
@@ -1,5 +1,13 @@
# @uppy/companion

## 3.1.4

Released: 2021-12-21
Included in: Uppy v2.3.2

- @uppy/angular,@uppy/companion,@uppy/svelte,@uppy/vue: add `.npmignore` files to ignore `.gitignore` when packing (Antoine du Hamel / #3380)
- @uppy/companion: Upgrade ws in companion (Merlijn Vos / #3377)

## 3.1.3

Released: 2021-12-09
Expand Down
2 changes: 1 addition & 1 deletion packages/@uppy/companion/package.json
@@ -1,6 +1,6 @@
{
"name": "@uppy/companion",
"version": "3.1.3",
"version": "3.1.4",
"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:",
"main": "lib/companion.js",
"types": "lib/companion.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions packages/@uppy/robodog/README.md
Expand Up @@ -20,8 +20,8 @@ We recommend installing from npm and then using a module bundler such as [Webpac
Alternatively, you can also use this package in a pre-built bundle from Transloadit’s CDN: Edgly.

```html
<link rel="stylesheet" href="https://releases.transloadit.com/uppy/v2.3.1/robodog.min.css">
<script src="https://releases.transloadit.com/uppy/v2.3.1/robodog.min.js"></script>
<link rel="stylesheet" href="https://releases.transloadit.com/uppy/v2.3.2/robodog.min.css">
<script src="https://releases.transloadit.com/uppy/v2.3.2/robodog.min.js"></script>
```

Then, a global `Robodog` variable will be available. For usage instructions, please see the [main Robodog documentation](https://uppy.io/docs/robodog).
Expand Down
8 changes: 8 additions & 0 deletions packages/@uppy/svelte/CHANGELOG.md
@@ -0,0 +1,8 @@
# @uppy/svelte

## 1.0.7

Released: 2021-12-21
Included in: Uppy v2.3.2

- @uppy/angular,@uppy/companion,@uppy/svelte,@uppy/vue: add `.npmignore` files to ignore `.gitignore` when packing (Antoine du Hamel / #3380)
2 changes: 1 addition & 1 deletion packages/@uppy/svelte/package.json
Expand Up @@ -3,7 +3,7 @@
"svelte": "src/index.js",
"module": "dist/index.mjs",
"main": "dist/index.js",
"version": "1.0.6",
"version": "1.0.7",
"scripts": {
"build": "rollup -c",
"prepublishOnly": "yarn run build",
Expand Down
8 changes: 8 additions & 0 deletions packages/@uppy/vue/CHANGELOG.md
@@ -0,0 +1,8 @@
# @uppy/vue

## 0.4.5

Released: 2021-12-21
Included in: Uppy v2.3.2

- @uppy/angular,@uppy/companion,@uppy/svelte,@uppy/vue: add `.npmignore` files to ignore `.gitignore` when packing (Antoine du Hamel / #3380)
2 changes: 1 addition & 1 deletion packages/@uppy/vue/package.json
@@ -1,6 +1,6 @@
{
"name": "@uppy/vue",
"version": "0.4.4",
"version": "0.4.5",
"main": "lib/index.js",
"types": "types/index.d.ts",
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/uppy/package.json
@@ -1,7 +1,7 @@
{
"name": "uppy",
"description": "Extensible JavaScript file upload widget with support for drag&drop, resumable uploads, previews, restrictions, file processing/encoding, remote providers like Instagram, Dropbox, Google Drive, S3 and more :dog:",
"version": "2.3.1",
"version": "2.3.2",
"license": "MIT",
"main": "index.js",
"module": "index.mjs",
Expand Down
10 changes: 5 additions & 5 deletions website/src/docs/index.md
Expand Up @@ -19,12 +19,12 @@ Here’s the simplest example html page with Uppy (it uses a CDN bundle, while w
<head>
<meta charset="utf-8">
<title>Uppy</title>
<link href="https://releases.transloadit.com/uppy/v2.3.1/uppy.min.css" rel="stylesheet">
<link href="https://releases.transloadit.com/uppy/v2.3.2/uppy.min.css" rel="stylesheet">
</head>
<body>
<div id="drag-drop-area"></div>

<script src="https://releases.transloadit.com/uppy/v2.3.1/uppy.min.js"></script>
<script src="https://releases.transloadit.com/uppy/v2.3.2/uppy.min.js"></script>
<script>
var uppy = new Uppy.Core()
.use(Uppy.Dashboard, {
Expand Down Expand Up @@ -118,13 +118,13 @@ You can also use a pre-built bundle from Transloadit’s CDN: Edgly. `Uppy` will
1\. Add a script at the bottom of the closing `</body>` tag:

```html
<script src="https://releases.transloadit.com/uppy/v2.3.1/uppy.min.js"></script>
<script src="https://releases.transloadit.com/uppy/v2.3.2/uppy.min.js"></script>
```

2\. Add CSS to `<head>`:

```html
<link href="https://releases.transloadit.com/uppy/v2.3.1/uppy.min.css" rel="stylesheet">
<link href="https://releases.transloadit.com/uppy/v2.3.2/uppy.min.css" rel="stylesheet">
```

3\. Initialize at the bottom of the closing `</body>` tag:
Expand Down Expand Up @@ -183,5 +183,5 @@ export * from '@uppy/core'
If you’re using Uppy from CDN, those polyfills are already included in the bundle, no need to include anything additionally:

```html
<script src="https://releases.transloadit.com/uppy/v2.3.1/uppy.min.js"></script>
<script src="https://releases.transloadit.com/uppy/v2.3.2/uppy.min.js"></script>
```
2 changes: 1 addition & 1 deletion website/src/docs/locales.md
Expand Up @@ -34,7 +34,7 @@ const uppy = new Uppy({
Add a `<script>` tag with Uppy bundle and the locale pack you’d like to use. You can copy/paste the link from the CDN column in the [locales table](#List-of-locale-packs). The locale will attach itself to the `Uppy.locales` object.

```html
<script src="https://releases.transloadit.com/uppy/v2.3.1/uppy.min.js"></script>
<script src="https://releases.transloadit.com/uppy/v2.3.2/uppy.min.js"></script>
<script src="https://releases.transloadit.com/uppy/locales/v2.0.5/de_DE.min.js"></script>

<script>
Expand Down
6 changes: 3 additions & 3 deletions website/src/docs/migration-guides.md
Expand Up @@ -41,11 +41,11 @@ If you’re using Uppy from a CDN, we now provide two bundles: one for up-to-dat

```html
<!-- Modern browsers (recommended) -->
<script src="https://releases.transloadit.com/uppy/v2.3.1/uppy.min.js"></script>
<script src="https://releases.transloadit.com/uppy/v2.3.2/uppy.min.js"></script>

<!-- Legacy browsers (IE11+) -->
<script nomodule src="https://releases.transloadit.com/uppy/v2.3.1/uppy.legacy.min.js"></script>
<script type="module">import "https://releases.transloadit.com/uppy/v2.3.1/uppy.min.js";</script>
<script nomodule src="https://releases.transloadit.com/uppy/v2.3.2/uppy.legacy.min.js"></script>
<script type="module">import "https://releases.transloadit.com/uppy/v2.3.2/uppy.min.js";</script>
```

Please note that while you may be able to get 2.0 to work in IE11 this way, we do not officially support it anymore.
Expand Down
4 changes: 2 additions & 2 deletions website/src/examples/i18n/app.html
@@ -1,7 +1,7 @@
<!-- Load Uppy CSS bundle. It is advisable to install Uppy
from npm/yarn instead, and pick and choose the plugins/styles you need.
But for experimenting, you can use Transloadit’s CDN, Edgly: -->
<link rel="stylesheet" href="https://releases.transloadit.com/uppy/v2.3.1/uppy.min.css">
<link rel="stylesheet" href="https://releases.transloadit.com/uppy/v2.3.2/uppy.min.css">

<div class="UppyDragDrop"></div>
<div class="for-ProgressBar"></div>
Expand All @@ -12,7 +12,7 @@ <h5>Uploaded files:</h5>
</div>

<!-- Load Uppy JS bundle. -->
<script src="https://releases.transloadit.com/uppy/v2.3.1/uppy.min.js"></script>
<script src="https://releases.transloadit.com/uppy/v2.3.2/uppy.min.js"></script>
<script src="https://releases.transloadit.com/uppy/locales/v2.0.5/ru_RU.min.js"></script>
<script>
var uppy = new Uppy.Core({
Expand Down
4 changes: 2 additions & 2 deletions website/themes/uppy/layout/index.ejs
Expand Up @@ -187,8 +187,8 @@
<p>© <%- date(Date.now(), 'YYYY') %> <a href="https://transloadit.com" target="_blank">Transloadit</a></p>
</footer>

<link href="https://releases.transloadit.com/uppy/v2.3.1/uppy.min.css" rel="stylesheet">
<script src="https://releases.transloadit.com/uppy/v2.3.1/uppy.min.js"></script>
<link href="https://releases.transloadit.com/uppy/v2.3.2/uppy.min.css" rel="stylesheet">
<script src="https://releases.transloadit.com/uppy/v2.3.2/uppy.min.js"></script>

<script>
var TUS_ENDPOINT = 'https://tusd.tusdemo.net/files/'
Expand Down