From 6c07f0dac5508a31c80aa2352d3e9d8fcf2214c7 Mon Sep 17 00:00:00 2001 From: James Knight Date: Sun, 25 Feb 2024 10:45:22 -0500 Subject: [PATCH 1/3] cleanup whitespaces Signed-off-by: James Knight --- sphinxcontrib/confluencebuilder/exceptions.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/sphinxcontrib/confluencebuilder/exceptions.py b/sphinxcontrib/confluencebuilder/exceptions.py index 44b24b44..df4196c7 100644 --- a/sphinxcontrib/confluencebuilder/exceptions.py +++ b/sphinxcontrib/confluencebuilder/exceptions.py @@ -86,7 +86,6 @@ def __init__(self, space_key, page_id): Space: {space_key} Page Id: {page_id} - --- '''.format(space_key=space_key, page_id=page_id)) @@ -240,7 +239,6 @@ def __init__(self, server_url): configured Confluence URL is valid: {url} - --- '''.format(url=server_url)) From 963316481954a8e434cc3c287932fba328824b35 Mon Sep 17 00:00:00 2001 From: James Knight Date: Sun, 25 Feb 2024 10:45:58 -0500 Subject: [PATCH 2/3] cleanup grammar Signed-off-by: James Knight --- sphinxcontrib/confluencebuilder/rest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sphinxcontrib/confluencebuilder/rest.py b/sphinxcontrib/confluencebuilder/rest.py index e4b3abd6..1b529299 100644 --- a/sphinxcontrib/confluencebuilder/rest.py +++ b/sphinxcontrib/confluencebuilder/rest.py @@ -66,8 +66,8 @@ def init_poolmanager(self, *args, **kwargs): def cert_verify(self, conn, url, verify, *args, **kwargs): super().cert_verify(conn, url, verify, *args, **kwargs) - # prevent requests from injected an embedded certificates to instead - # rely on the default certificate stores loaded by the context + # prevent requests from injecting embedded certificates instead of + # relying on the default certificate stores loaded by the context if verify is True and not self._config.confluence_adv_embedded_certs: conn.ca_certs = None From 308fd6e4468856c32160b91f006bfd18a04c5f7c Mon Sep 17 00:00:00 2001 From: James Knight Date: Sun, 25 Feb 2024 11:03:04 -0500 Subject: [PATCH 3/3] CHANGES.rst: adding features/changes Adding changes during development window. Signed-off-by: James Knight --- CHANGES.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGES.rst b/CHANGES.rst index 52d87484..f619a9e1 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,9 @@ +Development +=========== + +* Fixed issue where an exception could throw without cleanup options set +* Provide extended debugging options for publish events + 2.4.0 (2023-12-14) ==================