From: Mike Bayer Date: Thu, 20 Oct 2022 17:39:21 +0000 (-0400) Subject: doc classification changes X-Git-Tag: rel_2_0_0b2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bfe36f11fb423f2318166162d95941beef3cbaaa;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git doc classification changes Change-Id: If7e16f4c9578fec70168db701d1860bf5e4d6d42 --- diff --git a/doc/build/changelog/unreleased_20/7211.rst b/doc/build/changelog/unreleased_20/7211.rst index 4979e2e923..c06c1bec4a 100644 --- a/doc/build/changelog/unreleased_20/7211.rst +++ b/doc/build/changelog/unreleased_20/7211.rst @@ -1,5 +1,5 @@ .. change:: - :tags: schema, mssql + :tags: mssql, bug :tickets: 7211 The :class:`.Sequence` construct restores itself to the DDL behavior it diff --git a/doc/build/changelog/unreleased_20/8668.rst b/doc/build/changelog/unreleased_20/8668.rst index 3dab4663fd..d6221ae94b 100644 --- a/doc/build/changelog/unreleased_20/8668.rst +++ b/doc/build/changelog/unreleased_20/8668.rst @@ -1,7 +1,9 @@ .. change:: - :tags: bug, orm + :tags: bug, orm, declarative :tickets: 8668 - Fixed bug in new ORM typed declarative mappings where we did not include - the ability to use ``Optional[]`` in the type annotation for a many-to-one - relationship, even though this is common. + Fixed bug in new ORM typed declarative mappings where the ability + to use ``Optional[MyClass]`` or similar forms such as ``MyClass | None`` + in the type annotation for a many-to-one relationship was not implemented, + leading to errors. Documentation has also been added for this use + case to the relationship configuration documentation. diff --git a/doc/build/changelog/unreleased_20/8688.rst b/doc/build/changelog/unreleased_20/8688.rst index 7ae4d2b0de..b6d9b1a72b 100644 --- a/doc/build/changelog/unreleased_20/8688.rst +++ b/doc/build/changelog/unreleased_20/8688.rst @@ -1,5 +1,5 @@ .. change:: - :tags: bug, orm + :tags: bug, orm, declarative :tickets: 8688 Fixed issue with new dataclass mapping feature where arguments passed to