diff --git a/BUNDLE-README.md b/BUNDLE-README.md index 7e07765b8..5db642a81 100644 --- a/BUNDLE-README.md +++ b/BUNDLE-README.md @@ -1,7 +1,7 @@ # Uppy 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. +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 a bundler like Webpack so that you can create a smaller custom build with only the diff --git a/CHANGELOG.md b/CHANGELOG.md index 647ca31c2..b2fc3e0b1 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.18.1 + +Released: 2023-10-23 + +| Package | Version | Package | Version | +| --------------- | ------- | --------------- | ------- | +| @uppy/companion | 4.10.1 | uppy | 3.18.1 | +| @uppy/core | 3.6.1 | | | + +- @uppy/companion: Bump jsonwebtoken from 8.5.1 to 9.0.0 in /packages/@uppy/companion (dependabot[bot] / #4751) +- meta: Bump react-devtools-core from 4.25.0 to 4.28.4 (dependabot[bot] / #4756) +- meta: Bump webpack from 5.74.0 to 5.88.2 (dependabot[bot] / #4740) +- meta: Bump @babel/traverse from 7.22.5 to 7.23.2 (dependabot[bot] / #4739) +- @uppy/core: fix `sideEffects` declaration (Antoine du Hamel / #4759) + + ## 3.18.0 Released: 2023-10-20 diff --git a/README.md b/README.md index f3b9806c6..f05054ab0 100644 --- a/README.md +++ b/README.md @@ -65,7 +65,7 @@ const uppy = new Uppy() npm install @uppy/core @uppy/dashboard @uppy/tus ``` -Add CSS [uppy.min.css](https://releases.transloadit.com/uppy/v3.18.0/uppy.min.css), either to your HTML page’s `` or include in JS, if your bundler of choice supports it. +Add CSS [uppy.min.css](https://releases.transloadit.com/uppy/v3.18.1/uppy.min.css), either to your HTML page’s `` or include in JS, if your bundler of choice supports it. Alternatively, you can also use a pre-built bundle from Transloadit’s CDN: Edgly. In that case `Uppy` will attach itself to the global `window.Uppy` object. @@ -73,12 +73,12 @@ Alternatively, you can also use a pre-built bundle from Transloadit’s CDN: Edg ```html - +
+ ``` ## FAQ @@ -500,4 +500,3 @@ We use Browserstack for manual testing Uppy @@ -22,7 +22,7 @@ DragDrop, ProgressBar, AwsS3, - } from 'https://releases.transloadit.com/uppy/v3.18.0/uppy.min.mjs' + } from 'https://releases.transloadit.com/uppy/v3.18.1/uppy.min.mjs' // Function for displaying uploaded files const onUploadSuccess = (elForUploadedFiles) => (file, response) => { diff --git a/examples/aws-nodejs/public/index.html b/examples/aws-nodejs/public/index.html index ff26e7e10..29f3914f0 100644 --- a/examples/aws-nodejs/public/index.html +++ b/examples/aws-nodejs/public/index.html @@ -4,7 +4,7 @@ Uppy – AWS upload example @@ -16,7 +16,7 @@ Uppy, Dashboard, AwsS3, - } from 'https://releases.transloadit.com/uppy/v3.18.0/uppy.min.mjs' + } from 'https://releases.transloadit.com/uppy/v3.18.1/uppy.min.mjs' /** * This generator transforms a deep object into URL-encodable pairs * to work with `URLSearchParams` on the client and `body-parser` on the server. diff --git a/examples/cdn-example/index.html b/examples/cdn-example/index.html index a12ab65ec..0103c1b85 100644 --- a/examples/cdn-example/index.html +++ b/examples/cdn-example/index.html @@ -5,7 +5,7 @@ @@ -19,7 +19,7 @@ Dashboard, Webcam, Tus, - } from 'https://releases.transloadit.com/uppy/v3.18.0/uppy.min.mjs' + } from 'https://releases.transloadit.com/uppy/v3.18.1/uppy.min.mjs' const uppy = new Uppy({ debug: true, autoProceed: false }) .use(Dashboard, { trigger: '#uppyModalOpener' }) @@ -34,7 +34,7 @@