Skip to content

Commit a0c3740

Browse files
committed
changelog for 0.33.3
1 parent 0fb0d7d commit a0c3740

File tree

9 files changed

+36
-10
lines changed

9 files changed

+36
-10
lines changed

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.33.2
1+
0.33.3

docs/source/changelog.rst

+23
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,29 @@ Changelog
22
=========
33

44

5+
0.33.3
6+
------
7+
8+
Contains a small number of bug fixes and improvements. The most signicifact change is
9+
the addition of a warning stating that `IDOM_FEATURE_INDEX_AS_DEFAULT_KEY=1` will become
10+
the default in a future release. Beyond that, a lesser improvement makes it possible to
11+
use the default export from a Javascript module when calling `module_from_template` by
12+
specifying `exports_default=True` as a parameter. A
13+
14+
**Closed Issues**
15+
16+
- Memory leak in SharedClientStateServer - :issue:`511`
17+
- Cannot use default export in react template - :issue:`502`
18+
- Add warning that element index will be used as the default key in a future release - :issue:`428`
19+
20+
**Pull Requests**
21+
22+
- warn that IDOM_FEATURE_INDEX_AS_DEFAULT_KEY=1 will be the default - :pull:`515`
23+
- clean up patch queues after exit - :pull:`514`
24+
- Remove Reconnecting WS alert - :pull:`513`
25+
- Fix 502 - :pull:`503`
26+
27+
528
0.33.2
629
------
730

docs/source/custom_js/package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

noxfile.py

+3
Original file line numberDiff line numberDiff line change
@@ -236,6 +236,9 @@ def update_version(session: Session) -> None:
236236

237237
session.run("python", "scripts/update_versions.py")
238238

239+
# trigger npm install to update package-lock.json
240+
session.install("-e", ".")
241+
239242

240243
@nox.session(reuse_venv=True)
241244
def latest_pull_requests(session: Session) -> None:

src/client/package-lock.json

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/client/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"publish": "npm --workspaces publish",
1818
"test": "npm --workspaces test"
1919
},
20-
"version": "0.33.2",
20+
"version": "0.33.3",
2121
"workspaces": [
2222
"./packages/*"
2323
]

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@
2020
"format": "prettier --write ./src",
2121
"test": "echo 'no tests'"
2222
},
23-
"version": "0.33.2"
23+
"version": "0.33.3"
2424
}

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@
2929
"test": "uvu tests"
3030
},
3131
"type": "module",
32-
"version": "0.33.2"
32+
"version": "0.33.3"
3333
}

src/idom/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212

1313
__author__ = "idom-team"
14-
__version__ = "0.33.2" # DO NOT MODIFY
14+
__version__ = "0.33.3" # DO NOT MODIFY
1515

1616
__all__ = [
1717
"component",

0 commit comments

Comments
 (0)