Skip to content

Commit 2a0c14f

Browse files
authored
Release 3.1.2 (#177)
Signed-off-by: Walker Zhao <walker.zhao@konghq.com>
1 parent 792aba2 commit 2a0c14f

File tree

4 files changed

+40
-2
lines changed

4 files changed

+40
-2
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,11 @@ Versioning is strictly based on [Semantic Versioning](https://semver.org/)
103103
* push commit and tag
104104
* upload rock to luarocks: `luarocks upload rockspecs/[name] --api-key=abc`
105105

106+
### 3.1.2 (09-Apr-2026)
107+
108+
* Fix(active-checks): use HTTP/1.1 for health check probes with automatic version negotiation
109+
[#176](https://github.com/Kong/lua-resty-healthcheck/pull/176)
110+
106111
### 3.1.1 (19-Nov-2025)
107112

108113
* Fix: change default headers to empty table instead of an array to remove deprecation notice [#174](https://github.com/Kong/lua-resty-healthcheck/pull/174)

docs/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -832,7 +832,7 @@ <h3>Returns:</h3>
832832
</div> <!-- id="main" -->
833833
<div id="about">
834834
<i>generated by <a href="http://github.com/lunarmodules/LDoc">LDoc 1.5.0</a></i>
835-
<i style="float:right;">Last updated 2025-11-19 15:24:06 </i>
835+
<i style="float:right;">Last updated 2026-04-09 10:29:02 </i>
836836
</div> <!-- id="about" -->
837837
</div> <!-- id="container" -->
838838
</body>

docs/topics/README.md.html

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,13 @@ <h3>Releasing new versions:</h3>
163163
<li>upload rock to luarocks: <code>luarocks upload rockspecs/[name] --api-key=abc</code></li>
164164
</ul>
165165

166+
<h3>3.1.2 (09-Apr-2026)</h3>
167+
168+
<ul>
169+
<li>Fix(active-checks): use HTTP/1.1 for health check probes with automatic version negotiation
170+
<a href="https://github.com/Kong/lua-resty-healthcheck/pull/176">#176</a></li>
171+
</ul>
172+
166173
<h3>3.1.1 (19-Nov-2025)</h3>
167174

168175
<ul>
@@ -486,7 +493,7 @@ <h2>Copyright and License</h2>
486493
</div> <!-- id="main" -->
487494
<div id="about">
488495
<i>generated by <a href="http://github.com/lunarmodules/LDoc">LDoc 1.5.0</a></i>
489-
<i style="float:right;">Last updated 2025-11-19 15:24:06 </i>
496+
<i style="float:right;">Last updated 2026-04-09 10:29:02 </i>
490497
</div> <!-- id="about" -->
491498
</div> <!-- id="container" -->
492499
</body>
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
package = "lua-resty-healthcheck"
2+
version = "3.1.2-1"
3+
source = {
4+
url = "git+https://github.com/Kong/lua-resty-healthcheck.git",
5+
tag = "3.1.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+
}

0 commit comments

Comments
 (0)