Skip to content

Commit 8a24c04

Browse files
committed
release 0.35.4
1 parent cf831fe commit 8a24c04

File tree

7 files changed

+24
-9
lines changed

7 files changed

+24
-9
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.35.3
1+
0.35.4

docs/source/developing-idom/changelog.rst

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,21 @@ team are working on, or have feedback on how issues should be prioritized, feel
77
:discussion-type:`open up a discussion <question>`.
88

99

10+
0.35.4
11+
------
12+
13+
Keys for elements at the root of a component were not being tracked. Thus key changes
14+
for elements at the root did not trigger unmounts.
15+
16+
**Closed Issues**
17+
18+
- Change Key of Parent Element Does Not Unmount Children - :issue:`622`
19+
20+
**Pull Requests**
21+
22+
- fix issue with key-based identity - :pull:`623`
23+
24+
1025
0.35.3
1126
------
1227

src/client/package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"publish": "npm --workspaces publish",
1515
"test": "npm --workspaces test"
1616
},
17-
"version": "0.35.3",
17+
"version": "0.35.4",
1818
"workspaces": [
1919
"./packages/*"
2020
]

src/client/packages/idom-app-react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@
2121
"format": "prettier --write ./src",
2222
"test": "echo 'no tests'"
2323
},
24-
"version": "0.35.3"
24+
"version": "0.35.4"
2525
}

src/client/packages/idom-client-react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@
3131
"test": "uvu tests"
3232
},
3333
"type": "module",
34-
"version": "0.35.3"
34+
"version": "0.35.4"
3535
}

src/idom/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222

2323
__author__ = "idom-team"
24-
__version__ = "0.35.3" # DO NOT MODIFY
24+
__version__ = "0.35.4" # DO NOT MODIFY
2525

2626
__all__ = [
2727
"component",

0 commit comments

Comments
 (0)