From: Mike Bayer Date: Wed, 31 Mar 2021 00:30:13 +0000 (-0400) Subject: asyncio API can be considered beta level X-Git-Tag: rel_1_4_5~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=88b4f0badf8983fd909bb70d4651228b6471b74b;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git asyncio API can be considered beta level It's clear that there are at least many dozens of developers working with the new asyncio extension and we have not had any major bug reports. Other than ``Session.delete`` needing to be an awaitable, there were no backwards-incompatible issues and we've seen no issues with wrong behaviors. Change-Id: I48f3f2ae89b2c48adb9d8d3c053d0ef53b4d7b5b --- diff --git a/doc/build/orm/extensions/asyncio.rst b/doc/build/orm/extensions/asyncio.rst index 12e1cc12a5..f56068fcc2 100644 --- a/doc/build/orm/extensions/asyncio.rst +++ b/doc/build/orm/extensions/asyncio.rst @@ -10,10 +10,10 @@ included, using asyncio-compatible dialects. The asyncio extension requires at least Python version 3.6. - -.. note:: The asyncio should be regarded as **alpha level** for the - 1.4 release of SQLAlchemy. API details are **subject to change** at - any time. +.. note:: The asyncio extension as of SQLAlchemy 1.4.3 can now be considered to + be **beta level** software. API details are subject to change however at this + point it is unlikely for there to be significant backwards-incompatible + changes. .. seealso::