Skip to content

Commit 6ab057d

Browse files
committed
release 1.4.2
1 parent 8634a82 commit 6ab057d

File tree

4 files changed

+47
-2
lines changed

4 files changed

+47
-2
lines changed

docs/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -732,7 +732,7 @@ <h3>Returns:</h3>
732732
</div> <!-- id="main" -->
733733
<div id="about">
734734
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc 1.4.6</a></i>
735-
<i style="float:right;">Last updated 2021-02-17 12:40:40 </i>
735+
<i style="float:right;">Last updated 2021-06-29 16:09:58 </i>
736736
</div> <!-- id="about" -->
737737
</div> <!-- id="container" -->
738738
</body>

docs/topics/readme.md.html

+11-1
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,16 @@ <h2>History</h2>
145145

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

148+
<h3>1.4.2 (29-Jun-2021)</h3>
149+
150+
<ul>
151+
<li>Fix: prevent new active checks being scheduled while a health check is running.
152+
<a href="https://github.com/Kong/lua-resty-healthcheck/pull/72">#72</a></li>
153+
<li>Fix: remove event watcher when stopping an active health check.
154+
<a href="https://github.com/Kong/lua-resty-healthcheck/pull/74">#74</a>; fixes Kong issue
155+
<a href="https://github.com/Kong/kong/issues/7406">#7406</a></li>
156+
</ul>
157+
148158
<h3>1.4.1 (17-Feb-2021)</h3>
149159

150160
<ul>
@@ -300,7 +310,7 @@ <h2>Copyright and License</h2>
300310
</div> <!-- id="main" -->
301311
<div id="about">
302312
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc 1.4.6</a></i>
303-
<i style="float:right;">Last updated 2021-02-17 12:40:40 </i>
313+
<i style="float:right;">Last updated 2021-06-29 16:09:58 </i>
304314
</div> <!-- id="about" -->
305315
</div> <!-- id="container" -->
306316
</body>

readme.md

+8
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,14 @@ for the complete API.
8888

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

91+
### 1.4.2 (29-Jun-2021)
92+
93+
* Fix: prevent new active checks being scheduled while a health check is running.
94+
[#72](https://github.com/Kong/lua-resty-healthcheck/pull/72)
95+
* Fix: remove event watcher when stopping an active health check.
96+
[#74](https://github.com/Kong/lua-resty-healthcheck/pull/74); fixes Kong issue
97+
[#7406](https://github.com/Kong/kong/issues/7406)
98+
9199
### 1.4.1 (17-Feb-2021)
92100

93101
* Fix: make sure that a single worker will actively check hosts' statuses.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
package = "lua-resty-healthcheck"
2+
version = "1.4.2-1"
3+
source = {
4+
url = "https://github.com/Kong/lua-resty-healthcheck/archive/1.4.2.tar.gz",
5+
dir = "lua-resty-healthcheck-1.4.2"
6+
}
7+
description = {
8+
summary = "Healthchecks for OpenResty to check upstream service status",
9+
detailed = [[
10+
lua-resty-healthcheck is a module that can check upstream service
11+
availability by sending requests and validating responses at timed
12+
intervals.
13+
]],
14+
homepage = "https://github.com/Kong/lua-resty-healthcheck",
15+
license = "Apache 2.0"
16+
}
17+
dependencies = {
18+
"lua-resty-worker-events == 1.0.0",
19+
"penlight >= 1.9.2",
20+
"lua-resty-timer ~> 1",
21+
}
22+
build = {
23+
type = "builtin",
24+
modules = {
25+
["resty.healthcheck"] = "lib/resty/healthcheck.lua",
26+
}
27+
}

0 commit comments

Comments
 (0)