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

Commit

Permalink
release 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kikito committed Nov 11, 2020
1 parent b3a9807 commit 4825b09
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
11 changes: 11 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
1.2.0 - 2020-11-11

New features:
- Static tags can now be added to the config. They will be added to the
request span (#84)
- New `default_header_type` config option (#93)

Non-breaking Changes:
- `http_endpoint` is now optional, making it possible to use the plugin
to exclusively adding/passing around tracing headers (#94)

1.1.0 - 2020-04-30

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

source = {
url = "https://github.com/kong/kong-plugin-zipkin/archive/v1.1.0.zip",
dir = "kong-plugin-zipkin-1.1.0",
url = "https://github.com/kong/kong-plugin-zipkin/archive/v1.2.0.zip",
dir = "kong-plugin-zipkin-1.2.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 @@ -8,7 +8,7 @@ local fmt = string.format
local rand_bytes = utils.get_rand_bytes

local ZipkinLogHandler = {
VERSION = "1.1.0",
VERSION = "1.2.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 4825b09

Please sign in to comment.