Commit 6ab057d 1 parent 8634a82 commit 6ab057d Copy full SHA for 6ab057d
File tree 4 files changed +47
-2
lines changed
4 files changed +47
-2
lines changed Original file line number Diff line number Diff line change @@ -732,7 +732,7 @@ <h3>Returns:</h3>
732
732
</ div > <!-- id="main" -->
733
733
< div id ="about ">
734
734
< 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 >
736
736
</ div > <!-- id="about" -->
737
737
</ div > <!-- id="container" -->
738
738
</ body >
Original file line number Diff line number Diff line change @@ -145,6 +145,16 @@ <h2>History</h2>
145
145
146
146
< p > Versioning is strictly based on < a href ="https://semver.org/ "> Semantic Versioning</ a > </ p >
147
147
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
+
148
158
< h3 > 1.4.1 (17-Feb-2021)</ h3 >
149
159
150
160
< ul >
@@ -300,7 +310,7 @@ <h2>Copyright and License</h2>
300
310
</ div > <!-- id="main" -->
301
311
< div id ="about ">
302
312
< 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 >
304
314
</ div > <!-- id="about" -->
305
315
</ div > <!-- id="container" -->
306
316
</ body >
Original file line number Diff line number Diff line change @@ -88,6 +88,14 @@ for the complete API.
88
88
89
89
Versioning is strictly based on [ Semantic Versioning] ( https://semver.org/ )
90
90
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
+
91
99
### 1.4.1 (17-Feb-2021)
92
100
93
101
* Fix: make sure that a single worker will actively check hosts' statuses.
Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments