From 5b7a2e88a07aad8e876f73b2d591f9d5b0c203e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=BD=97=E6=B3=BD=E8=BD=A9?= Date: Thu, 29 Dec 2022 18:01:55 +0800 Subject: [PATCH] feat: release v2.2.2 (#13) Signed-off-by: spacewander Signed-off-by: spacewander --- ...ua-resty-healthcheck-api7-2.2.2-0.rockspec | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 rockspecs/lua-resty-healthcheck-api7-2.2.2-0.rockspec diff --git a/rockspecs/lua-resty-healthcheck-api7-2.2.2-0.rockspec b/rockspecs/lua-resty-healthcheck-api7-2.2.2-0.rockspec new file mode 100644 index 00000000..7ff2c022 --- /dev/null +++ b/rockspecs/lua-resty-healthcheck-api7-2.2.2-0.rockspec @@ -0,0 +1,28 @@ +package = "lua-resty-healthcheck-api7" +version = "2.2.2-0" +source = { + url = "git://github.com/api7/lua-resty-healthcheck", + tag = "v2.2.2" +} + +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 = { + "lua-resty-worker-events = 1.0.0" +} +build = { + type = "builtin", + modules = { + ["resty.healthcheck"] = "lib/resty/healthcheck.lua", + ["resty.healthcheck.utils"] = "lib/resty/healthcheck/utils.lua" + } +}