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

Commit

Permalink
Release v0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
bungle committed Aug 16, 2019
1 parent 6c017ed commit df53728
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
6 changes: 5 additions & 1 deletion NEWS
@@ -1,6 +1,10 @@
UNRELEASED
0.1.3 - 2019-08-16

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


0.1.2 - 2019-01-18
Expand Down
@@ -1,8 +1,9 @@
package = "kong-plugin-zipkin"
version = "scm-0"
version = "0.1.3-0"

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

description = {
Expand All @@ -15,8 +16,7 @@ dependencies = {
"lua >= 5.1";
"lua-cjson";
"lua-resty-http >= 0.11";
"kong >= 0.15";
"opentracing >= 0.0.2";
"opentracing == 0.0.2";
}

build = {
Expand Down
2 changes: 1 addition & 1 deletion kong/plugins/zipkin/handler.lua
Expand Up @@ -6,7 +6,7 @@ local OpenTracingHandler = require "kong.plugins.zipkin.opentracing"

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

function ZipkinLogHandler.new_tracer(conf)
local tracer = new_tracer(new_zipkin_reporter(conf), new_random_sampler(conf))
Expand Down
2 changes: 1 addition & 1 deletion kong/plugins/zipkin/opentracing.lua
Expand Up @@ -11,7 +11,7 @@ local BasePlugin = require "kong.plugins.base_plugin"
local subsystem = ngx.config.subsystem

local OpenTracingHandler = BasePlugin:extend()
OpenTracingHandler.VERSION = "scm"
OpenTracingHandler.VERSION = "0.1.3"

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

0 comments on commit df53728

Please sign in to comment.