You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+7-2
Original file line number
Diff line number
Diff line change
@@ -34,6 +34,10 @@ Using the following categories, list your changes in this order:
34
34
35
35
## [Unreleased]
36
36
37
+
- Nothing (yet)!
38
+
39
+
## [3.6.0] - 2024-01-10
40
+
37
41
### Added
38
42
39
43
- Built-in Single Page Application (SPA) support!
@@ -213,7 +217,7 @@ Using the following categories, list your changes in this order:
213
217
214
218
### Changed
215
219
216
-
-`django-reactpy` database entries are no longer cleaned during Django application startup. Instead, it will occur on webpage loads if `REACTPY_RECONNECT_MAX` seconds has elapsed since the last cleaning.
220
+
-`reactpy-django` database entries are no longer cleaned during Django application startup. Instead, it will occur on webpage loads if `REACTPY_RECONNECT_MAX` seconds has elapsed since the last cleaning.
217
221
218
222
## [3.0.0-reactpy] - 2023-03-30
219
223
@@ -433,7 +437,8 @@ Using the following categories, list your changes in this order:
Some of our development dependencies require a C++ compiler, which is not installed by default on Windows. If you receive errors related to this during installation, follow the instructions in your console errors.
40
40
41
-
Additionally, be aware that ReactPyDjango's JavaScript bundle is built within the following scenarios:
41
+
Additionally, be aware that ReactPy-Django's JavaScript bundle is built within the following scenarios:
42
42
43
43
1. When `pip install` is run on the `reactpy-django` package.
44
44
2. Every time `python manage.py ...` or `nox ...` is run
Store or retrieve data (`#!python dict`) specific to the connection's `#!python User`. This data is stored in the `#!python REACTPY_DATABASE`.
279
279
@@ -316,7 +316,7 @@ Store or retrieve data (`#!python dict`) specific to the connection's `#!python
316
316
317
317
---
318
318
319
-
### `#!python use_connection()`
319
+
### Use Connection
320
320
321
321
Returns the active connection, which is either a Django [WebSocket](https://channels.readthedocs.io/en/stable/topics/consumers.html#asyncjsonwebsocketconsumer) or a [HTTP Request](https://docs.djangoproject.com/en/4.2/ref/request-response/#django.http.HttpRequest).
322
322
@@ -340,7 +340,7 @@ Returns the active connection, which is either a Django [WebSocket](https://chan
340
340
341
341
---
342
342
343
-
### `#!python use_scope()`
343
+
### Use Scope
344
344
345
345
Shortcut that returns the WebSocket or HTTP connection's [scope](https://channels.readthedocs.io/en/stable/topics/consumers.html#scope).
346
346
@@ -364,7 +364,7 @@ Shortcut that returns the WebSocket or HTTP connection's [scope](https://channel
364
364
365
365
---
366
366
367
-
### `#!python use_location()`
367
+
### Use Location
368
368
369
369
Shortcut that returns the browser's current `#!python Location`.
370
370
@@ -386,7 +386,7 @@ Shortcut that returns the browser's current `#!python Location`.
386
386
| --- | --- |
387
387
| `#!python Location` | An object containing the current URL's `#!python pathname` and `#!python search` query. |
388
388
389
-
### `#!python use_origin()`
389
+
### Use Origin
390
390
391
391
Shortcut that returns the WebSocket or HTTP connection's `#!python origin`.
392
392
@@ -412,7 +412,7 @@ You can expect this hook to provide strings such as `http://example.com`.
412
412
413
413
---
414
414
415
-
### `#!python use_user()`
415
+
### Use User
416
416
417
417
Shortcut that returns the WebSocket or HTTP connection's `#!python User`.
0 commit comments