]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
fix changelog links
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 17 Dec 2020 17:21:42 +0000 (12:21 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 17 Dec 2020 17:21:42 +0000 (12:21 -0500)
Change-Id: Iec06b8e15967bcbf38ae091035b2beb13706f339

doc/build/changelog/unreleased_13/5664.rst
doc/build/changelog/unreleased_13/5691.rst
doc/build/changelog/unreleased_13/5737.rst
doc/build/conf.py

index 9c7969709f22bdabbf70f1612a408d18ccf8867d..2675b350011cb8b9840f3d52d587a496bd880123 100644 (file)
@@ -2,7 +2,7 @@
     :tags: bug, orm
     :tickets: 5664
 
-    Fixed bug in :meth:`_orm.Query.update` where objects in the
-    :class:`_orm.Session` that were already expired would be unnecessarily
-    SELECTed individually when they were refreshed by the "evaluate"
-    synchronize strategy.
+    Fixed bug in :meth:`_query.Query.update` where objects in the
+    :class:`_ormsession.Session` that were already expired would be
+    unnecessarily SELECTed individually when they were refreshed by the
+    "evaluate"synchronize strategy.
\ No newline at end of file
index 6180e771dad2fb33cae7fb3aea948f2709a823ad..c3761837b44ecd104808794909a9892a0bfd3302 100644 (file)
@@ -6,7 +6,7 @@
     :meth:`_sql.Insert.returning` is called multiple times, as this does not
     yet support additive operation.  Version 1.4 will support additive
     operation for this.  Additionally, any combination of the
-    :meth:`_sql.Insert.returning` and :meth:`_sql.Insert.return_defaults`
+    :meth:`_sql.Insert.returning` and :meth:`_sql.ValuesBase.return_defaults`
     methods now raises an error as these methods are mutually exclusive;
     previously the operation would fail silently.
 
index 7a1c3b52765aa97f302854a3abfb0e68f779269d..21bbe519b459a86533f67ed92da9a257c70e3cec 100644 (file)
@@ -4,8 +4,8 @@
     :versions: 1.4.0b2
 
     Fixed bug involving the ``restore_load_context`` option of ORM events such
-    as :meth:`_orm.InstanceEvents.load` such that the flag would not be carried
-    along to subclasses which were mapped after the event handler were first
-    established.
+    as :meth:`_ormevent.InstanceEvents.load` such that the flag would not be
+    carried along to subclasses which were mapped after the event handler were
+    first established.
 
 
index de35350f98f1e5e965cc8b60ed4c94585aa8e67b..317f3d3f4e1069558597eb399963111d3c116ea8 100644 (file)
@@ -123,6 +123,9 @@ zzzeeksphinx_module_prefixes = {
     "_schema": "sqlalchemy.schema",
     "_types": "sqlalchemy.types",
     "_expression": "sqlalchemy.sql.expression",
+    "_sql": "sqlalchemy.sql.expression",
+    "_dml": "sqlalchemy.sql.expression",
+    "_ddl": "sqlalchemy.schema",
     "_functions": "sqlalchemy.sql.functions",
     "_pool": "sqlalchemy.pool",
     "_event": "sqlalchemy.event",
@@ -131,7 +134,8 @@ zzzeeksphinx_module_prefixes = {
     "_reflection": "sqlalchemy.engine.reflection",
     "_orm": "sqlalchemy.orm",
     "_query": "sqlalchemy.orm.query",
-    "_ormevent": "sqlalchemy.orm.event",
+    "_ormevent": "sqlalchemy.orm.events",
+    "_ormsession": "sqlalchemy.orm.session",
     "_ormexc": "sqlalchemy.orm.exc",
     "_baked": "sqlalchemy.ext.baked",
     "_associationproxy": "sqlalchemy.ext.associationproxy",