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

Commit 1e7db29

Browse files
kikitogszr
authored andcommitted
release 1.3.0
1 parent 6883076 commit 1e7db29

File tree

3 files changed

+17
-4
lines changed

3 files changed

+17
-4
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
1.3.0 - 2021-03-19
2+
3+
New features:
4+
- Support for Jaeger style uber-trace-id headers (#101), thanks @nvx!
5+
- Support for OT headers (#103), thanks @ishg!
6+
- Allow insertion of custom tags on the Zipkin request trace (#102)
7+
8+
Fixes:
9+
- The w3c parsing function was returning a non-used extra value, and it now early-exits (#100), thanks @nvx!
10+
- Creation of baggage items on child spans is now possible (#98), thanks @Asafb26!
11+
- Fixed a bug in which span timestamping could sometimes raise an error (#105), thanks @Asafb26!
12+
13+
114
1.2.0 - 2020-11-11
215

316
New features:

kong-plugin-zipkin-1.2.0-1.rockspec renamed to kong-plugin-zipkin-1.3.0-1.rockspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package = "kong-plugin-zipkin"
2-
version = "1.2.0-1"
2+
version = "1.3.0-1"
33

44
source = {
5-
url = "https://github.com/kong/kong-plugin-zipkin/archive/v1.2.0.zip",
6-
dir = "kong-plugin-zipkin-1.2.0",
5+
url = "https://github.com/kong/kong-plugin-zipkin/archive/v1.3.0.zip",
6+
dir = "kong-plugin-zipkin-1.3.0",
77
}
88

99
description = {

kong/plugins/zipkin/handler.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ local fmt = string.format
1010
local rand_bytes = utils.get_rand_bytes
1111

1212
local ZipkinLogHandler = {
13-
VERSION = "1.2.0",
13+
VERSION = "1.3.0",
1414
-- We want to run first so that timestamps taken are at start of the phase
1515
-- also so that other plugins might be able to use our structures
1616
PRIORITY = 100000,

0 commit comments

Comments
 (0)