This repository was archived by the owner on Nov 30, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +11
-7
lines changed Expand file tree Collapse file tree 4 files changed +11
-7
lines changed Original file line number Diff line number Diff line change 1
- UNRELEASED
1
+ 0.1.3 - 2019-08-16
2
2
3
3
- 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)
4
8
5
9
6
10
0.1.2 - 2019-01-18
Original file line number Diff line number Diff line change 1
1
package = " kong-plugin-zipkin"
2
- version = " scm -0"
2
+ version = " 0.1.3 -0"
3
3
4
4
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" ;
6
7
}
7
8
8
9
description = {
@@ -15,8 +16,7 @@ dependencies = {
15
16
" lua >= 5.1" ;
16
17
" lua-cjson" ;
17
18
" lua-resty-http >= 0.11" ;
18
- " kong >= 0.15" ;
19
- " opentracing >= 0.0.2" ;
19
+ " opentracing == 0.0.2" ;
20
20
}
21
21
22
22
build = {
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ local OpenTracingHandler = require "kong.plugins.zipkin.opentracing"
6
6
7
7
-- Zipkin plugin derives from general opentracing one
8
8
local ZipkinLogHandler = OpenTracingHandler :extend ()
9
- ZipkinLogHandler .VERSION = " scm "
9
+ ZipkinLogHandler .VERSION = " 0.1.3 "
10
10
11
11
function ZipkinLogHandler .new_tracer (conf )
12
12
local tracer = new_tracer (new_zipkin_reporter (conf ), new_random_sampler (conf ))
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ local BasePlugin = require "kong.plugins.base_plugin"
11
11
local subsystem = ngx .config .subsystem
12
12
13
13
local OpenTracingHandler = BasePlugin :extend ()
14
- OpenTracingHandler .VERSION = " scm "
14
+ OpenTracingHandler .VERSION = " 0.1.3 "
15
15
16
16
-- We want to run first so that timestamps taken are at start of the phase
17
17
-- also so that other plugins might be able to use our structures
You can’t perform that action at this time.
0 commit comments