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

Commit fbc618b

Browse files
authored
Post Release: update CHANGELOG and Examples (#479)
* Post Release: update CHANGELOG and Examples * Minor fix
1 parent c4b51c2 commit fbc618b

6 files changed

Lines changed: 18 additions & 12 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,14 @@ All notable changes to this project will be documented in this file.
44

55
## Unreleased
66

7+
8+
## 0.0.11 - 2019-04-08
79
- Gauge: Add support for constant labels.
810
- Add support for Opencensus Span links to Thrift Span references.
11+
- Add Redis and IORedis instrumentation plugins by default.
12+
- Fix(deps): update dependency googleapis to v39.
13+
- Fix error in Opencensus to stackdriver translation (compressedSize -> compressedSizeBytes and uncompressedSize -> uncompressedSizeBytes)
14+
- Remove createScopedRequired usage.
915

1016
## 0.0.10 - 2019-04-03
1117
- Add optional `compressedSize` and `uncompressedSize` params to `Span.addMessageEvent`

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.10",
25-
"@opencensus/instrumentation-grpc": "^0.0.10",
26-
"@opencensus/nodejs": "^0.0.10",
24+
"@opencensus/exporter-stackdriver": "^0.0.11",
25+
"@opencensus/instrumentation-grpc": "^0.0.11",
26+
"@opencensus/nodejs": "^0.0.11",
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.10",
24-
"@opencensus/nodejs": "^0.0.10",
25-
"@opencensus/propagation-tracecontext": "^0.0.10",
23+
"@opencensus/exporter-zipkin": "^0.0.11",
24+
"@opencensus/nodejs": "^0.0.11",
25+
"@opencensus/propagation-tracecontext": "^0.0.11",
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.10",
30-
"@opencensus/exporter-prometheus": "^0.0.10",
31-
"@opencensus/exporter-stackdriver": "^0.0.10"
29+
"@opencensus/core": "^0.0.11",
30+
"@opencensus/exporter-prometheus": "^0.0.11",
31+
"@opencensus/exporter-stackdriver": "^0.0.11"
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.10",
18-
"@opencensus/exporter-stackdriver": "0.0.10",
17+
"@opencensus/core": "0.0.11",
18+
"@opencensus/exporter-stackdriver": "0.0.11",
1919
"express": "^4.16.3"
2020
}
2121
}

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.10; charset=utf-8',
42+
contentType: 'text/plain; text/plain; version=0.0.11; charset=utf-8',
4343
prefix: ''
4444
};
4545

0 commit comments

Comments
 (0)