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: [email protected] #5467

Merged
merged 1 commit into from
Sep 20, 2024
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.3.0/uppy.min.js"></script>`)
(`<script src="https://releases.transloadit.com/uppy/v4.4.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
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,33 @@ Please add your entries in this format:

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

## 4.4.0

Released: 2024-09-20

| Package | Version | Package | Version |
| ----------------- | ------- | ----------------- | ------- |
| @uppy/companion | 5.1.1 | @uppy/tus | 4.1.1 |
| @uppy/svelte | 4.0.2 | @uppy/xhr-upload | 4.2.0 |
| @uppy/transloadit | 4.1.1 | uppy | 4.4.0 |

- @uppy/tus: fix retry check for status code 400 (Merlijn Vos / #5461)
- meta: Merge branch 'main' of https://github.com/transloadit/uppy (Murderlon)
- meta: fix AwsS3 endpoint option in private/dev (Murderlon)
- examples: build(deps): bump body-parser from 1.20.2 to 1.20.3 (dependabot[bot] / #5462)
- examples: build(deps-dev): bump vite from 5.3.1 to 5.3.6 (dependabot[bot] / #5459)
- @uppy/tus: set response from tus-js-client (Merlijn Vos / #5456)
- docs: fix assemblyOptions example for React (Merlijn Vos / #5450)
- docs: rename Edgly to Smart CDN (Merlijn Vos / #5449)
- @uppy/tus: correctly type tus on UppyFile (Merlijn Vos / #5454)
- docs: remove old legacy CDN reference (Murderlon)
- @uppy/xhr-upload: pass files to onBeforeRequest (Merlijn Vos / #5447)
- @uppy/svelte: fix generated module to not bundle Svelte (Antoine du Hamel / #5446)
- examples,@uppy/svelte: Bump svelte from 4.2.18 to 4.2.19 (dependabot[bot] / #5440)
- meta: bump Yarn to 4.4.1 (Antoine du Hamel / #5445)
- docs: fix broken links in locale docs (Serghei Cebotari / #5441)


## 4.3.0

Released: 2024-08-29
Expand Down
66 changes: 33 additions & 33 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.3.0/uppy.min.css"
href="https://releases.transloadit.com/uppy/v4.4.0/uppy.min.css"
rel="stylesheet"
/>
</head>
Expand All @@ -19,7 +19,7 @@
Dashboard,
Webcam,
Tus,
} from 'https://releases.transloadit.com/uppy/v4.3.0/uppy.min.mjs'
} from 'https://releases.transloadit.com/uppy/v4.4.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.3.0/uppy.min.css"
href="https://releases.transloadit.com/uppy/v4.4.0/uppy.min.css"
rel="stylesheet"
/>
</head>
Expand All @@ -19,7 +19,7 @@
Instagram,
GoogleDrive,
Tus,
} from 'https://releases.transloadit.com/uppy/v4.3.0/uppy.min.mjs'
} from 'https://releases.transloadit.com/uppy/v4.4.0/uppy.min.mjs'

const uppy = new Uppy({ debug: true, autoProceed: false })
.use(Dashboard, { trigger: '#uppyModalOpener' })
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.0",
"version": "5.1.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
8 changes: 8 additions & 0 deletions packages/@uppy/svelte/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @uppy/svelte

## 4.0.2

Released: 2024-09-20
Included in: Uppy v4.4.0

- @uppy/svelte: fix generated module to not bundle Svelte (Antoine du Hamel / #5446)
- examples,@uppy/svelte: Bump svelte from 4.2.18 to 4.2.19 (dependabot[bot] / #5440)

## 4.0.1

Released: 2024-08-20
Expand Down
2 changes: 1 addition & 1 deletion packages/@uppy/svelte/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@uppy/svelte",
"description": "Uppy plugin that helps integrate Uppy into your Svelte project.",
"type": "module",
"version": "4.0.1",
"version": "4.0.2",
"scripts": {
"build": "rollup -c",
"prepublishOnly": "yarn run build",
Expand Down
2 changes: 1 addition & 1 deletion packages/@uppy/transloadit/package.json
Original file line number Diff line number Diff line change
@@ -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": "4.1.0",
"version": "4.1.1",
"license": "MIT",
"main": "lib/index.js",
"type": "module",
Expand Down
9 changes: 9 additions & 0 deletions packages/@uppy/tus/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @uppy/tus

## 4.1.1

Released: 2024-09-20
Included in: Uppy v4.4.0

- @uppy/tus: fix retry check for status code 400 (Merlijn Vos / #5461)
- @uppy/tus: set response from tus-js-client (Merlijn Vos / #5456)
- @uppy/tus: correctly type tus on UppyFile (Merlijn Vos / #5454)

## 4.1.0

Released: 2024-08-29
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.0",
"version": "4.1.1",
"license": "MIT",
"main": "lib/index.js",
"type": "module",
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.0

Released: 2024-09-20
Included in: Uppy v4.4.0

- @uppy/xhr-upload: pass files to onBeforeRequest (Merlijn Vos / #5447)

## 4.1.0

Released: 2024-08-29
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.1.0",
"version": "4.2.0",
"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.3.0",
"version": "4.4.0",
"license": "MIT",
"main": "lib/index.js",
"module": "lib/index.js",
Expand Down
Loading