Skip to content

Commit 817397b

Browse files
authored
chore: test on node 14 (open-telemetry#1003)
1 parent 6cf5406 commit 817397b

File tree

2 files changed

+22
-3
lines changed

2 files changed

+22
-3
lines changed

.circleci/config.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -184,9 +184,9 @@ jobs:
184184
- image: node:12
185185
environment: *node_test_env
186186
<<: *node_unit_tests
187-
node13:
187+
node14:
188188
docker:
189-
- image: node:13
189+
- image: node:14
190190
environment: *node_test_env
191191
<<: *node_unit_tests
192192
node12-browsers:
@@ -213,6 +213,6 @@ workflows:
213213
- node8
214214
- node10
215215
- node12
216-
- node13
216+
- node14
217217
- node12-browsers
218218

README.md

+19
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,25 @@ To get started tracing your own application, see the [Getting Started Guide](get
5454

5555
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.
5656

57+
## Supported Runtimes
58+
59+
Platform Version | Supported
60+
---------------- | ---------
61+
Node.JS `v14` | ✅
62+
Node.JS `v12` | ✅
63+
Node.JS `v10` | ✅
64+
Node.JS `v8` | See [Node Support](#node-support) below
65+
Web Browsers | ✅ See [Browser Support](#browser-support) below
66+
67+
### Node Support
68+
Automated tests are run using the latest release of each currently supported LTS version of Node.JS.
69+
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.
70+
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`
71+
72+
### Browser Support
73+
Automated browser tests are run in the latest version of Headless Chrome.
74+
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.
75+
5776
## Release Schedule
5877

5978
OpenTelemetry JS is under active development.

0 commit comments

Comments
 (0)