diff --git a/BUNDLE-README.md b/BUNDLE-README.md index 3b12170f9f..47daf56495 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 c9eb560b25..b993f76824 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.25.3 + +Released: 2024-05-14 + +| Package | Version | Package | Version | +| ------------------ | ------- | ------------------ | ------- | +| @uppy/core | 3.11.3 | uppy | 3.25.3 | +| @uppy/image-editor | 2.4.6 | | | + +- @uppy/image-editor: fix tooltips (Avneet Singh Malhotra / #5156) +- meta: Remove redundant `plugins` prop from examples (Merlijn Vos / #5145) +- @uppy/image-editor: Remove `target` option from examples and document consistently (Merlijn Vos / #5146) +- @uppy/core: make getObjectOfFilesPerState more efficient (Merlijn Vos / #5155) + + ## 3.25.2 Released: 2024-05-07 diff --git a/README.md b/README.md index 6d7fdbcace..ab56b15c7c 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.2/uppy.min.css), +[uppy.min.css](https://releases.transloadit.com/uppy/v3.25.3/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.2/uppy.min.mjs' + } from 'https://releases.transloadit.com/uppy/v3.25.3/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 @@ -358,7 +358,7 @@ Use Uppy in your project?