Skip to content

Commit c59b710

Browse files
Release: uppy@2.8.0 (#3579)
| Package | Version | Package | Version | | -------------------- | ------- | -------------------- | ------- | | @uppy/audio | 0.3.0 | @uppy/locales | 2.0.8 | | @uppy/aws-s3 | 2.0.8 | @uppy/provider-views | 2.0.8 | | @uppy/companion | 3.4.0 | @uppy/vue | 0.4.6 | | @uppy/compressor | 0.2.3 | @uppy/robodog | 2.4.0 | | @uppy/core | 2.1.6 | uppy | 2.8.0 | | @uppy/drop-target | 1.1.2 | | | - @uppy/aws-s3: fix wrong events being sent to companion (Mikael Finstad / #3576) - @uppy/compressor: ignore remote files, calculate savings correctly (Artur Paikin / #3578) - @uppy/companion: always log errors with stack trace (Mikael Finstad / #3573) - meta: remove incorrect s3 documentation (Mikael Finstad / #3571) - @uppy/companion: Companion refactor (Mikael Finstad / #3542) - website: partial ooops (Artur Paikin) - meta: run e2e workflow on the head branch instead of the base one (Antoine du Hamel / #3561) - website: Use Plausible instead of Google Analytics (Artur Paikin / #3567) - @uppy/vue: enforce use of file extension within the import path (Antoine du Hamel / #3560) - @uppy/drop-target: ignore if dropped elements aren't files (Penar Musaraj / #3563) - @uppy/core: Abstract restriction logic in a new Restricter class (Merlijn Vos / #3532) - @uppy/companion: Fetch all Google Drive shared drives (Robert DiMartino / #3553) - website: add blog post 2.4-2.7 (Artur Paikin / #3557) - meta: fix e2e (Antoine du Hamel / #3562) - meta: fix broken link (YukeshShr / #3559) - meta: fix support of export declaration in source files (Antoine du Hamel / #3558) - @uppy/companion: Order Google Drive results by folder to show all folders first (Robert DiMartino / #3546) - meta: add corsOrigins to docs (Mikael Finstad / #3554) - @uppy/audio: refactor to ESM (Antoine du Hamel / #3470) - @uppy/locales: compressor cleanup (Antoine du Hamel / #3531) - meta: fix CJS interop in Vite config (Antoine du Hamel / #3543) - @uppy/companion: upgrade node-redis-pubsub (Mikael Finstad / #3541) - @uppy/provider-views: provider-view: fix breadcrumbs (Artur Paikin / #3535) - meta: Update BACKLOG.md (Artur Paikin) - @uppy/locales: Update ru_RU.js (Sobakin Sviatoslav / #3529) - @uppy/companion: reorder reqToOptions (Antoine du Hamel / #3530) - meta: Fix yarn caching in github actions (Mikael Finstad / #3526)
1 parent f8ce105 commit c59b710

File tree

37 files changed

+239
-127
lines changed

37 files changed

+239
-127
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.7.0/uppy.min.js"></script>`) or bundle it with your webapp.
4+
this from a CDN (`<script src="https://releases.transloadit.com/uppy/v2.8.0/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: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,48 @@ Please add your entries in this format:
1111
- `- [ ] (<plugin name>|website|core|meta|build|test): <Present tense verb> <subject> \(<list of associated owners/gh-issues>\)`.
1212

1313
In the current stage we aim to release a new version at least every month.
14+
## 2.8.0
15+
16+
Released: 2022-03-16
17+
18+
| Package | Version | Package | Version |
19+
| -------------------- | ------- | -------------------- | ------- |
20+
| @uppy/audio | 0.3.0 | @uppy/locales | 2.0.8 |
21+
| @uppy/aws-s3 | 2.0.8 | @uppy/provider-views | 2.0.8 |
22+
| @uppy/companion | 3.4.0 | @uppy/vue | 0.4.6 |
23+
| @uppy/compressor | 0.2.3 | @uppy/robodog | 2.4.0 |
24+
| @uppy/core | 2.1.6 | uppy | 2.8.0 |
25+
| @uppy/drop-target | 1.1.2 | | |
26+
27+
- @uppy/aws-s3: fix wrong events being sent to companion (Mikael Finstad / #3576)
28+
- @uppy/compressor: ignore remote files, calculate savings correctly (Artur Paikin / #3578)
29+
- @uppy/companion: always log errors with stack trace (Mikael Finstad / #3573)
30+
- meta: remove incorrect s3 documentation (Mikael Finstad / #3571)
31+
- @uppy/companion: Companion refactor (Mikael Finstad / #3542)
32+
- website: partial ooops (Artur Paikin)
33+
- meta: run e2e workflow on the head branch instead of the base one (Antoine du Hamel / #3561)
34+
- website: Use Plausible instead of Google Analytics (Artur Paikin / #3567)
35+
- @uppy/vue: enforce use of file extension within the import path (Antoine du Hamel / #3560)
36+
- @uppy/drop-target: ignore if dropped elements aren't files (Penar Musaraj / #3563)
37+
- @uppy/core: Abstract restriction logic in a new Restricter class (Merlijn Vos / #3532)
38+
- @uppy/companion: Fetch all Google Drive shared drives (Robert DiMartino / #3553)
39+
- website: add blog post 2.4-2.7 (Artur Paikin / #3557)
40+
- meta: fix e2e (Antoine du Hamel / #3562)
41+
- meta: fix broken link (YukeshShr / #3559)
42+
- meta: fix support of export declaration in source files (Antoine du Hamel / #3558)
43+
- @uppy/companion: Order Google Drive results by folder to show all folders first (Robert DiMartino / #3546)
44+
- meta: add corsOrigins to docs (Mikael Finstad / #3554)
45+
- @uppy/audio: refactor to ESM (Antoine du Hamel / #3470)
46+
- @uppy/locales: compressor cleanup (Antoine du Hamel / #3531)
47+
- meta: fix CJS interop in Vite config (Antoine du Hamel / #3543)
48+
- @uppy/companion: upgrade node-redis-pubsub (Mikael Finstad / #3541)
49+
- @uppy/provider-views: provider-view: fix breadcrumbs (Artur Paikin / #3535)
50+
- meta: Update BACKLOG.md (Artur Paikin)
51+
- @uppy/locales: Update ru_RU.js (Sobakin Sviatoslav / #3529)
52+
- @uppy/companion: reorder reqToOptions (Antoine du Hamel / #3530)
53+
- meta: Fix yarn caching in github actions (Mikael Finstad / #3526)
54+
55+
1456
## 2.7.0
1557

1658
Released: 2022-03-02

README.md

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

examples/transloadit-textarea/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html>
33
<head>
44
<meta charset="utf-8">
5-
<link rel="stylesheet" href="https://releases.transloadit.com/uppy/robodog/v2.3.2/robodog.css">
5+
<link rel="stylesheet" href="https://releases.transloadit.com/uppy/robodog/v2.4.0/robodog.css">
66
<style>
77
body {
88
font-family: Roboto, Open Sans;

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

packages/@uppy/audio/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @uppy/audio
22

3+
## 0.3.0
4+
5+
Released: 2022-03-16
6+
Included in: Uppy v2.8.0
7+
8+
- @uppy/audio: refactor to ESM (Antoine du Hamel / #3470)
9+
310
## 0.2.1
411

512
Released: 2021-12-09

packages/@uppy/audio/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@uppy/audio",
33
"description": "Uppy plugin that records audio using the device’s microphone.",
4-
"version": "0.2.1",
4+
"version": "0.3.0",
55
"license": "MIT",
66
"main": "lib/index.js",
77
"style": "dist/style.min.css",

packages/@uppy/aws-s3/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @uppy/aws-s3
22

3+
## 2.0.8
4+
5+
Released: 2022-03-16
6+
Included in: Uppy v2.8.0
7+
8+
- @uppy/aws-s3: fix wrong events being sent to companion (Mikael Finstad / #3576)
9+
310
## 2.0.7
411

512
Released: 2021-12-09

packages/@uppy/aws-s3/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@uppy/aws-s3",
33
"description": "Upload to Amazon S3 with Uppy",
4-
"version": "2.0.7",
4+
"version": "2.0.8",
55
"license": "MIT",
66
"main": "lib/index.js",
77
"types": "types/index.d.ts",

0 commit comments

Comments
 (0)