Skip to content

Commit

Permalink
fix: usr: set default value for unsecure setting as boolean (fixes #86)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikitex70 committed Apr 12, 2023
1 parent e48b049 commit e0749b7
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Changelog


## 3.8.3 (2023-04-12)

### Fix

* Set default value for insecure setting as boolean (fixes #86) [Michele Tessaro]


## 3.8.2 (2023-03-06)

### Changes
Expand Down
2 changes: 1 addition & 1 deletion plantuml_markdown.py
Original file line number Diff line number Diff line change
Expand Up @@ -608,7 +608,7 @@ def __init__(self, **kwargs):
'server_include_whitelist': [[r'^[Cc]4.*$'],
"List of regular expressions defining which include files are supported by "
"the server. Defaults to [r'^c4.*$']"],
'insecure': ["False", "Disable SSL certificates verification; set to True if you server uses self-signed certificates. Defaults to False"],
'insecure': [False, "Disable SSL certificates verification; set to True if you server uses self-signed certificates. Defaults to False"],
'cachedir': ["", "Directory for caching of diagrams. Defaults to '', no caching"],
'image_maps': ["true", "Enable generation of PNG image maps, allowing to use hyperlinks with PNG images."
"Defaults to true"],
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

setuptools.setup(
name="plantuml-markdown",
version="3.8.2",
version="3.8.3",
author="Michele Tessaro",
author_email="michele.tessaro@email.it",
description="A PlantUML plugin for Markdown",
Expand Down

0 comments on commit e0749b7

Please sign in to comment.