Skip to content

Commit

Permalink
Added clientcert to httpadv check
Browse files Browse the repository at this point in the history
  • Loading branch information
stratacast committed Jun 21, 2023
1 parent 527e277 commit 0c7708c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
7 changes: 7 additions & 0 deletions changelog.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions lib/nodeping/checktypes/httpadv.ex
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ defmodule NodePing.Checktypes.HttpAdv do
invert: false,
contentstring: nil,
data: %{},
clientcert: nil,
method: nil,
postdata: nil,
receiveheaders: nil,
Expand Down Expand Up @@ -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(),
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
Expand Down

0 comments on commit 0c7708c

Please sign in to comment.