Skip to content

Commit

Permalink
chore(deps): update dependency asgiref to v3.6.0 (#54)
Browse files Browse the repository at this point in the history
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [asgiref](https://togithub.com/django/asgiref)
([changelog](https://togithub.com/django/asgiref/blob/master/CHANGELOG.txt))
| minor | `==3.5.2` -> `==3.6.0` |

---

### Release Notes

<details>
<summary>django/asgiref</summary>

###
[`v3.6.0`](https://togithub.com/django/asgiref/blob/HEAD/CHANGELOG.txt#&#8203;360-2022-12-20)

[Compare
Source](https://togithub.com/django/asgiref/compare/3.5.2...3.6.0)

- Two new functions are added to the `asgiref.sync` module:
`iscoroutinefunction()`
    and `markcoroutinefunction()`.

Python 3.12 deprecates `asyncio.iscoroutinefunction()` as an alias for
`inspect.iscoroutinefunction()`, whilst also removing the
`_is_coroutine` marker.
The latter is replaced with the `inspect.markcoroutinefunction`
decorator.

    The new `asgiref.sync` functions are compatibility shims for these
functions that can be used until Python 3.12 is the minimum supported
    version.

**Note** that these functions are considered **beta**, and as such,
whilst
not likely, are subject to change in a point release, until the final
release
of Python 3.12. They are included in `asgiref` now so that they can be
    adopted by Django 4.2, in preparation for support of Python 3.12.

- The `loop` argument to `asgiref.timeout.timeout` is deprecated. As per
other
`asyncio` based APIs, the running event loop is used by default. Note
that
`asyncio` provides timeout utilities from Python 3.11, and these should
be
    preferred where available.

-   Support for the `ASGI_THREADS` environment variable, used by
    `SyncToAsync`, is removed. In general, a running event-loop is not
available to `asgiref` at import time, and so the default thread pool
executor cannot be configured. Protocol servers, or applications, should
set
    the default executor as required when configuring the event loop at
    application startup.

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC43NC4wIiwidXBkYXRlZEluVmVyIjoiMzQuNzQuMCJ9-->

Co-authored-by: descope[bot] <descope[bot]@users.noreply.github.com>
  • Loading branch information
descope[bot] and descope[bot] committed Jan 3, 2023
1 parent 50aad61 commit cb06398
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions requirements.txt
@@ -1,6 +1,6 @@
asgiref==3.5.2 ; python_full_version >= "3.8.1" and python_version < "4.0" \
--hash=sha256:1d2880b792ae8757289136f1db2b7b99100ce959b2aa57fd69dab783d05afac4 \
--hash=sha256:4a29362a6acebe09bf1d6640db38c1dc3d9217c68e6f9f6204d72667fc19a424
asgiref==3.6.0; python_full_version >= "3.8.1" and python_version < "4.0" \
--hash=sha256:71e68008da809b957b7ee4b43dbccff33d1b23519fb8344e33f049897077afac \
--hash=sha256:9567dfe7bd8d3c8c892227827c41cce860b368104c3431da67a0c5a65a949506
backports-zoneinfo==0.2.1 ; python_full_version >= "3.8.1" and python_version < "3.9" \
--hash=sha256:17746bd546106fa389c51dbea67c8b7c8f0d14b5526a579ca6ccf5ed72c526cf \
--hash=sha256:1b13e654a55cd45672cb54ed12148cd33628f672548f373963b0bff67b217328 \
Expand Down

0 comments on commit cb06398

Please sign in to comment.