Skip to content

Commit 6d49613

Browse files
committed
0.34.0 release
1 parent 3d67e3b commit 6d49613

File tree

8 files changed

+41
-14
lines changed

8 files changed

+41
-14
lines changed

Diff for: VERSION

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

Diff for: docs/source/developing-idom/changelog.rst

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

44

5+
0.34.0
6+
------
7+
8+
This release contains a variety of minor fixes and improvements which came out of
9+
rewriting the documentation. The most significant of these changes is the remove of
10+
target element attributes from the top-level of event data dictionaries. For example,
11+
instead of being able to find the value of an input at ``event["value"]`` it will
12+
instead be found at ``event["target"]["value"]``. For a short period we will issue a
13+
:class:`DeprecationWarning` when target attributes are requested at the top-level of the
14+
event dictionary. As part of this change we also add ``event["currentTarget"]`` and
15+
``event["relatedTarget"]`` keys to the event dictionary as well as a
16+
``event[some_target]["boundingClientRect"]`` where ``some_target`` may be ``"target"``,
17+
``"currentTarget"`` or ``"relatedTarget"``.
18+
19+
**Closed Issues**
20+
21+
- Move target attributes to ``event['target']`` - :issue:`548`
22+
23+
**Pull Requests**
24+
25+
- Correctly Handle Target Event Data - :pull:`550`
26+
- Clean up WS console logging - :pull:`522`
27+
- automatically infer closure arguments - :pull:`520`
28+
- Documentation Rewrite - :pull:`519`
29+
- add option to replace existing when creating a module - :pull:`516`
30+
31+
532
0.33.3
633
------
734

Diff for: noxfile.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ def tag(session: Session) -> None:
303303
install_requirements_file(session, "make-release")
304304
session.run("pysemver", "check", version)
305305

306-
changelog_file = ROOT / "docs" / "source" / "changelog.rst"
306+
changelog_file = ROOT / "docs" / "source" / "developing-idom" / "changelog.rst"
307307
for line in changelog_file.read_text().splitlines():
308308
if line == version:
309309
break

Diff for: 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.

Diff for: src/client/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@
99
},
1010
"scripts": {
1111
"build": "snowpack build",
12+
"check-format": "npm --workspaces run check-format",
1213
"format": "npm --workspaces run format",
1314
"publish": "npm --workspaces publish",
14-
"test": "npm --workspaces test",
15-
"check-format": "npm --workspaces run check-format"
15+
"test": "npm --workspaces test"
1616
},
17-
"version": "0.33.3",
17+
"version": "0.34.0",
1818
"workspaces": [
1919
"./packages/*"
2020
]

Diff for: src/client/packages/idom-app-react/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
"url": "https://github.com/idom-team/idom"
1818
},
1919
"scripts": {
20-
"format": "prettier --write ./src",
2120
"check-format": "prettier --check ./src",
21+
"format": "prettier --write ./src",
2222
"test": "echo 'no tests'"
2323
},
24-
"version": "0.33.3"
24+
"version": "0.34.0"
2525
}

Diff for: src/client/packages/idom-client-react/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@
2626
"url": "https://github.com/idom-team/idom"
2727
},
2828
"scripts": {
29-
"format": "prettier --write ./src ./tests",
3029
"check-format": "prettier --check ./src ./tests",
30+
"format": "prettier --write ./src ./tests",
3131
"test": "uvu tests"
3232
},
3333
"type": "module",
34-
"version": "0.33.3"
34+
"version": "0.34.0"
3535
}

Diff for: src/idom/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222

2323
__author__ = "idom-team"
24-
__version__ = "0.33.3" # DO NOT MODIFY
24+
__version__ = "0.34.0" # DO NOT MODIFY
2525

2626
__all__ = [
2727
"component",

0 commit comments

Comments
 (0)