From 29146f8149ac693594445018f07a1064799f7b2a Mon Sep 17 00:00:00 2001 From: leslie Date: Fri, 1 Sep 2023 09:58:32 +0800 Subject: [PATCH] feat: release v3.0.1 (#34) --- ...ua-resty-healthcheck-api7-3.0.1-0.rockspec | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 rockspecs/lua-resty-healthcheck-api7-3.0.1-0.rockspec diff --git a/rockspecs/lua-resty-healthcheck-api7-3.0.1-0.rockspec b/rockspecs/lua-resty-healthcheck-api7-3.0.1-0.rockspec new file mode 100644 index 0000000..e5fc102 --- /dev/null +++ b/rockspecs/lua-resty-healthcheck-api7-3.0.1-0.rockspec @@ -0,0 +1,29 @@ +package = "lua-resty-healthcheck-api7" +version = "3.0.1-0" +source = { + url = "git://github.com/api7/lua-resty-healthcheck", + branch = "v3.0.1", +} + +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", + "penlight ~> 1.7", + "lua-resty-timer ~> 1" +} +build = { + type = "builtin", + modules = { + ["resty.healthcheck"] = "lib/resty/healthcheck.lua", + } +}