Skip to content

Commit

Permalink
Release: uppy@4.5.0 (#5487)
Browse files Browse the repository at this point in the history
| Package          | Version | Package          | Version |
| ---------------- | ------- | ---------------- | ------- |
| @uppy/companion  |   5.1.2 | @uppy/svelte     |   4.1.0 |
| @uppy/core       |   4.2.2 | @uppy/tus        |   4.1.2 |
| @uppy/dashboard  |   4.1.1 | @uppy/utils      |   6.0.3 |
| @uppy/drag-drop  |   4.0.3 | @uppy/xhr-upload |   4.2.1 |
| @uppy/file-input |   4.0.2 | uppy             |   4.5.0 |
| @uppy/locales    |   4.2.0 |                  |         |

- @uppy/dashboard: Dashboard - convert some files to typescript  (Evgenia Karunus / #5367)
- @uppy/dashboard,@uppy/drag-drop,@uppy/file-input:  `.handleInputChange()` - use `.currentTarget`; clear the input using `''` (Evgenia Karunus / #5381)
- meta: build(deps): bump @blakeembrey/template from 1.1.0 to 1.2.0 (dependabot[bot] / #5448)
- @uppy/locales: Update packages/@uppy/locales/src/fr_FR.ts (Zéfyx / #5472)
- @uppy/svelte: use SvelteKit as the build tool (Merlijn Vos / #5484)
- @uppy/xhr-upload: add response to upload-error callback (Caleb Hardin / #5486)
- @uppy/tus: tus: Avoid duplicate `upload-error` event (Marius / #5485)
- @uppy/companion: Fix redis emitter (Mikael Finstad / #5474)
- meta: build(deps): bump docker/build-push-action from 6.8.0 to 6.9.0 (dependabot[bot] / #5483)
  • Loading branch information
github-actions[bot] authored Oct 15, 2024
1 parent 922e7fb commit f8df085
Show file tree
Hide file tree
Showing 24 changed files with 148 additions and 66 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.4.1/uppy.min.js"></script>`)
(`<script src="https://releases.transloadit.com/uppy/v4.5.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
Expand Down
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,30 @@ Please add your entries in this format:

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

## 4.5.0

Released: 2024-10-15

| Package | Version | Package | Version |
| ---------------- | ------- | ---------------- | ------- |
| @uppy/companion | 5.1.2 | @uppy/svelte | 4.1.0 |
| @uppy/core | 4.2.2 | @uppy/tus | 4.1.2 |
| @uppy/dashboard | 4.1.1 | @uppy/utils | 6.0.3 |
| @uppy/drag-drop | 4.0.3 | @uppy/xhr-upload | 4.2.1 |
| @uppy/file-input | 4.0.2 | uppy | 4.5.0 |
| @uppy/locales | 4.2.0 | | |

- @uppy/dashboard: Dashboard - convert some files to typescript (Evgenia Karunus / #5367)
- @uppy/dashboard,@uppy/drag-drop,@uppy/file-input: `.handleInputChange()` - use `.currentTarget`; clear the input using `''` (Evgenia Karunus / #5381)
- meta: build(deps): bump @blakeembrey/template from 1.1.0 to 1.2.0 (dependabot[bot] / #5448)
- @uppy/locales: Update packages/@uppy/locales/src/fr_FR.ts (Zéfyx / #5472)
- @uppy/svelte: use SvelteKit as the build tool (Merlijn Vos / #5484)
- @uppy/xhr-upload: add response to upload-error callback (Caleb Hardin / #5486)
- @uppy/tus: tus: Avoid duplicate `upload-error` event (Marius / #5485)
- @uppy/companion: Fix redis emitter (Mikael Finstad / #5474)
- meta: build(deps): bump docker/build-push-action from 6.8.0 to 6.9.0 (dependabot[bot] / #5483)


## 4.4.1

Released: 2024-09-30
Expand Down
101 changes: 51 additions & 50 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.4.1/uppy.min.css"
href="https://releases.transloadit.com/uppy/v4.5.0/uppy.min.css"
rel="stylesheet"
/>
</head>
Expand All @@ -19,7 +19,7 @@
Dashboard,
Webcam,
Tus,
} from 'https://releases.transloadit.com/uppy/v4.4.1/uppy.min.mjs'
} from 'https://releases.transloadit.com/uppy/v4.5.0/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.4.1/uppy.min.css"
href="https://releases.transloadit.com/uppy/v4.5.0/uppy.min.css"
rel="stylesheet"
/>
</head>
Expand All @@ -19,7 +19,7 @@
Instagram,
GoogleDrive,
Tus,
} from 'https://releases.transloadit.com/uppy/v4.4.1/uppy.min.mjs'
} from 'https://releases.transloadit.com/uppy/v4.5.0/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.1.2

Released: 2024-10-15
Included in: Uppy v4.5.0

- @uppy/companion: Fix redis emitter (Mikael Finstad / #5474)

## 5.1.0

Released: 2024-08-29
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.1.1",
"version": "5.1.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/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.2.1",
"version": "4.2.2",
"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.1.1

Released: 2024-10-15
Included in: Uppy v4.5.0

- @uppy/dashboard: Dashboard - convert some files to typescript (Evgenia Karunus / #5367)
- @uppy/dashboard,@uppy/drag-drop,@uppy/file-input: `.handleInputChange()` - use `.currentTarget`; clear the input using `''` (Evgenia Karunus / #5381)

## 4.1.0

Released: 2024-08-29
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.1.0",
"version": "4.1.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.3

Released: 2024-10-15
Included in: Uppy v4.5.0

- @uppy/dashboard,@uppy/drag-drop,@uppy/file-input: `.handleInputChange()` - use `.currentTarget`; clear the input using `''` (Evgenia Karunus / #5381)

## 4.0.2

Released: 2024-08-15
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.2",
"version": "4.0.3",
"license": "MIT",
"main": "lib/index.js",
"style": "dist/style.min.css",
Expand Down
7 changes: 7 additions & 0 deletions packages/@uppy/file-input/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @uppy/file-input

## 4.0.2

Released: 2024-10-15
Included in: Uppy v4.5.0

- @uppy/dashboard,@uppy/drag-drop,@uppy/file-input: `.handleInputChange()` - use `.currentTarget`; clear the input using `''` (Evgenia Karunus / #5381)

## 4.0.1

Released: 2024-08-15
Expand Down
2 changes: 1 addition & 1 deletion packages/@uppy/file-input/package.json
Original file line number Diff line number Diff line change
@@ -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": "4.0.1",
"version": "4.0.2",
"license": "MIT",
"main": "lib/index.js",
"style": "dist/style.min.css",
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

## 4.2.0

Released: 2024-10-15
Included in: Uppy v4.5.0

- @uppy/locales: Update packages/@uppy/locales/src/fr_FR.ts (Zéfyx / #5472)

## 4.1.0

Released: 2024-08-29
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": "4.1.0",
"version": "4.2.0",
"license": "MIT",
"type": "module",
"keywords": [
Expand Down
7 changes: 7 additions & 0 deletions packages/@uppy/svelte/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @uppy/svelte

## 4.1.0

Released: 2024-10-15
Included in: Uppy v4.5.0

- @uppy/svelte: use SvelteKit as the build tool (Merlijn Vos / #5484)

## 4.0.2

Released: 2024-09-20
Expand Down
2 changes: 1 addition & 1 deletion packages/@uppy/svelte/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@uppy/svelte",
"version": "4.0.2",
"version": "4.1.0",
"description": "Uppy plugin that helps integrate Uppy into your Svelte project.",
"type": "module",
"svelte": "./dist/index.js",
Expand Down
7 changes: 7 additions & 0 deletions packages/@uppy/tus/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @uppy/tus

## 4.1.2

Released: 2024-10-15
Included in: Uppy v4.5.0

- @uppy/tus: tus: Avoid duplicate `upload-error` event (Marius / #5485)

## 4.1.1

Released: 2024-09-20
Expand Down
2 changes: 1 addition & 1 deletion packages/@uppy/tus/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@uppy/tus",
"description": "Resumable uploads for Uppy using Tus.io",
"version": "4.1.1",
"version": "4.1.2",
"license": "MIT",
"main": "lib/index.js",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion packages/@uppy/utils/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@uppy/utils",
"description": "Shared utility functions for Uppy Core and plugins maintained by the Uppy team.",
"version": "6.0.2",
"version": "6.0.3",
"license": "MIT",
"type": "module",
"keywords": [
Expand Down
7 changes: 7 additions & 0 deletions packages/@uppy/xhr-upload/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @uppy/xhr-upload

## 4.2.1

Released: 2024-10-15
Included in: Uppy v4.5.0

- @uppy/xhr-upload: add response to upload-error callback (Caleb Hardin / #5486)

## 4.2.0

Released: 2024-09-20
Expand Down
2 changes: 1 addition & 1 deletion packages/@uppy/xhr-upload/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@uppy/xhr-upload",
"description": "Plain and simple classic HTML multipart form uploads with Uppy, as well as uploads using the HTTP PUT method.",
"version": "4.2.0",
"version": "4.2.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.4.1",
"version": "4.5.0",
"license": "MIT",
"main": "lib/index.js",
"module": "lib/index.js",
Expand Down

0 comments on commit f8df085

Please sign in to comment.