Skip to content
This repository was archived by the owner on Oct 3, 2023. It is now read-only.

Commit 40f7b53

Browse files
authored
Post Release: update CHANGELOG, examples and ReadMe (#465)
* Post Release: update CHANGELOG, examples and ReadMe * update CHANGELOG
1 parent a8ad77d commit 40f7b53

File tree

25 files changed

+43
-32
lines changed

25 files changed

+43
-32
lines changed

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file.
44

55
## Unreleased
66

7+
8+
9+
## 0.0.10 - 2019-04-03
710
- Add optional `compressedSize` and `uncompressedSize` params to `Span.addMessageEvent`
811
- Add support for ```tags```, ```status``` and ```annotation``` in Zipkin exporter.
912
- Add support for Binary propagation format.
@@ -22,9 +25,17 @@ All notable changes to this project will be documented in this file.
2225
- Enforce `--strictNullChecks` and `--noUnusedLocals` Compiler Options on [opencensus-exporter-jaeger] packages.
2326
- Add support for recording Exemplars.
2427
- Add `TagMetadata` that defines the properties associated with a `Tag`.
25-
- Add HTTP text format serializer to Tag propagation component.
28+
- Add HTTP/W3C text format serializer to Tag propagation component.
2629
- Enforce `--strictNullChecks` and `--noUnusedLocals` Compiler Options on [opencensus-core] package.
2730
- Please note that there is an API breaking change in methods `addMessageEvent()`. The field `id` is now number instead of string.
31+
- Add support for recording exemplars.
32+
- Add a NoRecord RootSpan and Span.
33+
- Add support for child span count.
34+
- Add [opencensus-instrumentation-ioredis] instrumentation plugin.
35+
- Make Stackdriver propagation module consistent with other propagations interface.
36+
- Add support for gRPC tags propagation.
37+
- Use ts-mocha to run tests.
38+
- Add `MetricOptions` to simplify all addXGauge.
2839

2940
## 0.0.9 - 2019-02-12
3041
- Add Metrics API.

examples/grpc/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121
},
2222
"dependencies": {
2323
"@grpc/proto-loader": "^0.4.0",
24-
"@opencensus/exporter-stackdriver": "^0.0.9",
25-
"@opencensus/instrumentation-grpc": "^0.0.9",
26-
"@opencensus/nodejs": "^0.0.9",
24+
"@opencensus/exporter-stackdriver": "^0.0.10",
25+
"@opencensus/instrumentation-grpc": "^0.0.10",
26+
"@opencensus/nodejs": "^0.0.10",
2727
"grpc": "^1.18.0"
2828
},
2929
"devDependencies": {

examples/http/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020
"fix": "semistandard --fix"
2121
},
2222
"dependencies": {
23-
"@opencensus/exporter-zipkin": "^0.0.9",
24-
"@opencensus/nodejs": "^0.0.9",
25-
"@opencensus/propagation-tracecontext": "^0.0.9",
23+
"@opencensus/exporter-zipkin": "^0.0.10",
24+
"@opencensus/nodejs": "^0.0.10",
25+
"@opencensus/propagation-tracecontext": "^0.0.10",
2626
"http": "*"
2727
},
2828
"devDependencies": {

examples/stats/exporter/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
"semistandard": "^13.0.1"
2727
},
2828
"dependencies": {
29-
"@opencensus/core": "^0.0.9",
30-
"@opencensus/exporter-prometheus": "^0.0.9",
31-
"@opencensus/exporter-stackdriver": "^0.0.9"
29+
"@opencensus/core": "^0.0.10",
30+
"@opencensus/exporter-prometheus": "^0.0.10",
31+
"@opencensus/exporter-stackdriver": "^0.0.10"
3232
}
3333
}

examples/stats/web_client_monitoring/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
"lint": "npm run lint"
1515
},
1616
"dependencies": {
17-
"@opencensus/core": "0.0.9",
18-
"@opencensus/exporter-stackdriver": "0.0.9",
17+
"@opencensus/core": "0.0.10",
18+
"@opencensus/exporter-stackdriver": "0.0.10",
1919
"express": "^4.16.3"
2020
}
2121
}

packages/opencensus-exporter-instana/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ OpenCensus Instana Trace Exporter allows the user to send collected traces with
66
[Instana](http://www.instana.com/) is a distributed
77
tracing system. Instana provides AI Powered Application and Infrastructure Monitoring, allowing you to deliver Faster With Confidence, and automatic Analysis and Optimization.
88

9-
This project is still at an early stage of development. It's subject to change.
9+
The library is in alpha stage and the API is subject to change.
1010

1111
## Installation
1212

packages/opencensus-exporter-jaeger/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ OpenCensus Jaeger Trace Exporter allows the user to send collected traces with [
1111
- Service dependency analysis
1212
- Performance / latency optimization
1313

14-
This project is still at an early stage of development. It's subject to change.
14+
The library is in alpha stage and the API is subject to change.
1515

1616
## Quickstart
1717

packages/opencensus-exporter-ocagent/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
OpenCensus Agent Exporter allows the user to send collected traces with OpenCensus Node.js to the OpenCensus Agent or Collector.
55

6-
This project is still at an early stage of development, it's subject to change.
6+
The library is in alpha stage and the API is subject to change.
77

88
## Installation
99

packages/opencensus-exporter-prometheus/src/prometheus-stats.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export class PrometheusStatsExporter implements StatsEventListener {
3939
static readonly DEFAULT_OPTIONS = {
4040
port: 9464,
4141
startServer: false,
42-
contentType: 'text/plain; text/plain; version=0.0.9; charset=utf-8',
42+
contentType: 'text/plain; text/plain; version=0.0.10; charset=utf-8',
4343
prefix: ''
4444
};
4545

packages/opencensus-exporter-stackdriver/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
OpenCensus Stackdriver Exporter allows the user to send collected traces with [OpenCensus Node.js](https://github.com/census-instrumentation/opencensus-node) and stats with [OpenCensus Core](https://github.com/census-instrumentation/opencensus-core) to Stackdriver Cloud Tracing and Stackdriver Monitoring.
55

6-
This project is still at an early stage of development. It's subject to change.
6+
The library is in alpha stage and the API is subject to change.
77

88
# OpenCensus Stackdriver Trace Exporter
99
## Installation

0 commit comments

Comments
 (0)