From 1e7db29bb23f7c9773fb595fd5b1c96434947a54 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Enrique=20Garci=CC=81a=20Cota?= Date: Fri, 19 Mar 2021 12:47:06 +0100 Subject: [PATCH] release 1.3.0 --- CHANGELOG.md | 13 +++++++++++++ ....rockspec => kong-plugin-zipkin-1.3.0-1.rockspec | 6 +++--- kong/plugins/zipkin/handler.lua | 2 +- 3 files changed, 17 insertions(+), 4 deletions(-) rename kong-plugin-zipkin-1.2.0-1.rockspec => kong-plugin-zipkin-1.3.0-1.rockspec (87%) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6afb3b0..29846e5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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: diff --git a/kong-plugin-zipkin-1.2.0-1.rockspec b/kong-plugin-zipkin-1.3.0-1.rockspec similarity index 87% rename from kong-plugin-zipkin-1.2.0-1.rockspec rename to kong-plugin-zipkin-1.3.0-1.rockspec index 6519936..64f62cc 100644 --- a/kong-plugin-zipkin-1.2.0-1.rockspec +++ b/kong-plugin-zipkin-1.3.0-1.rockspec @@ -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 = { diff --git a/kong/plugins/zipkin/handler.lua b/kong/plugins/zipkin/handler.lua index 3d5110b..33c72f5 100644 --- a/kong/plugins/zipkin/handler.lua +++ b/kong/plugins/zipkin/handler.lua @@ -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,