summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Grönholm <alex.gronholm@nextday.fi>2022-09-04 21:46:47 +0300
committerAlex Grönholm <alex.gronholm@nextday.fi>2022-09-04 21:46:47 +0300
commit54d7534a03c0d3c01b98cb3f730e4f06cbf895e5 (patch)
tree3cdc6c4212afee49272c5c24de43299d4427560e
parent724c21e79273ae46dacc9250c160781ed83f42bb (diff)
downloadapscheduler-54d7534a03c0d3c01b98cb3f730e4f06cbf895e5.tar.gz
Marked removal of from_asyncpg_pool() as a breaking change
-rw-r--r--docs/versionhistory.rst3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/versionhistory.rst b/docs/versionhistory.rst
index 103daf6..a26e82c 100644
--- a/docs/versionhistory.rst
+++ b/docs/versionhistory.rst
@@ -9,10 +9,11 @@ APScheduler, see the :doc:`migration section <migration>`.
- **BREAKING** Changed the scheduler API to always require a call to either
``run_until_stopped()`` or ``start_in_background()`` to start the scheduler (using it
as a context manager is no longer enough)
+- **BREAKING** Replaced ``from_asyncpg_pool()`` with ``from_dsn()`` in the asyncpg event
+ broker
- Added an async Redis event broker
- Added automatic reconnection to the Redis event brokers (sync and async)
- Added automatic reconnection to the asyncpg event broker
-- Replaced ``from_asyncpg_pool()`` with ``from_dsn()`` in the asyncpg event broker
- Changed ``from_async_sqla_engine()`` in asyncpg event broker to only copy the
connection options instead of directly using the engine
- Simplified the MQTT event broker by providing a default ``client`` instance if omitted