diff --git a/BUNDLE-README.md b/BUNDLE-README.md index f1bf1c793b..4fd4d79150 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 f1eaeced71..257c602065 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,21 @@ Please add your entries in this format: In the current stage we aim to release a new version at least every month. +## 3.26.1 + +Released: 2024-06-11 + +| Package | Version | Package | Version | +| -------------------- | ------- | -------------------- | ------- | +| @uppy/locales | 3.5.4 | @uppy/transloadit | 3.7.1 | +| @uppy/provider-views | 3.12.1 | uppy | 3.26.1 | + +- meta: Improve aws-node example readme (Artur Paikin / #4753) +- @uppy/locales: Added translation string (it_IT) (Samuel / #5237) +- @uppy/transloadit: fix transloadit:result event (Merlijn Vos / #5231) +- @uppy/provider-views: fix wrong font for files (Merlijn Vos / #5234) + + ## 3.26.0 Released: 2024-06-04 diff --git a/README.md b/README.md index 9ee95c03dc..4d31e7666e 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.26.0/uppy.min.css), +[uppy.min.css](https://releases.transloadit.com/uppy/v3.26.1/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.26.0/uppy.min.mjs' + } from 'https://releases.transloadit.com/uppy/v3.26.1/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 @@ -347,21 +347,21 @@ Use Uppy in your project?