summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2022-02-01 10:00:09 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2022-02-01 10:00:09 -0500
commit92649264871918c54f74d0b8fa690b1e8e27203b (patch)
treeff7521e2d39952aca110634975ac14e742e3bd8c
parentaf0c5b1f188604b4fd5fdf544df2665e8319475f (diff)
downloadalembic-92649264871918c54f74d0b8fa690b1e8e27203b.tar.gz
- 1.7.6rel_1_7_6
-rw-r--r--docs/build/changelog.rst40
-rw-r--r--docs/build/conf.py4
-rw-r--r--docs/build/unreleased/964.rst7
-rw-r--r--docs/build/unreleased/968.rst7
-rw-r--r--docs/build/unreleased/982.rst7
-rw-r--r--docs/build/unreleased/cache_warning.rst5
-rw-r--r--docs/build/unreleased/variant.rst7
7 files changed, 41 insertions, 36 deletions
diff --git a/docs/build/changelog.rst b/docs/build/changelog.rst
index 49dc455..484ec56 100644
--- a/docs/build/changelog.rst
+++ b/docs/build/changelog.rst
@@ -5,7 +5,45 @@ Changelog
.. changelog::
:version: 1.7.6
- :include_notes_from: unreleased
+ :released: February 1, 2022
+
+ .. change::
+ :tags: bug, batch, regression
+ :tickets: 982
+
+ Fixed regression where usage of a ``with_variant()`` datatype in
+ conjunction with the ``existing_type`` option of ``op.alter_column()``
+ under batch mode would lead to an internal exception.
+
+ .. change::
+ :tags: usecase, commands
+ :tickets: 964
+
+ Add a new command ``alembic ensure_version``, which will ensure that the
+ Alembic version table is present in the target database, but does not
+ alter its contents. Pull request courtesy Kai Mueller.
+
+ .. change::
+ :tags: bug, autogenerate
+
+ Implemented support for recognizing and rendering SQLAlchemy "variant"
+ types going forward into SQLAlchemy 2.0, where the architecture of
+ "variant" datatypes will be changing.
+
+
+ .. change::
+ :tags: bug, mysql, autogenerate
+ :tickets: 968
+
+ Added a rule to the MySQL impl so that the translation between JSON /
+ LONGTEXT is accommodated by autogenerate, treating LONGTEXT from the server
+ as equivalent to an existing JSON in the model.
+
+ .. change::
+ :tags: mssql
+
+ Removed a warning raised by SQLAlchemy when dropping constraints
+ on MSSQL regarding statement caching.
.. changelog::
:version: 1.7.5
diff --git a/docs/build/conf.py b/docs/build/conf.py
index 8ee7af2..c39e5b2 100644
--- a/docs/build/conf.py
+++ b/docs/build/conf.py
@@ -85,8 +85,8 @@ copyright = u"2010-2022, Mike Bayer" # noqa
# The short X.Y version.
version = alembic.__version__
# The full version, including alpha/beta/rc tags.
-release = "1.7.5"
-release_date = "November 11, 2021"
+release = "1.7.6"
+release_date = "February 1, 2022"
# The language for content autogenerated by Sphinx. Refer to documentation
diff --git a/docs/build/unreleased/964.rst b/docs/build/unreleased/964.rst
deleted file mode 100644
index 9cf2321..0000000
--- a/docs/build/unreleased/964.rst
+++ /dev/null
@@ -1,7 +0,0 @@
-.. change::
- :tags: usecase, commands
- :tickets: 964
-
- Add a new command ``alembic ensure_version``, which will ensure that the
- Alembic version table is present in the target database, but does not
- alter its contents. Pull request courtesy Kai Mueller.
diff --git a/docs/build/unreleased/968.rst b/docs/build/unreleased/968.rst
deleted file mode 100644
index be5440b..0000000
--- a/docs/build/unreleased/968.rst
+++ /dev/null
@@ -1,7 +0,0 @@
-.. change::
- :tags: bug, mysql, autogenerate
- :tickets: 968
-
- Added a rule to the MySQL impl so that the translation between JSON /
- LONGTEXT is accommodated by autogenerate, treating LONGTEXT from the server
- as equivalent to an existing JSON in the model.
diff --git a/docs/build/unreleased/982.rst b/docs/build/unreleased/982.rst
deleted file mode 100644
index 715cb1f..0000000
--- a/docs/build/unreleased/982.rst
+++ /dev/null
@@ -1,7 +0,0 @@
-.. change::
- :tags: bug, batch, regression
- :tickets: 982
-
- Fixed regression where usage of a ``with_variant()`` datatype in
- conjunction with the ``existing_type`` option of ``op.alter_column()``
- under batch mode would lead to an internal exception.
diff --git a/docs/build/unreleased/cache_warning.rst b/docs/build/unreleased/cache_warning.rst
deleted file mode 100644
index 19abad1..0000000
--- a/docs/build/unreleased/cache_warning.rst
+++ /dev/null
@@ -1,5 +0,0 @@
-.. change::
- :tags: mssql
-
- Removed a warning raised by SQLAlchemy when dropping constraints
- on MSSQL regarding statement caching.
diff --git a/docs/build/unreleased/variant.rst b/docs/build/unreleased/variant.rst
deleted file mode 100644
index 71cf3c7..0000000
--- a/docs/build/unreleased/variant.rst
+++ /dev/null
@@ -1,7 +0,0 @@
-.. change::
- :tags: bug, autogenerate
-
- Implemented support for recognizing and rendering SQLAlchemy "variant"
- types going forward into SQLAlchemy 2.0, where the architecture of
- "variant" datatypes will be changing.
-