Skip to content

Commit

Permalink
Release: uppy@2.7.0 (#3525)
Browse files Browse the repository at this point in the history
| Package                | Version | Package                | Version |
| ---------------------- | ------- | ---------------------- | ------- |
| @uppy/angular          |   0.3.0 | @uppy/locales          |   2.0.7 |
| @uppy/aws-s3-multipart |   2.2.1 | uppy                   |   2.7.0 |
| @uppy/companion        |   3.3.1 |                        |         |

- @uppy/companion: fix unstable test (Mikael Finstad)
- @uppy/companion: replace debug (Mikael Finstad)
- @uppy/companion: Fix COMPANION_PATH (Mikael Finstad / #3515)
- @uppy/angular: update ng version (Antoine du Hamel / #3503)
- @uppy/companion: Upload protocol "s3-multipart" does not use the chunkSize option (Gabi Ganam / #3511)
- @uppy/aws-s3-multipart: Add chunks back to prepareUploadParts, indexed by partNumber (Kevin West / #3520)
- website: Add “Stop the war” banner (Artur Paikin / #3518)
- @uppy/locales: Update zh_CN.js (linxunzyf / #3513)
- meta: update remark dependencies (Antoine du Hamel / #3502)
  • Loading branch information
github-actions[bot] committed Mar 2, 2022
1 parent facc2bd commit 6559bea
Show file tree
Hide file tree
Showing 21 changed files with 139 additions and 83 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/v2.6.0/uppy.min.js"></script>`) or bundle it with your webapp.
this from a CDN (`<script src="https://releases.transloadit.com/uppy/v2.7.0/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
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,27 @@ Please add your entries in this format:

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

## 2.7.0

Released: 2022-03-02

| Package | Version | Package | Version |
| ---------------------- | ------- | ---------------------- | ------- |
| @uppy/angular | 0.3.0 | @uppy/locales | 2.0.7 |
| @uppy/aws-s3-multipart | 2.2.1 | uppy | 2.7.0 |
| @uppy/companion | 3.3.1 | | |

- @uppy/companion: fix unstable test (Mikael Finstad)
- @uppy/companion: replace debug (Mikael Finstad)
- @uppy/companion: Fix COMPANION_PATH (Mikael Finstad / #3515)
- @uppy/angular: update ng version (Antoine du Hamel / #3503)
- @uppy/companion: Upload protocol "s3-multipart" does not use the chunkSize option (Gabi Ganam / #3511)
- @uppy/aws-s3-multipart: Add chunks back to prepareUploadParts, indexed by partNumber (Kevin West / #3520)
- website: Add “Stop the war” banner (Artur Paikin / #3518)
- @uppy/locales: Update zh_CN.js (linxunzyf / #3513)
- meta: update remark dependencies (Antoine du Hamel / #3502)


## 2.6.0

Released: 2022-02-17
Expand Down
110 changes: 57 additions & 53 deletions README.md

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions examples/cdn-example/index.html
Original file line number Diff line number Diff line change
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.6.0/uppy.min.css" rel="stylesheet">
<link href="https://releases.transloadit.com/uppy/v2.7.0/uppy.min.css" rel="stylesheet">
</head>
<body>
<button id="uppyModalOpener">Open Modal</button>
<script src="https://releases.transloadit.com/uppy/v2.6.0/uppy.min.js"></script>
<script src="https://releases.transloadit.com/uppy/v2.7.0/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
Original file line number Diff line number Diff line change
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.6.0/uppy.min.css" rel="stylesheet">
<link href="https://releases.transloadit.com/uppy/v2.7.0/uppy.min.css" rel="stylesheet">
</head>
<body>
<button id="uppyModalOpener">Open Modal</button>
<script src="https://releases.transloadit.com/uppy/v2.6.0/uppy.min.js"></script>
<script src="https://releases.transloadit.com/uppy/v2.7.0/uppy.min.js"></script>
<script>
const uppy = new Uppy.Core({debug: true, autoProceed: false})
.use(Uppy.Dashboard, { trigger: '#uppyModalOpener' })
Expand Down
7 changes: 7 additions & 0 deletions packages/@uppy/angular/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @uppy/angular

## 0.3.0

Released: 2022-03-02
Included in: Uppy v2.7.0

- @uppy/angular: update ng version (Antoine du Hamel / #3503)

## 0.2.8

Released: 2021-12-21
Expand Down
2 changes: 1 addition & 1 deletion packages/@uppy/angular/projects/uppy/angular/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@uppy/angular",
"description": "Angular component wrappers around Uppy's official UI plugins.",
"version": "0.2.8",
"version": "0.3.0",
"license": "MIT",
"homepage": "https://uppy.io",
"keywords": [
Expand Down
7 changes: 7 additions & 0 deletions packages/@uppy/aws-s3-multipart/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @uppy/aws-s3-multipart

## 2.2.1

Released: 2022-03-02
Included in: Uppy v2.7.0

- @uppy/aws-s3-multipart: Add chunks back to prepareUploadParts, indexed by partNumber (Kevin West / #3520)

## 2.2.0

Released: 2021-12-07
Expand Down
2 changes: 1 addition & 1 deletion packages/@uppy/aws-s3-multipart/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@uppy/aws-s3-multipart",
"description": "Upload to Amazon S3 with Uppy and S3's Multipart upload strategy",
"version": "2.2.0",
"version": "2.2.1",
"license": "MIT",
"main": "lib/index.js",
"types": "types/index.d.ts",
Expand Down
10 changes: 10 additions & 0 deletions packages/@uppy/companion/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @uppy/companion

## 3.3.1

Released: 2022-03-02
Included in: Uppy v2.7.0

- @uppy/companion: fix unstable test (Mikael Finstad)
- @uppy/companion: replace debug (Mikael Finstad)
- @uppy/companion: Fix COMPANION_PATH (Mikael Finstad / #3515)
- @uppy/companion: Upload protocol "s3-multipart" does not use the chunkSize option (Gabi Ganam / #3511)

## 3.3.0

Released: 2022-02-17
Expand Down
2 changes: 1 addition & 1 deletion packages/@uppy/companion/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@uppy/companion",
"version": "3.3.0",
"version": "3.3.1",
"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
7 changes: 7 additions & 0 deletions packages/@uppy/locales/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @uppy/locales

## 2.0.7

Released: 2022-03-02
Included in: Uppy v2.7.0

- @uppy/locales: Update zh_CN.js (linxunzyf / #3513)

## 2.0.6

Released: 2022-02-14
Expand Down
2 changes: 1 addition & 1 deletion packages/@uppy/locales/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@uppy/locales",
"description": "Uppy language packs",
"version": "2.0.6",
"version": "2.0.7",
"license": "MIT",
"keywords": [
"uppy",
Expand Down
4 changes: 2 additions & 2 deletions packages/@uppy/robodog/README.md
Original file line number Diff line number Diff line change
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.6.0/robodog.min.css">
<script src="https://releases.transloadit.com/uppy/v2.6.0/robodog.min.js"></script>
<link rel="stylesheet" href="https://releases.transloadit.com/uppy/v2.7.0/robodog.min.css">
<script src="https://releases.transloadit.com/uppy/v2.7.0/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
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": "2.6.0",
"version": "2.7.0",
"license": "MIT",
"main": "index.js",
"module": "index.mjs",
Expand Down
10 changes: 5 additions & 5 deletions website/src/docs/index.md
Original file line number Diff line number Diff line change
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.6.0/uppy.min.css" rel="stylesheet">
<link href="https://releases.transloadit.com/uppy/v2.7.0/uppy.min.css" rel="stylesheet">
</head>
<body>
<div id="drag-drop-area"></div>

<script src="https://releases.transloadit.com/uppy/v2.6.0/uppy.min.js"></script>
<script src="https://releases.transloadit.com/uppy/v2.7.0/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.6.0/uppy.min.js"></script>
<script src="https://releases.transloadit.com/uppy/v2.7.0/uppy.min.js"></script>
```

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

```html
<link href="https://releases.transloadit.com/uppy/v2.6.0/uppy.min.css" rel="stylesheet">
<link href="https://releases.transloadit.com/uppy/v2.7.0/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.6.0/uppy.min.js"></script>
<script src="https://releases.transloadit.com/uppy/v2.7.0/uppy.min.js"></script>
```
4 changes: 2 additions & 2 deletions website/src/docs/locales.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ 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.6.0/uppy.min.js"></script>
<script src="https://releases.transloadit.com/uppy/locales/v2.0.6/de_DE.min.js"></script>
<script src="https://releases.transloadit.com/uppy/v2.7.0/uppy.min.js"></script>
<script src="https://releases.transloadit.com/uppy/locales/v2.0.7/de_DE.min.js"></script>

<script>
var uppy = new Uppy.Core({
Expand Down
6 changes: 3 additions & 3 deletions website/src/docs/migration-guides.md
Original file line number Diff line number Diff line change
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.6.0/uppy.min.js"></script>
<script src="https://releases.transloadit.com/uppy/v2.7.0/uppy.min.js"></script>

<!-- Legacy browsers (IE11+) -->
<script nomodule src="https://releases.transloadit.com/uppy/v2.6.0/uppy.legacy.min.js"></script>
<script type="module">import "https://releases.transloadit.com/uppy/v2.6.0/uppy.min.js";</script>
<script nomodule src="https://releases.transloadit.com/uppy/v2.7.0/uppy.legacy.min.js"></script>
<script type="module">import "https://releases.transloadit.com/uppy/v2.7.0/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
2 changes: 1 addition & 1 deletion website/src/examples/dashboard/app.es6
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ function loadLocaleFromCDN (localeName) {
const head = document.getElementsByTagName('head')[0]
const js = document.createElement('script')
js.type = 'text/javascript'
js.src = `https://releases.transloadit.com/uppy/locales/v2.0.6/${localeName}.min.js`
js.src = `https://releases.transloadit.com/uppy/locales/v2.0.7/${localeName}.min.js`

head.appendChild(js)
}
Expand Down
8 changes: 4 additions & 4 deletions website/src/examples/i18n/app.html
Original file line number Diff line number Diff line change
@@ -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.6.0/uppy.min.css">
<link rel="stylesheet" href="https://releases.transloadit.com/uppy/v2.7.0/uppy.min.css">

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

<!-- Load Uppy JS bundle. -->
<script src="https://releases.transloadit.com/uppy/v2.6.0/uppy.min.js" type="module"></script>
<script src="https://releases.transloadit.com/uppy/v2.6.0/uppy.legacy.min.js" nomodule></script>
<script src="https://releases.transloadit.com/uppy/locales/v2.0.6/ru_RU.min.js"></script>
<script src="https://releases.transloadit.com/uppy/v2.7.0/uppy.min.js" type="module"></script>
<script src="https://releases.transloadit.com/uppy/v2.7.0/uppy.legacy.min.js" nomodule></script>
<script src="https://releases.transloadit.com/uppy/locales/v2.0.7/ru_RU.min.js"></script>
<script>
window.addEventListener('DOMContentLoaded', function () {
'use strict';
Expand Down
6 changes: 3 additions & 3 deletions website/themes/uppy/layout/index.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -187,9 +187,9 @@
<p<%- date(Date.now(), 'YYYY') %> <a href="https://transloadit.com" target="_blank">Transloadit</a></p>
</footer>

<link href="https://releases.transloadit.com/uppy/v2.6.0/uppy.min.css" rel="stylesheet">
<script src="https://releases.transloadit.com/uppy/v2.6.0/uppy.min.js" type="module"></script>
<script src="https://releases.transloadit.com/uppy/v2.6.0/uppy.legacy.min.js" nomodule></script>
<link href="https://releases.transloadit.com/uppy/v2.7.0/uppy.min.css" rel="stylesheet">
<script src="https://releases.transloadit.com/uppy/v2.7.0/uppy.min.js" type="module"></script>
<script src="https://releases.transloadit.com/uppy/v2.7.0/uppy.legacy.min.js" nomodule></script>

<script>
window.addEventListener('DOMContentLoaded', function() {
Expand Down

0 comments on commit 6559bea

Please sign in to comment.