Commit 6ba9bf4 1 parent 2dc6ddb commit 6ba9bf4 Copy full SHA for 6ba9bf4
File tree 4 files changed +35
-3
lines changed
4 files changed +35
-3
lines changed Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ Versioning is strictly based on [Semantic Versioning](https://semver.org/)
103
103
* push commit and tag
104
104
* upload rock to luarocks: ` luarocks upload rockspecs/[name] --api-key=abc `
105
105
106
- ### Unreleased
106
+ ### 3.0.2 (16-May-2024)
107
107
108
108
* Fix: avoid creating multiple timers to run the same active check [ #157 ] ( https://github.com/Kong/lua-resty-healthcheck/pull/157 )
109
109
Original file line number Diff line number Diff line change @@ -832,7 +832,7 @@ <h3>Returns:</h3>
832
832
</ div > <!-- id="main" -->
833
833
< div id ="about ">
834
834
< i > generated by < a href ="http://github.com/lunarmodules/LDoc "> LDoc 1.5.0</ a > </ i >
835
- < i style ="float:right; "> Last updated 2023-12-22 15:40:41 </ i >
835
+ < i style ="float:right; "> Last updated 2024-05-16 13:54:05 </ i >
836
836
</ div > <!-- id="about" -->
837
837
</ div > <!-- id="container" -->
838
838
</ body >
Original file line number Diff line number Diff line change @@ -163,6 +163,12 @@ <h3>Releasing new versions:</h3>
163
163
< li > upload rock to luarocks: < code > luarocks upload rockspecs/[name] --api-key=abc</ code > </ li >
164
164
</ ul >
165
165
166
+ < h3 > 3.0.2 (16-May-2024)</ h3 >
167
+
168
+ < ul >
169
+ < li > Fix: avoid creating multiple timers to run the same active check < a href ="https://github.com/Kong/lua-resty-healthcheck/pull/157 "> #157</ a > </ li >
170
+ </ ul >
171
+
166
172
< h3 > 3.0.1 (22-Dec-2023)</ h3 >
167
173
168
174
< ul >
@@ -467,7 +473,7 @@ <h2>Copyright and License</h2>
467
473
</ div > <!-- id="main" -->
468
474
< div id ="about ">
469
475
< i > generated by < a href ="http://github.com/lunarmodules/LDoc "> LDoc 1.5.0</ a > </ i >
470
- < i style ="float:right; "> Last updated 2023-12-22 15:40:41 </ i >
476
+ < i style ="float:right; "> Last updated 2024-05-16 13:54:05 </ i >
471
477
</ div > <!-- id="about" -->
472
478
</ div > <!-- id="container" -->
473
479
</ body >
Original file line number Diff line number Diff line change
1
+ package = " lua-resty-healthcheck"
2
+ version = " 3.0.2-1"
3
+ source = {
4
+ url = " git+https://github.com/Kong/lua-resty-healthcheck.git" ,
5
+ tag = " 3.0.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
+ license = " Apache 2.0" ,
15
+ homepage = " https://github.com/Kong/lua-resty-healthcheck"
16
+ }
17
+ dependencies = {
18
+ " penlight >= 1.9.2" ,
19
+ " lua-resty-timer ~> 1" ,
20
+ }
21
+ build = {
22
+ type = " builtin" ,
23
+ modules = {
24
+ [" resty.healthcheck" ] = " lib/resty/healthcheck.lua" ,
25
+ }
26
+ }
You can’t perform that action at this time.
0 commit comments