Skip to content

Commit

Permalink
Release: uppy@3.0.0-beta.3 (#3918)
Browse files Browse the repository at this point in the history
| Package                |      Version | Package                |      Version |
| ---------------------- | ------------ | ---------------------- | ------------ |
| @uppy/aws-s3           | 3.0.0-beta.2 | @uppy/react            | 3.0.0-beta.2 |
| @uppy/aws-s3-multipart | 3.0.0-beta.2 | @uppy/remote-sources   | 1.0.0-beta.2 |
| @uppy/companion        | 4.0.0-beta.2 | @uppy/store-redux      | 3.0.0-beta.2 |
| @uppy/compressor       | 1.0.0-beta.2 | @uppy/transloadit      | 3.0.0-beta.3 |
| @uppy/core             | 3.0.0-beta.2 | @uppy/webcam           | 3.0.0-beta.2 |
| @uppy/dashboard        | 3.0.0-beta.2 | @uppy/xhr-upload       | 3.0.0-beta.2 |
| @uppy/image-editor     | 2.0.0-beta.2 | @uppy/robodog          | 3.0.0-beta.3 |
| @uppy/locales          | 3.0.0-beta.3 | uppy                   | 3.0.0-beta.3 |

- @uppy/react: Fix exports in propTypes.js to fix website build (Murderlon)
- @uppy/dashboard,@uppy/webcam: Add support for `mobileNativeCamera` option to Webcam and Dashboard (Artur Paikin / #3844)
- @uppy/aws-s3-multipart: make `headers` part indexed too in `prepareUploadParts` (Merlijn Vos / #3895)
- @uppy/aws-s3,@uppy/core,@uppy/dashboard,@uppy/store-redux,@uppy/xhr-upload: upgrade `nanoid` to v4 (Antoine du Hamel / #3904)
- @uppy/companion: update minimal supported Node.js version in the docs (Antoine du Hamel / #3902)
- @uppy/companion: upgrade `redis` to version 4.x (Antoine du Hamel / #3589)
- @uppy/companion: remove unnecessary ts-ignores (Mikael Finstad / #3900)
- meta: use `node:` protocol when using Node.js built-in core modules (Antoine du Hamel / #3871)
- meta: upgrade to Vite v3 (Antoine du Hamel / #3882)
- @uppy/companion: remove `COMPANION_S3_GETKEY_SAFE_BEHAVIOR` env variable (Antoine du Hamel / #3869)
- meta: fix release script for major beta versions (Antoine du Hamel)
  • Loading branch information
github-actions[bot] committed Jul 27, 2022
1 parent 2e8f797 commit 0dcf869
Show file tree
Hide file tree
Showing 43 changed files with 155 additions and 54 deletions.
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/v3.0.0-beta.2/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.3/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
30 changes: 30 additions & 0 deletions CHANGELOG.md
Expand Up @@ -12,6 +12,34 @@ 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.3

Released: 2022-07-27

| Package | Version | Package | Version |
| ---------------------- | ------------ | ---------------------- | ------------ |
| @uppy/aws-s3 | 3.0.0-beta.2 | @uppy/react | 3.0.0-beta.2 |
| @uppy/aws-s3-multipart | 3.0.0-beta.2 | @uppy/remote-sources | 1.0.0-beta.2 |
| @uppy/companion | 4.0.0-beta.2 | @uppy/store-redux | 3.0.0-beta.2 |
| @uppy/compressor | 1.0.0-beta.2 | @uppy/transloadit | 3.0.0-beta.3 |
| @uppy/core | 3.0.0-beta.2 | @uppy/webcam | 3.0.0-beta.2 |
| @uppy/dashboard | 3.0.0-beta.2 | @uppy/xhr-upload | 3.0.0-beta.2 |
| @uppy/image-editor | 2.0.0-beta.2 | @uppy/robodog | 3.0.0-beta.3 |
| @uppy/locales | 3.0.0-beta.3 | uppy | 3.0.0-beta.3 |

- @uppy/react: Fix exports in propTypes.js to fix website build (Murderlon)
- @uppy/dashboard,@uppy/webcam: Add support for `mobileNativeCamera` option to Webcam and Dashboard (Artur Paikin / #3844)
- @uppy/aws-s3-multipart: make `headers` part indexed too in `prepareUploadParts` (Merlijn Vos / #3895)
- @uppy/aws-s3,@uppy/core,@uppy/dashboard,@uppy/store-redux,@uppy/xhr-upload: upgrade `nanoid` to v4 (Antoine du Hamel / #3904)
- @uppy/companion: update minimal supported Node.js version in the docs (Antoine du Hamel / #3902)
- @uppy/companion: upgrade `redis` to version 4.x (Antoine du Hamel / #3589)
- @uppy/companion: remove unnecessary ts-ignores (Mikael Finstad / #3900)
- meta: use `node:` protocol when using Node.js built-in core modules (Antoine du Hamel / #3871)
- meta: upgrade to Vite v3 (Antoine du Hamel / #3882)
- @uppy/companion: remove `COMPANION_S3_GETKEY_SAFE_BEHAVIOR` env variable (Antoine du Hamel / #3869)
- meta: fix release script for major beta versions (Antoine du Hamel)


## 3.0.0-beta.2

Released: 2022-07-06
Expand Down Expand Up @@ -105,6 +133,8 @@ Released: 2022-05-30
- @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.13.1

Released: 2022-07-27
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/v3.0.0-beta.2/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.3/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.0.0-beta.2/uppy.min.css" rel="stylesheet">
<link href="https://releases.transloadit.com/uppy/v3.0.0-beta.3/uppy.min.css" rel="stylesheet">

<!-- 2. Add JS before the closing `</body>` -->
<script src="https://releases.transloadit.com/uppy/v3.0.0-beta.2/uppy.min.js"></script>
<script src="https://releases.transloadit.com/uppy/v3.0.0-beta.3/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/v3.0.0-beta.2/uppy.legacy.min.js"></script>
<script src="https://releases.transloadit.com/uppy/v3.0.0-beta.3/uppy.legacy.min.js"></script>
```
## FAQ
Expand Down
6 changes: 3 additions & 3 deletions examples/cdn-example/index.html
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.0.0-beta.2/uppy.min.css" rel="stylesheet" />
<link href="https://releases.transloadit.com/uppy/v3.0.0-beta.3/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.0.0-beta.2/uppy.min.mjs";
} from "https://releases.transloadit.com/uppy/v3.0.0-beta.3/uppy.min.mjs";

const uppy = new Core.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.0.0-beta.2/uppy.legacy.min.js"></script>
<script nomodule src="https://releases.transloadit.com/uppy/v3.0.0-beta.3/uppy.legacy.min.js"></script>
<script nomodule>
{
const { Core, Dashboard, Webcam, Tus } = Uppy;
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/v3.0.0-beta.2/robodog.css">
<link rel="stylesheet" href="https://releases.transloadit.com/uppy/robodog/v3.0.0-beta.3/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/v3.0.0-beta.2/uppy.min.css" rel="stylesheet">
<link href="https://releases.transloadit.com/uppy/v3.0.0-beta.3/uppy.min.css" rel="stylesheet">
</head>
<body>
<button id="uppyModalOpener">Open Modal</button>
<script src="https://releases.transloadit.com/uppy/v3.0.0-beta.2/uppy.min.js"></script>
<script src="https://releases.transloadit.com/uppy/v3.0.0-beta.3/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/aws-s3-multipart/CHANGELOG.md
@@ -1,5 +1,12 @@
# @uppy/aws-s3-multipart

## 3.0.0-beta.2

Released: 2022-07-27
Included in: Uppy v3.0.0-beta.3

- @uppy/aws-s3-multipart: make `headers` part indexed too in `prepareUploadParts` (Merlijn Vos / #3895)

## 2.4.1

Released: 2022-06-07
Expand Down
2 changes: 1 addition & 1 deletion 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": "3.0.0-beta.1",
"version": "3.0.0-beta.2",
"license": "MIT",
"main": "lib/index.js",
"type": "module",
Expand Down
7 changes: 7 additions & 0 deletions packages/@uppy/aws-s3/CHANGELOG.md
@@ -1,5 +1,12 @@
# @uppy/aws-s3

## 3.0.0-beta.2

Released: 2022-07-27
Included in: Uppy v3.0.0-beta.3

- @uppy/aws-s3,@uppy/core,@uppy/dashboard,@uppy/store-redux,@uppy/xhr-upload: upgrade `nanoid` to v4 (Antoine du Hamel / #3904)

## 2.2.1

Released: 2022-06-07
Expand Down
2 changes: 1 addition & 1 deletion packages/@uppy/aws-s3/package.json
@@ -1,7 +1,7 @@
{
"name": "@uppy/aws-s3",
"description": "Upload to Amazon S3 with Uppy",
"version": "3.0.0-beta.1",
"version": "3.0.0-beta.2",
"license": "MIT",
"main": "lib/index.js",
"type": "module",
Expand Down
11 changes: 11 additions & 0 deletions packages/@uppy/companion/CHANGELOG.md
@@ -1,5 +1,15 @@
# @uppy/companion

## 4.0.0-beta.2

Released: 2022-07-27
Included in: Uppy v3.0.0-beta.3

- @uppy/companion: update minimal supported Node.js version in the docs (Antoine du Hamel / #3902)
- @uppy/companion: upgrade `redis` to version 4.x (Antoine du Hamel / #3589)
- @uppy/companion: remove unnecessary ts-ignores (Mikael Finstad / #3900)
- @uppy/companion: remove `COMPANION_S3_GETKEY_SAFE_BEHAVIOR` env variable (Antoine du Hamel / #3869)

## 4.0.0-beta.1

Released: 2022-07-06
Expand All @@ -21,6 +31,7 @@ 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.7.1

Released: 2022-07-27
Expand Down
2 changes: 1 addition & 1 deletion packages/@uppy/companion/package.json
@@ -1,6 +1,6 @@
{
"name": "@uppy/companion",
"version": "4.0.0-beta.1",
"version": "4.0.0-beta.2",
"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
2 changes: 1 addition & 1 deletion 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": "1.0.0-beta.1",
"version": "1.0.0-beta.2",
"license": "MIT",
"main": "lib/index.js",
"style": "dist/style.min.css",
Expand Down
8 changes: 8 additions & 0 deletions packages/@uppy/core/CHANGELOG.md
@@ -1,11 +1,19 @@
# @uppy/core

## 3.0.0-beta.2

Released: 2022-07-27
Included in: Uppy v3.0.0-beta.3

- @uppy/aws-s3,@uppy/core,@uppy/dashboard,@uppy/store-redux,@uppy/xhr-upload: upgrade `nanoid` to v4 (Antoine du Hamel / #3904)

## 3.0.0-beta.1

Released: 2022-06-09
Included in: Uppy v3.0.0-beta.1

- @uppy/core,@uppy/dashboard: fix types for some events (Antoine du Hamel / #3812)

## 2.3.2

Released: 2022-07-27
Expand Down
2 changes: 1 addition & 1 deletion 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": "3.0.0-beta.1",
"version": "3.0.0-beta.2",
"license": "MIT",
"main": "lib/index.js",
"style": "dist/style.min.css",
Expand Down
9 changes: 9 additions & 0 deletions packages/@uppy/dashboard/CHANGELOG.md
@@ -1,11 +1,20 @@
# @uppy/dashboard

## 3.0.0-beta.2

Released: 2022-07-27
Included in: Uppy v3.0.0-beta.3

- @uppy/dashboard,@uppy/webcam: Add support for `mobileNativeCamera` option to Webcam and Dashboard (Artur Paikin / #3844)
- @uppy/aws-s3,@uppy/core,@uppy/dashboard,@uppy/store-redux,@uppy/xhr-upload: upgrade `nanoid` to v4 (Antoine du Hamel / #3904)

## 3.0.0-beta.1

Released: 2022-06-09
Included in: Uppy v3.0.0-beta.1

- @uppy/core,@uppy/dashboard: fix types for some events (Antoine du Hamel / #3812)

## 2.4.1

Released: 2022-07-27
Expand Down
2 changes: 1 addition & 1 deletion packages/@uppy/dashboard/package.json
@@ -1,7 +1,7 @@
{
"name": "@uppy/dashboard",
"description": "Universal UI plugin for Uppy.",
"version": "3.0.0-beta.1",
"version": "3.0.0-beta.2",
"license": "MIT",
"main": "lib/index.js",
"style": "dist/style.min.css",
Expand Down
2 changes: 1 addition & 1 deletion packages/@uppy/image-editor/package.json
@@ -1,7 +1,7 @@
{
"name": "@uppy/image-editor",
"description": "Image editor and cropping UI",
"version": "2.0.0-beta.1",
"version": "2.0.0-beta.2",
"license": "MIT",
"main": "lib/index.js",
"style": "dist/style.min.css",
Expand Down
2 changes: 1 addition & 1 deletion packages/@uppy/locales/package.json
@@ -1,7 +1,7 @@
{
"name": "@uppy/locales",
"description": "Uppy language packs",
"version": "3.0.0-beta.2",
"version": "3.0.0-beta.3",
"license": "MIT",
"type": "module",
"keywords": [
Expand Down
7 changes: 7 additions & 0 deletions packages/@uppy/react/CHANGELOG.md
@@ -1,5 +1,12 @@
# @uppy/react

## 3.0.0-beta.2

Released: 2022-07-27
Included in: Uppy v3.0.0-beta.3

- @uppy/react: Fix exports in propTypes.js to fix website build (Murderlon)

## 3.0.0-beta

Released: 2022-05-30
Expand Down
2 changes: 1 addition & 1 deletion packages/@uppy/react/package.json
@@ -1,7 +1,7 @@
{
"name": "@uppy/react",
"description": "React component wrappers around Uppy's official UI plugins.",
"version": "3.0.0-beta.1",
"version": "3.0.0-beta.2",
"license": "MIT",
"main": "lib/index.js",
"types": "types/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/@uppy/remote-sources/package.json
@@ -1,7 +1,7 @@
{
"name": "@uppy/remote-sources",
"description": "Uppy plugin that includes all remote sources that Uppy+Companion offer, like Instagram, Google Drive, Dropox, Box, Unsplash, Url etc",
"version": "1.0.0-beta.1",
"version": "1.0.0-beta.2",
"license": "MIT",
"main": "lib/index.js",
"types": "types/index.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions packages/@uppy/robodog/README.md
Expand Up @@ -18,8 +18,8 @@ $ npm install @uppy/robodog
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/v3.0.0-beta.2/robodog.min.css">
<script src="https://releases.transloadit.com/uppy/v3.0.0-beta.2/robodog.min.js"></script>
<link rel="stylesheet" href="https://releases.transloadit.com/uppy/v3.0.0-beta.3/robodog.min.css">
<script src="https://releases.transloadit.com/uppy/v3.0.0-beta.3/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/robodog/package.json
@@ -1,7 +1,7 @@
{
"name": "@uppy/robodog",
"description": "Transloadit SDK for browsers based on Uppy",
"version": "3.0.0-beta.2",
"version": "3.0.0-beta.3",
"license": "MIT",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
Expand Down
7 changes: 7 additions & 0 deletions packages/@uppy/store-redux/CHANGELOG.md
@@ -1,5 +1,12 @@
# @uppy/store-redux

## 3.0.0-beta.2

Released: 2022-07-27
Included in: Uppy v3.0.0-beta.3

- @uppy/aws-s3,@uppy/core,@uppy/dashboard,@uppy/store-redux,@uppy/xhr-upload: upgrade `nanoid` to v4 (Antoine du Hamel / #3904)

## 2.1.0

Released: 2022-05-30
Expand Down
2 changes: 1 addition & 1 deletion packages/@uppy/store-redux/package.json
@@ -1,7 +1,7 @@
{
"name": "@uppy/store-redux",
"description": "Make Uppy use your existing Redux store.",
"version": "3.0.0-beta.1",
"version": "3.0.0-beta.2",
"license": "MIT",
"main": "lib/index.js",
"types": "types/index.d.ts",
Expand Down
1 change: 1 addition & 0 deletions packages/@uppy/transloadit/CHANGELOG.md
Expand Up @@ -6,6 +6,7 @@ Released: 2022-05-30
Included in: Uppy v3.0.0-beta

- @uppy/transloadit: remove IE 10 hack (Antoine du Hamel / #3777)

## 2.3.5

Released: 2022-07-27
Expand Down
2 changes: 1 addition & 1 deletion packages/@uppy/transloadit/package.json
@@ -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.0.0-beta.2",
"version": "3.0.0-beta.3",
"license": "MIT",
"main": "lib/index.js",
"types": "types/index.d.ts",
Expand Down
7 changes: 7 additions & 0 deletions packages/@uppy/webcam/CHANGELOG.md
@@ -1,5 +1,12 @@
# @uppy/webcam

## 3.0.0-beta.2

Released: 2022-07-27
Included in: Uppy v3.0.0-beta.3

- @uppy/dashboard,@uppy/webcam: Add support for `mobileNativeCamera` option to Webcam and Dashboard (Artur Paikin / #3844)

## 2.2.1

Released: 2022-05-30
Expand Down

0 comments on commit 0dcf869

Please sign in to comment.