Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
This is a release candidate for the following packages:

- `@uppy/companion`: 5.0.0 -> 5.0.1
- `@uppy/core`: 4.0.0 -> 4.0.1
- `@uppy/dashboard`: 4.0.0 -> 4.0.1
- `@uppy/drag-drop`: 4.0.0 -> 4.0.1
- `@uppy/drop-target`: 3.0.0 -> 3.0.1
- `@uppy/react`: 4.0.0 -> 4.0.1
- `uppy`: 4.0.0 -> 4.0.1

Co-authored-by: Antoine du Hamel <[email protected]>
  • Loading branch information
github-actions[bot] and aduh95 authored Jul 15, 2024
1 parent cd2d39e commit b14d0bd
Show file tree
Hide file tree
Showing 17 changed files with 113 additions and 54 deletions.
2 changes: 1 addition & 1 deletion BUNDLE-README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

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/v4.0.0/uppy.min.js"></script>`)
(`<script src="https://releases.transloadit.com/uppy/v4.0.1/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
Expand Down
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,29 @@ Please add your entries in this format:

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

## 4.0.1

Released: 2024-07-15

| Package | Version | Package | Version |
| ----------------- | ------- | ----------------- | ------- |
| @uppy/companion | 5.0.1 | @uppy/drop-target | 3.0.1 |
| @uppy/core | 4.0.1 | @uppy/react | 4.0.1 |
| @uppy/dashboard | 4.0.1 | uppy | 4.0.1 |
| @uppy/drag-drop | 4.0.1 | | |

- @uppy/dashboard: propagate `setOptions` to `StatusBar` (Mikael Finstad / #5260)
- meta: add missing lint rule for `.ts` files (Antoine du Hamel / #5335)
- @uppy/companion: bump `ws` from 8.17.0 to 8.17.1 (dependabot[bot] / #5324)
- @uppy/dashboard,@uppy/drag-drop,@uppy/drop-target: `<Dashboard/>`, `<DragDrop/>`, `drop-target` - new anti-flickering solution (Evgenia Karunus / #5326)
- docs: add css import for url plugin (Tyler Nieman / #5333)
- meta: Bump fast-loops from 1.1.3 to 1.1.4 (dependabot[bot] / #5327)
- @uppy/core: make `Meta` generic optional (Merlijn Vos / #5330)
- meta: update `manual-cdn` workflow (Antoine du Hamel / #5329)
- docs: Fix lint (Murderlon)
- docs: Correct mistake in migration guide (Murderlon)


## 4.0.0

Released: 2024-07-10
Expand Down
84 changes: 42 additions & 42 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 @@ -5,7 +5,7 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
href="https://releases.transloadit.com/uppy/v4.0.0/uppy.min.css"
href="https://releases.transloadit.com/uppy/v4.0.1/uppy.min.css"
rel="stylesheet"
/>
</head>
Expand All @@ -19,7 +19,7 @@
Dashboard,
Webcam,
Tus,
} from 'https://releases.transloadit.com/uppy/v4.0.0/uppy.min.mjs'
} from 'https://releases.transloadit.com/uppy/v4.0.1/uppy.min.mjs'

const uppy = new Uppy({ debug: true, autoProceed: false })
.use(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 @@ -5,7 +5,7 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
href="https://releases.transloadit.com/uppy/v4.0.0/uppy.min.css"
href="https://releases.transloadit.com/uppy/v4.0.1/uppy.min.css"
rel="stylesheet"
/>
</head>
Expand All @@ -19,7 +19,7 @@
Instagram,
GoogleDrive,
Tus,
} from 'https://releases.transloadit.com/uppy/v4.0.0/uppy.min.mjs'
} from 'https://releases.transloadit.com/uppy/v4.0.1/uppy.min.mjs'

const uppy = new Uppy({ debug: true, autoProceed: false })
.use(Dashboard, { trigger: '#uppyModalOpener' })
Expand Down
7 changes: 7 additions & 0 deletions packages/@uppy/companion/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @uppy/companion

## 5.0.1

Released: 2024-07-15
Included in: Uppy v4.0.1

- @uppy/companion: bump `ws` from 8.17.0 to 8.17.1 (dependabot[bot] / #5324)

## 5.0.0

Released: 2024-07-10
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": "5.0.0",
"version": "5.0.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/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @uppy/core

## 4.0.1

Released: 2024-07-15
Included in: Uppy v4.0.1

- @uppy/core: make `Meta` generic optional (Merlijn Vos / #5330)

## 4.0.0

Released: 2024-07-10
Expand Down
2 changes: 1 addition & 1 deletion packages/@uppy/core/package.json
Original file line number Diff line number Diff line change
@@ -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": "4.0.0",
"version": "4.0.1",
"license": "MIT",
"main": "lib/index.js",
"style": "dist/style.min.css",
Expand Down
8 changes: 8 additions & 0 deletions packages/@uppy/dashboard/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @uppy/dashboard

## 4.0.1

Released: 2024-07-15
Included in: Uppy v4.0.1

- @uppy/dashboard: propagate `setOptions` to `StatusBar` (Mikael Finstad / #5260)
- @uppy/dashboard,@uppy/drag-drop,@uppy/drop-target: `<Dashboard/>`, `<DragDrop/>`, `drop-target` - new anti-flickering solution (Evgenia Karunus / #5326)

## 4.0.0-beta.9

Released: 2024-06-04
Expand Down
2 changes: 1 addition & 1 deletion packages/@uppy/dashboard/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@uppy/dashboard",
"description": "Universal UI plugin for Uppy.",
"version": "4.0.0",
"version": "4.0.1",
"license": "MIT",
"main": "lib/index.js",
"style": "dist/style.min.css",
Expand Down
7 changes: 7 additions & 0 deletions packages/@uppy/drag-drop/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @uppy/drag-drop

## 4.0.1

Released: 2024-07-15
Included in: Uppy v4.0.1

- @uppy/dashboard,@uppy/drag-drop,@uppy/drop-target: `<Dashboard/>`, `<DragDrop/>`, `drop-target` - new anti-flickering solution (Evgenia Karunus / #5326)

## 4.0.0-beta.1

Released: 2024-03-28
Expand Down
2 changes: 1 addition & 1 deletion packages/@uppy/drag-drop/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@uppy/drag-drop",
"description": "Droppable zone UI for Uppy. Drag and drop files into it to upload.",
"version": "4.0.0",
"version": "4.0.1",
"license": "MIT",
"main": "lib/index.js",
"style": "dist/style.min.css",
Expand Down
7 changes: 7 additions & 0 deletions packages/@uppy/drop-target/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @uppy/drop-target

## 3.0.1

Released: 2024-07-15
Included in: Uppy v4.0.1

- @uppy/dashboard,@uppy/drag-drop,@uppy/drop-target: `<Dashboard/>`, `<DragDrop/>`, `drop-target` - new anti-flickering solution (Evgenia Karunus / #5326)

## 3.0.0-beta.5

Released: 2024-06-04
Expand Down
2 changes: 1 addition & 1 deletion packages/@uppy/drop-target/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@uppy/drop-target",
"description": "Lets your users drag and drop files on a DOM element",
"version": "3.0.0",
"version": "3.0.1",
"license": "MIT",
"main": "lib/index.js",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion packages/@uppy/react/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@uppy/react",
"description": "React component wrappers around Uppy's official UI plugins.",
"version": "4.0.0",
"version": "4.0.1",
"license": "MIT",
"main": "lib/index.js",
"type": "module",
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": "4.0.0",
"version": "4.0.1",
"license": "MIT",
"main": "index.mjs",
"module": "index.mjs",
Expand Down

0 comments on commit b14d0bd

Please sign in to comment.