Skip to content
This repository was archived by the owner on Nov 30, 2021. It is now read-only.

Commit df53728

Browse files
committed
Release v0.1.3
1 parent 6c017ed commit df53728

File tree

4 files changed

+11
-7
lines changed

4 files changed

+11
-7
lines changed

NEWS

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
1-
UNRELEASED
1+
0.1.3 - 2019-08-16
22

33
- Add support for stream subsystem (#30)
4+
- Made sending credential optional with a new configuration
5+
parameter `include_credential` (#37)
6+
- Add possibility to override unknown service name with a new
7+
configuration parameter `default_service_name` (#45)
48

59

610
0.1.2 - 2019-01-18

kong-plugin-zipkin-scm-0.rockspec renamed to kong-plugin-zipkin-0.1.3-0.rockspec

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
package = "kong-plugin-zipkin"
2-
version = "scm-0"
2+
version = "0.1.3-0"
33

44
source = {
5-
url = "git+https://github.com/kong/kong-plugin-zipkin.git";
5+
url = "https://github.com/kong/kong-plugin-zipkin/archive/v0.1.3.zip";
6+
dir = "kong-plugin-zipkin-0.1.3";
67
}
78

89
description = {
@@ -15,8 +16,7 @@ dependencies = {
1516
"lua >= 5.1";
1617
"lua-cjson";
1718
"lua-resty-http >= 0.11";
18-
"kong >= 0.15";
19-
"opentracing >= 0.0.2";
19+
"opentracing == 0.0.2";
2020
}
2121

2222
build = {

kong/plugins/zipkin/handler.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ local OpenTracingHandler = require "kong.plugins.zipkin.opentracing"
66

77
-- Zipkin plugin derives from general opentracing one
88
local ZipkinLogHandler = OpenTracingHandler:extend()
9-
ZipkinLogHandler.VERSION = "scm"
9+
ZipkinLogHandler.VERSION = "0.1.3"
1010

1111
function ZipkinLogHandler.new_tracer(conf)
1212
local tracer = new_tracer(new_zipkin_reporter(conf), new_random_sampler(conf))

kong/plugins/zipkin/opentracing.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ local BasePlugin = require "kong.plugins.base_plugin"
1111
local subsystem = ngx.config.subsystem
1212

1313
local OpenTracingHandler = BasePlugin:extend()
14-
OpenTracingHandler.VERSION = "scm"
14+
OpenTracingHandler.VERSION = "0.1.3"
1515

1616
-- We want to run first so that timestamps taken are at start of the phase
1717
-- also so that other plugins might be able to use our structures

0 commit comments

Comments
 (0)