From d5576d4447a40d3d1a5f4be5fe6fb0afa099ccc2 Mon Sep 17 00:00:00 2001 From: rmorshea Date: Wed, 26 Jan 2022 22:38:29 -0800 Subject: [PATCH] release 0.35.2 --- VERSION | 2 +- docs/source/developing-idom/changelog.rst | 22 +++++++++++++++++++ src/client/package-lock.json | 8 +++---- src/client/package.json | 2 +- .../packages/idom-app-react/package.json | 2 +- .../packages/idom-client-react/package.json | 2 +- src/idom/__init__.py | 2 +- 7 files changed, 31 insertions(+), 9 deletions(-) diff --git a/VERSION b/VERSION index 731b95d7f..abc2aab9b 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.35.1 +0.35.2 diff --git a/docs/source/developing-idom/changelog.rst b/docs/source/developing-idom/changelog.rst index e03e1fe15..a9ced5c79 100644 --- a/docs/source/developing-idom/changelog.rst +++ b/docs/source/developing-idom/changelog.rst @@ -7,6 +7,28 @@ team are working on, or have feedback on how issues should be prioritized, feel :discussion-type:`open up a discussion `. +0.35.2 +------ + +This release includes several bug fixes. The most significant of which is the ability to +change the type of an element in the try (i.e. to and from being a component) without +getting an error. Originally the errors were introduced because it was though changing +element type would not be desireable. This was not the case though - swapping types +turns out to be quite common and useful. + +**Closed Issues** + +- Allow Children with the Same Key to Vary in Type - :issue:`613` +- Client Always Looks for Server at "/" - :issue:`611` +- Web modules get double file extensions with v0.35.x - :issue:`605` + +**Pull Requests** + +- allow elements with the same key to change type - :pull:`614` +- make connection to websocket relative path - :pull:`612` +- fix double file extension - :pull:`606` + + 0.35.1 ------ diff --git a/src/client/package-lock.json b/src/client/package-lock.json index 186febf01..337a50f91 100644 --- a/src/client/package-lock.json +++ b/src/client/package-lock.json @@ -1,11 +1,11 @@ { "name": "client", - "version": "0.35.1", + "version": "0.35.2", "lockfileVersion": 2, "requires": true, "packages": { "": { - "version": "0.35.1", + "version": "0.35.2", "license": "MIT", "workspaces": [ "./packages/*" @@ -2632,7 +2632,7 @@ "dev": true }, "packages/idom-app-react": { - "version": "0.35.1", + "version": "0.35.2", "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.1", + "version": "0.35.2", "license": "MIT", "dependencies": { "fast-json-patch": "^3.0.0-1", diff --git a/src/client/package.json b/src/client/package.json index 3d079461c..633ed3872 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.1", + "version": "0.35.2", "workspaces": [ "./packages/*" ] diff --git a/src/client/packages/idom-app-react/package.json b/src/client/packages/idom-app-react/package.json index df9e52821..bc879f431 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.1" + "version": "0.35.2" } diff --git a/src/client/packages/idom-client-react/package.json b/src/client/packages/idom-client-react/package.json index 5ea12dd23..d634598e8 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.1" + "version": "0.35.2" } diff --git a/src/idom/__init__.py b/src/idom/__init__.py index 5520b8d57..768e457b9 100644 --- a/src/idom/__init__.py +++ b/src/idom/__init__.py @@ -21,7 +21,7 @@ __author__ = "idom-team" -__version__ = "0.35.1" # DO NOT MODIFY +__version__ = "0.35.2" # DO NOT MODIFY __all__ = [ "component",