Skip to main content

Fast implementation of asyncio event loop on top of libuv

Project description

https://img.shields.io/github/actions/workflow/status/MagicStack/uvloop/tests.yml?branch=master https://img.shields.io/pypi/v/uvloop.svg PyPI - Downloads

uvloop is a fast, drop-in replacement of the built-in asyncio event loop. uvloop is implemented in Cython and uses libuv under the hood.

The project documentation can be found here. Please also check out the wiki.

Performance

uvloop makes asyncio 2-4x faster.

https://raw.githubusercontent.com/MagicStack/uvloop/master/performance.png

The above chart shows the performance of an echo server with different message sizes. The sockets benchmark uses loop.sock_recv() and loop.sock_sendall() methods; the streams benchmark uses asyncio high-level streams, created by the asyncio.start_server() function; and the protocol benchmark uses loop.create_server() with a simple echo protocol. Read more about uvloop in a blog post about it.

Installation

uvloop requires Python 3.8 or greater and is available on PyPI. Use pip to install it:

$ pip install uvloop

Note that it is highly recommended to upgrade pip before installing uvloop with:

$ pip install -U pip

Using uvloop

As of uvloop 0.18, the preferred way of using it is via the uvloop.run() helper function:

import uvloop

async def main():
    # Main entry-point.
    ...

uvloop.run(main())

uvloop.run() works by simply configuring asyncio.run() to use uvloop, passing all of the arguments to it, such as debug, e.g. uvloop.run(main(), debug=True).

With Python 3.11 and earlier the following alternative snippet can be used:

import asyncio
import sys

import uvloop

async def main():
    # Main entry-point.
    ...

if sys.version_info >= (3, 11):
    with asyncio.Runner(loop_factory=uvloop.new_event_loop) as runner:
        runner.run(main())
else:
    uvloop.install()
    asyncio.run(main())

Building From Source

To build uvloop, you’ll need Python 3.8 or greater:

  1. Clone the repository:

    $ git clone --recursive git@github.com:MagicStack/uvloop.git
    $ cd uvloop
  2. Create a virtual environment and activate it:

    $ python3 -m venv uvloop-dev
    $ source uvloop-dev/bin/activate
  3. Install development dependencies:

    $ pip install -e .[dev]
  4. Build and run tests:

    $ make
    $ make test

License

uvloop is dual-licensed under MIT and Apache 2.0 licenses.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

