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

Commit ecb66c7

Browse files
crdgonzalezcadraffensperger
authored andcommitted
Post Release: Update CHANGELOG, examples and README (#161)
1 parent 1abe82d commit ecb66c7

File tree

4 files changed

+57
-41
lines changed

4 files changed

+57
-41
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## unreleased
6+
7+
## 0.0.5 - 2019-08-09
8+
9+
- Fixes to interaction tracker.
10+
- Service name can be specified via window variable, thanks @Blightwidow
11+
- Fixes to automated NPM publish script.
12+
513
## 0.0.4 - 2019-08-06
614

715
- Rename `@opencensus/web-all` to `@opencensus/web-scripts` so now this package

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,13 @@ The OpenCensus web library is composed of the following packages:
384384
- **[@opencensus/web-propagation-tracecontext][package-web-propagation-tracecontext]**. This provides utilities to serialize and deserialize a `traceparent` trace context header in the [W3C draft trace context format][trace-context-url]
385385
- **[@opencensus/web-initial-load][package-web-initial-load]**. This package is in charge of generating the initial load page trace, plus the corresponding sampling decision for OpenCensus Web and
386386
storing a global initial load span context to be used by other packages.
387-
- **[@opencensus/web-scripts][package-web-scripts]**. This depends on all the other OpenCensus Web libraries and provides top-level functions for instrumenting the initial page load and exporting its spans to the OpenCensus Agent. It also provides WebPack builds for JS bundles that can be used in `<script>` tags.
387+
- **[@opencensus/web-scripts][package-web-scripts]**. This depends on all the other OpenCensus Web libraries and provides WebPack builds for JS bundles that can be used in `<script>` tags. See the documentation
388+
for more details on the resulting scripts
389+
- **[@opencensus/web-instrumentation-zone][package-web-instrumentation-zone]**. This depends on all the other OpenCensus Web packages and provides top-level functions for instrumenting the initial page load and
390+
user interaction traces to export them to the OpenCensus Agent. This also uses `Zone.js` library as a install dependency, then, this package should be used if your application does not already depends on that.
391+
- **[@opencensus/web-instrumentation-zone-peer-dep][package-web-instrumentation-zone-peer-dep]**. This depends on all the other OpenCensus Web packages and provides top-level functions for instrumenting the initial
392+
page load and user interaction traces to export them to the OpenCensus Agent. This uses `Zone.js` library as a peer dependency, then, this package should be used if your application already depends on that
393+
(e.g. Angular applications).
388394

389395
## Useful links
390396
- For more information on OpenCensus, visit: <https://opencensus.io/>
@@ -443,6 +449,8 @@ Apache 2.0 - See [LICENSE][license-url] for more information.
443449
[package-web-instrumentation-perf]: https://github.com/census-instrumentation/opencensus-web/tree/master/packages/opencensus-web-instrumentation-perf
444450
[package-web-propagation-tracecontext]: https://github.com/census-instrumentation/opencensus-web/tree/master/packages/opencensus-web-propagation-tracecontext
445451
[package-web-types]: https://github.com/census-instrumentation/opencensus-web/tree/master/packages/opencensus-web-types
452+
[package-web-instrumentation-zone]: https://github.com/census-instrumentation/opencensus-web/tree/master/packages/opencensus-web-instrumentation-zone
453+
[package-web-instrumentation-zone-peer-dep]: https://github.com/census-instrumentation/opencensus-web/tree/master/packages/opencensus-web-instrumentation-zone-peer-dep
446454
[resource-timing-url]: https://www.w3.org/TR/resource-timing-2/
447455
[semver-url]: http://semver.org/
448456
[snyk-image]: https://snyk.io/test/github/census-instrumentation/opencensus-web/badge.svg?style=flat

examples/user_interaction/client/package-lock.json

Lines changed: 39 additions & 39 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/user_interaction/client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"metrics"
1313
],
1414
"dependencies": {
15-
"@opencensus/web-instrumentation-zone": "^0.0.4",
15+
"@opencensus/web-instrumentation-zone": "^0.0.5",
1616
"react": "^16.8.6",
1717
"react-dom": "^16.8.6",
1818
"react-router-dom": "^5.0.1",

0 commit comments

Comments
 (0)