Add node 18 to tests and remove EoL node versions (#3048)
This commit is contained in:
parent
b8915092bc
commit
fa295a3298
|
@ -10,7 +10,10 @@ jobs:
|
|||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
node_version: ["8", "10", "12", "14", "16"]
|
||||
node_version:
|
||||
- "14"
|
||||
- "16"
|
||||
- "18"
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
NPM_CONFIG_UNSAFE_PERM: true
|
||||
|
|
|
@ -17,6 +17,8 @@ All notable changes to this project will be documented in this file.
|
|||
|
||||
### :house: (Internal)
|
||||
|
||||
* test: add node 18 and remove EoL node versions [#3048](https://github.com/open-telemetry/opentelemetry-js/pull/3048) @dyladan
|
||||
|
||||
## 1.3.1
|
||||
|
||||
### :bug: (Bug Fix)
|
||||
|
|
39
README.md
39
README.md
|
@ -46,7 +46,7 @@ This is the JavaScript version of [OpenTelemetry](https://opentelemetry.io/), a
|
|||
## Compatibility Matrix
|
||||
|
||||
| API Version | Core version | Experimental Packages |
|
||||
| ----------- |--------------| --------------------- |
|
||||
| ----------- | ------------ | --------------------- |
|
||||
| 1.1.x | 1.1.x | 0.28.x |
|
||||
| 1.0.x | 1.0.x | 0.26.x, 0.27.x |
|
||||
| 1.0.x | 0.26.x | ----- |
|
||||
|
@ -138,19 +138,18 @@ If you are a library author looking to build OpenTelemetry into your library, pl
|
|||
|
||||
## Supported Runtimes
|
||||
|
||||
| Platform Version | Supported |
|
||||
|------------------|-------------------------------------------------|
|
||||
| Node.JS `v16` | ✅ |
|
||||
| Node.JS `v14` | ✅ |
|
||||
| Node.JS `v12` | ✅ |
|
||||
| Node.JS `v10` | ✅ |
|
||||
| Node.JS `v8` | See [Node Support](#node-support) below |
|
||||
| Web Browsers | ✅ See [Browser Support](#browser-support) below |
|
||||
| Platform Version | Supported |
|
||||
| ------------------- | ----------------------------------------------- |
|
||||
| Node.JS `v18` | ✅ |
|
||||
| Node.JS `v16` | ✅ |
|
||||
| Node.JS `v14` | ✅ |
|
||||
| Older Node Versions | See [Node Support](#node-support) |
|
||||
| Web Browsers | ✅ See [Browser Support](#browser-support) below |
|
||||
|
||||
### Node Support
|
||||
|
||||
Automated tests are run using the latest release of each currently active version of Node.JS.
|
||||
While Node.JS v8 and v10 are no longer supported by the Node.JS team, the latest versions of Node.JS v8 and v10 are still included in our testing suite.
|
||||
Only Node.js Active or Maintenance LTS versions are supported.
|
||||
Previous versions of node _may_ work, but they are not tested by OpenTelemetry and they are not guaranteed to work.
|
||||
Please note that versions of Node.JS v8 prior to `v8.12.0` will NOT work, because OpenTelemetry Node depends on the `perf_hooks` module introduced in `v8.5.0` and `performance.timeOrigin` that is set correctly starting in `v8.12.0`.
|
||||
|
||||
### Browser Support
|
||||
|
@ -161,7 +160,7 @@ There is currently no list of officially supported browsers, but OpenTelemetry i
|
|||
## Feature Status
|
||||
|
||||
| Signal | API Status | SDK Status |
|
||||
|---------|-------------|-------------------|
|
||||
| ------- | ----------- | ----------------- |
|
||||
| Tracing | Stable | Release Candidate |
|
||||
| Metrics | Development | Development |
|
||||
| Logs | Roadmap | Roadmap |
|
||||
|
@ -220,18 +219,18 @@ Maintainers ([@open-telemetry/js-maintainers](https://github.com/orgs/open-telem
|
|||
### API
|
||||
|
||||
| Package | Description |
|
||||
|----------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| -------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| [@opentelemetry/api][otel-api] | This package provides TypeScript interfaces, enums and no-op implementations for the OpenTelemetry core trace and metrics model. It is intended for use both on the server and in the browser. |
|
||||
| [@opentelemetry/core][otel-core] | This package provides default and no-op implementations of the OpenTelemetry api for trace and metrics. It's intended for use both on the server and in the browser. |
|
||||
|
||||
### Implementation / SDKs
|
||||
|
||||
| Package | Description |
|
||||
|----------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| [@opentelemetry/sdk-trace-base][otel-tracing] | This module provides a full control over instrumentation and span creation. It doesn't load [`async_hooks`](https://nodejs.org/api/async_hooks.html) or any instrumentation by default. It is intended for use both on the server and in the browser. |
|
||||
| [@opentelemetry/sdk-metrics-base][otel-metrics] | This module provides instruments and meters for reporting of time series data. |
|
||||
| [@opentelemetry/sdk-trace-node][otel-node] | This module provides automatic tracing for Node.js applications. It is intended for use on the server only. |
|
||||
| [@opentelemetry/sdk-trace-web][otel-web] | This module provides automated instrumentation and tracing for Web applications. It is intended for use in the browser only. |
|
||||
| Package | Description |
|
||||
| ----------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| [@opentelemetry/sdk-trace-base][otel-tracing] | This module provides a full control over instrumentation and span creation. It doesn't load [`async_hooks`](https://nodejs.org/api/async_hooks.html) or any instrumentation by default. It is intended for use both on the server and in the browser. |
|
||||
| [@opentelemetry/sdk-metrics-base][otel-metrics] | This module provides instruments and meters for reporting of time series data. |
|
||||
| [@opentelemetry/sdk-trace-node][otel-node] | This module provides automatic tracing for Node.js applications. It is intended for use on the server only. |
|
||||
| [@opentelemetry/sdk-trace-web][otel-web] | This module provides automated instrumentation and tracing for Web applications. It is intended for use in the browser only. |
|
||||
|
||||
### Compatible Exporters
|
||||
|
||||
|
@ -272,7 +271,7 @@ These instrumentations are hosted at <https://github.com/open-telemetry/opentele
|
|||
### Shims
|
||||
|
||||
| Package | Description |
|
||||
|----------------------------------------------------------|-----------------------------------------------------------------------------------------|
|
||||
| -------------------------------------------------------- | --------------------------------------------------------------------------------------- |
|
||||
| [@opentelemetry/shim-opentracing][otel-shim-opentracing] | OpenTracing shim allows existing OpenTracing instrumentation to report to OpenTelemetry |
|
||||
|
||||
## Upgrade guidelines
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
"tracing"
|
||||
],
|
||||
"engines": {
|
||||
"node": ">=8"
|
||||
"node": ">=14"
|
||||
},
|
||||
"author": "OpenTelemetry Authors",
|
||||
"license": "Apache-2.0",
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
"tracing"
|
||||
],
|
||||
"engines": {
|
||||
"node": ">=8"
|
||||
"node": ">=14"
|
||||
},
|
||||
"author": "OpenTelemetry Authors",
|
||||
"license": "Apache-2.0",
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
"tracing"
|
||||
],
|
||||
"engines": {
|
||||
"node": ">=8"
|
||||
"node": ">=14"
|
||||
},
|
||||
"author": "OpenTelemetry Authors",
|
||||
"license": "Apache-2.0",
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
"tracing"
|
||||
],
|
||||
"engines": {
|
||||
"node": ">=8"
|
||||
"node": ">=14"
|
||||
},
|
||||
"author": "OpenTelemetry Authors",
|
||||
"license": "Apache-2.0",
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
"tracing"
|
||||
],
|
||||
"engines": {
|
||||
"node": ">=8"
|
||||
"node": ">=14"
|
||||
},
|
||||
"author": "OpenTelemetry Authors",
|
||||
"license": "Apache-2.0",
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
"opentracing"
|
||||
],
|
||||
"engines": {
|
||||
"node": ">=8"
|
||||
"node": ">=14"
|
||||
},
|
||||
"author": "OpenTelemetry Authors",
|
||||
"license": "Apache-2.0",
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
"tracing"
|
||||
],
|
||||
"engines": {
|
||||
"node": ">=8"
|
||||
"node": ">=14"
|
||||
},
|
||||
"author": "OpenTelemetry Authors",
|
||||
"license": "Apache-2.0",
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
"web"
|
||||
],
|
||||
"engines": {
|
||||
"node": ">=8"
|
||||
"node": ">=14"
|
||||
},
|
||||
"author": "OpenTelemetry Authors",
|
||||
"license": "Apache-2.0",
|
||||
|
|
|
@ -24,6 +24,8 @@ All notable changes to experimental packages in this project will be documented
|
|||
|
||||
### :house: (Internal)
|
||||
|
||||
* test: add node 18 and remove EoL node versions [#3048](https://github.com/open-telemetry/opentelemetry-js/pull/3048) @dyladan
|
||||
|
||||
## 0.29.2
|
||||
|
||||
* Support for 1.3.1 of stable packages
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
"name": "backcompat-node10",
|
||||
"name": "backcompat-node14",
|
||||
"version": "0.29.2",
|
||||
"private": true,
|
||||
"description": "Backwards compatability app for node8 types and the OpenTelemetry Node.js SDK",
|
||||
"description": "Backwards compatability app for node 14 types and the OpenTelemetry Node.js SDK",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test:backcompat": "tsc --noEmit index.ts && tsc --noEmit --esModuleInterop index.ts",
|
||||
|
@ -13,9 +13,12 @@
|
|||
"@opentelemetry/sdk-trace-base": "1.3.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "10.17.60",
|
||||
"@types/node": "^14.0.0",
|
||||
"typescript": "4.4.4"
|
||||
},
|
||||
"author": "OpenTelemetry Authors",
|
||||
"license": "Apache-2.0"
|
||||
"license": "Apache-2.0",
|
||||
"engines": {
|
||||
"node": ">=14"
|
||||
}
|
||||
}
|
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
"name": "backcompat-node12",
|
||||
"name": "backcompat-node16",
|
||||
"version": "0.29.2",
|
||||
"private": true,
|
||||
"description": "Backwards compatability app for node8 types and the OpenTelemetry Node.js SDK",
|
||||
"description": "Backwards compatability app for node 16 types and the OpenTelemetry Node.js SDK",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test:backcompat": "tsc --noEmit index.ts && tsc --noEmit --esModuleInterop index.ts",
|
||||
|
@ -13,9 +13,12 @@
|
|||
"@opentelemetry/sdk-trace-base": "1.3.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "12.20.37",
|
||||
"@types/node": "^16.0.0",
|
||||
"typescript": "4.4.4"
|
||||
},
|
||||
"author": "OpenTelemetry Authors",
|
||||
"license": "Apache-2.0"
|
||||
"license": "Apache-2.0",
|
||||
"engines": {
|
||||
"node": ">=14"
|
||||
}
|
||||
}
|
|
@ -1,10 +0,0 @@
|
|||
import {NodeSDK, api} from '@opentelemetry/sdk-node';
|
||||
import {ConsoleSpanExporter} from '@opentelemetry/sdk-trace-base';
|
||||
|
||||
const sdk = new NodeSDK({
|
||||
traceExporter: new ConsoleSpanExporter(),
|
||||
autoDetectResources: false,
|
||||
});
|
||||
sdk.start();
|
||||
|
||||
api.trace.getTracer('test');
|
|
@ -1,21 +0,0 @@
|
|||
{
|
||||
"name": "backcompat-node8",
|
||||
"version": "0.29.2",
|
||||
"private": true,
|
||||
"description": "Backwards compatability app for node8 types and the OpenTelemetry Node.js SDK",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test:backcompat": "tsc --noEmit index.ts && tsc --noEmit --esModuleInterop index.ts",
|
||||
"peer-api-check": "node ../../../scripts/peer-api-check.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@opentelemetry/sdk-node": "0.29.2",
|
||||
"@opentelemetry/sdk-trace-base": "1.3.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "8.10.66",
|
||||
"typescript": "4.4.4"
|
||||
},
|
||||
"author": "OpenTelemetry Authors",
|
||||
"license": "Apache-2.0"
|
||||
}
|
|
@ -1,18 +0,0 @@
|
|||
{
|
||||
"extends": "../../../tsconfig.es5.json",
|
||||
"compilerOptions": {
|
||||
"rootDir": ".",
|
||||
"outDir": "build"
|
||||
},
|
||||
"include": [
|
||||
"index.ts"
|
||||
],
|
||||
"references": [
|
||||
{
|
||||
"path": "../../../packages/opentelemetry-sdk-trace-base"
|
||||
},
|
||||
{
|
||||
"path": "../../packages/opentelemetry-sdk-node"
|
||||
}
|
||||
]
|
||||
}
|
|
@ -32,7 +32,7 @@
|
|||
"author": "OpenTelemetry Authors",
|
||||
"license": "Apache-2.0",
|
||||
"engines": {
|
||||
"node": ">=8.12.0"
|
||||
"node": ">=14"
|
||||
},
|
||||
"files": [
|
||||
"build/src/**/*.js",
|
||||
|
|
|
@ -43,7 +43,7 @@
|
|||
"author": "OpenTelemetry Authors",
|
||||
"license": "Apache-2.0",
|
||||
"engines": {
|
||||
"node": ">=8.12.0"
|
||||
"node": ">=14"
|
||||
},
|
||||
"files": [
|
||||
"build/esm/**/*.js",
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
"author": "OpenTelemetry Authors",
|
||||
"license": "Apache-2.0",
|
||||
"engines": {
|
||||
"node": ">=8.12.0"
|
||||
"node": ">=14"
|
||||
},
|
||||
"files": [
|
||||
"build/src/**/*.js",
|
||||
|
|
|
@ -41,7 +41,7 @@
|
|||
"author": "OpenTelemetry Authors",
|
||||
"license": "Apache-2.0",
|
||||
"engines": {
|
||||
"node": ">=8.12.0"
|
||||
"node": ">=14"
|
||||
},
|
||||
"files": [
|
||||
"build/esm/**/*.js",
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
"author": "OpenTelemetry Authors",
|
||||
"license": "Apache-2.0",
|
||||
"engines": {
|
||||
"node": ">=8.12.0"
|
||||
"node": ">=14"
|
||||
},
|
||||
"files": [
|
||||
"build/src/**/*.js",
|
||||
|
|
|
@ -43,7 +43,7 @@
|
|||
"author": "OpenTelemetry Authors",
|
||||
"license": "Apache-2.0",
|
||||
"engines": {
|
||||
"node": ">=8.12.0"
|
||||
"node": ">=14"
|
||||
},
|
||||
"files": [
|
||||
"build/esm/**/*.js",
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
"author": "OpenTelemetry Authors",
|
||||
"license": "Apache-2.0",
|
||||
"engines": {
|
||||
"node": ">=8.12.0"
|
||||
"node": ">=14"
|
||||
},
|
||||
"files": [
|
||||
"build/src/**/*.js",
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
"author": "OpenTelemetry Authors",
|
||||
"license": "Apache-2.0",
|
||||
"engines": {
|
||||
"node": ">=8.12.0"
|
||||
"node": ">=14"
|
||||
},
|
||||
"files": [
|
||||
"build/src/**/*.js",
|
||||
|
|
|
@ -34,7 +34,7 @@
|
|||
"author": "OpenTelemetry Authors",
|
||||
"license": "Apache-2.0",
|
||||
"engines": {
|
||||
"node": ">=8.12.0"
|
||||
"node": ">=14"
|
||||
},
|
||||
"files": [
|
||||
"build/esm/**/*.js",
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
"author": "OpenTelemetry Authors",
|
||||
"license": "Apache-2.0",
|
||||
"engines": {
|
||||
"node": ">=8.12.0"
|
||||
"node": ">=14"
|
||||
},
|
||||
"files": [
|
||||
"build/src/**/*.js",
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
"author": "OpenTelemetry Authors",
|
||||
"license": "Apache-2.0",
|
||||
"engines": {
|
||||
"node": ">=8.12.0"
|
||||
"node": ">=14"
|
||||
},
|
||||
"files": [
|
||||
"build/src/**/*.js",
|
||||
|
|
|
@ -34,7 +34,7 @@
|
|||
"author": "OpenTelemetry Authors",
|
||||
"license": "Apache-2.0",
|
||||
"engines": {
|
||||
"node": ">=8.12.0"
|
||||
"node": ">=14"
|
||||
},
|
||||
"files": [
|
||||
"build/esm/**/*.js",
|
||||
|
|
|
@ -105,5 +105,8 @@
|
|||
"webpack": "4.46.0",
|
||||
"webpack-cli": "4.9.1",
|
||||
"webpack-merge": "5.8.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=14"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -34,7 +34,7 @@
|
|||
"author": "OpenTelemetry Authors",
|
||||
"license": "Apache-2.0",
|
||||
"engines": {
|
||||
"node": ">=8.12.0"
|
||||
"node": ">=14"
|
||||
},
|
||||
"files": [
|
||||
"build/esm/**/*.js",
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
"author": "OpenTelemetry Authors",
|
||||
"license": "Apache-2.0",
|
||||
"engines": {
|
||||
"node": ">=8.12.0"
|
||||
"node": ">=14"
|
||||
},
|
||||
"files": [
|
||||
"build/src/**/*.js",
|
||||
|
|
|
@ -42,7 +42,7 @@
|
|||
"author": "OpenTelemetry Authors",
|
||||
"license": "Apache-2.0",
|
||||
"engines": {
|
||||
"node": ">=8.12.0"
|
||||
"node": ">=14"
|
||||
},
|
||||
"files": [
|
||||
"build/esm/**/*.js",
|
||||
|
|
|
@ -34,7 +34,7 @@
|
|||
"author": "OpenTelemetry Authors",
|
||||
"license": "Apache-2.0",
|
||||
"engines": {
|
||||
"node": ">=8.12.0"
|
||||
"node": ">=14"
|
||||
},
|
||||
"files": [
|
||||
"build/src/**/*.js",
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
"author": "OpenTelemetry Authors",
|
||||
"license": "Apache-2.0",
|
||||
"engines": {
|
||||
"node": ">=8.12.0"
|
||||
"node": ">=14"
|
||||
},
|
||||
"files": [
|
||||
"build/src/**/*.js",
|
||||
|
|
|
@ -36,7 +36,7 @@
|
|||
"author": "OpenTelemetry Authors",
|
||||
"license": "Apache-2.0",
|
||||
"engines": {
|
||||
"node": ">=8.12.0"
|
||||
"node": ">=14"
|
||||
},
|
||||
"files": [
|
||||
"build/esm/**/*.js",
|
||||
|
|
|
@ -21,5 +21,8 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"typescript": "4.4.4"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=14"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
"author": "OpenTelemetry Authors",
|
||||
"license": "Apache-2.0",
|
||||
"engines": {
|
||||
"node": ">=8.12.0"
|
||||
"node": ">=14"
|
||||
},
|
||||
"files": [
|
||||
"build/src/**/*.js",
|
||||
|
|
|
@ -33,7 +33,7 @@
|
|||
"author": "OpenTelemetry Authors",
|
||||
"license": "Apache-2.0",
|
||||
"engines": {
|
||||
"node": ">=8.12.0"
|
||||
"node": ">=14"
|
||||
},
|
||||
"files": [
|
||||
"build/esm/**/*.js",
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
"author": "OpenTelemetry Authors",
|
||||
"license": "Apache-2.0",
|
||||
"engines": {
|
||||
"node": ">=8.12.0"
|
||||
"node": ">=14"
|
||||
},
|
||||
"files": [
|
||||
"build/esm/**/*.js",
|
||||
|
|
|
@ -44,7 +44,7 @@
|
|||
"author": "OpenTelemetry Authors",
|
||||
"license": "Apache-2.0",
|
||||
"engines": {
|
||||
"node": ">=8.12.0"
|
||||
"node": ">=14"
|
||||
},
|
||||
"files": [
|
||||
"build/esm/**/*.js",
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
"author": "OpenTelemetry Authors",
|
||||
"license": "Apache-2.0",
|
||||
"engines": {
|
||||
"node": ">=8.12.0"
|
||||
"node": ">=14"
|
||||
},
|
||||
"files": [
|
||||
"build/src/**/*.js",
|
||||
|
|
|
@ -40,7 +40,7 @@
|
|||
"author": "OpenTelemetry Authors",
|
||||
"license": "Apache-2.0",
|
||||
"engines": {
|
||||
"node": ">=8.12.0"
|
||||
"node": ">=14"
|
||||
},
|
||||
"files": [
|
||||
"build/esm/**/*.js",
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
"author": "OpenTelemetry Authors",
|
||||
"license": "Apache-2.0",
|
||||
"engines": {
|
||||
"node": ">=8.12.0"
|
||||
"node": ">=14"
|
||||
},
|
||||
"files": [
|
||||
"build/esm/**/*.js",
|
||||
|
|
|
@ -34,7 +34,7 @@
|
|||
"author": "OpenTelemetry Authors",
|
||||
"license": "Apache-2.0",
|
||||
"engines": {
|
||||
"node": ">=8.12.0"
|
||||
"node": ">=14"
|
||||
},
|
||||
"files": [
|
||||
"build/esm/**/*.js",
|
||||
|
|
|
@ -41,7 +41,7 @@
|
|||
"author": "OpenTelemetry Authors",
|
||||
"license": "Apache-2.0",
|
||||
"engines": {
|
||||
"node": ">=8.12.0"
|
||||
"node": ">=14"
|
||||
},
|
||||
"files": [
|
||||
"build/esm/**/*.js",
|
||||
|
|
|
@ -44,7 +44,7 @@
|
|||
"author": "OpenTelemetry Authors",
|
||||
"license": "Apache-2.0",
|
||||
"engines": {
|
||||
"node": ">=8.12.0"
|
||||
"node": ">=14"
|
||||
},
|
||||
"files": [
|
||||
"build/esm/**/*.js",
|
||||
|
@ -74,8 +74,8 @@
|
|||
"karma": "6.3.16",
|
||||
"karma-chrome-launcher": "3.1.0",
|
||||
"karma-coverage-istanbul-reporter": "3.0.3",
|
||||
"karma-mocha-webworker": "1.3.0",
|
||||
"karma-mocha": "2.0.1",
|
||||
"karma-mocha-webworker": "1.3.0",
|
||||
"karma-spec-reporter": "0.0.32",
|
||||
"karma-webpack": "4.0.2",
|
||||
"mocha": "7.2.0",
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
"author": "OpenTelemetry Authors",
|
||||
"license": "Apache-2.0",
|
||||
"engines": {
|
||||
"node": ">=8.12.0"
|
||||
"node": ">=14"
|
||||
},
|
||||
"files": [
|
||||
"build/src/**/*.js",
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
"author": "OpenTelemetry Authors",
|
||||
"license": "Apache-2.0",
|
||||
"engines": {
|
||||
"node": ">=8.12.0"
|
||||
"node": ">=14"
|
||||
},
|
||||
"files": [
|
||||
"build/esm/**/*.js",
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
"author": "OpenTelemetry Authors",
|
||||
"license": "Apache-2.0",
|
||||
"engines": {
|
||||
"node": ">=8.12.0"
|
||||
"node": ">=14"
|
||||
},
|
||||
"files": [
|
||||
"build/esm/**/*.js",
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
"author": "OpenTelemetry Authors",
|
||||
"license": "Apache-2.0",
|
||||
"engines": {
|
||||
"node": ">=8.12.0"
|
||||
"node": ">=14"
|
||||
},
|
||||
"files": [
|
||||
"build/src/**/*.js",
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
"url": "https://github.com/open-telemetry/opentelemetry-js/issues"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=8.12.0"
|
||||
"node": ">=14"
|
||||
},
|
||||
"scripts": {
|
||||
"prepublishOnly": "npm run compile",
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
"author": "OpenTelemetry Authors",
|
||||
"license": "Apache-2.0",
|
||||
"engines": {
|
||||
"node": ">=10.0.0"
|
||||
"node": ">=14"
|
||||
},
|
||||
"publishConfig": {
|
||||
"access": "restricted"
|
||||
|
|
|
@ -146,13 +146,10 @@
|
|||
"path": "experimental/packages/otlp-transformer"
|
||||
},
|
||||
{
|
||||
"path": "experimental/backwards-compatability/node10"
|
||||
"path": "experimental/backwards-compatability/node14"
|
||||
},
|
||||
{
|
||||
"path": "experimental/backwards-compatability/node12"
|
||||
},
|
||||
{
|
||||
"path": "experimental/backwards-compatability/node8"
|
||||
"path": "experimental/backwards-compatability/node16"
|
||||
},
|
||||
{
|
||||
"path": "integration-tests/propagation-validation-server"
|
||||
|
|
Loading…
Reference in New Issue