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

Commit

Permalink
release 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kikito authored and gszr committed Mar 22, 2021
1 parent 6883076 commit 1e7db29
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 4 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
1.3.0 - 2021-03-19

New features:
- Support for Jaeger style uber-trace-id headers (#101), thanks @nvx!
- Support for OT headers (#103), thanks @ishg!
- Allow insertion of custom tags on the Zipkin request trace (#102)

Fixes:
- The w3c parsing function was returning a non-used extra value, and it now early-exits (#100), thanks @nvx!
- Creation of baggage items on child spans is now possible (#98), thanks @Asafb26!
- Fixed a bug in which span timestamping could sometimes raise an error (#105), thanks @Asafb26!


1.2.0 - 2020-11-11

New features:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package = "kong-plugin-zipkin"
version = "1.2.0-1"
version = "1.3.0-1"

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

description = {
Expand Down
2 changes: 1 addition & 1 deletion kong/plugins/zipkin/handler.lua
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ local fmt = string.format
local rand_bytes = utils.get_rand_bytes

local ZipkinLogHandler = {
VERSION = "1.2.0",
VERSION = "1.3.0",
-- 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
PRIORITY = 100000,
Expand Down

0 comments on commit 1e7db29

Please sign in to comment.