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@3.0.0-beta #3798

Merged
merged 1 commit into from May 30, 2022
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.11.0/uppy.min.js"></script>`) or bundle it with your webapp.
this from a CDN (`<script src="https://releases.transloadit.com/uppy/v3.0.0-beta/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
38 changes: 38 additions & 0 deletions CHANGELOG.md
Expand Up @@ -12,6 +12,44 @@ Please add your entries in this format:

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

## 3.0.0-beta

Released: 2022-05-30

| Package | Version | Package | Version |
| ------------------------- | ---------- | ------------------------- | ---------- |
| @uppy/audio | 3.0.0-beta | @uppy/progress-bar | 3.0.0-beta |
| @uppy/aws-s3 | 3.0.0-beta | @uppy/provider-views | 3.0.0-beta |
| @uppy/aws-s3-multipart | 3.0.0-beta | @uppy/react | 3.0.0-beta |
| @uppy/box | 3.0.0-beta | @uppy/redux-dev-tools | 3.0.0-beta |
| @uppy/companion | 4.0.0-beta | @uppy/robodog | 3.0.0-beta |
| @uppy/companion-client | 3.0.0-beta | @uppy/screen-capture | 3.0.0-beta |
| @uppy/compressor | 3.0.0-beta | @uppy/status-bar | 3.0.0-beta |
| @uppy/core | 3.0.0-beta | @uppy/store-default | 3.0.0-beta |
| @uppy/dashboard | 3.0.0-beta | @uppy/store-redux | 3.0.0-beta |
| @uppy/drag-drop | 3.0.0-beta | @uppy/svelte | 3.0.0-beta |
| @uppy/drop-target | 3.0.0-beta | @uppy/thumbnail-generator | 3.0.0-beta |
| @uppy/dropbox | 3.0.0-beta | @uppy/transloadit | 3.0.0-beta |
| @uppy/facebook | 3.0.0-beta | @uppy/tus | 3.0.0-beta |
| @uppy/file-input | 3.0.0-beta | @uppy/unsplash | 3.0.0-beta |
| @uppy/form | 3.0.0-beta | @uppy/url | 3.0.0-beta |
| @uppy/golden-retriever | 3.0.0-beta | @uppy/utils | 5.0.0-beta |
| @uppy/google-drive | 3.0.0-beta | @uppy/vue | 3.0.0-beta |
| @uppy/image-editor | 3.0.0-beta | @uppy/webcam | 3.0.0-beta |
| @uppy/informer | 3.0.0-beta | @uppy/xhr-upload | 3.0.0-beta |
| @uppy/instagram | 3.0.0-beta | @uppy/zoom | 3.0.0-beta |
| @uppy/locales | 3.0.0-beta | uppy | 3.0.0-beta |
| @uppy/onedrive | 3.0.0-beta | | |

- meta: temporary adjust release script for the beta (Antoine du Hamel)
- meta: disable ESM to CJS transform in dist files (Antoine du Hamel / #3773)
- @uppy/companion: remove `searchProviders` wrapper & move `s3` options (Merlijn Vos / #3781)
- meta: do not test on EOL versions of Node.js (Antoine du Hamel / #3786)
- @uppy/companion: remove support for EOL versions of Node.js (Antoine du Hamel / #3784)
- @uppy/react: refactor to ESM (Antoine du Hamel / #3780)
- @uppy/transloadit: remove IE 10 hack (Antoine du Hamel / #3777)


## 2.11.0

Released: 2022-05-30
Expand Down
8 changes: 4 additions & 4 deletions README.md
Expand Up @@ -67,18 +67,18 @@ 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.11.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.0.0-beta/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/v2.11.0/uppy.min.css" rel="stylesheet">
<link href="https://releases.transloadit.com/uppy/v3.0.0-beta/uppy.min.css" rel="stylesheet">

<!-- 2. Add JS before the closing `</body>` -->
<script src="https://releases.transloadit.com/uppy/v2.11.0/uppy.min.js"></script>
<script src="https://releases.transloadit.com/uppy/v3.0.0-beta/uppy.min.js"></script>

<!-- 3. Initialize -->
<div class="UppyDragDrop"></div>
Expand Down Expand Up @@ -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
<script src="https://releases.transloadit.com/uppy/v2.11.0/uppy.legacy.min.js"></script>
<script src="https://releases.transloadit.com/uppy/v3.0.0-beta/uppy.legacy.min.js"></script>
```

## FAQ
Expand Down
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.11.0/uppy.min.css" rel="stylesheet">
<link href="https://releases.transloadit.com/uppy/v3.0.0-beta/uppy.min.css" rel="stylesheet">
</head>
<body>
<button id="uppyModalOpener">Open Modal</button>
<script src="https://releases.transloadit.com/uppy/v2.11.0/uppy.min.js"></script>
<script src="https://releases.transloadit.com/uppy/v3.0.0-beta/uppy.min.js"></script>
<script>
const uppy = new Uppy.Core({debug: true, autoProceed: false})
.use(Uppy.Dashboard, { trigger: '#uppyModalOpener' })
Expand Down
2 changes: 1 addition & 1 deletion examples/transloadit-textarea/index.html
Expand Up @@ -2,7 +2,7 @@
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="https://releases.transloadit.com/uppy/robodog/v2.7.0/robodog.css">
<link rel="stylesheet" href="https://releases.transloadit.com/uppy/robodog/v3.0.0-beta/robodog.css">
<style>
body {
font-family: Roboto, Open Sans;
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.11.0/uppy.min.css" rel="stylesheet">
<link href="https://releases.transloadit.com/uppy/v3.0.0-beta/uppy.min.css" rel="stylesheet">
</head>
<body>
<button id="uppyModalOpener">Open Modal</button>
<script src="https://releases.transloadit.com/uppy/v2.11.0/uppy.min.js"></script>
<script src="https://releases.transloadit.com/uppy/v3.0.0-beta/uppy.min.js"></script>
<script>
const uppy = new Uppy.Core({debug: true, autoProceed: false})
.use(Uppy.Dashboard, { trigger: '#uppyModalOpener' })
Expand Down
5 changes: 3 additions & 2 deletions packages/@uppy/audio/package.json
@@ -1,7 +1,7 @@
{
"name": "@uppy/audio",
"description": "Uppy plugin that records audio using the device’s microphone.",
"version": "0.3.2",
"version": "3.0.0-beta",
"license": "MIT",
"main": "lib/index.js",
"style": "dist/style.min.css",
Expand Down Expand Up @@ -37,5 +37,6 @@
},
"publishConfig": {
"access": "public"
}
},
"stableVersion": "0.3.2"
}
5 changes: 3 additions & 2 deletions packages/@uppy/aws-s3-multipart/package.json
@@ -1,7 +1,7 @@
{
"name": "@uppy/aws-s3-multipart",
"description": "Upload to Amazon S3 with Uppy and S3's Multipart upload strategy",
"version": "2.4.0",
"version": "3.0.0-beta",
"license": "MIT",
"main": "lib/index.js",
"type": "module",
Expand Down Expand Up @@ -34,5 +34,6 @@
},
"peerDependencies": {
"@uppy/core": "workspace:^"
}
},
"stableVersion": "2.4.0"
}
5 changes: 3 additions & 2 deletions packages/@uppy/aws-s3/package.json
@@ -1,7 +1,7 @@
{
"name": "@uppy/aws-s3",
"description": "Upload to Amazon S3 with Uppy",
"version": "2.2.0",
"version": "3.0.0-beta",
"license": "MIT",
"main": "lib/index.js",
"type": "module",
Expand Down Expand Up @@ -34,5 +34,6 @@
},
"peerDependencies": {
"@uppy/core": "workspace:^"
}
},
"stableVersion": "2.2.0"
}
5 changes: 3 additions & 2 deletions packages/@uppy/box/package.json
@@ -1,7 +1,7 @@
{
"name": "@uppy/box",
"description": "Import files from Box, into Uppy.",
"version": "1.0.7",
"version": "3.0.0-beta",
"license": "MIT",
"main": "lib/index.js",
"type": "module",
Expand Down Expand Up @@ -31,5 +31,6 @@
},
"publishConfig": {
"access": "public"
}
},
"stableVersion": "1.0.7"
}
5 changes: 3 additions & 2 deletions packages/@uppy/companion-client/package.json
@@ -1,7 +1,7 @@
{
"name": "@uppy/companion-client",
"description": "Client library for communication with Companion. Intended for use in Uppy plugins.",
"version": "2.2.0",
"version": "3.0.0-beta",
"license": "MIT",
"main": "lib/index.js",
"types": "types/index.d.ts",
Expand All @@ -27,5 +27,6 @@
},
"devDependencies": {
"@jest/globals": "^27.4.2"
}
},
"stableVersion": "2.2.0"
}
8 changes: 8 additions & 0 deletions packages/@uppy/companion/CHANGELOG.md
@@ -1,5 +1,13 @@
# @uppy/companion

