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.0 #110

Merged
merged 4 commits into from
Jun 27, 2022
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 @@ -763,7 +763,7 @@ <h3>Returns:</h3>
</div> <!-- id="main" -->
<div id="about">
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc 1.4.6</a></i>
<i style="float:right;">Last updated 2022-03-23 17:29:48 </i>
<i style="float:right;">Last updated 2022-06-27 09:48:03 </i>
</div> <!-- id="about" -->
</div> <!-- id="container" -->
</body>
Expand Down
30 changes: 27 additions & 3 deletions docs/topics/readme.md.html
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,10 @@ <h2>Modules</h2>

<h1>lua-resty-healthcheck</h1>

<p><a href="https://travis-ci.org/Kong/lua-resty-healthcheck/branches"><img src="https://travis-ci.org/Kong/lua-resty-healthcheck.svg?branch=master" alt="Build Status"/></a></p>
<p><img src="https://img.shields.io/luarocks/v/kong/lua-resty-healthcheck/1.5.1-1?style=flat-square" alt="legacy version"/>
<img src="https://github.com/Kong/lua-resty-healthcheck/actions/workflows/latest_os.yml/badge.svg?branch=release/1.5.x" alt="Release 1.5.x"/>
<img src="https://img.shields.io/badge/License-Apache%202.0-blue?style=flat-square" alt="License"/>
<img src="https://img.shields.io/twitter/follow/thekonginc?style=social" alt="Twitter Follow"/></p>

<p>A health check library for OpenResty.</p>

Expand Down Expand Up @@ -145,6 +148,20 @@ <h2>History</h2>

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

<h3>1.6.0 (27-Jun-2022)</h3>

<ul>
<li>Introduce support to <a href="https://github.com/Kong/lua-resty-events">lua-resty-events</a>
module in addition to <a href="https://github.com/Kong/lua-resty-worker-events">lua-resty-worker-events</a>
support. With this addition, the lua-resty-healthcheck luarocks package does
not require a specific event-sharing module anymore, but you are still
required to provide either lua-resty-worker-events or lua-resty-events.
<a href="https://github.com/Kong/lua-resty-healthcheck/pull/105">#105</a></li>
<li>If available, lua-resty-healthcheck now uses <code>string.buffer</code>, the new LuaJIT's
serialization API. If it is unavailable, lua-resty-healthcheck fallbacks to
cjson. <a href="https://github.com/Kong/lua-resty-healthcheck/pull/109">#109</a></li>
</ul>

<h3>1.5.1 (23-Mar-2022)</h3>

<ul>
Expand All @@ -163,6 +180,13 @@ <h3>1.5.0 (09-Feb-2022)</h3>
<a href="https://github.com/Kong/lua-resty-healthcheck/pull/88">#88</a></li>
</ul>

<h3>1.4.3 (31-Mar-2022)</h3>

<ul>
<li>Fix: avoid breaking active health checks when adding or removing targets.
<a href="https://github.com/Kong/lua-resty-healthcheck/pull/100">#100</a></li>
</ul>

<h3>1.4.2 (29-Jun-2021)</h3>

<ul>
Expand Down Expand Up @@ -306,7 +330,7 @@ <h3>0.1.0 (27-Nov-2017) Initial release</h3>
<p><a name="Copyright_and_License"></a></p>
<h2>Copyright and License</h2>

<pre><code> Copyright 2017-2021 Kong Inc.
<pre><code> Copyright 2017-2022 Kong Inc.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand All @@ -328,7 +352,7 @@ <h2>Copyright and License</h2>
</div> <!-- id="main" -->
<div id="about">
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc 1.4.6</a></i>
<i style="float:right;">Last updated 2022-03-23 17:29:48 </i>
<i style="float:right;">Last updated 2022-06-27 09:48:03 </i>
</div> <!-- id="about" -->
</div> <!-- id="container" -->
</body>
Expand Down
2 changes: 1 addition & 1 deletion lua-resty-healthcheck-scm-1.rockspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package = "lua-resty-healthcheck"
version = "scm-1"
source = {
url = "git://github.com/kong/lua-resty-healthcheck",
url = "git://github.com/Kong/lua-resty-healthcheck",
}
description = {
summary = "Healthchecks for OpenResty to check upstream service status",
Expand Down
12 changes: 12 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,18 @@ for the complete API.

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

### 1.6.0 (27-Jun-2022)

* Introduce support to [lua-resty-events](https://github.com/Kong/lua-resty-events)
module in addition to [lua-resty-worker-events](https://github.com/Kong/lua-resty-worker-events)
support. With this addition, the lua-resty-healthcheck luarocks package does
not require a specific event-sharing module anymore, but you are still
required to provide either lua-resty-worker-events or lua-resty-events.
[#105](https://github.com/Kong/lua-resty-healthcheck/pull/105)
* If available, lua-resty-healthcheck now uses `string.buffer`, the new LuaJIT's
serialization API. If it is unavailable, lua-resty-healthcheck fallbacks to
cjson. [#109](https://github.com/Kong/lua-resty-healthcheck/pull/109)

### 1.5.1 (23-Mar-2022)

* Fix: avoid breaking active health checks when adding or removing targets.
Expand Down
26 changes: 26 additions & 0 deletions rockspecs/lua-resty-healthcheck-1.6.0-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
package = "lua-resty-healthcheck"
version = "1.6.0-1"
source = {
url = "https://github.com/Kong/lua-resty-healthcheck/archive/1.6.0.tar.gz",
dir = "lua-resty-healthcheck-1.6.0"
}
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",
}
}