You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by wu...@apache.org on 2022/01/03 12:12:04 UTC

[skywalking-kong] branch master updated: Draft new version 0.2.0 (#16)

This is an automated email from the ASF dual-hosted git repository.

wusheng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/skywalking-kong.git


The following commit(s) were added to refs/heads/master by this push:
     new 250f07f  Draft new version 0.2.0 (#16)
250f07f is described below

commit 250f07fb495e7fa0778583414ad705478e15c508
Author: Daming <zt...@foxmail.com>
AuthorDate: Mon Jan 3 20:11:52 2022 +0800

    Draft new version 0.2.0 (#16)
---
 CHANGES.md                                |  4 ++++
 rockspec/kong-skywalking-0.2.0-0.rockspec | 24 ++++++++++++++++++++++++
 2 files changed, 28 insertions(+)

diff --git a/CHANGES.md b/CHANGES.md
index 8f9d1a4..9e45f58 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,5 +1,9 @@
 # Changes
 
+## 0.2.0
+
+1. Upgrade SkyWalking Nginx Lua version to v0.6.0
+
 ## 0.1.1
 
 1. Fix .rockspec issue.
diff --git a/rockspec/kong-skywalking-0.2.0-0.rockspec b/rockspec/kong-skywalking-0.2.0-0.rockspec
new file mode 100644
index 0000000..6329ea1
--- /dev/null
+++ b/rockspec/kong-skywalking-0.2.0-0.rockspec
@@ -0,0 +1,24 @@
+package = "kong-skywalking"
+version = "0.2.0-0"
+source = {
+   url = "git://github.com/apache/skywalking-kong",
+   branch = "v0.2.0",
+}
+
+description = {
+   summary = "The Kong agent for Apache SkyWalking",
+   homepage = "https://github.com/apache/skywalking-kong",
+   license = "Apache License 2.0"
+}
+
+dependencies = {
+   "skywalking-nginx-lua >= 0.6.0"
+}
+
+build = {
+   type = "builtin",
+   modules = {
+      ["kong.plugins.skywalking.handler"] = "kong/plugins/skywalking/handler.lua",
+      ["kong.plugins.skywalking.schema"] = "kong/plugins/skywalking/schema.lua"
+   }
+}