Skip to content

1.17.0

Compare
Choose a tag to compare
@dantownsend dantownsend released this 20 Aug 17:47
· 22 commits to master since this release

Each migration is automatically wrapped in a transaction - this can now be disabled using the wrap_in_transaction argument:

manager = MigrationManager(
    wrap_in_transaction=False,
    ...
)

This is useful when writing a manual migration, and you want to manage all of the transaction logic yourself (or want multiple transactions).

granian is now a supported server in the ASGI templates. Thanks to @sinisaos for this.