You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+29
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,35 @@ All notable changes to this project will be documented in this file.
4
4
5
5
## Unreleased
6
6
7
+
## 0.7.0
8
+
9
+
Released 2020-04-23
10
+
11
+
#### :boom: Breaking Change
12
+
*`opentelemetry-exporter-collector`
13
+
*[#901](https://github.com/open-telemetry/opentelemetry-js/pull/901) grpc for node and support for new proto format for node and browser ([@obecny](https://github.com/obecny))
14
+
*`opentelemetry-api`, `opentelemetry-metrics`
15
+
*[#964](https://github.com/open-telemetry/opentelemetry-js/pull/964) chore: adding metric observable to be able to support async update ([@obecny](https://github.com/obecny))
16
+
17
+
#### :bug: (Bug Fix)
18
+
*`opentelemetry-plugin-http`
19
+
*[#960](https://github.com/open-telemetry/opentelemetry-js/pull/960)[http] fix: use url.URL ([@naseemkullah](https://github.com/naseemkullah))
Copy file name to clipboardExpand all lines: README.md
+20-2
Original file line number
Diff line number
Diff line change
@@ -54,6 +54,26 @@ To get started tracing your own application, see the [Getting Started Guide](get
54
54
55
55
If you are a library author looking to build OpenTelemetry into your library, please see [the documentation][docs]. As a library author, it is important that you only depend on properties and methods published on the public API. If you use any properties or methods from the SDK that are not officially a part of the public API, your library may break if an [Application Owner](#application-owner) uses a different SDK implementation.
56
56
57
+
## Supported Runtimes
58
+
59
+
Platform Version | Supported
60
+
---------------- | ---------
61
+
Node.JS `v14` | ✅
62
+
Node.JS `v13` | ✅
63
+
Node.JS `v12` | ✅
64
+
Node.JS `v10` | ✅
65
+
Node.JS `v8` | See [Node Support](#node-support) below
66
+
Web Browsers | ✅ See [Browser Support](#browser-support) below
67
+
68
+
### Node Support
69
+
Automated tests are run using the latest release of each currently active version of Node.JS.
70
+
While Node.JS v8 is no longer supported by the Node.JS team, the latest version of Node.JS v8 is still included in our testing suite.
71
+
Please note that versions of Node.JS v8 prior to `v8.5.0` will NOT work, because OpenTelemetry Node depends on the `perf_hooks` module introduced in `v8.5.0`
72
+
73
+
### Browser Support
74
+
Automated browser tests are run in the latest version of Headless Chrome.
75
+
There is currently no list of officially supported browsers, but OpenTelemetry is developed using standard web technologies with wide support and should work in currently supported versions of major browsers.
|[@opentelemetry/metrics][otel-metrics]| This module provides instruments and meters for reporting of time series data. |
143
163
|[@opentelemetry/node][otel-node]| This module provides automatic tracing for Node.js applications. It is intended for use on the server only. |
144
164
|[@opentelemetry/web][otel-web]| This module provides automated instrumentation and tracing for Web applications. It is intended for use in the browser only. |
145
-
|[@opentelemetry/base][otel-base]| This package provides base code for the SDK packages (tracing and metrics). |
146
165
147
166
### Compatible Exporters
148
167
@@ -202,7 +221,6 @@ Apache 2.0 - See [LICENSE][license-url] for more information.
0 commit comments