]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
changelog fixup
authorMike Bayer <mike_mp@zzzcomputing.com>
Mon, 6 Feb 2023 21:25:15 +0000 (16:25 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 6 Feb 2023 21:25:15 +0000 (16:25 -0500)
re-classify the large amount of recent issues involving
declarative under "orm declarative" and reword one of the
issue notes.

Change-Id: Id3a861b235573bf048a9ee4d38faeaade8a9dbdd

doc/build/changelog/changelog_20.rst
doc/build/changelog/unreleased_20/9211.rst
doc/build/changelog/unreleased_20/9226.rst
doc/build/changelog/unreleased_20/9240.rst
doc/build/changelog/unreleased_20/9249.rst

index fe2bc97011dbc88b6dcaf51038853193268e476b..64bd6c4b3e6d778ca9ae331ce46e75d59902d5bd 100644 (file)
@@ -45,7 +45,7 @@
 
 
     .. change::
-        :tags: bug, orm
+        :tags: bug, orm declarative
         :tickets: 9175
 
         Added support for :pep:`484` ``NewType`` to be used in the
@@ -66,7 +66,7 @@
 
 
     .. change::
-        :tags: bug, orm
+        :tags: bug, orm declarative
         :tickets: 9179
 
         When using the :class:`.MappedAsDataclass` superclass, all classes within
@@ -96,7 +96,7 @@
         :class:`_schema.Index`.
 
     .. change::
-        :tags: bug, orm
+        :tags: bug, orm declarative
         :tickets: 9187
 
         Added support for :pep:`586` ``Literal[]`` to be used in the
 
 
     .. change::
-        :tags: bug, orm
+        :tags: bug, orm declarative
         :tickets: 9200
 
         Fixed issue involving the use of :class:`.sqltypes.Enum` within the
 
 
     .. change::
-        :tags: bug, orm, regression
+        :tags: bug, orm declarative, regression
         :tickets: 9171
 
         Fixed regression in :class:`.DeclarativeBase` class where the registry's
         only ``TypeEngine[T]`` was accepted.  Pull request courtesy Yurii Karabas.
 
     .. change::
-        :tags: bug, orm
+        :tags: bug, orm declarative
         :tickets: 9177
 
         Improved the ruleset used to interpret :pep:`593` ``Annotated`` types when
index f15a64b0537bd7af0e03d602107064ea7e327efc..87e256d625758134a926a3ffae9aa12ebf7b3c3e 100644 (file)
@@ -1,5 +1,5 @@
 .. change::
-    :tags: bug, orm
+    :tags: bug, orm declarative
     :tickets: 9211
 
     An explicit error is raised if a mapping attempts to mix the use of
index 36547602b10c2af43ad761eb28a71db28ff30d45..be077d8273ed309b92873758b5333489ac19a6cf 100644 (file)
@@ -1,9 +1,9 @@
 .. change::
-    :tags: bug, orm
+    :tags: bug, orm declarative
     :tickets: 9226
 
-    More adjustments to ORM Declarative Dataclasses mappings, building on the
-    improved support for mixins with dataclasses added in 2.0.1 via
-    :ticket:`9179`, where a combination of using mixins plus ORM inheritance
-    would mis-classify fields in some cases leading to their dataclass
-    arguments such as ``init=False`` being lost.
+    Fixed issue in ORM Declarative Dataclass mappings related to newly added
+    support for mixins added in 2.0.1 via :ticket:`9179`, where a combination
+    of using mixins plus ORM inheritance would mis-classify fields in some
+    cases leading to field-level dataclass arguments such as ``init=False`` being
+    lost.
index 23e807f62d131eccd4049d691fd0dfcd24594f86..8949465f144de113e1d187ca9150304a99a96711 100644 (file)
@@ -1,5 +1,5 @@
 .. change::
-    :tags: bug, orm
+    :tags: bug, orm declarative
     :tickets: 9240
 
     Repaired ORM Declarative mappings to allow for the
index 1ffd63a012e1009d852916cc4306d444020b659c..ab1ff48fe7816a262bec1889a57af787dc2aff33 100644 (file)
@@ -1,5 +1,5 @@
 .. change::
-    :tags: bug, orm
+    :tags: bug, orm declarative
     :tickets: 9249
 
     Fixed regression caused by the fix for :ticket:`9171`, which itself was