uvloop_canary-0.23.0a1.tar.gz (2.5 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

uvloop_canary-0.23.0a1-cp314-cp314t-musllinux_1_2_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

uvloop_canary-0.23.0a1-cp314-cp314t-musllinux_1_2_aarch64.whl (4.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

uvloop_canary-0.23.0a1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

uvloop_canary-0.23.0a1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (4.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

uvloop_canary-0.23.0a1-cp314-cp314t-macosx_10_13_x86_64.whl (777.8 kB view details)

Uploaded CPython 3.14tmacOS 10.13+ x86-64

uvloop_canary-0.23.0a1-cp314-cp314t-macosx_10_13_universal2.whl (1.4 MB view details)

Uploaded CPython 3.14tmacOS 10.13+ universal2 (ARM64, x86-64)

uvloop_canary-0.23.0a1-cp314-cp314-musllinux_1_2_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

uvloop_canary-0.23.0a1-cp314-cp314-musllinux_1_2_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

uvloop_canary-0.23.0a1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

uvloop_canary-0.23.0a1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (4.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

uvloop_canary-0.23.0a1-cp314-cp314-macosx_10_13_x86_64.whl (736.3 kB view details)

Uploaded CPython 3.14macOS 10.13+ x86-64

uvloop_canary-0.23.0a1-cp314-cp314-macosx_10_13_universal2.whl (1.3 MB view details)

Uploaded CPython 3.14macOS 10.13+ universal2 (ARM64, x86-64)

uvloop_canary-0.23.0a1-cp313-cp313-musllinux_1_2_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

uvloop_canary-0.23.0a1-cp313-cp313-musllinux_1_2_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

uvloop_canary-0.23.0a1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

uvloop_canary-0.23.0a1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (4.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

uvloop_canary-0.23.0a1-cp313-cp313-macosx_10_13_x86_64.whl (733.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

uvloop_canary-0.23.0a1-cp313-cp313-macosx_10_13_universal2.whl (1.3 MB view details)

Uploaded CPython 3.13macOS 10.13+ universal2 (ARM64, x86-64)

File details

Details for the file uvloop_canary-0.23.0a1.tar.gz.

File metadata

  • Download URL: uvloop_canary-0.23.0a1.tar.gz
  • Upload date:
  • Size: 2.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for uvloop_canary-0.23.0a1.tar.gz
Algorithm Hash digest
SHA256 d3da2605d2c420b9d826cc89ef602ee9b1fb6d77612b4265ce3beb8a3abd4f05
MD5 9e3731b8b908e8276fb7cf5c2b84093a
BLAKE2b-256 b9fef51fd31f7400c8f21549631443d4fbe8b3599cf4672386071f43fb350742

See more details on using hashes here.

Provenance

The following attestation bundles were made for uvloop_canary-0.23.0a1.tar.gz:

Publisher: release.yml on sunday-robotics/uvloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file uvloop_canary-0.23.0a1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for uvloop_canary-0.23.0a1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1e68dca897007440675bb4e72f6d3f2e820dfd4446f4564a1ff1f90be48428d8
MD5 fec5042a8cd94c5603d2582ce5c65fd0
BLAKE2b-256 28297e5a242d0971944e60054e74e4a82731246c03cf004aa512997ec874f8aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for uvloop_canary-0.23.0a1-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: release.yml on sunday-robotics/uvloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file uvloop_canary-0.23.0a1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for uvloop_canary-0.23.0a1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 39c81e695b95fcc29fc8466b005e717f9ee4b73b3f87a849eb7a13c85d13a646
MD5 91c8588cfac33c90e206a4bbba923b6d
BLAKE2b-256 21b0a0482a27a37dd24b41481dd3bc90ce79e2467bb30941879859f12d73f1d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for uvloop_canary-0.23.0a1-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: release.yml on sunday-robotics/uvloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file uvloop_canary-0.23.0a1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for uvloop_canary-0.23.0a1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f7989c9d7e85289cd0667ea83bd225272c5904047779aa38e6dddeb9cdc32b98
MD5 b8bde0131b346b5ac16836c2c1307883
BLAKE2b-256 235f274a1bb14434ec71ec03be75adac22273f604f4fe9079162bb87cc8af369

See more details on using hashes here.

Provenance

The following attestation bundles were made for uvloop_canary-0.23.0a1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on sunday-robotics/uvloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file uvloop_canary-0.23.0a1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for uvloop_canary-0.23.0a1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e1eb27baafbb14023aa1533757e4b34137c870525c24556e5590aa24a1c8f423
MD5 a75d01ded1b3e942b702516a7b93489d
BLAKE2b-256 2b20ee4e7d9a21aae9b289e1d3f7fe82179fe532c407a75b48928e07fc878edd

See more details on using hashes here.

Provenance

The following attestation bundles were made for uvloop_canary-0.23.0a1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on sunday-robotics/uvloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file uvloop_canary-0.23.0a1-cp314-cp314t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for uvloop_canary-0.23.0a1-cp314-cp314t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 79a6376b8095bca5c45fc56649aa1ab59e41072aa1e69d053166638ffe438106
MD5 00ea5ef80a7d08fc8df58beae7fe03c2
BLAKE2b-256 a04da9f6b1be18850eae4d7d76ba8338aa2561e14a18d194dc955057f481f893

See more details on using hashes here.

Provenance

The following attestation bundles were made for uvloop_canary-0.23.0a1-cp314-cp314t-macosx_10_13_x86_64.whl:

Publisher: release.yml on sunday-robotics/uvloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file uvloop_canary-0.23.0a1-cp314-cp314t-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for uvloop_canary-0.23.0a1-cp314-cp314t-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 4d36a59acac8fccefd2c55a46937948b15629923629b4afeafa30fb154883b2e
MD5 8a10366a1f63f6c54fc637300455c084
BLAKE2b-256 e1058b98b7577f8e543744575ceaae791881d3eb43f4508863fe2b0d31d37033

See more details on using hashes here.

Provenance

The following attestation bundles were made for uvloop_canary-0.23.0a1-cp314-cp314t-macosx_10_13_universal2.whl:

Publisher: release.yml on sunday-robotics/uvloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file uvloop_canary-0.23.0a1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for uvloop_canary-0.23.0a1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e6104024fafeaf703889ab20ce2513af8bb6582d8d75aae8d274bd803347fb0b
MD5 50d5d1e7b6921c1198dc1dd2201d4cb8
BLAKE2b-256 3a209f82842902916a227174188dcab6a4156e4ebedcdb326b38cb3dbcfaa365

See more details on using hashes here.

Provenance

The following attestation bundles were made for uvloop_canary-0.23.0a1-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: release.yml on sunday-robotics/uvloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file uvloop_canary-0.23.0a1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for uvloop_canary-0.23.0a1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 349f857d86a312c1dbd508c49af4de48a1fa1c784703c581f2cd3337a1ee2a4d
MD5 84f1706665c900e2c85fbea9e58fd4b5
BLAKE2b-256 a009888e0af4326fbb044e1c520921011135ddd09cccdd7548dafb9b533cb114

See more details on using hashes here.

Provenance

The following attestation bundles were made for uvloop_canary-0.23.0a1-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: release.yml on sunday-robotics/uvloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file uvloop_canary-0.23.0a1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for uvloop_canary-0.23.0a1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 db84285fb12bcfd4f8ef0ae79cc15854660aad639dcc85384d98fca0fc68bb5d
MD5 4c8d15cb2f338507b499efe544cfeec5
BLAKE2b-256 fa67588c4e3fc15d39250f53ca7b2129e1e97f74db23a6bf93485063c6b891b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for uvloop_canary-0.23.0a1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on sunday-robotics/uvloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file uvloop_canary-0.23.0a1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for uvloop_canary-0.23.0a1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8a47a95b414c52ae48e27d330793fbc2762e74d2857e954c467ddb5bf9b2e28a
MD5 fe4066ec7568dbef62e438500dd827e0
BLAKE2b-256 f3cd501b69dc4bd0b06f52c411d2382e0e1532325161354f050156afe0c6b515

See more details on using hashes here.

Provenance

The following attestation bundles were made for uvloop_canary-0.23.0a1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on sunday-robotics/uvloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file uvloop_canary-0.23.0a1-cp314-cp314-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for uvloop_canary-0.23.0a1-cp314-cp314-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 475f94983cdb6059a84c0659ad6c9fb14d5b8427c347ac696b9b5de8a137f8b0
MD5 e029ab4313748b060505b9a963854b8c
BLAKE2b-256 82bb743e45c06d83e991ae9a16a46391df95b1ecbbac03dfcc42664269759d20

See more details on using hashes here.

Provenance

The following attestation bundles were made for uvloop_canary-0.23.0a1-cp314-cp314-macosx_10_13_x86_64.whl:

Publisher: release.yml on sunday-robotics/uvloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file uvloop_canary-0.23.0a1-cp314-cp314-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for uvloop_canary-0.23.0a1-cp314-cp314-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 952d5438b94be1c491ba8f6d5c77c80f8c3056cb9bd8d440f74679bf428cda98
MD5 21653e76a6248759f08ac70d8c6c0bbc
BLAKE2b-256 e0a45e7f69b797a74f3675efcfe12fe78890bb4c5f7d725d4ce9be5678f8e900

See more details on using hashes here.

Provenance

The following attestation bundles were made for uvloop_canary-0.23.0a1-cp314-cp314-macosx_10_13_universal2.whl:

Publisher: release.yml on sunday-robotics/uvloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file uvloop_canary-0.23.0a1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for uvloop_canary-0.23.0a1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a9040ccc5d3e9e664812faf0b2f57a405ff44c7be50780998fa253e343e8a10f
MD5 75f4b0eedde27378788f22d6f779797a
BLAKE2b-256 5374c365b4c4afffb91f420adc5baa45af9d2ee2882e0162047a591c2ece6c2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for uvloop_canary-0.23.0a1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on sunday-robotics/uvloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file uvloop_canary-0.23.0a1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for uvloop_canary-0.23.0a1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c30094db546615d2ec7c29e46438c707c02f3d72aef060e53596d929af8614b0
MD5 39cc5c53b4d22941bd2500b2221e1902
BLAKE2b-256 b2e5c497e2179bb4b5c32f5894d0c6026e4047b317b5556eaf436afd3bc26b7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for uvloop_canary-0.23.0a1-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: release.yml on sunday-robotics/uvloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file uvloop_canary-0.23.0a1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for uvloop_canary-0.23.0a1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 383b1eb84dd07f98f5cfc4a8e64da1eabc7ff2618943e8ea34c4b31c6eb57d5d
MD5 a8a5c6ec351e1244eada936be388f056
BLAKE2b-256 afa21fd90bcfd0462f3f3cb48c327f19fa9f487858917a0d67525d2648cb4723

See more details on using hashes here.

Provenance

The following attestation bundles were made for uvloop_canary-0.23.0a1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on sunday-robotics/uvloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file uvloop_canary-0.23.0a1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for uvloop_canary-0.23.0a1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 263817d22cfaf62b817c5a9c9c913e954392c26285073a9c18d18dd037524c1c
MD5 70b8f8639f2a862f8b214b4daab84e37
BLAKE2b-256 d88ac77097ecb94cb21679d4bef9e91ab980865264545485026675e4fac82245

See more details on using hashes here.

Provenance

The following attestation bundles were made for uvloop_canary-0.23.0a1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on sunday-robotics/uvloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file uvloop_canary-0.23.0a1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for uvloop_canary-0.23.0a1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 66103169d2e99a545b32aba1400e9a40252eb1ed3e8b0afaeedbfa0762e44788
MD5 ebed7339e7dbdd4a1bdb6a82db7828a6
BLAKE2b-256 b268a6e562ab542c8ce9ddc7719ff788cf18ff5b93741a0c0a4dff95f30a8289

See more details on using hashes here.

Provenance

The following attestation bundles were made for uvloop_canary-0.23.0a1-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: release.yml on sunday-robotics/uvloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file uvloop_canary-0.23.0a1-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for uvloop_canary-0.23.0a1-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 db7b40071eb4abe452605f1d6cabaa06b6a98366ca2e46c14e2b00bd47efd354
MD5 00a2fd214c5a8715076ba8cfc673a23b
BLAKE2b-256 a53765b65d2b66c7895b12fef623c4c2443d15fe8e965313dcfa6f415cfda867

See more details on using hashes here.

Provenance

The following attestation bundles were made for uvloop_canary-0.23.0a1-cp313-cp313-macosx_10_13_universal2.whl:

Publisher: release.yml on sunday-robotics/uvloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page