Skip to content

Commit

Permalink
release 1.6.5 (#158)
Browse files Browse the repository at this point in the history
  • Loading branch information
windmgc committed May 16, 2024
1 parent fca7ad2 commit 6301594
Show file tree
Hide file tree
Showing 4 changed files with 38 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 @@ -832,7 +832,7 @@ <h3>Returns:</h3>
</div> <!-- id="main" -->
<div id="about">
<i>generated by <a href="http://github.com/lunarmodules/LDoc">LDoc 1.5.0</a></i>
<i style="float:right;">Last updated 2023-12-27 15:06:12 </i>
<i style="float:right;">Last updated 2024-05-15 16:59:23 </i>
</div> <!-- id="about" -->
</div> <!-- id="container" -->
</body>
Expand Down
8 changes: 7 additions & 1 deletion docs/topics/readme.md.html
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,12 @@ <h2>History</h2>

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

<h3>1.6.5 (15-May-2024)</h3>

<ul>
<li>Fix: avoid creating multiple timers to run the same active check <a href="https://github.com/Kong/lua-resty-healthcheck/pull/156">#156</a></li>
</ul>

<h3>1.6.4 (22-Dec-2023)</h3>

<ul>
Expand Down Expand Up @@ -388,7 +394,7 @@ <h2>Copyright and License</h2>
</div> <!-- id="main" -->
<div id="about">
<i>generated by <a href="http://github.com/lunarmodules/LDoc">LDoc 1.5.0</a></i>
<i style="float:right;">Last updated 2023-12-27 15:06:12 </i>
<i style="float:right;">Last updated 2024-05-15 16:59:23 </i>
</div> <!-- id="about" -->
</div> <!-- id="container" -->
</body>
Expand Down
4 changes: 4 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,10 @@ for the complete API.

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

### 1.6.5 (15-May-2024)

* Fix: avoid creating multiple timers to run the same active check [#156](https://github.com/Kong/lua-resty-healthcheck/pull/156)

### 1.6.4 (22-Dec-2023)

* Fix: fix delay clean logic when multiple healthchecker was started [#146](https://github.com/Kong/lua-resty-healthcheck/pull/146)
Expand Down
26 changes: 26 additions & 0 deletions rockspecs/lua-resty-healthcheck-1.6.5-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
package = "lua-resty-healthcheck"
version = "1.6.5-1"
source = {
url = "git+https://github.com/Kong/lua-resty-healthcheck.git",
tag = "1.6.5"
}
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.
]],
license = "Apache 2.0",
homepage = "https://github.com/Kong/lua-resty-healthcheck"
}
dependencies = {
"penlight >= 1.9.2",
"lua-resty-timer ~> 1",
}
build = {
type = "builtin",
modules = {
["resty.healthcheck"] = "lib/resty/healthcheck.lua",
}
}

0 comments on commit 6301594

Please sign in to comment.