summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2018-03-22 10:06:32 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2018-03-22 10:06:32 -0400
commitff6b851ceddea347e1779e7a74cd12700e38f258 (patch)
treeec6a52282026d35a6bb511936e7cf033413beac4
parent533c965f253bdb80b3c4b129c4c8ecabaacb070a (diff)
downloadalembic-ff6b851ceddea347e1779e7a74cd12700e38f258.tar.gz
- 0.9.9rel_0_9_9
-rw-r--r--docs/build/changelog.rst40
-rw-r--r--docs/build/unreleased/455.rst9
-rw-r--r--docs/build/unreleased/481.rst8
-rw-r--r--docs/build/unreleased/483.rst11
-rw-r--r--docs/build/unreleased/487.rst6
5 files changed, 39 insertions, 35 deletions
diff --git a/docs/build/changelog.rst b/docs/build/changelog.rst
index 5addbfa..1b564a9 100644
--- a/docs/build/changelog.rst
+++ b/docs/build/changelog.rst
@@ -5,7 +5,45 @@ Changelog
.. changelog::
:version: 0.9.9
- :include_notes_from: unreleased
+ :released: March 22, 2018
+
+ .. change::
+ :tags: feature, commands
+ :tickets: 481
+
+ Added new flag ``--indicate-current`` to the ``alembic history`` command.
+ When listing versions, it will include the token "(current)" to indicate
+ the given version is a current head in the target database. Pull request
+ courtesy Kazutaka Mise.
+
+ .. change::
+ :tags: bug, autogenerate, mysql
+ :tickets: 455
+
+ The fix for :ticket:`455` in version 0.9.6 involving MySQL server default
+ comparison was entirely non functional, as the test itself was also broken
+ and didn't reveal that it wasn't working. The regular expression to compare
+ server default values like CURRENT_TIMESTAMP to current_timestamp() is
+ repaired.
+
+ .. change::
+ :tags: bug, mysql, autogenerate
+ :tickets: 483
+
+ Fixed bug where MySQL server default comparisons were basically not working
+ at all due to incorrect regexp added in :ticket:`455`. Also accommodates
+ for MariaDB 10.2 quoting differences in reporting integer based server
+ defaults.
+
+
+
+
+ .. change::
+ :tags: bug, operations, mysql
+ :tickets: 487
+
+ Fixed bug in ``op.drop_constraint()`` for MySQL where
+ quoting rules would not be applied to the constraint name.
.. changelog::
:version: 0.9.8
diff --git a/docs/build/unreleased/455.rst b/docs/build/unreleased/455.rst
deleted file mode 100644
index c9d439d..0000000
--- a/docs/build/unreleased/455.rst
+++ /dev/null
@@ -1,9 +0,0 @@
-.. change::
- :tags: bug, autogenerate, mysql
- :tickets: 455
-
- The fix for :ticket:`455` in version 0.9.6 involving MySQL server default
- comparison was entirely non functional, as the test itself was also broken
- and didn't reveal that it wasn't working. The regular expression to compare
- server default values like CURRENT_TIMESTAMP to current_timestamp() is
- repaired.
diff --git a/docs/build/unreleased/481.rst b/docs/build/unreleased/481.rst
deleted file mode 100644
index b94a09c..0000000
--- a/docs/build/unreleased/481.rst
+++ /dev/null
@@ -1,8 +0,0 @@
-.. change::
- :tags: feature, commands
- :tickets: 481
-
- Added new flag ``--indicate-current`` to the ``alembic history`` command.
- When listing versions, it will include the token "(current)" to indicate
- the given version is a current head in the target database. Pull request
- courtesy Kazutaka Mise.
diff --git a/docs/build/unreleased/483.rst b/docs/build/unreleased/483.rst
deleted file mode 100644
index fc4ca12..0000000
--- a/docs/build/unreleased/483.rst
+++ /dev/null
@@ -1,11 +0,0 @@
-.. change::
- :tags: bug, mysql, autogenerate
- :tickets: 483
-
- Fixed bug where MySQL server default comparisons were basically not working
- at all due to incorrect regexp added in :ticket:`455`. Also accommodates
- for MariaDB 10.2 quoting differences in reporting integer based server
- defaults.
-
-
-
diff --git a/docs/build/unreleased/487.rst b/docs/build/unreleased/487.rst
deleted file mode 100644
index 273edf2..0000000
--- a/docs/build/unreleased/487.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. change::
- :tags: bug, operations, mysql
- :tickets: 487
-
- Fixed bug in ``op.drop_constraint()`` for MySQL where
- quoting rules would not be applied to the constraint name.