From 00e0a8870b045f2f6fdf9f5c7d8578a37bce2512 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sun, 5 Sep 2021 08:16:30 +0000 Subject: [PATCH] Version Packages --- .changeset/few-bags-worry.md | 5 ----- .changeset/gentle-phones-brush.md | 5 ----- .changeset/healthy-mangos-wait.md | 5 ----- .changeset/mean-trainers-join.md | 5 ----- .changeset/red-roses-divide.md | 5 ----- .changeset/strange-dolphins-walk.md | 5 ----- .changeset/tasty-months-trade.md | 5 ----- .changeset/thirty-spiders-attend.md | 5 ----- .changeset/weak-coats-peel.md | 5 ----- packages/preact-iso/CHANGELOG.md | 12 ++++++++++++ packages/preact-iso/package.json | 2 +- packages/wmr/CHANGELOG.md | 18 ++++++++++++++++++ packages/wmr/package.json | 2 +- 13 files changed, 32 insertions(+), 47 deletions(-) delete mode 100644 .changeset/few-bags-worry.md delete mode 100644 .changeset/gentle-phones-brush.md delete mode 100644 .changeset/healthy-mangos-wait.md delete mode 100644 .changeset/mean-trainers-join.md delete mode 100644 .changeset/red-roses-divide.md delete mode 100644 .changeset/strange-dolphins-walk.md delete mode 100644 .changeset/tasty-months-trade.md delete mode 100644 .changeset/thirty-spiders-attend.md delete mode 100644 .changeset/weak-coats-peel.md diff --git a/.changeset/few-bags-worry.md b/.changeset/few-bags-worry.md deleted file mode 100644 index 090f3dac4..000000000 --- a/.changeset/few-bags-worry.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'wmr': patch ---- - -Fix `config()` and `configResolved()` plugin hooks being skipped when the previous plugin didn't have those hooks diff --git a/.changeset/gentle-phones-brush.md b/.changeset/gentle-phones-brush.md deleted file mode 100644 index 7e62f719d..000000000 --- a/.changeset/gentle-phones-brush.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'wmr': minor ---- - -Add `--minify` option to the `build` command. That way one can disable minifcation for production builds by passing `--no-minify` or `--minify false` diff --git a/.changeset/healthy-mangos-wait.md b/.changeset/healthy-mangos-wait.md deleted file mode 100644 index 5317c2847..000000000 --- a/.changeset/healthy-mangos-wait.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'wmr': minor ---- - -Add built-in support for [Web Workers](https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API/Using_web_workers) based on browser APIs. Example on how to use Web Workers with WMR: https://wmr.dev/docs/web-workers diff --git a/.changeset/mean-trainers-join.md b/.changeset/mean-trainers-join.md deleted file mode 100644 index c89f81737..000000000 --- a/.changeset/mean-trainers-join.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'wmr': patch ---- - -Distinguish dev server from normal server ("serve" command) in cli output diff --git a/.changeset/red-roses-divide.md b/.changeset/red-roses-divide.md deleted file mode 100644 index cd2cc3122..000000000 --- a/.changeset/red-roses-divide.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'wmr': patch ---- - -Sort list of outputted files by size within a group diff --git a/.changeset/strange-dolphins-walk.md b/.changeset/strange-dolphins-walk.md deleted file mode 100644 index 102d1593e..000000000 --- a/.changeset/strange-dolphins-walk.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'preact-iso': patch ---- - -Fix `preact-iso` intercepting `cmd/ctrl+click` and other native browser behaviors. diff --git a/.changeset/tasty-months-trade.md b/.changeset/tasty-months-trade.md deleted file mode 100644 index ca806bc46..000000000 --- a/.changeset/tasty-months-trade.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'preact-iso': minor ---- - -Add support for partial route matching via `/foo/*` diff --git a/.changeset/thirty-spiders-attend.md b/.changeset/thirty-spiders-attend.md deleted file mode 100644 index 8fafd2cc4..000000000 --- a/.changeset/thirty-spiders-attend.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'preact-iso': minor ---- - -Add support for nested routes matching diff --git a/.changeset/weak-coats-peel.md b/.changeset/weak-coats-peel.md deleted file mode 100644 index a6cdaecec..000000000 --- a/.changeset/weak-coats-peel.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'wmr': patch ---- - -Fix missing props when there were comments between attributes in JSX diff --git a/packages/preact-iso/CHANGELOG.md b/packages/preact-iso/CHANGELOG.md index 01c7c4c0c..12cdf62a6 100644 --- a/packages/preact-iso/CHANGELOG.md +++ b/packages/preact-iso/CHANGELOG.md @@ -1,5 +1,17 @@ # preact-iso +## 2.2.0 + +### Minor Changes + +- [`9a814a9`](https://github.com/preactjs/wmr/commit/9a814a95e76883254c3e9861170259ddd6d9ac0c) [#832](https://github.com/preactjs/wmr/pull/832) Thanks [@marvinhagemeister](https://github.com/marvinhagemeister)! - Add support for partial route matching via `/foo/*` + +* [`439768e`](https://github.com/preactjs/wmr/commit/439768e6ef3e0a69fe872196f2b3f05bd3bbfcb6) [#835](https://github.com/preactjs/wmr/pull/835) Thanks [@marvinhagemeister](https://github.com/marvinhagemeister)! - Add support for nested routes matching + +### Patch Changes + +- [`21bbeb9`](https://github.com/preactjs/wmr/commit/21bbeb9a9a58e2c3c59f9db2cec1c651e5bbf5f8) [#831](https://github.com/preactjs/wmr/pull/831) Thanks [@marvinhagemeister](https://github.com/marvinhagemeister)! - Fix `preact-iso` intercepting `cmd/ctrl+click` and other native browser behaviors. + ## 2.1.0 ### Minor Changes diff --git a/packages/preact-iso/package.json b/packages/preact-iso/package.json index 894c2a986..2df029660 100644 --- a/packages/preact-iso/package.json +++ b/packages/preact-iso/package.json @@ -1,6 +1,6 @@ { "name": "preact-iso", - "version": "2.1.0", + "version": "2.2.0", "description": "Isomorphic utilities for Preact", "main": "./index.js", "module": "./index.js", diff --git a/packages/wmr/CHANGELOG.md b/packages/wmr/CHANGELOG.md index 67c672726..786f2891f 100644 --- a/packages/wmr/CHANGELOG.md +++ b/packages/wmr/CHANGELOG.md @@ -1,5 +1,23 @@ # wmr +## 3.7.0 + +### Minor Changes + +- [`585bcb2`](https://github.com/preactjs/wmr/commit/585bcb2dceb32da43a03c0345a142dbff400513f) [#842](https://github.com/preactjs/wmr/pull/842) Thanks [@marvinhagemeister](https://github.com/marvinhagemeister)! - Add `--minify` option to the `build` command. That way one can disable minifcation for production builds by passing `--no-minify` or `--minify false` + +* [`27a41df`](https://github.com/preactjs/wmr/commit/27a41df4d44f68ab3bddf8d920437488ce5744ad) [#827](https://github.com/preactjs/wmr/pull/827) Thanks [@marvinhagemeister](https://github.com/marvinhagemeister)! - Add built-in support for [Web Workers](https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API/Using_web_workers) based on browser APIs. Example on how to use Web Workers with WMR: https://wmr.dev/docs/web-workers + +### Patch Changes + +- [`71d02e0`](https://github.com/preactjs/wmr/commit/71d02e04ed5854dd646f477b974a3a6ff7bc0ce6) [#840](https://github.com/preactjs/wmr/pull/840) Thanks [@marvinhagemeister](https://github.com/marvinhagemeister)! - Fix `config()` and `configResolved()` plugin hooks being skipped when the previous plugin didn't have those hooks + +* [`cd17272`](https://github.com/preactjs/wmr/commit/cd172727f99f09f7db40cf10b204769b6ca0dfea) [#844](https://github.com/preactjs/wmr/pull/844) Thanks [@marvinhagemeister](https://github.com/marvinhagemeister)! - Distinguish dev server from normal server ("serve" command) in cli output + +- [`b072d94`](https://github.com/preactjs/wmr/commit/b072d9457bacc7932981311dca953db3cab8915a) [#843](https://github.com/preactjs/wmr/pull/843) Thanks [@marvinhagemeister](https://github.com/marvinhagemeister)! - Sort list of outputted files by size within a group + +* [`221c8fe`](https://github.com/preactjs/wmr/commit/221c8fe8b77813cb4622c7d7e9601e5c20f1a3d3) [#828](https://github.com/preactjs/wmr/pull/828) Thanks [@marvinhagemeister](https://github.com/marvinhagemeister)! - Fix missing props when there were comments between attributes in JSX + ## 3.6.1 ### Patch Changes diff --git a/packages/wmr/package.json b/packages/wmr/package.json index 163aa1f0d..bde544e06 100644 --- a/packages/wmr/package.json +++ b/packages/wmr/package.json @@ -1,6 +1,6 @@ { "name": "wmr", - "version": "3.6.1", + "version": "3.7.0", "bin": "wmr.cjs", "type": "module", "main": "index.js",