## 4.0.0-beta

Released: 2022-05-30
Included in: Uppy v3.0.0-beta

- @uppy/companion: remove `searchProviders` wrapper & move `s3` options (Merlijn Vos / #3781)
- @uppy/companion: remove support for EOL versions of Node.js (Antoine du Hamel / #3784)

## 3.6.0

Released: 2022-05-30
Expand Down
5 changes: 3 additions & 2 deletions packages/@uppy/companion/package.json
@@ -1,6 +1,6 @@
{
"name": "@uppy/companion",
"version": "3.6.0",
"version": "4.0.0-beta",
"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 Expand Up @@ -118,5 +118,6 @@
},
"installConfig": {
"hoistingLimits": "workspaces"
}
},
"stableVersion": "3.6.0"
}
5 changes: 3 additions & 2 deletions packages/@uppy/compressor/package.json
@@ -1,7 +1,7 @@
{
"name": "@uppy/compressor",
"description": "Uppy plugin that compresses images before upload, saving up to 60% in size",
"version": "0.3.0",
"version": "3.0.0-beta",
"license": "MIT",
"main": "lib/index.js",
"style": "dist/style.min.css",
Expand Down Expand Up @@ -34,5 +34,6 @@
},
"publishConfig": {
"access": "public"
}
},
"stableVersion": "0.3.0"
}
5 changes: 3 additions & 2 deletions packages/@uppy/core/package.json
@@ -1,7 +1,7 @@
{
"name": "@uppy/core",
"description": "Core module for the 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.0",
"version": "3.0.0-beta",
"license": "MIT",
"main": "lib/index.js",
"style": "dist/style.min.css",
Expand Down Expand Up @@ -32,5 +32,6 @@
},
"devDependencies": {
"@jest/globals": "^27.4.2"
}
},
"stableVersion": "2.3.0"
}
5 changes: 3 additions & 2 deletions packages/@uppy/dashboard/package.json
@@ -1,7 +1,7 @@
{
"name": "@uppy/dashboard",
"description": "Universal UI plugin for Uppy.",
"version": "2.3.0",
"version": "3.0.0-beta",
"license": "MIT",
"main": "lib/index.js",
"style": "dist/style.min.css",
Expand Down Expand Up @@ -44,5 +44,6 @@
},
"peerDependencies": {
"@uppy/core": "workspace:^"
}
},
"stableVersion": "2.3.0"
}
5 changes: 3 additions & 2 deletions packages/@uppy/drag-drop/package.json
@@ -1,7 +1,7 @@
{
"name": "@uppy/drag-drop",
"description": "Droppable zone UI for Uppy. Drag and drop files into it to upload.",
"version": "2.1.1",
"version": "3.0.0-beta",
"license": "MIT",
"main": "lib/index.js",
"style": "dist/style.min.css",
Expand Down Expand Up @@ -31,5 +31,6 @@
},
"peerDependencies": {
"@uppy/core": "workspace:^"
}
},
"stableVersion": "2.1.1"
}
5 changes: 3 additions & 2 deletions packages/@uppy/drop-target/package.json
@@ -1,7 +1,7 @@
{
"name": "@uppy/drop-target",
"description": "Lets your users drag and drop files on a DOM element",
"version": "1.1.3",
"version": "3.0.0-beta",
"license": "MIT",
"main": "lib/index.js",
"type": "module",
Expand Down Expand Up @@ -32,5 +32,6 @@
},
"publishConfig": {
"access": "public"
}
},
"stableVersion": "1.1.3"
}
5 changes: 3 additions & 2 deletions packages/@uppy/dropbox/package.json
@@ -1,7 +1,7 @@
{
"name": "@uppy/dropbox",
"description": "Import files from Dropbox, into Uppy.",
"version": "2.0.7",
"version": "3.0.0-beta",
"license": "MIT",
"main": "lib/index.js",
"type": "module",
Expand All @@ -28,5 +28,6 @@
},
"peerDependencies": {
"@uppy/core": "workspace:^"
}
},
"stableVersion": "2.0.7"
}
5 changes: 3 additions & 2 deletions packages/@uppy/facebook/package.json
@@ -1,7 +1,7 @@
{
"name": "@uppy/facebook",
"description": "Import files from Facebook, into Uppy.",
"version": "2.0.7",
"version": "3.0.0-beta",
"license": "MIT",
"main": "lib/index.js",
"type": "module",
Expand All @@ -28,5 +28,6 @@
},
"peerDependencies": {
"@uppy/core": "workspace:^"
}
},
"stableVersion": "2.0.7"
}
5 changes: 3 additions & 2 deletions packages/@uppy/file-input/package.json
@@ -1,7 +1,7 @@
{
"name": "@uppy/file-input",
"description": "Simple UI of a file input button that works with Uppy right out of the box",
"version": "2.1.1",
"version": "3.0.0-beta",
"license": "MIT",
"main": "lib/index.js",
"style": "dist/style.min.css",
Expand All @@ -28,5 +28,6 @@
},
"peerDependencies": {
"@uppy/core": "workspace:^"
}
},
"stableVersion": "2.1.1"
}
5 changes: 3 additions & 2 deletions packages/@uppy/form/package.json
@@ -1,7 +1,7 @@
{
"name": "@uppy/form",
"description": "Connect Uppy to an existing HTML <form>.",
"version": "2.0.6",
"version": "3.0.0-beta",
"license": "MIT",
"main": "lib/index.js",
"type": "module",
Expand All @@ -26,5 +26,6 @@
},
"peerDependencies": {
"@uppy/core": "workspace:^"
}
},
"stableVersion": "2.0.6"
}