Skip to content

v3.0.0a2 #126

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 1 commit into from
Feb 3, 2023
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
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Using the following categories, list your changes in this order:

- Nothing (yet)

## [3.0.0a1] - 2023-02-02
## [3.0.0a2] - 2023-02-02

???+ note

Expand Down Expand Up @@ -246,8 +246,8 @@ Using the following categories, list your changes in this order:

- Support for IDOM within the Django

[unreleased]: https://github.com/idom-team/django-idom/compare/3.0.0a1...HEAD
[3.0.0a1]: https://github.com/idom-team/django-idom/compare/2.2.1...3.0.0a1
[unreleased]: https://github.com/idom-team/django-idom/compare/3.0.0a2...HEAD
[3.0.0a2]: https://github.com/idom-team/django-idom/compare/2.2.1...3.0.0a2
[2.2.1]: https://github.com/idom-team/django-idom/compare/2.2.0...2.2.1
[2.2.0]: https://github.com/idom-team/django-idom/compare/2.1.0...2.2.0
[2.1.0]: https://github.com/idom-team/django-idom/compare/2.0.1...2.1.0
Expand Down
4 changes: 2 additions & 2 deletions docs/src/features/components.md
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ Allows you to defer loading a CSS stylesheet until a component begins rendering.
| --- | --- |
| `Component` | An IDOM component. |

??? question "Should I put `django_css` at the top of my component?"
??? question "Should I put `django_css` at the top of my HTML?"

Yes, if the stylesheet contains styling for your component.

Expand Down Expand Up @@ -239,7 +239,7 @@ Allows you to defer loading JavaScript until a component begins rendering. This
| --- | --- |
| `Component` | An IDOM component. |

??? question "Should I put `django_js` at the bottom of my component?"
??? question "Should I put `django_js` at the bottom of my HTML?"

Yes, if your scripts are reliant on the contents of the component.

Expand Down
2 changes: 1 addition & 1 deletion docs/src/features/utils.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

This is the default postprocessor for the `use_query` hook.

This postprocessor is designed to prevent Django's `SynchronousOnlyException` by recursively fetching all fields within a `Model` or `QuerySet` to prevent [lazy execution](https://docs.djangoproject.com/en/dev/topics/db/queries/#querysets-are-lazy).
This postprocessor is designed to avoid Django's `SynchronousOnlyException` by recursively fetching all fields within a `Model` or `QuerySet` to prevent [lazy execution](https://docs.djangoproject.com/en/dev/topics/db/queries/#querysets-are-lazy).

=== "components.py"

Expand Down
2 changes: 1 addition & 1 deletion requirements/pkg-deps.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
channels >=4.0.0
idom >=1.0.0a2, <1.1.0
idom >=1.0.0a3, <1.1.0
aiofile >=3.0
dill >=0.3.5
typing_extensions
2 changes: 1 addition & 1 deletion src/django_idom/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from django_idom.websocket.paths import IDOM_WEBSOCKET_PATH


__version__ = "3.0.0a1"
__version__ = "3.0.0a2"
__all__ = [
"IDOM_WEBSOCKET_PATH",
"hooks",
Expand Down
2 changes: 1 addition & 1 deletion src/js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@
"@rollup/plugin-replace": "^5.0.2"
},
"dependencies": {
"idom-client-react": "^1.0.0-a2"
"idom-client-react": "^1.0.0-a3"
}
}