Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release 1.6.5 #158

Merged
merged 1 commit into from
May 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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",
}
}
Loading