Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
| Package                    | Version | Package                    | Version |
| -------------------------- | ------- | -------------------------- | ------- |
| @uppy/companion            |   5.3.0 | @uppy/progress-bar         |   4.1.0 |
| @uppy/companion-client     |   4.3.0 | @uppy/provider-views       |   4.2.0 |
| @uppy/core                 |   4.3.1 | @uppy/status-bar           |   4.0.6 |
| @uppy/google-drive-picker  |   0.2.1 | @uppy/utils                |   6.0.6 |
| @uppy/google-photos-picker |   0.2.1 | @uppy/webdav               |   0.1.0 |
| @uppy/locales              |   4.4.0 | uppy                       |   4.9.0 |

- @uppy/webdav: Add @uppy/webdav (Merlijn Vos / #5551)
- @uppy/google-drive-picker,@uppy/google-photos-picker,@uppy/locales: Add missing Google Picker locale entries (Merlijn Vos / #5552)
- @uppy/core: bring back validateRestrictions (Merlijn Vos / #5538)
- @uppy/google-drive-picker,@uppy/google-photos-picker: Fix TS generics on new Google Picker plugins (Merlijn Vos / #5550)
- @uppy/locales: Add missing French locale entries (Steven SAN / #5549)
- e2e,@uppy/status-bar,@uppy/utils: Companion stream upload unknown size files (Mikael Finstad / #5489)
  • Loading branch information
github-actions[bot] authored Dec 17, 2024
1 parent 9164ad5 commit 8654e98
Show file tree
Hide file tree
Showing 23 changed files with 132 additions and 58 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.8.0/uppy.min.js"></script>`)
(`<script src="https://releases.transloadit.com/uppy/v4.9.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
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,27 @@ Please add your entries in this format:

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

## 4.9.0

Released: 2024-12-17

| Package | Version | Package | Version |
| -------------------------- | ------- | -------------------------- | ------- |
| @uppy/companion | 5.3.0 | @uppy/progress-bar | 4.1.0 |
| @uppy/companion-client | 4.3.0 | @uppy/provider-views | 4.2.0 |
| @uppy/core | 4.3.1 | @uppy/status-bar | 4.0.6 |
| @uppy/google-drive-picker | 0.2.1 | @uppy/utils | 6.0.6 |
| @uppy/google-photos-picker | 0.2.1 | @uppy/webdav | 0.1.0 |
| @uppy/locales | 4.4.0 | uppy | 4.9.0 |

- @uppy/webdav: Add @uppy/webdav (Merlijn Vos / #5551)
- @uppy/google-drive-picker,@uppy/google-photos-picker,@uppy/locales: Add missing Google Picker locale entries (Merlijn Vos / #5552)
- @uppy/core: bring back validateRestrictions (Merlijn Vos / #5538)
- @uppy/google-drive-picker,@uppy/google-photos-picker: Fix TS generics on new Google Picker plugins (Merlijn Vos / #5550)
- @uppy/locales: Add missing French locale entries (Steven SAN / #5549)
- e2e,@uppy/status-bar,@uppy/utils: Companion stream upload unknown size files (Mikael Finstad / #5489)


## 4.8.0

Released: 2024-12-05
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.8.0/uppy.min.css"
href="https://releases.transloadit.com/uppy/v4.9.0/uppy.min.css"
rel="stylesheet"
/>
</head>
Expand All @@ -19,7 +19,7 @@
Dashboard,
Webcam,
Tus,
} from 'https://releases.transloadit.com/uppy/v4.8.0/uppy.min.mjs'
} from 'https://releases.transloadit.com/uppy/v4.9.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.8.0/uppy.min.css"
href="https://releases.transloadit.com/uppy/v4.9.0/uppy.min.css"
rel="stylesheet"
/>
</head>
Expand All @@ -19,7 +19,7 @@
Instagram,
GoogleDrive,
Tus,
} from 'https://releases.transloadit.com/uppy/v4.8.0/uppy.min.mjs'
} from 'https://releases.transloadit.com/uppy/v4.9.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-client/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@uppy/companion-client",
"description": "Client library for communication with Companion. Intended for use in Uppy plugins.",
"version": "4.2.0",
"version": "4.3.0",
"license": "MIT",
"main": "lib/index.js",
"type": "module",
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.2.0",
"version": "5.3.0",
"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.3.1

Released: 2024-12-17
Included in: Uppy v4.9.0

- @uppy/core: bring back validateRestrictions (Merlijn Vos / #5538)

## 4.3.0

Released: 2024-12-05
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.3.0",
"version": "4.3.1",
"license": "MIT",
"main": "lib/index.js",
"style": "dist/style.min.css",
Expand Down
8 changes: 8 additions & 0 deletions packages/@uppy/google-drive-picker/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @uppy/google-drive-picker

## 0.2.1

Released: 2024-12-17
Included in: Uppy v4.9.0

- @uppy/google-drive-picker,@uppy/google-photos-picker,@uppy/locales: Add missing Google Picker locale entries (Merlijn Vos / #5552)
- @uppy/google-drive-picker,@uppy/google-photos-picker: Fix TS generics on new Google Picker plugins (Merlijn Vos / #5550)

## 0.2.0

Released: 2024-12-05
Expand Down
2 changes: 1 addition & 1 deletion packages/@uppy/google-drive-picker/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@uppy/google-drive-picker",
"description": "The Google Drive Picker plugin for Uppy lets users import files from their Google Drive account",
"version": "0.2.0",
"version": "0.2.1",
"license": "MIT",
"main": "lib/index.js",
"type": "module",
Expand Down
8 changes: 8 additions & 0 deletions packages/@uppy/google-photos-picker/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @uppy/google-photos-picker

## 0.2.1

Released: 2024-12-17
Included in: Uppy v4.9.0

- @uppy/google-drive-picker,@uppy/google-photos-picker,@uppy/locales: Add missing Google Picker locale entries (Merlijn Vos / #5552)
- @uppy/google-drive-picker,@uppy/google-photos-picker: Fix TS generics on new Google Picker plugins (Merlijn Vos / #5550)

## 0.2.0

Released: 2024-12-05
Expand Down
2 changes: 1 addition & 1 deletion packages/@uppy/google-photos-picker/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@uppy/google-photos-picker",
"description": "The Google Photos Picker plugin for Uppy lets users import files from their Google Photos account",
"version": "0.2.0",
"version": "0.2.1",
"license": "MIT",
"main": "lib/index.js",
"type": "module",
Expand Down
8 changes: 8 additions & 0 deletions packages/@uppy/locales/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @uppy/locales

## 4.4.0

Released: 2024-12-17
Included in: Uppy v4.9.0

- @uppy/google-drive-picker,@uppy/google-photos-picker,@uppy/locales: Add missing Google Picker locale entries (Merlijn Vos / #5552)
- @uppy/locales: Add missing French locale entries (Steven SAN / #5549)

## 4.3.1

Released: 2024-12-05
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.3.1",
"version": "4.4.0",
"license": "MIT",
"type": "module",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion packages/@uppy/progress-bar/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@uppy/progress-bar",
"description": "A progress bar UI for Uppy",
"version": "4.0.2",
"version": "4.1.0",
"license": "MIT",
"main": "lib/index.js",
"style": "dist/style.min.css",
Expand Down
2 changes: 1 addition & 1 deletion packages/@uppy/provider-views/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@uppy/provider-views",
"description": "View library for Uppy remote provider plugins.",
"version": "4.1.0",
"version": "4.2.0",
"license": "MIT",
"main": "lib/index.js",
"style": "dist/style.min.css",
Expand Down
7 changes: 7 additions & 0 deletions packages/@uppy/status-bar/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @uppy/status-bar

## 4.0.6

Released: 2024-12-17
Included in: Uppy v4.9.0

- e2e,@uppy/status-bar,@uppy/utils: Companion stream upload unknown size files (Mikael Finstad / #5489)

## 4.0.5

Released: 2024-12-05
Expand Down
2 changes: 1 addition & 1 deletion packages/@uppy/status-bar/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@uppy/status-bar",
"description": "A progress bar for Uppy, with many bells and whistles.",
"version": "4.0.5",
"version": "4.0.6",
"license": "MIT",
"main": "lib/index.js",
"style": "dist/style.min.css",
Expand Down
7 changes: 7 additions & 0 deletions packages/@uppy/utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @uppy/utils

## 6.0.6

Released: 2024-12-17
Included in: Uppy v4.9.0

- e2e,@uppy/status-bar,@uppy/utils: Companion stream upload unknown size files (Mikael Finstad / #5489)

## 6.0.5

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

## 0.1.0

Released: 2024-12-17
Included in: Uppy v4.9.0

- @uppy/webdav: Add @uppy/webdav (Merlijn Vos / #5551)
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.8.0",
"version": "4.9.0",
"license": "MIT",
"main": "lib/index.js",
"module": "lib/index.js",
Expand Down

0 comments on commit 8654e98

Please sign in to comment.