diff --git a/.changeset/great-drinks-obey.md b/.changeset/great-drinks-obey.md deleted file mode 100644 index b2bac0dc4..000000000 --- a/.changeset/great-drinks-obey.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"preact-iso": patch ---- - -Avoid calling onLoadEnd on every render diff --git a/.changeset/nice-snakes-press.md b/.changeset/nice-snakes-press.md deleted file mode 100644 index 6d91568fa..000000000 --- a/.changeset/nice-snakes-press.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'wmr': patch ---- - -Don't flood terminal with harmless `The 'this' keyword is equivalent to 'undefined' at the top level of an ES module, and has been rewritten.` warnings. diff --git a/.changeset/rude-goats-hammer.md b/.changeset/rude-goats-hammer.md deleted file mode 100644 index e44470f99..000000000 --- a/.changeset/rude-goats-hammer.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'wmr': patch ---- - -Fix compilation error when using `static` class fields diff --git a/.changeset/rude-moons-grow.md b/.changeset/rude-moons-grow.md deleted file mode 100644 index 0aca0b411..000000000 --- a/.changeset/rude-moons-grow.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"preact-iso": patch ---- - -Fix `` accidentally un-rendering incoming routes that happen to resolve to the same component as the outgoing route. diff --git a/.changeset/short-pumas-eat.md b/.changeset/short-pumas-eat.md deleted file mode 100644 index 7cdc75202..000000000 --- a/.changeset/short-pumas-eat.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'wmr': patch ---- - -Resolve a wrongly replaced `process.env` variable when a binding with the name `process` is already in scope. This was encountered when bundling vscode's monaco-editor. diff --git a/.changeset/tall-beers-lay.md b/.changeset/tall-beers-lay.md deleted file mode 100644 index 5a41cd24d..000000000 --- a/.changeset/tall-beers-lay.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'preact-iso': minor ---- - -Add `onRouteChange` prop to the Router to observe synchronous route changes diff --git a/.changeset/young-carrots-relate.md b/.changeset/young-carrots-relate.md deleted file mode 100644 index 5b2c17db8..000000000 --- a/.changeset/young-carrots-relate.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'wmr': patch ---- - -Normalize the cacheKey in wmr-midddleware so it always corresponds to the WRITE_CACHE map where we store in native-path format keys diff --git a/packages/preact-iso/CHANGELOG.md b/packages/preact-iso/CHANGELOG.md index 12cdf62a6..fc5ea9216 100644 --- a/packages/preact-iso/CHANGELOG.md +++ b/packages/preact-iso/CHANGELOG.md @@ -1,5 +1,17 @@ # preact-iso +## 2.3.0 + +### Minor Changes + +- [`22a8a18`](https://github.com/preactjs/wmr/commit/22a8a186fa45b64bb1349ba6998b12498d05d503) [#864](https://github.com/preactjs/wmr/pull/864) Thanks [@JoviDeCroock](https://github.com/JoviDeCroock)! - Add `onRouteChange` prop to the Router to observe synchronous route changes + +### Patch Changes + +- [`5780fc9`](https://github.com/preactjs/wmr/commit/5780fc929fa2bab222e3b3d11be2250aefe19cfe) [#864](https://github.com/preactjs/wmr/pull/864) Thanks [@JoviDeCroock](https://github.com/JoviDeCroock)! - Avoid calling onLoadEnd on every render + +* [`69d291f`](https://github.com/preactjs/wmr/commit/69d291fbf2644b5c774672f4846f30e0e453af57) [#870](https://github.com/preactjs/wmr/pull/870) Thanks [@developit](https://github.com/developit)! - Fix `` accidentally un-rendering incoming routes that happen to resolve to the same component as the outgoing route. + ## 2.2.0 ### Minor Changes diff --git a/packages/preact-iso/package.json b/packages/preact-iso/package.json index 2df029660..d88cc21a1 100644 --- a/packages/preact-iso/package.json +++ b/packages/preact-iso/package.json @@ -1,6 +1,6 @@ { "name": "preact-iso", - "version": "2.2.0", + "version": "2.3.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 509b7f80f..a126098a9 100644 --- a/packages/wmr/CHANGELOG.md +++ b/packages/wmr/CHANGELOG.md @@ -1,5 +1,17 @@ # wmr +## 3.7.2 + +### Patch Changes + +- [`8771444`](https://github.com/preactjs/wmr/commit/8771444b21ae7261c6bad583cb9716bd3d7c9f3d) [#862](https://github.com/preactjs/wmr/pull/862) Thanks [@marvinhagemeister](https://github.com/marvinhagemeister)! - Don't flood terminal with harmless `The 'this' keyword is equivalent to 'undefined' at the top level of an ES module, and has been rewritten.` warnings. + +* [`9fbafb1`](https://github.com/preactjs/wmr/commit/9fbafb12620435b35e2fa5b20b7dc8b9b623b34d) [#858](https://github.com/preactjs/wmr/pull/858) Thanks [@marvinhagemeister](https://github.com/marvinhagemeister)! - Fix compilation error when using `static` class fields + +- [`6b36713`](https://github.com/preactjs/wmr/commit/6b36713ecf870b9572e24a6d1c1a3cefa65e591b) [#861](https://github.com/preactjs/wmr/pull/861) Thanks [@marvinhagemeister](https://github.com/marvinhagemeister)! - Resolve a wrongly replaced `process.env` variable when a binding with the name `process` is already in scope. This was encountered when bundling vscode's monaco-editor. + +* [`1cfa4a1`](https://github.com/preactjs/wmr/commit/1cfa4a1bc93a1553f84e4da553354dd980ea2f4d) [#872](https://github.com/preactjs/wmr/pull/872) Thanks [@JoviDeCroock](https://github.com/JoviDeCroock)! - Normalize the cacheKey in wmr-midddleware so it always corresponds to the WRITE_CACHE map where we store in native-path format keys + ## 3.7.1 ### Patch Changes diff --git a/packages/wmr/package.json b/packages/wmr/package.json index 8713f49d1..0a8e57cd8 100644 --- a/packages/wmr/package.json +++ b/packages/wmr/package.json @@ -1,6 +1,6 @@ { "name": "wmr", - "version": "3.7.1", + "version": "3.7.2", "bin": "wmr.cjs", "type": "module", "main": "index.js",