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

Post Release: update CHANGELOG and example #235

Merged
merged 1 commit into from
Dec 14, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,19 @@
All notable changes to this project will be documented in this file.

## Unreleased
- Add Metrics API.
- Add Resource API.
- Add Gauges (`DoubleGauge`, `LongGauge`, `DerivedDoubleGauge`, `DerivedLongGauge`) APIs.

## 0.0.8 - 2018-12-14
**Contains API breaking changes for stats/metrics implementations**

- Enforce `--noUnusedLocals` Compiler Options on [opencensus-core] package.
- Fix bugs related to Stackdriver Metrics Descriptor and TimeSeries.
- Add Resource API.
- Add Metrics API.
- Remove support for `min`/`max` in the stats Distribution to make it compatible with Metrics.
- Remove default prefix from [exporter-prometheus]. This could be a breaking change if you have Prometheus metrics from OpenCensus Prometheus exporter of previous versions, please point to the new metrics with no prefix instead.
- Add Gauges (`DoubleGauge`, `LongGauge`, `DerivedDoubleGauge`, `DerivedLongGauge`) APIs.
- Zipkin exporter: Convert "timestamp" and "duration" to "number" type per spec.
- Exporter/Stats/Prometheus: Sanitize metric names.

## 0.0.7 - 2018-11-12
**Contains API breaking changes for stats/metrics implementations**
Expand Down
6 changes: 3 additions & 3 deletions examples/stats/web_client_monitoring/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
"scripts": {
"deploy": "gcloud app deploy",
"start": "node app.js",
"lint": "npm run lint",
"lint": "npm run lint"
},
"dependencies": {
"@opencensus/core": "0.0.7",
"@opencensus/exporter-stackdriver": "0.0.7",
"@opencensus/core": "0.0.8",
"@opencensus/exporter-stackdriver": "0.0.8",
"express": "^4.16.3"
}
}