Skip to content
This repository was archived by the owner on Sep 13, 2022. It is now read-only.

Commit 49a4cf0

Browse files
authored
Prepare release 3.19.0 (#540)
1 parent 8aca762 commit 49a4cf0

File tree

3 files changed

+19
-11
lines changed

3 files changed

+19
-11
lines changed

.vscode/tasks.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
2-
"version": "0.1.0",
2+
"version": "2.0.0",
33
"command": "bash",
4-
"isShellCommand": true,
5-
"showOutput": "always",
64
"args": ["-c"],
75
"tasks": [
86
{
9-
"taskName": "build-node",
10-
"suppressTaskName": true,
11-
"isBuildCommand": true,
12-
"args": ["make build-node"]
7+
"label": "build-node",
8+
"type": "shell",
9+
"command": "bash",
10+
"args": ["-c", "make build-node"],
11+
"problemMatcher": [],
12+
"group": "build"
1313
}
1414
]
1515
}

CHANGELOG.md

+11-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,16 @@
11
# Changes by Version
22

3-
## 3.18.2 (unreleased)
4-
5-
* Nothing yet.
3+
## 3.19.0 (2021-10-31)
4+
5+
* Simplify bundling udp_sender (#530) -- Thorsten Nadel
6+
* Add sampling path for tracer sampler config (#532) (#533) -- 飞雪无情
7+
* Bump opentracing from 0.14.4 to 0.14.5 (#487) -- dependabot
8+
* Update uuid package to latest stable version (#516) -- Manuel Alejandro de Brito Fontes
9+
* Allow configuring http client timeout (#465) -- Yuri Shkuro
10+
* Report HTTP errors when flushing spans (#459) -- Espen Hovlandsdal
11+
* Fix env parsing of falsy values (#462) -- Gerrit-K
12+
* Stop testing with Node <v10; upgrade tchannel->4.x (#463) -- Yuri Shkuro
13+
* Upgrade xorshift@^1.1.1 (#442) -- Oliver Salzburg
614

715
## 3.18.1 (2020-08-14)
816

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jaeger-client",
3-
"version": "3.18.2dev",
3+
"version": "3.19.0",
44
"description": "Jaeger binding for OpenTracing API for Node.js",
55
"engines": {
66
"node": ">=10"

0 commit comments

Comments
 (0)