diff options
author | Erlend Egeberg Aasland <erlend.aasland@innova.no> | 2021-05-02 21:25:17 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-02 21:25:17 (GMT) |
commit | c96cc089f60d2bf7e003c27413c3239ee9de2990 (patch) | |
tree | d93d46ef410fdda18eab4d3a75cc55af541387e9 /Misc/NEWS.d/next/Security | |
parent | 37e0c7850de902179b28f1378fbbc38a5ed3628c (diff) | |
download | cpython-c96cc089f60d2bf7e003c27413c3239ee9de2990.zip cpython-c96cc089f60d2bf7e003c27413c3239ee9de2990.tar.gz cpython-c96cc089f60d2bf7e003c27413c3239ee9de2990.tar.bz2 |
bpo-43434: Move sqlite3.connect audit events to sqlite3.Connection.__init__ (GH-25818)
Diffstat (limited to 'Misc/NEWS.d/next/Security')
-rw-r--r-- | Misc/NEWS.d/next/Security/2021-05-02-17-50-23.bpo-43434.cy7xz6.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Security/2021-05-02-17-50-23.bpo-43434.cy7xz6.rst b/Misc/NEWS.d/next/Security/2021-05-02-17-50-23.bpo-43434.cy7xz6.rst new file mode 100644 index 0000000..b5a3f8d --- /dev/null +++ b/Misc/NEWS.d/next/Security/2021-05-02-17-50-23.bpo-43434.cy7xz6.rst @@ -0,0 +1,4 @@ +Creating :class:`sqlite3.Connection` objects now also produces +``sqlite3.connect`` and ``sqlite3.connect/handle`` :ref:`auditing events +<auditing>`. Previously these events were only produced by +:func:`sqlite3.connect` calls. Patch by Erlend E. Aasland. |