summaryrefslogtreecommitdiff
path: root/docs/build/unreleased
diff options
context:
space:
mode:
authormike bayer <mike_mp@zzzcomputing.com>2023-05-09 23:36:42 +0000
committerGerrit Code Review <gerrit@bbpush.zzzcomputing.com>2023-05-09 23:36:42 +0000
commit92e54a0e1c96cecd99397cb1aee9c3bb28f780c6 (patch)
tree6f164cfeed18fbb2833148c105c96f9c9d2fcc6d /docs/build/unreleased
parent2aba0ada168d0047d54c7a08b0ffdde3102b716b (diff)
parent2866272251637c0dd246c275cf04947849ea88b8 (diff)
downloadalembic-92e54a0e1c96cecd99397cb1aee9c3bb28f780c6.tar.gz
Merge "Fix compat issue with older SQLAlchemy versions." into main
Diffstat (limited to 'docs/build/unreleased')
-rw-r--r--docs/build/unreleased/1109.rst1
-rw-r--r--docs/build/unreleased/1237.rst9
2 files changed, 10 insertions, 0 deletions
diff --git a/docs/build/unreleased/1109.rst b/docs/build/unreleased/1109.rst
index b6c0718..62be487 100644
--- a/docs/build/unreleased/1109.rst
+++ b/docs/build/unreleased/1109.rst
@@ -1,5 +1,6 @@
.. change::
:tags: usecase, commands
+ :tickets: 1109
Added quiet option to the command line, using the ``-q/--quiet``
option. This flag will prevent alembic from logging anything
diff --git a/docs/build/unreleased/1237.rst b/docs/build/unreleased/1237.rst
new file mode 100644
index 0000000..9717064
--- /dev/null
+++ b/docs/build/unreleased/1237.rst
@@ -0,0 +1,9 @@
+.. change::
+ :tags: bug, batch
+ :tickets: 1237
+
+ Added placeholder classes for ``Computed`` and ``Identity`` when older 1.x
+ SQLAlchemy versions are in use, namely prior to SQLAlchemy 1.3.11 when the
+ ``Computed`` construct was introduced. Previously these were set to None,
+ however this could cause issues with certain codepaths that were using
+ ``isinstance()`` such as one within "batch mode".