From 0c7708c70fe73e812df8df4150dfc2d041afd35c Mon Sep 17 00:00:00 2001 From: stratacast Date: Wed, 21 Jun 2023 16:29:41 -0700 Subject: [PATCH] Added clientcert to httpadv check --- changelog.adoc | 7 +++++++ lib/nodeping/checktypes/httpadv.ex | 2 ++ mix.exs | 2 +- 3 files changed, 10 insertions(+), 1 deletion(-) diff --git a/changelog.adoc b/changelog.adoc index 7077901..a35e5fe 100644 --- a/changelog.adoc +++ b/changelog.adoc @@ -13,6 +13,13 @@ have to proceed with a following `List.first/1` to get the map. There will likely also be some upcoming improvements changes as the library is reviewed. +== 2023-06-21 v1.7.0 + +=== Added + +* MongoDB check added: https://nodeping.com/mongodb_check.html +* Added `clientcert` option to the httpadv checktype + == 2022-11-09 v1.6.0 === Added diff --git a/lib/nodeping/checktypes/httpadv.ex b/lib/nodeping/checktypes/httpadv.ex index 2babd46..dea4f58 100644 --- a/lib/nodeping/checktypes/httpadv.ex +++ b/lib/nodeping/checktypes/httpadv.ex @@ -10,6 +10,7 @@ defmodule NodePing.Checktypes.HttpAdv do invert: false, contentstring: nil, data: %{}, + clientcert: nil, method: nil, postdata: nil, receiveheaders: nil, @@ -39,6 +40,7 @@ defmodule NodePing.Checktypes.HttpAdv do invert: boolean(), contentstring: nil | String.t(), data: map(), + clientcert: nil | String.t(), method: nil | String.t(), postdata: map(), receiveheaders: nil | map(), diff --git a/mix.exs b/mix.exs index 48ba04e..355d04b 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule NodePing.MixProject do def project do [ app: :nodeping, - version: "1.6.0", + version: "1.7.0", elixir: "~> 1.10", start_permanent: Mix.env() == :prod, description: description(),