From 97767438fd599a69a4eb0ab81b58a2b47fd82870 Mon Sep 17 00:00:00 2001 From: Antoine du Hamel Date: Thu, 4 Aug 2022 17:19:29 +0200 Subject: [PATCH 1/2] Release: uppy@2.13.3 (Maintenance) This is a release candidate for the following packages: - `@uppy/aws-s3-multipart`: 2.4.1 -> 2.4.2 - `@uppy/compressor`: 0.3.1 -> 0.3.2 - `@uppy/utils`: 4.1.0 -> 4.1.1 - `@uppy/robodog`: 2.9.2 -> 2.9.3 - `uppy`: 2.13.2 -> 2.13.3 --- BUNDLE-README.md | 2 +- CHANGELOG.md | 17 +++++++++++++++++ README.md | 9 +++++---- examples/cdn-example/index.html | 4 ++-- examples/transloadit-textarea/index.html | 2 +- examples/uppy-with-companion/client/index.html | 4 ++-- packages/@uppy/aws-s3-multipart/CHANGELOG.md | 7 +++++++ packages/@uppy/aws-s3-multipart/package.json | 2 +- packages/@uppy/compressor/CHANGELOG.md | 7 +++++++ packages/@uppy/compressor/package.json | 2 +- packages/@uppy/robodog/README.md | 4 ++-- packages/@uppy/robodog/package.json | 2 +- packages/@uppy/utils/CHANGELOG.md | 7 +++++++ packages/@uppy/utils/package.json | 2 +- packages/uppy/package.json | 2 +- website/src/docs/index.md | 10 +++++----- website/src/docs/locales.md | 2 +- website/src/docs/migration-guides.md | 6 +++--- website/src/docs/robodog-form.md | 6 +++--- website/src/docs/robodog.md | 4 ++-- website/src/examples/i18n/app.html | 6 +++--- website/src/examples/markdown-snippets/app.es6 | 2 +- website/src/examples/markdown-snippets/app.html | 2 +- website/themes/uppy/layout/index.ejs | 6 +++--- 24 files changed, 78 insertions(+), 39 deletions(-) diff --git a/BUNDLE-README.md b/BUNDLE-README.md index 0592a33363..eb26c82b8d 100644 --- a/BUNDLE-README.md +++ b/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 (``) or bundle it with your webapp. +this from a CDN (``) 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 diff --git a/CHANGELOG.md b/CHANGELOG.md index f72614548f..d6758ee6ea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,23 @@ Please add your entries in this format: In the current stage we aim to release a new version at least every month. +## 2.13.3 + +Released: 2022-08-04 + +| Package | Version | Package | Version | +| ---------------------- | ------- | ---------------------- | ------- | +| @uppy/aws-s3-multipart | 2.4.2 | @uppy/robodog | 2.9.3 | +| @uppy/compressor | 0.3.2 | uppy | 2.13.3 | +| @uppy/utils | 4.1.1 | | | + +- meta: fork branch in preparation for LTS (Antoine du Hamel) +- @uppy/aws-s3-multipart: ignore exception inside `abortMultipartUpload` (Antoine du Hamel / #3950) +- @uppy/utils: modernize `getDroppedFiles` (Antoine du Hamel / #3534) +- @uppy/compressor: Fix Compressor being broken when no name is in the compressed blob (Artur Paikin / #3947) +- e2e: mark tests as flaky (Antoine du Hamel / #3940) + + ## 2.13.2 Released: 2022-08-02 diff --git a/README.md b/README.md index dbec12507c..b0df220151 100644 --- a/README.md +++ b/README.md @@ -67,7 +67,7 @@ const uppy = new Uppy({ autoProceed: false }) $ npm install @uppy/core @uppy/dashboard @uppy/tus ``` -Add CSS [uppy.min.css](https://releases.transloadit.com/uppy/v2.13.2/uppy.min.css), either to your HTML page’s `` or include in JS, if your bundler of choice supports it. +Add CSS [uppy.min.css](https://releases.transloadit.com/uppy/v2.13.3/uppy.min.css), either to your HTML page’s `` 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. @@ -75,10 +75,10 @@ Alternatively, you can also use a pre-built bundle from Transloadit’s CDN: Edg ```html - + - +
@@ -184,7 +184,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 - + ``` ## FAQ @@ -472,3 +472,4 @@ We use Browserstack for manual testing - + - + + + + ``` Then, a global `Robodog` variable will be available. For usage instructions, please see the [main Robodog documentation](https://uppy.io/docs/robodog). diff --git a/packages/@uppy/robodog/package.json b/packages/@uppy/robodog/package.json index 1b3d8ee6b5..19bbe37033 100644 --- a/packages/@uppy/robodog/package.json +++ b/packages/@uppy/robodog/package.json @@ -1,7 +1,7 @@ { "name": "@uppy/robodog", "description": "Transloadit SDK for browsers based on Uppy", - "version": "2.9.2", + "version": "2.9.3", "license": "MIT", "main": "lib/index.js", "jsnext:main": "src/index.js", diff --git a/packages/@uppy/utils/CHANGELOG.md b/packages/@uppy/utils/CHANGELOG.md index 0ca92bd508..1bceb0c1b3 100644 --- a/packages/@uppy/utils/CHANGELOG.md +++ b/packages/@uppy/utils/CHANGELOG.md @@ -1,5 +1,12 @@ # @uppy/utils +## 4.1.1 + +Released: 2022-08-04 +Included in: Uppy v2.13.3 + +- @uppy/utils: modernize `getDroppedFiles` (Antoine du Hamel / #3534) + ## 4.1.0 Released: 2022-05-30 diff --git a/packages/@uppy/utils/package.json b/packages/@uppy/utils/package.json index 9fbfb26d0e..091e27e36f 100644 --- a/packages/@uppy/utils/package.json +++ b/packages/@uppy/utils/package.json @@ -1,7 +1,7 @@ { "name": "@uppy/utils", "description": "Shared utility functions for Uppy Core and plugins maintained by the Uppy team.", - "version": "4.1.0", + "version": "4.1.1", "license": "MIT", "main": "lib/index.js", "types": "types/index.d.ts", diff --git a/packages/uppy/package.json b/packages/uppy/package.json index 028492f4f7..4520279c38 100644 --- a/packages/uppy/package.json +++ b/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.13.2", + "version": "2.13.3", "license": "MIT", "main": "index.js", "module": "index.mjs", diff --git a/website/src/docs/index.md b/website/src/docs/index.md index 8709f3895c..7e609c6c28 100644 --- a/website/src/docs/index.md +++ b/website/src/docs/index.md @@ -19,12 +19,12 @@ Here’s the simplest example html page with Uppy (it uses a CDN bundle, while w Uppy - +
- + + ``` 2\. Add CSS to ``: ```html - + ``` 3\. Initialize at the bottom of the closing `` tag: @@ -181,5 +181,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 - + ``` diff --git a/website/src/docs/locales.md b/website/src/docs/locales.md index 89a94e80ea..5e4346d731 100644 --- a/website/src/docs/locales.md +++ b/website/src/docs/locales.md @@ -34,7 +34,7 @@ const uppy = new Uppy({ Add a ` + + - - + + ``` 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. diff --git a/website/src/docs/robodog-form.md b/website/src/docs/robodog-form.md index 108d75acbf..0b19fed52b 100644 --- a/website/src/docs/robodog-form.md +++ b/website/src/docs/robodog-form.md @@ -150,7 +150,7 @@ Make sure to also include the Uppy css file in your `` tag in case you wan ```html - + ``` @@ -162,7 +162,7 @@ Notice how the form is submitted to the inexistant `/uploads` route once all tra Testing Robodog - +
@@ -172,7 +172,7 @@ Notice how the form is submitted to the inexistant `/uploads` route once all tra
- + + + ``` diff --git a/website/src/examples/i18n/app.html b/website/src/examples/i18n/app.html index e351b10032..c7f0e474f6 100644 --- a/website/src/examples/i18n/app.html +++ b/website/src/examples/i18n/app.html @@ -1,7 +1,7 @@ - +
@@ -12,8 +12,8 @@
Uploaded files:
- - + + +// const robodog = require('@uppy/robodog') const TRANSLOADIT_EXAMPLE_KEY = '35c1aed03f5011e982b6afe82599b6a0' diff --git a/website/src/examples/markdown-snippets/app.html b/website/src/examples/markdown-snippets/app.html index 8cb559860d..6232c925fc 100644 --- a/website/src/examples/markdown-snippets/app.html +++ b/website/src/examples/markdown-snippets/app.html @@ -1,6 +1,6 @@ + -->

Create a new snippet

diff --git a/website/themes/uppy/layout/index.ejs b/website/themes/uppy/layout/index.ejs index f4a6a6e18c..c779490b85 100644 --- a/website/themes/uppy/layout/index.ejs +++ b/website/themes/uppy/layout/index.ejs @@ -187,9 +187,9 @@

© <%- date(Date.now(), 'YYYY') %> Transloadit

- - - + + +