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

Commit 6e3b0e0

Browse files
chore: Update README and examples for 0.0.7 release (#178)
1 parent bf074ac commit 6e3b0e0

File tree

6 files changed

+133
-146
lines changed

6 files changed

+133
-146
lines changed

CHANGELOG.md

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

55
## Unreleased
66

7+
## 0.0.7 - 2019-09-09
8+
79
- Support for B3 propagation with new `@opencensus/web-propagation-b3` package
810
and the ability to pass it in via `startTracing({ propagation: Propagation })`.
911
Thanks @edvinasbartkus!

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -215,8 +215,8 @@ trace sample rate via an `ocSampleRate` global variable as well.
215215
// By default this is set to sample 1/10000 requests.
216216
ocSampleRate = 1.0;
217217
</script>
218-
<script src="https://unpkg.com/@opencensus/web-scripts@0.0.6/dist/initial-load-all.js"
219-
integrity="sha384-i4hXJgWcpVndlEbWiKDJq59jlTuis+dNeFlf0XcPxM7We2mpA5msdPCFnFaPeI0w"
218+
<script src="https://unpkg.com/@opencensus/web-scripts@0.0.7/dist/initial-load-all.js"
219+
integrity="sha384-IRF14Fru3e56WqS/NSK/tIqe8eU5ISYAWuArwIige2xagIyEofDydPWvyz1O6Tyd"
220220
async crossorigin="anonymous">
221221
</script>
222222
</body>
@@ -248,8 +248,8 @@ trace sample rate via an `ocSampleRate` global variable as well.
248248
(e.g. React, etc.):
249249
```html
250250
...
251-
<script src="https://unpkg.com/@opencensus/web-scripts@0.0.6/dist/tracing-all-with-zone.js"
252-
integrity="sha384-0Y5xp9Nl9nmXYL7GgTb0sz8HmFxRYlh+8wWgks5qb1NCg9h7XiKogm15uIbVaXrN"
251+
<script src="https://unpkg.com/@opencensus/web-scripts@0.0.7/dist/tracing-all-with-zone.js"
252+
integrity="sha384-Ev17Xogwh4ZeYjMR3Bk/2evQt4lFkK3wNmaqVIsihf5odhOAA5Uroq/o8epjrb8b"
253253
async crossorigin="anonymous">
254254
</script>
255255
</body>
@@ -258,8 +258,8 @@ trace sample rate via an `ocSampleRate` global variable as well.
258258
- If your application uses the `Zone.js` library, the case for `Angular` apps:
259259
```html
260260
...
261-
<script src="https://unpkg.com/@opencensus/web-scripts@0.0.6/dist/tracing-all-zone-peer-dep.js"
262-
integrity="sha384-IPZy89j7zcXj4WDrW+XWl2mRrN7tqhdMcHgRsvK+dVNrofnyxPvI5OcX1kni4FWt"
261+
<script src="https://unpkg.com/@opencensus/web-scripts@0.0.7/dist/tracing-all-zone-peer-dep.js"
262+
integrity="sha384-98qotOMH5C0Pbew7R2i8JAQ3Mz0dTP3H25DDXbl4ONcA52mKLqPgIAitUlr64C/q"
263263
async crossorigin="anonymous">
264264
</script>
265265
</body>
@@ -337,8 +337,8 @@ variable. The `traceparent` variable should be in the
337337
// We don't need to specify `ocSampleRate` since the trace sampling decision
338338
// is coming from the `traceparent` global variable instead.
339339
</script>
340-
<script src="https://unpkg.com/@opencensus/web-scripts@0.0.6/dist/initial-load-all.js"
341-
integrity="sha384-i4hXJgWcpVndlEbWiKDJq59jlTuis+dNeFlf0XcPxM7We2mpA5msdPCFnFaPeI0w"
340+
<script src="https://unpkg.com/@opencensus/web-scripts@0.0.7/dist/initial-load-all.js"
341+
integrity="sha384-IRF14Fru3e56WqS/NSK/tIqe8eU5ISYAWuArwIige2xagIyEofDydPWvyz1O6Tyd"
342342
async crossorigin="anonymous">
343343
</script>
344344
</body>
@@ -359,8 +359,8 @@ In case you want to use trace user interactions:
359359
// We don't need to specify `ocSampleRate` since the trace sampling decision
360360
// is coming from the `traceparent` global variable instead.
361361
</script>
362-
<script src="https://unpkg.com/@opencensus/web-scripts@0.0.6/dist/tracing-all-with-zone.js"
363-
integrity="sha384-0Y5xp9Nl9nmXYL7GgTb0sz8HmFxRYlh+8wWgks5qb1NCg9h7XiKogm15uIbVaXrN"
362+
<script src="https://unpkg.com/@opencensus/web-scripts@0.0.7/dist/tracing-all-with-zone.js"
363+
integrity="sha384-Ev17Xogwh4ZeYjMR3Bk/2evQt4lFkK3wNmaqVIsihf5odhOAA5Uroq/o8epjrb8b"
364364
async crossorigin="anonymous">
365365
</script>
366366
</body>

examples/user_interaction/client/package-lock.json

Lines changed: 51 additions & 66 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.6",
15+
"@opencensus/web-instrumentation-zone": "^0.0.7",
1616
"react": "^16.8.6",
1717
"react-dom": "^16.8.6",
1818
"react-router-dom": "^5.0.1",

0 commit comments

Comments
 (0)