Skip to content

Commit

Permalink
Release: uppy@3.9.1 (#4453)
Browse files Browse the repository at this point in the history
| Package           | Version | Package           | Version |
| ----------------- | ------- | ----------------- | ------- |
| @uppy/transloadit |   3.1.5 | uppy              |   3.9.1 |

- @uppy/transloadit: clean up event listener to prevent cancelled assemblies (Merlijn Vos / #4447)
  • Loading branch information
aduh95-test-account committed May 15, 2023
1 parent 6e17e26 commit 6f3ea74
Show file tree
Hide file tree
Showing 10 changed files with 34 additions and 18 deletions.
2 changes: 1 addition & 1 deletion BUNDLE-README.md
Original file line number Diff line number Diff line change
@@ -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/v3.9.0/uppy.min.js"></script>`) or bundle it with your webapp.
this from a CDN (`<script src="https://releases.transloadit.com/uppy/v3.9.1/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
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,17 @@ Please add your entries in this format:

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

## 3.9.1

Released: 2023-05-15

| Package | Version | Package | Version |
| ----------------- | ------- | ----------------- | ------- |
| @uppy/transloadit | 3.1.5 | uppy | 3.9.1 |

- @uppy/transloadit: clean up event listener to prevent cancelled assemblies (Merlijn Vos / #4447)


## 3.9.0

Released: 2023-05-02
Expand Down
10 changes: 4 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,20 +67,20 @@ const uppy = new Uppy()
npm install @uppy/core @uppy/dashboard @uppy/tus
```

Add CSS [uppy.min.css](https://releases.transloadit.com/uppy/v3.9.0/uppy.min.css), either to your HTML page’s `<head>` or include in JS, if your bundler of choice supports it.
Add CSS [uppy.min.css](https://releases.transloadit.com/uppy/v3.9.1/uppy.min.css), either to your HTML page’s `<head>` or include in JS, if your bundler of choice supports it.

Alternatively, you can also use a pre-built bundle from Transloadit’s CDN: Edgly. In that case `Uppy` will attach itself to the global `window.Uppy` object.

> ⚠️ The bundle consists of most Uppy plugins, so this method is not recommended for production, as your users will have to download all plugins when you are likely using only a few.
```html
<!-- 1. Add CSS to `<head>` -->
<link href="https://releases.transloadit.com/uppy/v3.9.0/uppy.min.css" rel="stylesheet">
<link href="https://releases.transloadit.com/uppy/v3.9.1/uppy.min.css" rel="stylesheet">

<!-- 2. Initialize -->
<div id="files-drag-drop"></div>
<script type="module">
import { Uppy, Dashboard, Tus } from "https://releases.transloadit.com/uppy/v3.9.0/uppy.min.mjs"
import { Uppy, Dashboard, Tus } from "https://releases.transloadit.com/uppy/v3.9.1/uppy.min.mjs"
const uppy = new Uppy()
uppy.use(Dashboard, { target: '#files-drag-drop' })
Expand Down Expand Up @@ -182,7 +182,7 @@ If you’re using Uppy from CDN, those polyfills are already included in the leg
bundle, so no need to include anything additionally:
```html
<script src="https://releases.transloadit.com/uppy/v3.9.0/uppy.legacy.min.js"></script>
<script src="https://releases.transloadit.com/uppy/v3.9.1/uppy.legacy.min.js"></script>
```
## FAQ
Expand Down Expand Up @@ -486,5 +486,3 @@ We use Browserstack for manual testing <a href="https://www.browserstack.com" ta
## License
[The MIT License](LICENSE).
E).
E).
4 changes: 2 additions & 2 deletions examples/aws-nodejs/public/drag.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="utf-8">
<title>Uppy</title>
<link href="https://releases.transloadit.com/uppy/v3.9.0/uppy.min.css" rel="stylesheet">
<link href="https://releases.transloadit.com/uppy/v3.9.1/uppy.min.css" rel="stylesheet">
</head>
<body>
<section class="example">
Expand All @@ -14,7 +14,7 @@ <h5>Uploaded files:</h5>
<ol></ol>
</div>
<script type="module">
import {Uppy, DragDrop, ProgressBar, AwsS3 } from "https://releases.transloadit.com/uppy/v3.9.0/uppy.min.mjs"
import {Uppy, DragDrop, ProgressBar, AwsS3 } from "https://releases.transloadit.com/uppy/v3.9.1/uppy.min.mjs"

// Function for displaying uploaded files
const onUploadSuccess = (elForUploadedFiles) => (file, response) => {
Expand Down
4 changes: 2 additions & 2 deletions examples/aws-nodejs/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="utf-8">
<title>Uppy – AWS upload example</title>
<link href="https://releases.transloadit.com/uppy/v3.9.0/uppy.min.css" rel="stylesheet">
<link href="https://releases.transloadit.com/uppy/v3.9.1/uppy.min.css" rel="stylesheet">
</head>
<body>
<h1>AWS upload example</h1>
Expand All @@ -12,7 +12,7 @@ <h2>AWS S3 (non multipart)</h2>
<h2>AWS S3 multipart</h2>
<div id="aws-multipart"></div>
<script type="module">
import { Uppy, Dashboard, AwsS3Multipart, AwsS3 } from "https://releases.transloadit.com/uppy/v3.9.0/uppy.min.mjs"
import { Uppy, Dashboard, AwsS3Multipart, AwsS3 } from "https://releases.transloadit.com/uppy/v3.9.1/uppy.min.mjs"
{
const uppy = new Uppy()
.use(Dashboard, {
Expand Down
6 changes: 3 additions & 3 deletions examples/cdn-example/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<title></title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="https://releases.transloadit.com/uppy/v3.9.0/uppy.min.css" rel="stylesheet" />
<link href="https://releases.transloadit.com/uppy/v3.9.1/uppy.min.css" rel="stylesheet" />
</head>
<body>
<noscript>You need JavaScript enabled for this example to work.</noscript>
Expand All @@ -16,7 +16,7 @@
Dashboard,
Webcam,
Tus,
} from "https://releases.transloadit.com/uppy/v3.9.0/uppy.min.mjs";
} from "https://releases.transloadit.com/uppy/v3.9.1/uppy.min.mjs";

const uppy = new Uppy({ debug: true, autoProceed: false })
.use(Dashboard, { trigger: "#uppyModalOpener" })
Expand All @@ -29,7 +29,7 @@
</script>

<!-- To support older browsers, you can use the legacy bundle which adds a global `Uppy` object. -->
<script nomodule src="https://releases.transloadit.com/uppy/v3.9.0/uppy.legacy.min.js"></script>
<script nomodule src="https://releases.transloadit.com/uppy/v3.9.1/uppy.legacy.min.js"></script>
<script nomodule>
{
const { Dashboard, Webcam, Tus } = Uppy;
Expand Down
4 changes: 2 additions & 2 deletions examples/uppy-with-companion/client/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
<title></title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://releases.transloadit.com/uppy/v3.9.0/uppy.min.css" rel="stylesheet">
<link href="https://releases.transloadit.com/uppy/v3.9.1/uppy.min.css" rel="stylesheet">
</head>
<body>
<button id="uppyModalOpener">Open Modal</button>
<noscript>This web page requires JavaScript to work properly.</noscript>
<script type="module">
import { Uppy, Dashboard, Instagram, GoogleDrive, Tus } from "https://releases.transloadit.com/uppy/v3.9.0/uppy.min.mjs"
import { Uppy, Dashboard, Instagram, GoogleDrive, Tus } from "https://releases.transloadit.com/uppy/v3.9.1/uppy.min.mjs"

const uppy = new Uppy({debug: true, autoProceed: false})
.use(Dashboard, { trigger: '#uppyModalOpener' })
Expand Down
7 changes: 7 additions & 0 deletions packages/@uppy/transloadit/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @uppy/transloadit

## 3.1.5

Released: 2023-05-15
Included in: Uppy v3.9.1

- @uppy/transloadit: clean up event listener to prevent cancelled assemblies (Merlijn Vos / #4447)

## 3.1.4

Released: 2023-05-02
Expand Down
2 changes: 1 addition & 1 deletion packages/@uppy/transloadit/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@uppy/transloadit",
"description": "The Transloadit plugin can be used to upload files to Transloadit for all kinds of processing, such as transcoding video, resizing images, zipping/unzipping, and more",
"version": "3.1.4",
"version": "3.1.5",
"license": "MIT",
"main": "lib/index.js",
"types": "types/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/uppy/package.json
Original file line number Diff line number Diff line change
@@ -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": "3.9.0",
"version": "3.9.1",
"license": "MIT",
"main": "index.mjs",
"module": "index.mjs",
Expand Down

0 comments on commit 6f3ea74

Please sign in to comment.