15
0

Accepting request 318163 from home:seife:branches:devel:languages:python

update to 0.7.7, this fixes tests against newer SQLAclhemy amongst others

OBS-URL: https://build.opensuse.org/request/show/318163
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-alembic?expand=0&rev=40
This commit is contained in:
2015-07-24 09:05:34 +00:00
committed by Git OBS Bridge
parent 0ba366c5ad
commit fe07520a89
4 changed files with 29 additions and 4 deletions

View File

@@ -1,3 +1,28 @@
-------------------------------------------------------------------
Thu Jul 23 12:20:15 UTC 2015 - seife+obs@b1-systems.com
- update to 0.7.7:
* Implemented support for BatchOperations.create_primary_key()
and BatchOperations.create_check_constraint(). Additionally,
table keyword arguments are copied from the original reflected
table, such as the "mysql_engine" keyword argument.
* Fixed critical issue where a complex series of branches/merges
would bog down the iteration algorithm working over redundant
nodes for millions of cycles. An internal adjustment has been
made so that duplicate nodes are skipped within this iteration.
* The MigrationContext.stamp() method, added as part of the
versioning refactor in 0.7 as a more granular version of
command.stamp(), now includes the “create the alembic_version
table if not present” step in the same way as the command
version, which was previously omitted.
* Fixed bug where foreign key options including "onupdate",
"ondelete" would not render within the op.create_foreign_key()
directive, even though they render within a full
ForeignKeyConstraint directive.
* Repaired warnings that occur when running unit tests against
SQLAlchemy 1.0.5 or greater involving the
"legacy_schema_aliasing" flag.
-------------------------------------------------------------------
Tue Jun 9 11:33:03 UTC 2015 - dmueller@suse.com