diff --git a/changelog.md b/changelog.md index 0164c05..a7ae1ec 100644 --- a/changelog.md +++ b/changelog.md @@ -6,6 +6,13 @@ All notable changes to this project will be documented in this file. (Placeholder for unreleased content) +## [1.8.0] + +2023-06-21 + +* Added MongoDB check support in create_checks +* Added clientcert for `create_check.httpadv_check` + ## [1.7.1] 2022-11-15 diff --git a/nodeping_api/create_check.py b/nodeping_api/create_check.py index 14e71b1..0711948 100644 --- a/nodeping_api/create_check.py +++ b/nodeping_api/create_check.py @@ -572,6 +572,7 @@ def httpadv_check( invert=False, contentstring="", data="", + clientcert="", method="", postdata="", receiveheaders="", @@ -615,6 +616,8 @@ def httpadv_check( :param invert: Used for "Does not contain" functionality :type data: dict :param data: key/value pair for POST fields + :type clientcert: string + :param clientcert: Specify the ID of a client certificate/key to be used :type method: string :param method: HTTP method :type postdata: dict diff --git a/setup.py b/setup.py index de96537..7690bb1 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ URL = "https://github.com/NodePing/python-nodeping-api" EMAIL = "support@nodeping.com" AUTHOR = "NodePing" -VERSION = "1.7.1" +VERSION = "1.8.0" LICENSE = "MIT" setuptools.setup(