Skip to content

Django IDOM v0.0.5 #71

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Apr 5, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 13 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,27 @@ Types of changes are to be listed in this order

- Nothing (yet)

## [0.0.5] - 2022-04-04

### Changed

- Bumped the minimum IDOM version to 0.37.2

### Fixed

- ModuleNotFoundError: No module named `idom.core.proto` caused by IDOM 0.37.2

## [0.0.4] - 2022-03-05

### Changed

- Bumped the minimum IDOM client version to 0.37.1
- Bumped the minimum IDOM version to 0.37.1

## [0.0.3] - 2022-02-19

### Changed

- Bumped the minimum IDOM client version to 0.36.3
- Bumped the minimum IDOM version to 0.36.3

## [0.0.2] - 2022-01-30

Expand Down Expand Up @@ -71,6 +81,7 @@ Types of changes are to be listed in this order
- Support for IDOM within the Django

[unreleased]: https://github.com/idom-team/django-idom/compare/0.0.2...HEAD
[0.0.5]: https://github.com/idom-team/django-idom/compare/0.0.4...0.0.5
[0.0.4]: https://github.com/idom-team/django-idom/compare/0.0.3...0.0.4
[0.0.3]: https://github.com/idom-team/django-idom/compare/0.0.2...0.0.3
[0.0.2]: https://github.com/idom-team/django-idom/compare/0.0.1...0.0.2
Expand Down
2 changes: 1 addition & 1 deletion requirements/pkg-deps.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
channels <4.0.0
idom >=0.37.1, <0.38.0
idom >=0.37.2, <0.38.0
aiofile >=3.0, <4.0
2 changes: 1 addition & 1 deletion src/django_idom/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
from .websocket.paths import IDOM_WEBSOCKET_PATH


__version__ = "0.0.4"
__version__ = "0.0.5"
__all__ = ["IDOM_WEBSOCKET_PATH", "IdomWebsocket"]
2 changes: 1 addition & 1 deletion src/django_idom/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from django.conf import settings
from django.core.cache import DEFAULT_CACHE_ALIAS, caches
from idom.core.proto import ComponentConstructor
from idom.core.types import ComponentConstructor


IDOM_REGISTERED_COMPONENTS: Dict[str, ComponentConstructor] = {}
Expand Down
14 changes: 7 additions & 7 deletions src/js/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"rollup-plugin-replace": "^2.2.0"
},
"dependencies": {
"idom-client-react": "^0.37.1",
"idom-client-react": "^0.37.2",
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
Expand Down