From 8a24c0487d98710fae79c870934567cc13494ebb Mon Sep 17 00:00:00 2001 From: rmorshea Date: Thu, 27 Jan 2022 12:45:01 -0800 Subject: [PATCH] release 0.35.4 --- VERSION | 2 +- docs/source/developing-idom/changelog.rst | 15 +++++++++++++++ src/client/package-lock.json | 8 ++++---- src/client/package.json | 2 +- src/client/packages/idom-app-react/package.json | 2 +- .../packages/idom-client-react/package.json | 2 +- src/idom/__init__.py | 2 +- 7 files changed, 24 insertions(+), 9 deletions(-) diff --git a/VERSION b/VERSION index 230be8682..f00ab674d 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.35.3 +0.35.4 diff --git a/docs/source/developing-idom/changelog.rst b/docs/source/developing-idom/changelog.rst index 4e3db5152..55cf4069e 100644 --- a/docs/source/developing-idom/changelog.rst +++ b/docs/source/developing-idom/changelog.rst @@ -7,6 +7,21 @@ team are working on, or have feedback on how issues should be prioritized, feel :discussion-type:`open up a discussion `. +0.35.4 +------ + +Keys for elements at the root of a component were not being tracked. Thus key changes +for elements at the root did not trigger unmounts. + +**Closed Issues** + +- Change Key of Parent Element Does Not Unmount Children - :issue:`622` + +**Pull Requests** + +- fix issue with key-based identity - :pull:`623` + + 0.35.3 ------ diff --git a/src/client/package-lock.json b/src/client/package-lock.json index c3b1e248c..2d5745866 100644 --- a/src/client/package-lock.json +++ b/src/client/package-lock.json @@ -1,11 +1,11 @@ { "name": "client", - "version": "0.35.3", + "version": "0.35.4", "lockfileVersion": 2, "requires": true, "packages": { "": { - "version": "0.35.3", + "version": "0.35.4", "license": "MIT", "workspaces": [ "./packages/*" @@ -2632,7 +2632,7 @@ "dev": true }, "packages/idom-app-react": { - "version": "0.35.3", + "version": "0.35.4", "license": "MIT", "dependencies": { "idom-client-react": "file:packages/idom-client-react", @@ -2649,7 +2649,7 @@ }, "packages/idom-app-react/packages/idom-client-react": {}, "packages/idom-client-react": { - "version": "0.35.3", + "version": "0.35.4", "license": "MIT", "dependencies": { "fast-json-patch": "^3.0.0-1", diff --git a/src/client/package.json b/src/client/package.json index 702d7b6d0..4b8f2f3f2 100644 --- a/src/client/package.json +++ b/src/client/package.json @@ -14,7 +14,7 @@ "publish": "npm --workspaces publish", "test": "npm --workspaces test" }, - "version": "0.35.3", + "version": "0.35.4", "workspaces": [ "./packages/*" ] diff --git a/src/client/packages/idom-app-react/package.json b/src/client/packages/idom-app-react/package.json index 2f2973b7a..6d39db49e 100644 --- a/src/client/packages/idom-app-react/package.json +++ b/src/client/packages/idom-app-react/package.json @@ -21,5 +21,5 @@ "format": "prettier --write ./src", "test": "echo 'no tests'" }, - "version": "0.35.3" + "version": "0.35.4" } diff --git a/src/client/packages/idom-client-react/package.json b/src/client/packages/idom-client-react/package.json index 1b9ea45cd..98e828f86 100644 --- a/src/client/packages/idom-client-react/package.json +++ b/src/client/packages/idom-client-react/package.json @@ -31,5 +31,5 @@ "test": "uvu tests" }, "type": "module", - "version": "0.35.3" + "version": "0.35.4" } diff --git a/src/idom/__init__.py b/src/idom/__init__.py index 8a77f6cb7..cef86fd41 100644 --- a/src/idom/__init__.py +++ b/src/idom/__init__.py @@ -21,7 +21,7 @@ __author__ = "idom-team" -__version__ = "0.35.3" # DO NOT MODIFY +__version__ = "0.35.4" # DO NOT MODIFY __all__ = [ "component",