@@ -5,7 +5,60 @@ Changelog
5
5
6
6
.. changelog ::
7
7
:version: 0.9.8
8
- :include_notes_from: unreleased
8
+ :released: February 16, 2018
9
+
10
+ .. change ::
11
+ :tags: bug, runtime
12
+ :tickets: 482
13
+
14
+ Fixed bug where the :meth: `.Script.as_revision_number ` method
15
+ did not accommodate for the 'heads' identifier, which in turn
16
+ caused the :meth: `.EnvironmentContext.get_head_revisions `
17
+ and :meth: `.EnvironmentContext.get_revision_argument ` methods
18
+ to be not usable when multiple heads were present.
19
+ The :meth: .`EnvironmentContext.get_head_revisions` method returns
20
+ a tuple in all cases as documented.
21
+
22
+
23
+
24
+ .. change ::
25
+ :tags: bug, postgresql, autogenerate
26
+ :tickets: 478
27
+
28
+ Fixed bug where autogenerate of :class: `.ExcludeConstraint `
29
+ would render a raw quoted name for a Column that has case-sensitive
30
+ characters, which when invoked as an inline member of the Table
31
+ would produce a stack trace that the quoted name is not found.
32
+ An incoming Column object is now rendered as ``sa.column('name') ``.
33
+
34
+ .. change ::
35
+ :tags: bug, autogenerate
36
+ :tickets: 468
37
+
38
+ Fixed bug where the indexes would not be included in a
39
+ migration that was dropping the owning table. The fix
40
+ now will also emit DROP INDEX for the indexes ahead of time,
41
+ but more importantly will include CREATE INDEX in the
42
+ downgrade migration.
43
+
44
+ .. change ::
45
+ :tags: bug, postgresql
46
+ :tickets: 480
47
+
48
+ Fixed the autogenerate of the module prefix
49
+ when rendering the text_type parameter of
50
+ postgresql.HSTORE, in much the same way that
51
+ we do for ARRAY's type and JSON's text_type.
52
+
53
+ .. change ::
54
+ :tags: bug, mysql
55
+ :tickets: 479
56
+
57
+ Added support for DROP CONSTRAINT to the MySQL Alembic
58
+ dialect to support MariaDB 10.2 which now has real
59
+ CHECK constraints. Note this change does **not **
60
+ add autogenerate support, only support for op.drop_constraint()
61
+ to work.
9
62
10
63
.. changelog ::
11
64
:version: 0.9.7
0 commit comments