updated changelog to have information about how to migrate from MongoStorage to PyMongoStorage

This commit is contained in:
kievzenit 2025-07-21 19:21:49 +03:00
parent 7774331ac8
commit 8cd5862703

View file

@ -1 +1 @@
Migrated MongoStorage from relying on deprecated motor package to using new async PyMongo. Added BaseStorage, MemoryStorage, MongoStorage, RedisStorage to __init__.py file in aiogram/storage/fsm to improve developer experience.
Migrated `MongoStorage` from relying on deprecated `motor` package to using new async `PyMongo`. To use mongo storage with new async `PyMongo`, you need to install the `PyMongo` package instead of `motor` and just substitute deprecated `MongoStorage` with `PyMongoStorage` class, no other action needed.