From 2b1c6a86c5ea210bef241da0f90e1937f4a42de5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Enrique=20Garc=C3=ADa=20Cota?= Date: Tue, 15 Jun 2021 18:04:14 +0200 Subject: [PATCH] release/1.4.0 (#118) --- CHANGELOG.md | 8 ++++++++ ....3.0-1.rockspec => kong-plugin-zipkin-1.4.0-1.rockspec | 6 +++--- kong/plugins/zipkin/handler.lua | 2 +- 3 files changed, 12 insertions(+), 4 deletions(-) rename kong-plugin-zipkin-1.3.0-1.rockspec => kong-plugin-zipkin-1.4.0-1.rockspec (87%) diff --git a/CHANGELOG.md b/CHANGELOG.md index 29846e5fa9d..24135c672d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +1.4.0 - 2021-06-15 + +New features: + - service.name and route.name tags (#115) + +Fixes: + - balancer_latency is nil upon failure (#113), thanks @greut! + 1.3.0 - 2021-03-19 New features: diff --git a/kong-plugin-zipkin-1.3.0-1.rockspec b/kong-plugin-zipkin-1.4.0-1.rockspec similarity index 87% rename from kong-plugin-zipkin-1.3.0-1.rockspec rename to kong-plugin-zipkin-1.4.0-1.rockspec index 64f62cc55ab..cfcf6a894aa 100644 --- a/kong-plugin-zipkin-1.3.0-1.rockspec +++ b/kong-plugin-zipkin-1.4.0-1.rockspec @@ -1,9 +1,9 @@ package = "kong-plugin-zipkin" -version = "1.3.0-1" +version = "1.4.0-1" source = { - url = "https://github.com/kong/kong-plugin-zipkin/archive/v1.3.0.zip", - dir = "kong-plugin-zipkin-1.3.0", + url = "https://github.com/kong/kong-plugin-zipkin/archive/v1.4.0.zip", + dir = "kong-plugin-zipkin-1.4.0", } description = { diff --git a/kong/plugins/zipkin/handler.lua b/kong/plugins/zipkin/handler.lua index 0bf061dea7d..7426f2a60ff 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.3.0", + VERSION = "1.4.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,