bpo-43762: Add audit events for loading of sqlite3 extensions (GH-25246)
diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst
index 6bdf4ed..d0f28db 100644
--- a/Doc/library/sqlite3.rst
+++ b/Doc/library/sqlite3.rst
@@ -225,6 +225,7 @@
be found in the `SQLite URI documentation <https://www.sqlite.org/uri.html>`_.
.. audit-event:: sqlite3.connect database sqlite3.connect
+ .. audit-event:: sqlite3.connect/handle connection_handle sqlite3.connect
.. versionchanged:: 3.4
Added the *uri* parameter.
@@ -232,6 +233,9 @@
.. versionchanged:: 3.7
*database* can now also be a :term:`path-like object`, not only a string.
+ .. versionchanged:: 3.10
+ Added the ``sqlite3.connect/handle`` auditing event.
+
.. function:: register_converter(typename, callable)
@@ -467,8 +471,13 @@
Loadable extensions are disabled by default. See [#f1]_.
+ .. audit-event:: sqlite3.enable_load_extension connection,enabled sqlite3.enable_load_extension
+
.. versionadded:: 3.2
+ .. versionchanged:: 3.10
+ Added the ``sqlite3.enable_load_extension`` auditing event.
+
.. literalinclude:: ../includes/sqlite3/load_extension.py
.. method:: load_extension(path)
@@ -479,8 +488,13 @@
Loadable extensions are disabled by default. See [#f1]_.
+ .. audit-event:: sqlite3.load_extension connection,path sqlite3.load_extension
+
.. versionadded:: 3.2
+ .. versionchanged:: 3.10
+ Added the ``sqlite3.load_extension`` auditing event.
+
.. attribute:: row_factory
You can change this attribute to a callable that accepts the cursor and the
diff --git a/Doc/whatsnew/3.10.rst b/Doc/whatsnew/3.10.rst
index 1d9c03c..91ad8ec 100644
--- a/Doc/whatsnew/3.10.rst
+++ b/Doc/whatsnew/3.10.rst
@@ -1080,6 +1080,14 @@
Add a *timeout* parameter to the :func:`ssl.get_server_certificate` function.
(Contributed by Zackery Spytz in :issue:`31870`.)
+sqlite3
+-------
+
+Add audit events for :func:`~sqlite3.connect/handle`,
+:meth:`~sqlite3.Connection.enable_load_extension`, and
+:meth:`~sqlite3.Connection.load_extension`.
+(Contributed by Erlend E. Aasland in :issue:`43762`.)
+
sys
---