Skip to content

Commit

Permalink
release 1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
locao committed Feb 17, 2021
1 parent 45fc129 commit 9e9a936
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -732,7 +732,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 2021-01-07 12:51:17 </i>
<i style="float:right;">Last updated 2021-02-17 12:40:40 </i>
</div> <!-- id="about" -->
</div> <!-- id="container" -->
</body>
Expand Down
9 changes: 8 additions & 1 deletion docs/topics/readme.md.html
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,13 @@ <h2>History</h2>

<p>Versioning is strictly based on <a href="https://semver.org/">Semantic Versioning</a></p>

<h3>1.4.1 (17-Feb-2021)</h3>

<ul>
<li>Fix: make sure that a single worker will actively check hosts' statuses.
<a href="https://github.com/Kong/lua-resty-healthcheck/pull/67">#67</a></li>
</ul>

<h3>1.4.0 (07-Jan-2021)</h3>

<ul>
Expand Down Expand Up @@ -293,7 +300,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 2021-01-07 12:51:17 </i>
<i style="float:right;">Last updated 2021-02-17 12:40:40 </i>
</div> <!-- id="about" -->
</div> <!-- id="container" -->
</body>
Expand Down
5 changes: 5 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,11 @@ for the complete API.

Versioning is strictly based on [Semantic Versioning](https://semver.org/)

### 1.4.1 (17-Feb-2021)

* Fix: make sure that a single worker will actively check hosts' statuses.
[#67](https://github.com/Kong/lua-resty-healthcheck/pull/67)

### 1.4.0 (07-Jan-2021)

* Use a single timer to actively health check targets. This reduces the number
Expand Down
27 changes: 27 additions & 0 deletions rockspecs/lua-resty-healthcheck-1.4.1-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
package = "lua-resty-healthcheck"
version = "1.4.1-1"
source = {
url = "https://github.com/Kong/lua-resty-healthcheck/archive/1.4.1.tar.gz",
dir = "lua-resty-healthcheck-1.4.1"
}
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 == 1.0.0",
"penlight >= 1.9.2",
"lua-resty-timer ~> 1",
}
build = {
type = "builtin",
modules = {
["resty.healthcheck"] = "lib/resty/healthcheck.lua",
}
}

0 comments on commit 9e9a936

Please sign in to comment.