Change Log¶
0.3.3 2022/8/9
[Feature]: Re-add support for Python 3.8+ (removed match command in nxalembic)
[Bug]: Fix support with Nextcord 2.1.0 (changes to Bot __init__)
0.3.2 2022/7/26
[Feature]: Don’t generate empty migrations without –empty
[Bug]: Fix –empty and –message commands not working
[Bug]: Fix MySQL/PostgreSQL connections not intializing
0.3.1 2022/7/25
[Feature]: Refactor
nextcord_ormar.OrmarManagerto be more standalone friendly.[Feature]: Publish to PyPI
[Bug]: Fix cogs deleting each other when migrating
[Bug]: Remove debug printing
0.3.0 2022/7/24
[Feature]: Rewrite from using Tortoise-ORM to Ormar
[Feature]: New migration tool, NXAlembic
0.2.4 2022/7/15
[Bug]: Better shutdown order with Nextcord 2.0.0+
[Support]: Nextcord 2.0.0 is now required
0.2.3 2022/3/23
[Bug]: Missing async/await in close()
0.2.2 2022/3/23
[Feature]: Migrated to Poetry for packaging
[Bug]: Close Tortoise connections when Bot closes
0.2.1 2021/12/04
[Bug]: Fix another issue where apps might leak into each other’s migrations
0.2 2021/12/04
[Bug]: Fix migration commands duplicating into multiple app’s migrations
0.1 2021/11/30
[Feature]: Restructured Tortoise and model initializing around the Tortoise Bot subclass. Model files are now explicitly required in the
add_cog()command (“Explicit is better than implicit.”).[Bug] #1: Fix warnings with cogs that don’t have Tortoise models
[Bug] #3: Avoid reinit-ing every time on_connection is called