summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2020-12-17 12:21:42 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2020-12-17 12:21:42 -0500
commitd32c227475cf840c231b2e66b48a1e67d372de7d (patch)
treeff1530fd78848814ef3997570c0f50a03d034c4d
parente5ce965d070c11d84eeb30247722d8ff5e03c411 (diff)
downloadsqlalchemy-d32c227475cf840c231b2e66b48a1e67d372de7d.tar.gz
fix changelog links
Change-Id: Iec06b8e15967bcbf38ae091035b2beb13706f339
-rw-r--r--doc/build/changelog/unreleased_13/5664.rst8
-rw-r--r--doc/build/changelog/unreleased_13/5691.rst2
-rw-r--r--doc/build/changelog/unreleased_13/5737.rst6
-rw-r--r--doc/build/conf.py6
4 files changed, 13 insertions, 9 deletions
diff --git a/doc/build/changelog/unreleased_13/5664.rst b/doc/build/changelog/unreleased_13/5664.rst
index 9c7969709..2675b3500 100644
--- a/doc/build/changelog/unreleased_13/5664.rst
+++ b/doc/build/changelog/unreleased_13/5664.rst
@@ -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
diff --git a/doc/build/changelog/unreleased_13/5691.rst b/doc/build/changelog/unreleased_13/5691.rst
index 6180e771d..c3761837b 100644
--- a/doc/build/changelog/unreleased_13/5691.rst
+++ b/doc/build/changelog/unreleased_13/5691.rst
@@ -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.
diff --git a/doc/build/changelog/unreleased_13/5737.rst b/doc/build/changelog/unreleased_13/5737.rst
index 7a1c3b527..21bbe519b 100644
--- a/doc/build/changelog/unreleased_13/5737.rst
+++ b/doc/build/changelog/unreleased_13/5737.rst
@@ -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.
diff --git a/doc/build/conf.py b/doc/build/conf.py
index de35350f9..317f3d3f4 100644
--- a/doc/build/conf.py
+++ b/doc/build/conf.py
@@ -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",