Skip to content

Commit

Permalink
Release 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hishamhm committed Sep 26, 2018
1 parent 7207e02 commit 616e8bb
Show file tree
Hide file tree
Showing 5 changed files with 40 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ <h2>Topics</h2>
</div> <!-- id="main" -->
<div id="about">
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc 1.4.6</a></i>
<i style="float:right;">Last updated 2018-07-25 19:02:22 </i>
<i style="float:right;">Last updated 2018-09-26 14:31:12 </i>
</div> <!-- id="about" -->
</div> <!-- id="container" -->
</body>
Expand Down
3 changes: 2 additions & 1 deletion docs/modules/resty.healthcheck.html
Original file line number Diff line number Diff line change
Expand Up @@ -630,6 +630,7 @@ <h3>Parameters:</h3>
<li><code>checks.active.timeout</code>: socket timeout for active checks (in seconds)</li>
<li><code>checks.active.concurrency</code>: number of targets to check concurrently</li>
<li><code>checks.active.http_path</code>: path to use in <code>GET</code> HTTP request to run on active checks</li>
<li><code>checks.active.https_verify_certificate</code>: boolean indicating whether to verify the HTTPS certificate</li>
<li><code>checks.active.healthy.interval</code>: interval between checks for healthy targets (in seconds)</li>
<li><code>checks.active.healthy.http_statuses</code>: which HTTP statuses to consider a success</li>
<li><code>checks.active.healthy.successes</code>: number of successes to consider a target healthy</li>
Expand Down Expand Up @@ -670,7 +671,7 @@ <h3>Returns:</h3>
</div> <!-- id="main" -->
<div id="about">
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc 1.4.6</a></i>
<i style="float:right;">Last updated 2018-07-25 19:02:22 </i>
<i style="float:right;">Last updated 2018-09-26 14:31:12 </i>
</div> <!-- id="about" -->
</div> <!-- id="container" -->
</body>
Expand Down
2 changes: 1 addition & 1 deletion docs/modules/resty.healthcheck.utils.html
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ <h3>Returns:</h3>
</div> <!-- id="main" -->
<div id="about">
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc 1.4.6</a></i>
<i style="float:right;">Last updated 2018-07-25 19:02:22 </i>
<i style="float:right;">Last updated 2018-09-26 14:31:12 </i>
</div> <!-- id="about" -->
</div> <!-- id="container" -->
</body>
Expand Down
10 changes: 9 additions & 1 deletion docs/topics/readme.md.html
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,14 @@ <h2>Description</h2>
<p><a name="History"></a></p>
<h2>History</h2>

<h3>0.6.0 (26-Sep-2018)</h3>

<ul>
<li>Introduce <code>checks.active.https_verify_certificate</code> field.
It is <code>true</code> by default; setting it to <code>false</code> disables certificate
verification in active healthchecks over HTTPS.</li>
</ul>

<h3>0.5.0 (25-Jul-2018)</h3>

<ul>
Expand Down Expand Up @@ -224,7 +232,7 @@ <h2>Copyright and License</h2>
</div> <!-- id="main" -->
<div id="about">
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc 1.4.6</a></i>
<i style="float:right;">Last updated 2018-07-25 19:02:22 </i>
<i style="float:right;">Last updated 2018-09-26 14:31:12 </i>
</div> <!-- id="about" -->
</div> <!-- id="container" -->
</body>
Expand Down
27 changes: 27 additions & 0 deletions lua-resty-healthcheck-0.6.0-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
package = "lua-resty-healthcheck"
version = "0.6.0-1"
source = {
url = "https://github.com/Kong/lua-resty-healthcheck/archive/0.6.0.tar.gz",
tag = "0.6.0",
dir = "lua-resty-healthcheck-0.6.0"
}
description = {
summary = "Healthchecks for OpenResty to check upstream service status",
detailed = [[
lua-resty-healthcheck is a module that can check upstream service
availability by sending requests and validating responses at timed
intervals.
]],
homepage = "https://github.com/Kong/lua-resty-healthcheck",
license = "Apache 2.0"
}
dependencies = {
"lua-resty-worker-events >= 0.3.2"
}
build = {
type = "builtin",
modules = {
["resty.healthcheck"] = "lib/resty/healthcheck.lua",
["resty.healthcheck.utils"] = "lib/resty/healthcheck/utils.lua"
}
}

0 comments on commit 616e8bb

Please sign in to comment.