From 9816fd7f734803fc2c90c86601db5ba5b6b0909b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 4 Jun 2024 09:07:09 +0000 Subject: [PATCH] Release: uppy@3.26.0 (#5223) | Package | Version | Package | Version | | ---------------------- | ------- | ---------------------- | ------- | | @uppy/aws-s3-multipart | 3.12.0 | @uppy/webcam | 3.4.2 | | @uppy/core | 3.12.0 | uppy | 3.26.0 | | @uppy/transloadit | 3.7.0 | | | - meta: remove Companion's `prepublishOnly` (Mikael Finstad / #5220) - docs: document clearUploadedFiles (Merlijn Vos / #5204) - @uppy/webcam: add missing types for `recordedVideo` (Antoine du Hamel / #5208) - @uppy/core: check capabilities in clearUploadedFiles (Merlijn Vos / #5201) - @uppy/core: PartialTree - change the `maxTotalFileSize` error (Evgenia Karunus / #5203) - @uppy/transloadit: remove `updateNumberOfFilesInAssembly` (Merlijn Vos / #5202) - @uppy/aws-s3: resolve all headers on response (Merlijn Vos / #5195) - docs: Improve provider docs: OneDrive (Evgenia Karunus / #5196) --- BUNDLE-README.md | 2 +- CHANGELOG.md | 20 ++++++ README.md | 66 +++++++++---------- examples/aws-nodejs/public/drag.html | 4 +- examples/aws-nodejs/public/index.html | 4 +- examples/cdn-example/index.html | 6 +- .../uppy-with-companion/client/index.html | 4 +- packages/@uppy/aws-s3-multipart/package.json | 2 +- packages/@uppy/core/CHANGELOG.md | 8 +++ packages/@uppy/core/package.json | 2 +- packages/@uppy/transloadit/CHANGELOG.md | 7 ++ packages/@uppy/transloadit/package.json | 2 +- packages/@uppy/webcam/CHANGELOG.md | 7 ++ packages/@uppy/webcam/package.json | 2 +- packages/uppy/package.json | 2 +- 15 files changed, 90 insertions(+), 48 deletions(-) diff --git a/BUNDLE-README.md b/BUNDLE-README.md index f5df458e8e..f1bf1c793b 100644 --- a/BUNDLE-README.md +++ b/BUNDLE-README.md @@ -2,7 +2,7 @@ Hi, thanks for trying out the bundled version of the Uppy File Uploader. You can use this from a CDN -(``) +(``) or bundle it with your webapp. Note that the recommended way to use Uppy is to install it with yarn/npm and use diff --git a/CHANGELOG.md b/CHANGELOG.md index cebe8a6423..f1eaeced71 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,26 @@ Please add your entries in this format: In the current stage we aim to release a new version at least every month. +## 3.26.0 + +Released: 2024-06-04 + +| Package | Version | Package | Version | +| ---------------------- | ------- | ---------------------- | ------- | +| @uppy/aws-s3-multipart | 3.12.0 | @uppy/webcam | 3.4.2 | +| @uppy/core | 3.12.0 | uppy | 3.26.0 | +| @uppy/transloadit | 3.7.0 | | | + +- meta: remove Companion's `prepublishOnly` (Mikael Finstad / #5220) +- docs: document clearUploadedFiles (Merlijn Vos / #5204) +- @uppy/webcam: add missing types for `recordedVideo` (Antoine du Hamel / #5208) +- @uppy/core: check capabilities in clearUploadedFiles (Merlijn Vos / #5201) +- @uppy/core: PartialTree - change the `maxTotalFileSize` error (Evgenia Karunus / #5203) +- @uppy/transloadit: remove `updateNumberOfFilesInAssembly` (Merlijn Vos / #5202) +- @uppy/aws-s3: resolve all headers on response (Merlijn Vos / #5195) +- docs: Improve provider docs: OneDrive (Evgenia Karunus / #5196) + + ## 3.25.5 Released: 2024-05-23 diff --git a/README.md b/README.md index 242ddfe72c..9ee95c03dc 100644 --- a/README.md +++ b/README.md @@ -79,7 +79,7 @@ npm install @uppy/core @uppy/dashboard @uppy/tus ``` Add CSS -[uppy.min.css](https://releases.transloadit.com/uppy/v3.25.5/uppy.min.css), +[uppy.min.css](https://releases.transloadit.com/uppy/v3.26.0/uppy.min.css), either to your HTML page’s `
` or include in JS, if your bundler of choice supports it. @@ -94,7 +94,7 @@ object. ```html @@ -105,7 +105,7 @@ object. Uppy, Dashboard, Tus, - } from 'https://releases.transloadit.com/uppy/v3.25.5/uppy.min.mjs' + } from 'https://releases.transloadit.com/uppy/v3.26.0/uppy.min.mjs' const uppy = new Uppy() uppy.use(Dashboard, { target: '#files-drag-drop' }) @@ -240,7 +240,7 @@ If you’re using Uppy from CDN, those polyfills are already included in the legacy bundle, so no need to include anything additionally: ```html - + ``` ## FAQ @@ -353,30 +353,30 @@ Use Uppy in your project?