From 09a672e0784c75231ceca51e0a4cb39313c020f5 Mon Sep 17 00:00:00 2001 From: Liu Wei Date: Mon, 9 Oct 2023 18:08:40 +0800 Subject: [PATCH] feat: release v3.2.0 (#42) --- ...ua-resty-healthcheck-api7-3.2.0-0.rockspec | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 rockspecs/lua-resty-healthcheck-api7-3.2.0-0.rockspec diff --git a/rockspecs/lua-resty-healthcheck-api7-3.2.0-0.rockspec b/rockspecs/lua-resty-healthcheck-api7-3.2.0-0.rockspec new file mode 100644 index 0000000..bb5bb4b --- /dev/null +++ b/rockspecs/lua-resty-healthcheck-api7-3.2.0-0.rockspec @@ -0,0 +1,28 @@ +package = "lua-resty-healthcheck-api7" +version = "3.2.0-0" +source = { + url = "git://github.com/api7/lua-resty-healthcheck", + branch = "v3.2.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. + ]], + homepage = "https://github.com/api7/lua-resty-healthcheck", + license = "Apache 2.0" +} + +dependencies = { + "penlight >= 1.9.2", + "lua-resty-timer ~> 1", +} +build = { + type = "builtin", + modules = { + ["resty.healthcheck"] = "lib/resty/healthcheck.lua", + } +}