Skip to content

Commit

Permalink
Merge pull request #885 from sphinx-contrib/maintenance/2024-02-25
Browse files Browse the repository at this point in the history
maintenance (2024-02-25)
  • Loading branch information
jdknight authored Feb 25, 2024
2 parents ee92614 + 308fd6e commit 8eac40c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -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)
==================

Expand Down
2 changes: 0 additions & 2 deletions sphinxcontrib/confluencebuilder/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -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))

Expand Down Expand Up @@ -240,7 +239,6 @@ def __init__(self, server_url):
configured Confluence URL is valid:
{url}
---
'''.format(url=server_url))

Expand Down
4 changes: 2 additions & 2 deletions sphinxcontrib/confluencebuilder/rest.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 8eac40c

Please sign in to comment.