diff --git a/CHANGELOG.md b/CHANGELOG.md index d0493a7ebe75..196f12a88108 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1 +1,15 @@ -nothing here yet \ No newline at end of file +# Table of Contents + +- [0.1.1](#011---20101212) +- [0.1.0](#010---20101212) + +## [0.1.1] - 2019/12/12 + +- Remove BasePlugin dependency. + +## [0.1.0] - 2019/12/12 + +- Initial release of ACME plugin for Kong. + +[0.1.1]: https://github.com/Kong/kong-plugin-prometheus/compare/0.1.1...0.1.0 +[0.1.0]: https://github.com/Kong/kong-plugin-acme/commit/8b250b72218a350b71723670005c3c355e5d73b4 \ No newline at end of file diff --git a/kong-plugin-acme-0.1.1-1.rockspec b/kong-plugin-acme-0.1.1-1.rockspec new file mode 100644 index 000000000000..f7760bb7085a --- /dev/null +++ b/kong-plugin-acme-0.1.1-1.rockspec @@ -0,0 +1,26 @@ +package = "kong-plugin-acme" +version = "0.1.1-1" +source = { + url = "git+https://github.com/Kong/kong-plugin-acme.git" +} +description = { + homepage = "https://github.com/Kong/kong-plugin-acme", + summary = "Let's Encrypt integration with Kong", + license = "Apache 2.0", +} +build = { + type = "builtin", + modules = { + ["kong.plugins.acme.client"] = "kong/plugins/acme/client.lua", + ["kong.plugins.acme.daos"] = "kong/plugins/acme/daos.lua", + ["kong.plugins.acme.handler"] = "kong/plugins/acme/handler.lua", + ["kong.plugins.acme.migrations.000_base_acme"] = "kong/plugins/acme/migrations/000_base_acme.lua", + ["kong.plugins.acme.migrations.init"] = "kong/plugins/acme/migrations/init.lua", + ["kong.plugins.acme.schema"] = "kong/plugins/acme/schema.lua", + ["kong.plugins.acme.storage.kong"] = "kong/plugins/acme/storage/kong.lua" + } +} +dependencies = { + --"kong >= 1.2.0", + "lua-resty-acme >= 0.4.0" +} diff --git a/kong/plugins/acme/handler.lua b/kong/plugins/acme/handler.lua index 1b4d2cc4a4d7..4de8d704d389 100644 --- a/kong/plugins/acme/handler.lua +++ b/kong/plugins/acme/handler.lua @@ -15,7 +15,7 @@ local default_cert_key local LetsencryptHandler = {} LetsencryptHandler.PRIORITY = 1000 -LetsencryptHandler.VERSION = "0.1.0" +LetsencryptHandler.VERSION = "0.1.1" function LetsencryptHandler:init_worker() kong.log.info("acme renew timer started")