Skip to content

Commit 9acb074

Browse files
authored
v3.2.1 (#156)
1 parent 1cd6d39 commit 9acb074

File tree

4 files changed

+12
-8
lines changed

4 files changed

+12
-8
lines changed

Diff for: CHANGELOG.md

+7-2
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,13 @@ Using the following categories, list your changes in this order:
3434

3535
## [Unreleased]
3636

37+
- Nothing yet!
38+
39+
## [3.2.1] - 2023-06-29
40+
3741
### Added
3842

39-
- Template tag exception details are now rendered on the webpage when `DEBUG` is enabled.
43+
- Template tag exception details are now rendered on the webpage when `settings.py:DEBUG` is enabled.
4044

4145
### Fixed
4246

@@ -295,7 +299,8 @@ Using the following categories, list your changes in this order:
295299

296300
- Support for IDOM within the Django
297301

298-
[unreleased]: https://github.com/reactive-python/reactpy-django/compare/3.2.0...HEAD
302+
[unreleased]: https://github.com/reactive-python/reactpy-django/compare/3.2.1...HEAD
303+
[3.2.1]: https://github.com/reactive-python/reactpy-django/compare/3.2.0...3.2.1
299304
[3.2.0]: https://github.com/reactive-python/reactpy-django/compare/3.1.0...3.2.0
300305
[3.1.0]: https://github.com/reactive-python/reactpy-django/compare/3.0.1...3.1.0
301306
[3.0.1]: https://github.com/reactive-python/reactpy-django/compare/3.0.0-reactpy...3.0.1

Diff for: src/reactpy_django/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from reactpy_django.websocket.paths import REACTPY_WEBSOCKET_PATH
33

44

5-
__version__ = "3.2.0"
5+
__version__ = "3.2.1"
66
__all__ = [
77
"REACTPY_WEBSOCKET_PATH",
88
"hooks",

Diff for: src/reactpy_django/websocket/consumer.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -130,9 +130,8 @@ async def _run_dispatch_loop(self):
130130
)()
131131
except models.ComponentSession.DoesNotExist:
132132
_logger.warning(
133-
f"Browser has attempted to access '{dotted_path}', "
134-
f"but the component has already expired beyond REACTPY_RECONNECT_MAX. "
135-
"If this was expected, this warning can be ignored."
133+
f"Component session for '{dotted_path}:{uuid}' not found. The "
134+
"session may have already expired beyond REACTPY_RECONNECT_MAX."
136135
)
137136
return
138137
component_params: ComponentParamData = pickle.loads(params_query.params)

Diff for: tests/test_app/tests/test_regex.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ def test_component_regex(self):
4141
self.assertNotRegex(r"", COMPONENT_REGEX)
4242
self.assertNotRegex(r'{% component " my.component " %}', COMPONENT_REGEX)
4343
self.assertNotRegex(
44-
r"""{% component "my.component COMPONENT_REGEX)
45-
self.assertNotRegex( " %}""",
44+
r"""{% component "my.component
45+
" %}""",
4646
COMPONENT_REGEX,
4747
)
4848
self.assertNotRegex(r'{{ component """ }}', COMPONENT_REGEX)

0 commit comments

Comments
 (0)