diff --git a/BUNDLE-README.md b/BUNDLE-README.md index 004e2ab48..f14ac0db1 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 0f8b80f88..22389018e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,22 @@ Please add your entries in this format: In the current stage we aim to release a new version at least every month. +## 3.27.1 + +Released: 2024-06-27 + +| Package | Version | Package | Version | +| ---------------- | ------- | ---------------- | ------- | +| @uppy/dashboard | 3.9.1 | uppy | 3.27.1 | +| @uppy/xhr-upload | 3.6.8 | | | + +- @uppy/xhr-upload: add `'PATCH'` as valid method (Quinn Daley / #5279) +- @uppy/dashboard: fix handling of `null` for `doneButtonHandler` (Antoine du Hamel / #5283) +- meta: Bump docker/build-push-action from 5.4.0 to 6.1.0 (dependabot[bot] / #5272) +- docs: rewrite Instagram dev setup section (Evgenia Karunus / #5274) +- meta: remove the Zoom section from `CONTRIBUTING.md` (Evgenia Karunus / #5273) + + ## 3.27.0 Released: 2024-06-18 diff --git a/README.md b/README.md index 1440243ff..52e4ae11d 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.27.0/uppy.min.css), +[uppy.min.css](https://releases.transloadit.com/uppy/v3.27.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.27.0/uppy.min.mjs' + } from 'https://releases.transloadit.com/uppy/v3.27.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 diff --git a/examples/aws-nodejs/public/index.html b/examples/aws-nodejs/public/index.html index 2d7c4b069..1fa0a6bc0 100644 --- a/examples/aws-nodejs/public/index.html +++ b/examples/aws-nodejs/public/index.html @@ -4,7 +4,7 @@