diff --git a/BUNDLE-README.md b/BUNDLE-README.md index 24ab6fd5b2..58eb425cc4 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 eab66e77da..23addee93b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,59 @@ Please add your entries in this format: In the current stage we aim to release a new version at least every month. +## 2.10.0 + +Released: 2022-05-14 + +| Package | Version | Package | Version | +| ---------------------- | ------- | ---------------------- | ------- | +| @uppy/audio | 0.3.1 | @uppy/provider-views | 2.1.0 | +| @uppy/aws-s3 | 2.1.0 | @uppy/react | 2.2.0 | +| @uppy/aws-s3-multipart | 2.3.0 | @uppy/react-native | 0.3.0 | +| @uppy/companion-client | 2.1.0 | @uppy/screen-capture | 2.1.0 | +| @uppy/core | 2.2.0 | @uppy/status-bar | 2.2.0 | +| @uppy/dashboard | 2.2.0 | @uppy/svelte | 1.0.8 | +| @uppy/drag-drop | 2.1.0 | @uppy/transloadit | 2.2.0 | +| @uppy/file-input | 2.1.0 | @uppy/tus | 2.3.0 | +| @uppy/google-drive | 2.1.0 | @uppy/url | 2.1.0 | +| @uppy/image-editor | 1.2.0 | @uppy/webcam | 2.2.0 | +| @uppy/instagram | 2.1.0 | @uppy/xhr-upload | 2.1.0 | +| @uppy/locales | 2.1.0 | @uppy/zoom | 1.1.0 | +| @uppy/onedrive | 2.1.0 | @uppy/robodog | 2.6.0 | +| @uppy/progress-bar | 2.1.0 | uppy | 2.10.0 | + +- @uppy/audio: fix types (Merlijn Vos / #3689) +- @uppy/aws-s3-multipart,@uppy/aws-s3,@uppy/core,@uppy/react,@uppy/transloadit,@uppy/tus,@uppy/xhr-upload: proposal: Cancel assemblies optional (Mikael Finstad / #3575) +- @uppy/aws-s3-multipart: export interface AwsS3MultipartOptions (Matteo Padovano / #3709) +- @uppy/companion-client: refactor to ESM (Antoine du Hamel / #3693) +- @uppy/companion: Only deploy on companion changes (kiloreux / #3677) +- @uppy/core: add definition for addFiles method (Matteo Padovano / #3556) +- @uppy/core: wrap plugins in div.uppy-Root and set dir attrubute in UIPlugin (Artur Paikin / #3692) +- @uppy/google-drive: refactor to ESM (Antoine du Hamel / #3683) +- @uppy/image-editor: refactor to ESM (Antoine du Hamel / #3685) +- @uppy/instagram: refactor to ESM (Antoine du Hamel / #3696) +- @uppy/locales: Add `save` translation to Spanish locale (Juan Carlos Alonso / #3678) +- @uppy/locales: refactor to ESM (Antoine du Hamel / #3707) +- @uppy/onedrive: refactor to ESM (Antoine du Hamel / #3694) +- @uppy/progress-bar: refactor to ESM (Antoine du Hamel / #3706) +- @uppy/provider-views: refactor to ESM (Antoine du Hamel / #3715) +- @uppy/react: Support React 18 in @uppy/react (Merlijn Vos / #3680) +- @uppy/screen-capture: refactor to ESM (Antoine du Hamel / #3698) +- @uppy/status-bar: refactor to ESM (Antoine du Hamel / #3697) +- @uppy/transloadit: add rate limiting for assembly creation and status polling (Antoine du Hamel / #3718) +- @uppy/tus: refactor to ESM (Antoine du Hamel / #3724) +- @uppy/url: refactor to ESM (Antoine du Hamel / #3713) +- @uppy/webcam: refactor to ESM (Antoine du Hamel / #3686) +- @uppy/xhr-upload: refactor to ESM (Antoine du Hamel / #3695) +- @uppy/zoom: refactor to ESM (Antoine du Hamel / #3699) +- meta: e2e: fix failing test (Antoine du Hamel / #3722) +- test: harden linter rule for JSX/ESM validation (Antoine du Hamel / #3681) +- test: harden linter rules for ESM/CJS validation (Antoine du Hamel / #3674) +- test: Increase retries to trigger longer retryDelay in tus (Artur Paikin / #3726) +- test: Remove `it.only` from e2e test (Merlijn Vos / #3690) +- tests: Make Cypress more stable & add e2e test for error events when upload fails (Merlijn Vos / #3662) + + ## 2.9.5 Released: 2022-04-27 diff --git a/README.md b/README.md index beac0f3168..c6cce7e319 100644 --- a/README.md +++ b/README.md @@ -69,7 +69,7 @@ $ npm install @uppy/core @uppy/dashboard @uppy/tus We recommend installing from npm and then using a module bundler such as [Webpack](https://webpack.js.org/), [Browserify](http://browserify.org/) or [Rollup.js](http://rollupjs.org/). -Add CSS [uppy.min.css](https://releases.transloadit.com/uppy/v2.9.5/uppy.min.css), either to your HTML page’s `
` or include in JS, if your bundler of choice supports it — transforms and plugins are available for Browserify and Webpack. +Add CSS [uppy.min.css](https://releases.transloadit.com/uppy/v2.10.0/uppy.min.css), either to your HTML page’s `` or include in JS, if your bundler of choice supports it — transforms and plugins are available for Browserify and Webpack. 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. @@ -77,10 +77,10 @@ Alternatively, you can also use a pre-built bundle from Transloadit’s CDN: Edg ```html - + - + @@ -186,7 +186,7 @@ If you’re using Uppy from CDN, those polyfills are already included in the leg bundle, so no need to include anything additionally: ```html - + ``` ## FAQ @@ -260,17 +260,17 @@ Use Uppy in your project? [Let us know](https://github.com/transloadit/uppy/issu :---: |:---: |:---: |:---: |:---: |:---: | [zcallan](https://github.com/zcallan) |[tim-kos](https://github.com/tim-kos) |[janko](https://github.com/janko) |[wilkoklak](https://github.com/wilkoklak) |[oliverpool](https://github.com/oliverpool) |[Botz](https://github.com/Botz) | -[](https://github.com/YukeshShr) |[](https://github.com/mcallistertyler) |[](https://github.com/mokutsu-coursera) |[](https://github.com/DJWassink) |[](https://github.com/taoqf) |[](https://github.com/tuoxiansp) | +[](https://github.com/YukeshShr) |[](https://github.com/mcallistertyler) |[](https://github.com/mokutsu-coursera) |[](https://github.com/DJWassink) |[](https://github.com/taoqf) |[](https://github.com/mrbatista) | :---: |:---: |:---: |:---: |:---: |:---: | -[YukeshShr](https://github.com/YukeshShr) |[mcallistertyler](https://github.com/mcallistertyler) |[mokutsu-coursera](https://github.com/mokutsu-coursera) |[DJWassink](https://github.com/DJWassink) |[taoqf](https://github.com/taoqf) |[tuoxiansp](https://github.com/tuoxiansp) | +[YukeshShr](https://github.com/YukeshShr) |[mcallistertyler](https://github.com/mcallistertyler) |[mokutsu-coursera](https://github.com/mokutsu-coursera) |[DJWassink](https://github.com/DJWassink) |[taoqf](https://github.com/taoqf) |[mrbatista](https://github.com/mrbatista) | -[](https://github.com/dominiceden) |[](https://github.com/elenalape) |[](https://github.com/mejiaej) |[](https://github.com/gavboulton) |[](https://github.com/Hawxy) |[](https://github.com/juliangruber) | +[](https://github.com/tuoxiansp) |[](https://github.com/dominiceden) |[](https://github.com/elenalape) |[](https://github.com/mejiaej) |[](https://github.com/gavboulton) |[](https://github.com/Hawxy) | :---: |:---: |:---: |:---: |:---: |:---: | -[dominiceden](https://github.com/dominiceden) |[elenalape](https://github.com/elenalape) |[mejiaej](https://github.com/mejiaej) |[gavboulton](https://github.com/gavboulton) |[Hawxy](https://github.com/Hawxy) |[juliangruber](https://github.com/juliangruber) | +[tuoxiansp](https://github.com/tuoxiansp) |[dominiceden](https://github.com/dominiceden) |[elenalape](https://github.com/elenalape) |[mejiaej](https://github.com/mejiaej) |[gavboulton](https://github.com/gavboulton) |[Hawxy](https://github.com/Hawxy) | -[](https://github.com/bertho-zero) |[](https://github.com/tranvansang) |[](https://github.com/ap--) |[](https://github.com/mrbatista) |[](https://github.com/MikeKovarik) |[](https://github.com/pauln) | +[](https://github.com/juliangruber) |[](https://github.com/bertho-zero) |[](https://github.com/tranvansang) |[](https://github.com/ap--) |[](https://github.com/MikeKovarik) |[](https://github.com/pauln) | :---: |:---: |:---: |:---: |:---: |:---: | -[bertho-zero](https://github.com/bertho-zero) |[tranvansang](https://github.com/tranvansang) |[ap--](https://github.com/ap--) |[mrbatista](https://github.com/mrbatista) |[MikeKovarik](https://github.com/MikeKovarik) |[pauln](https://github.com/pauln) | +[juliangruber](https://github.com/juliangruber) |[bertho-zero](https://github.com/bertho-zero) |[tranvansang](https://github.com/tranvansang) |[ap--](https://github.com/ap--) |[MikeKovarik](https://github.com/MikeKovarik) |[pauln](https://github.com/pauln) | [](https://github.com/toadkicker) |[](https://github.com/ofhope) |[](https://github.com/johnnyperkins) |[](https://github.com/dargmuesli) |[](https://github.com/manuelkiessling) |[](https://github.com/nndevstudio) | :---: |:---: |:---: |:---: |:---: |:---: | @@ -376,85 +376,85 @@ Use Uppy in your project? [Let us know](https://github.com/transloadit/uppy/issu :---: |:---: |:---: |:---: |:---: |:---: | [theJoeBiz](https://github.com/theJoeBiz) |[profsmallpine](https://github.com/profsmallpine) |[chromacoma](https://github.com/chromacoma) |[jonathanarbely](https://github.com/jonathanarbely) |[jderrough](https://github.com/jderrough) |[jorgeepc](https://github.com/jorgeepc) | -[](https://github.com/jszobody) |[](https://github.com/jmontoyaa) |[](https://github.com/tykarol) |[](https://github.com/firesharkstudios) |[](https://github.com/kevin-west-10x) |[](https://github.com/elkebab) | +[](https://github.com/jszobody) |[](https://github.com/jcalonso) |[](https://github.com/jmontoyaa) |[](https://github.com/tykarol) |[](https://github.com/firesharkstudios) |[](https://github.com/kevin-west-10x) | :---: |:---: |:---: |:---: |:---: |:---: | -[jszobody](https://github.com/jszobody) |[jmontoyaa](https://github.com/jmontoyaa) |[tykarol](https://github.com/tykarol) |[firesharkstudios](https://github.com/firesharkstudios) |[kevin-west-10x](https://github.com/kevin-west-10x) |[elkebab](https://github.com/elkebab) | +[jszobody](https://github.com/jszobody) |[jcalonso](https://github.com/jcalonso) |[jmontoyaa](https://github.com/jmontoyaa) |[tykarol](https://github.com/tykarol) |[firesharkstudios](https://github.com/firesharkstudios) |[kevin-west-10x](https://github.com/kevin-west-10x) | -[](https://github.com/kyleparisi) |[](https://github.com/leaanthony) |[](https://github.com/larowlan) |[](https://github.com/dviry) |[](https://github.com/galli-leo) |[](https://github.com/leods92) | +[](https://github.com/elkebab) |[](https://github.com/kyleparisi) |[](https://github.com/leaanthony) |[](https://github.com/larowlan) |[](https://github.com/dviry) |[](https://github.com/galli-leo) | :---: |:---: |:---: |:---: |:---: |:---: | -[kyleparisi](https://github.com/kyleparisi) |[leaanthony](https://github.com/leaanthony) |[larowlan](https://github.com/larowlan) |[dviry](https://github.com/dviry) |[galli-leo](https://github.com/galli-leo) |[leods92](https://github.com/leods92) | +[elkebab](https://github.com/elkebab) |[kyleparisi](https://github.com/kyleparisi) |[leaanthony](https://github.com/leaanthony) |[larowlan](https://github.com/larowlan) |[dviry](https://github.com/dviry) |[galli-leo](https://github.com/galli-leo) | -[](https://github.com/louim) |[](https://github.com/lucaperret) |[](https://github.com/lucax88x) |[](https://github.com/onhate) |[](https://github.com/mperrando) |[](https://github.com/marcosthejew) | +[](https://github.com/leods92) |[](https://github.com/louim) |[](https://github.com/lucaperret) |[](https://github.com/lucax88x) |[](https://github.com/onhate) |[](https://github.com/mperrando) | :---: |:---: |:---: |:---: |:---: |:---: | -[louim](https://github.com/louim) |[lucaperret](https://github.com/lucaperret) |[lucax88x](https://github.com/lucax88x) |[onhate](https://github.com/onhate) |[mperrando](https://github.com/mperrando) |[marcosthejew](https://github.com/marcosthejew) | +[leods92](https://github.com/leods92) |[louim](https://github.com/louim) |[lucaperret](https://github.com/lucaperret) |[lucax88x](https://github.com/lucax88x) |[onhate](https://github.com/onhate) |[mperrando](https://github.com/mperrando) | -[](https://github.com/marcusforsberg) |[](https://github.com/Acconut) |[](https://github.com/martin-brennan) |[](https://github.com/masaok) |[](https://github.com/mattfik) |[](https://github.com/matthewhartstonge) | +[](https://github.com/marcosthejew) |[](https://github.com/marcusforsberg) |[](https://github.com/Acconut) |[](https://github.com/martin-brennan) |[](https://github.com/masaok) |[](https://github.com/mattfik) | :---: |:---: |:---: |:---: |:---: |:---: | -[marcusforsberg](https://github.com/marcusforsberg) |[Acconut](https://github.com/Acconut) |[martin-brennan](https://github.com/martin-brennan) |[masaok](https://github.com/masaok) |[mattfik](https://github.com/mattfik) |[matthewhartstonge](https://github.com/matthewhartstonge) | +[marcosthejew](https://github.com/marcosthejew) |[marcusforsberg](https://github.com/marcusforsberg) |[Acconut](https://github.com/Acconut) |[martin-brennan](https://github.com/martin-brennan) |[masaok](https://github.com/masaok) |[mattfik](https://github.com/mattfik) | -[](https://github.com/mauricioribeiro) |[](https://github.com/hrsh) |[](https://github.com/mhulet) |[](https://github.com/mkopinsky) |[](https://github.com/achmiral) |[](https://github.com/boudra) | +[](https://github.com/matthewhartstonge) |[](https://github.com/mauricioribeiro) |[](https://github.com/hrsh) |[](https://github.com/mhulet) |[](https://github.com/mkopinsky) |[](https://github.com/achmiral) | :---: |:---: |:---: |:---: |:---: |:---: | -[mauricioribeiro](https://github.com/mauricioribeiro) |[hrsh](https://github.com/hrsh) |[mhulet](https://github.com/mhulet) |[mkopinsky](https://github.com/mkopinsky) |[achmiral](https://github.com/achmiral) |[boudra](https://github.com/boudra) | +[matthewhartstonge](https://github.com/matthewhartstonge) |[mauricioribeiro](https://github.com/mauricioribeiro) |[hrsh](https://github.com/hrsh) |[mhulet](https://github.com/mhulet) |[mkopinsky](https://github.com/mkopinsky) |[achmiral](https://github.com/achmiral) | -[](https://github.com/mnafees) |[](https://github.com/shahimclt) |[](https://github.com/navruzm) |[](https://github.com/marton-laszlo-attila) |[](https://github.com/pleasespammelater) |[](https://github.com/naveed-ahmad) | +[](https://github.com/boudra) |[](https://github.com/mnafees) |[](https://github.com/shahimclt) |[](https://github.com/navruzm) |[](https://github.com/marton-laszlo-attila) |[](https://github.com/pleasespammelater) | :---: |:---: |:---: |:---: |:---: |:---: | -[mnafees](https://github.com/mnafees) |[shahimclt](https://github.com/shahimclt) |[navruzm](https://github.com/navruzm) |[marton-laszlo-attila](https://github.com/marton-laszlo-attila) |[pleasespammelater](https://github.com/pleasespammelater) |[naveed-ahmad](https://github.com/naveed-ahmad) | +[boudra](https://github.com/boudra) |[mnafees](https://github.com/mnafees) |[shahimclt](https://github.com/shahimclt) |[navruzm](https://github.com/navruzm) |[marton-laszlo-attila](https://github.com/marton-laszlo-attila) |[pleasespammelater](https://github.com/pleasespammelater) | -[](https://github.com/nicojones) |[](https://github.com/coreprocess) |[](https://github.com/nil1511) |[](https://github.com/leftdevel) |[](https://github.com/cryptic022) |[](https://github.com/patricklindsay) | +[](https://github.com/naveed-ahmad) |[](https://github.com/nicojones) |[](https://github.com/coreprocess) |[](https://github.com/nil1511) |[](https://github.com/leftdevel) |[](https://github.com/cryptic022) | :---: |:---: |:---: |:---: |:---: |:---: | -[nicojones](https://github.com/nicojones) |[coreprocess](https://github.com/coreprocess) |[nil1511](https://github.com/nil1511) |[leftdevel](https://github.com/leftdevel) |[cryptic022](https://github.com/cryptic022) |[patricklindsay](https://github.com/patricklindsay) | +[naveed-ahmad](https://github.com/naveed-ahmad) |[nicojones](https://github.com/nicojones) |[coreprocess](https://github.com/coreprocess) |[nil1511](https://github.com/nil1511) |[leftdevel](https://github.com/leftdevel) |[cryptic022](https://github.com/cryptic022) | -[](https://github.com/pedrofs) |[](https://github.com/pmusaraj) |[](https://github.com/phillipalexander) |[](https://github.com/ppadmavilasom) |[](https://github.com/Pzoco) |[](https://github.com/eman8519) | +[](https://github.com/patricklindsay) |[](https://github.com/pedrofs) |[](https://github.com/pmusaraj) |[](https://github.com/phillipalexander) |[](https://github.com/ppadmavilasom) |[](https://github.com/Pzoco) | :---: |:---: |:---: |:---: |:---: |:---: | -[pedrofs](https://github.com/pedrofs) |[pmusaraj](https://github.com/pmusaraj) |[phillipalexander](https://github.com/phillipalexander) |[ppadmavilasom](https://github.com/ppadmavilasom) |[Pzoco](https://github.com/Pzoco) |[eman8519](https://github.com/eman8519) | +[patricklindsay](https://github.com/patricklindsay) |[pedrofs](https://github.com/pedrofs) |[pmusaraj](https://github.com/pmusaraj) |[phillipalexander](https://github.com/phillipalexander) |[ppadmavilasom](https://github.com/ppadmavilasom) |[Pzoco](https://github.com/Pzoco) | -[](https://github.com/luarmr) |[](https://github.com/refo) |[](https://github.com/SxDx) |[](https://github.com/robwilson1) |[](https://github.com/romain-preston) |[](https://github.com/scherroman) | +[](https://github.com/eman8519) |[](https://github.com/luarmr) |[](https://github.com/refo) |[](https://github.com/SxDx) |[](https://github.com/robwilson1) |[](https://github.com/romain-preston) | :---: |:---: |:---: |:---: |:---: |:---: | -[luarmr](https://github.com/luarmr) |[refo](https://github.com/refo) |[SxDx](https://github.com/SxDx) |[robwilson1](https://github.com/robwilson1) |[romain-preston](https://github.com/romain-preston) |[scherroman](https://github.com/scherroman) | +[eman8519](https://github.com/eman8519) |[luarmr](https://github.com/luarmr) |[refo](https://github.com/refo) |[SxDx](https://github.com/SxDx) |[robwilson1](https://github.com/robwilson1) |[romain-preston](https://github.com/romain-preston) | -[](https://github.com/rossng) |[](https://github.com/rart) |[](https://github.com/fortunto2) |[](https://github.com/samuelcolburn) |[](https://github.com/sebasegovia01) |[](https://github.com/sergei-zelinsky) | +[](https://github.com/scherroman) |[](https://github.com/rossng) |[](https://github.com/rart) |[](https://github.com/fortunto2) |[](https://github.com/samuelcolburn) |[](https://github.com/sebasegovia01) | :---: |:---: |:---: |:---: |:---: |:---: | -[rossng](https://github.com/rossng) |[rart](https://github.com/rart) |[fortunto2](https://github.com/fortunto2) |[samuelcolburn](https://github.com/samuelcolburn) |[sebasegovia01](https://github.com/sebasegovia01) |[sergei-zelinsky](https://github.com/sergei-zelinsky) | +[scherroman](https://github.com/scherroman) |[rossng](https://github.com/rossng) |[rart](https://github.com/rart) |[fortunto2](https://github.com/fortunto2) |[samuelcolburn](https://github.com/samuelcolburn) |[sebasegovia01](https://github.com/sebasegovia01) | -[](https://github.com/szh) |[](https://github.com/SpazzMarticus) |[](https://github.com/waptik) |[](https://github.com/amaitu) |[](https://github.com/steverob) |[](https://github.com/taj) | +[](https://github.com/sergei-zelinsky) |[](https://github.com/szh) |[](https://github.com/SpazzMarticus) |[](https://github.com/waptik) |[](https://github.com/amaitu) |[](https://github.com/steverob) | :---: |:---: |:---: |:---: |:---: |:---: | -[szh](https://github.com/szh) |[SpazzMarticus](https://github.com/SpazzMarticus) |[waptik](https://github.com/waptik) |[amaitu](https://github.com/amaitu) |[steverob](https://github.com/steverob) |[taj](https://github.com/taj) | +[sergei-zelinsky](https://github.com/sergei-zelinsky) |[szh](https://github.com/szh) |[SpazzMarticus](https://github.com/SpazzMarticus) |[waptik](https://github.com/waptik) |[amaitu](https://github.com/amaitu) |[steverob](https://github.com/steverob) | -[](https://github.com/Tashows) |[](https://github.com/twarlop) |[](https://github.com/tmaier) |[](https://github.com/WIStudent) |[](https://github.com/tomsaleeba) |[](https://github.com/tvaliasek) | +[](https://github.com/taj) |[](https://github.com/Tashows) |[](https://github.com/twarlop) |[](https://github.com/tmaier) |[](https://github.com/WIStudent) |[](https://github.com/tomsaleeba) | :---: |:---: |:---: |:---: |:---: |:---: | -[Tashows](https://github.com/Tashows) |[twarlop](https://github.com/twarlop) |[tmaier](https://github.com/tmaier) |[WIStudent](https://github.com/WIStudent) |[tomsaleeba](https://github.com/tomsaleeba) |[tvaliasek](https://github.com/tvaliasek) | +[taj](https://github.com/taj) |[Tashows](https://github.com/Tashows) |[twarlop](https://github.com/twarlop) |[tmaier](https://github.com/tmaier) |[WIStudent](https://github.com/WIStudent) |[tomsaleeba](https://github.com/tomsaleeba) | -[](https://github.com/vially) |[](https://github.com/valentinoli) |[](https://github.com/nagyv) |[](https://github.com/dwnste) |[](https://github.com/willycamargo) |[](https://github.com/xhocquet) | +[](https://github.com/tvaliasek) |[](https://github.com/vially) |[](https://github.com/valentinoli) |[](https://github.com/nagyv) |[](https://github.com/dwnste) |[](https://github.com/willycamargo) | :---: |:---: |:---: |:---: |:---: |:---: | -[vially](https://github.com/vially) |[valentinoli](https://github.com/valentinoli) |[nagyv](https://github.com/nagyv) |[dwnste](https://github.com/dwnste) |[willycamargo](https://github.com/willycamargo) |[xhocquet](https://github.com/xhocquet) | +[tvaliasek](https://github.com/tvaliasek) |[vially](https://github.com/vially) |[valentinoli](https://github.com/valentinoli) |[nagyv](https://github.com/nagyv) |[dwnste](https://github.com/dwnste) |[willycamargo](https://github.com/willycamargo) | -[](https://github.com/YehudaKremer) |[](https://github.com/zachconner) |[](https://github.com/zacharylawson) |[](https://github.com/zackbloom) |[](https://github.com/sartoshi-foot-dao) |[](https://github.com/agreene-coursera) | +[](https://github.com/xhocquet) |[](https://github.com/YehudaKremer) |[](https://github.com/zachconner) |[](https://github.com/zacharylawson) |[](https://github.com/zackbloom) |[](https://github.com/sartoshi-foot-dao) | :---: |:---: |:---: |:---: |:---: |:---: | -[YehudaKremer](https://github.com/YehudaKremer) |[zachconner](https://github.com/zachconner) |[zacharylawson](https://github.com/zacharylawson) |[zackbloom](https://github.com/zackbloom) |[sartoshi-foot-dao](https://github.com/sartoshi-foot-dao) |[agreene-coursera](https://github.com/agreene-coursera) | +[xhocquet](https://github.com/xhocquet) |[YehudaKremer](https://github.com/YehudaKremer) |[zachconner](https://github.com/zachconner) |[zacharylawson](https://github.com/zacharylawson) |[zackbloom](https://github.com/zackbloom) |[sartoshi-foot-dao](https://github.com/sartoshi-foot-dao) | -[](https://github.com/alfatv) |[](https://github.com/arggh) |[](https://github.com/avalla) |[](https://github.com/bdirito) |[](https://github.com/c0b41) |[](https://github.com/canvasbh) | +[](https://github.com/agreene-coursera) |[](https://github.com/alfatv) |[](https://github.com/arggh) |[](https://github.com/avalla) |[](https://github.com/bdirito) |[](https://github.com/c0b41) | :---: |:---: |:---: |:---: |:---: |:---: | -[alfatv](https://github.com/alfatv) |[arggh](https://github.com/arggh) |[avalla](https://github.com/avalla) |[bdirito](https://github.com/bdirito) |[c0b41](https://github.com/c0b41) |[canvasbh](https://github.com/canvasbh) | +[agreene-coursera](https://github.com/agreene-coursera) |[alfatv](https://github.com/alfatv) |[arggh](https://github.com/arggh) |[avalla](https://github.com/avalla) |[bdirito](https://github.com/bdirito) |[c0b41](https://github.com/c0b41) | -[](https://github.com/christianwengert) |[](https://github.com/craigcbrunner) |[](https://github.com/darthf1) |[](https://github.com/dkisic) |[](https://github.com/fingul) |[](https://github.com/franckl) | +[](https://github.com/canvasbh) |[](https://github.com/christianwengert) |[](https://github.com/craigcbrunner) |[](https://github.com/darthf1) |[](https://github.com/dkisic) |[](https://github.com/fingul) | :---: |:---: |:---: |:---: |:---: |:---: | -[christianwengert](https://github.com/christianwengert) |[craigcbrunner](https://github.com/craigcbrunner) |[darthf1](https://github.com/darthf1) |[dkisic](https://github.com/dkisic) |[fingul](https://github.com/fingul) |[franckl](https://github.com/franckl) | +[canvasbh](https://github.com/canvasbh) |[christianwengert](https://github.com/christianwengert) |[craigcbrunner](https://github.com/craigcbrunner) |[darthf1](https://github.com/darthf1) |[dkisic](https://github.com/dkisic) |[fingul](https://github.com/fingul) | -[](https://github.com/gaelicwinter) |[](https://github.com/green-mike) |[](https://github.com/heocoi) |[](https://github.com/hxgf) |[](https://github.com/johnmanjiro13) |[](https://github.com/kode-ninja) | +[](https://github.com/franckl) |[](https://github.com/gaelicwinter) |[](https://github.com/green-mike) |[](https://github.com/heocoi) |[](https://github.com/hxgf) |[](https://github.com/johnmanjiro13) | :---: |:---: |:---: |:---: |:---: |:---: | -[gaelicwinter](https://github.com/gaelicwinter) |[green-mike](https://github.com/green-mike) |[heocoi](https://github.com/heocoi) |[hxgf](https://github.com/hxgf) |[johnmanjiro13](https://github.com/johnmanjiro13) |[kode-ninja](https://github.com/kode-ninja) | +[franckl](https://github.com/franckl) |[gaelicwinter](https://github.com/gaelicwinter) |[green-mike](https://github.com/green-mike) |[heocoi](https://github.com/heocoi) |[hxgf](https://github.com/hxgf) |[johnmanjiro13](https://github.com/johnmanjiro13) | -[](https://github.com/jx-zyf) |[](https://github.com/magumbo) |[](https://github.com/ninesalt) |[](https://github.com/phil714) |[](https://github.com/luntta) |[](https://github.com/rhymes) | +[](https://github.com/kode-ninja) |[](https://github.com/jx-zyf) |[](https://github.com/magumbo) |[](https://github.com/ninesalt) |[](https://github.com/phil714) |[](https://github.com/luntta) | :---: |:---: |:---: |:---: |:---: |:---: | -[jx-zyf](https://github.com/jx-zyf) |[magumbo](https://github.com/magumbo) |[ninesalt](https://github.com/ninesalt) |[phil714](https://github.com/phil714) |[luntta](https://github.com/luntta) |[rhymes](https://github.com/rhymes) | +[kode-ninja](https://github.com/kode-ninja) |[jx-zyf](https://github.com/jx-zyf) |[magumbo](https://github.com/magumbo) |[ninesalt](https://github.com/ninesalt) |[phil714](https://github.com/phil714) |[luntta](https://github.com/luntta) | -[](https://github.com/rlebosse) |[](https://github.com/rtaieb) |[](https://github.com/slawexxx44) |[](https://github.com/thanhthot) |[](https://github.com/tinny77) |[](https://github.com/tusharjkhunt) | +[](https://github.com/rhymes) |[](https://github.com/rlebosse) |[](https://github.com/rtaieb) |[](https://github.com/slawexxx44) |[](https://github.com/thanhthot) |[](https://github.com/tinny77) | :---: |:---: |:---: |:---: |:---: |:---: | -[rlebosse](https://github.com/rlebosse) |[rtaieb](https://github.com/rtaieb) |[slawexxx44](https://github.com/slawexxx44) |[thanhthot](https://github.com/thanhthot) |[tinny77](https://github.com/tinny77) |[tusharjkhunt](https://github.com/tusharjkhunt) | +[rhymes](https://github.com/rhymes) |[rlebosse](https://github.com/rlebosse) |[rtaieb](https://github.com/rtaieb) |[slawexxx44](https://github.com/slawexxx44) |[thanhthot](https://github.com/thanhthot) |[tinny77](https://github.com/tinny77) | -[](https://github.com/vedran555) |[](https://github.com/yoann-hellopret) |[](https://github.com/olitomas) |[](https://github.com/JimmyLv) | -:---: |:---: |:---: |:---: | -[vedran555](https://github.com/vedran555) |[yoann-hellopret](https://github.com/yoann-hellopret) |[olitomas](https://github.com/olitomas) |[JimmyLv](https://github.com/JimmyLv) | +[](https://github.com/tusharjkhunt) |[](https://github.com/vedran555) |[](https://github.com/yoann-hellopret) |[](https://github.com/olitomas) |[](https://github.com/JimmyLv) | +:---: |:---: |:---: |:---: |:---: | +[tusharjkhunt](https://github.com/tusharjkhunt) |[vedran555](https://github.com/vedran555) |[yoann-hellopret](https://github.com/yoann-hellopret) |[olitomas](https://github.com/olitomas) |[JimmyLv](https://github.com/JimmyLv) | diff --git a/examples/cdn-example/index.html b/examples/cdn-example/index.html index 475f667fe4..876d09e2bf 100644 --- a/examples/cdn-example/index.html +++ b/examples/cdn-example/index.html @@ -4,11 +4,11 @@