@opentelemetry/core
Advanced tools
Comparing version 1.14.0 to 1.15.0
@@ -1,17 +0,2 @@ | ||
var __read = (this && this.__read) || function (o, n) { | ||
var m = typeof Symbol === "function" && o[Symbol.iterator]; | ||
if (!m) return o; | ||
var i = m.call(o), r, ar = [], e; | ||
try { | ||
while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value); | ||
} | ||
catch (error) { e = { error: error }; } | ||
finally { | ||
try { | ||
if (r && !r.done && (m = i["return"])) m.call(i); | ||
} | ||
finally { if (e) throw e.error; } | ||
} | ||
return ar; | ||
}; | ||
import { __read } from "tslib"; | ||
/* | ||
@@ -18,0 +3,0 @@ * Copyright The OpenTelemetry Authors |
@@ -16,29 +16,3 @@ /* | ||
*/ | ||
var __values = (this && this.__values) || function(o) { | ||
var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0; | ||
if (m) return m.call(o); | ||
if (o && typeof o.length === "number") return { | ||
next: function () { | ||
if (o && i >= o.length) o = void 0; | ||
return { value: o && o[i++], done: !o }; | ||
} | ||
}; | ||
throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined."); | ||
}; | ||
var __read = (this && this.__read) || function (o, n) { | ||
var m = typeof Symbol === "function" && o[Symbol.iterator]; | ||
if (!m) return o; | ||
var i = m.call(o), r, ar = [], e; | ||
try { | ||
while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value); | ||
} | ||
catch (error) { e = { error: error }; } | ||
finally { | ||
try { | ||
if (r && !r.done && (m = i["return"])) m.call(i); | ||
} | ||
finally { if (e) throw e.error; } | ||
} | ||
return ar; | ||
}; | ||
import { __read, __values } from "tslib"; | ||
import { diag } from '@opentelemetry/api'; | ||
@@ -45,0 +19,0 @@ export function sanitizeAttributes(attributes) { |
@@ -16,13 +16,3 @@ /* | ||
*/ | ||
var __values = (this && this.__values) || function(o) { | ||
var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0; | ||
if (m) return m.call(o); | ||
if (o && typeof o.length === "number") return { | ||
next: function () { | ||
if (o && i >= o.length) o = void 0; | ||
return { value: o && o[i++], done: !o }; | ||
} | ||
}; | ||
throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined."); | ||
}; | ||
import { __values } from "tslib"; | ||
import { diag, } from '@opentelemetry/api'; | ||
@@ -29,0 +19,0 @@ /** Combines multiple propagators into a single propagator. */ |
@@ -16,27 +16,3 @@ /* | ||
*/ | ||
var __read = (this && this.__read) || function (o, n) { | ||
var m = typeof Symbol === "function" && o[Symbol.iterator]; | ||
if (!m) return o; | ||
var i = m.call(o), r, ar = [], e; | ||
try { | ||
while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value); | ||
} | ||
catch (error) { e = { error: error }; } | ||
finally { | ||
try { | ||
if (r && !r.done && (m = i["return"])) m.call(i); | ||
} | ||
finally { if (e) throw e.error; } | ||
} | ||
return ar; | ||
}; | ||
var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) { | ||
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) { | ||
if (ar || !(i in from)) { | ||
if (!ar) ar = Array.prototype.slice.call(from, 0, i); | ||
ar[i] = from[i]; | ||
} | ||
} | ||
return to.concat(ar || Array.prototype.slice.call(from)); | ||
}; | ||
import { __read, __spreadArray } from "tslib"; | ||
import { Deferred } from './promise'; | ||
@@ -43,0 +19,0 @@ /** |
@@ -7,11 +7,11 @@ import { DiagLogLevel } from '@opentelemetry/api'; | ||
declare type ENVIRONMENT_BOOLEANS = { | ||
[K in typeof ENVIRONMENT_BOOLEAN_KEYS[number]]?: boolean; | ||
[K in (typeof ENVIRONMENT_BOOLEAN_KEYS)[number]]?: boolean; | ||
}; | ||
declare const ENVIRONMENT_NUMBERS_KEYS: readonly ["OTEL_BSP_EXPORT_TIMEOUT", "OTEL_BSP_MAX_EXPORT_BATCH_SIZE", "OTEL_BSP_MAX_QUEUE_SIZE", "OTEL_BSP_SCHEDULE_DELAY", "OTEL_BLRP_EXPORT_TIMEOUT", "OTEL_BLRP_MAX_EXPORT_BATCH_SIZE", "OTEL_BLRP_MAX_QUEUE_SIZE", "OTEL_BLRP_SCHEDULE_DELAY", "OTEL_ATTRIBUTE_VALUE_LENGTH_LIMIT", "OTEL_ATTRIBUTE_COUNT_LIMIT", "OTEL_SPAN_ATTRIBUTE_VALUE_LENGTH_LIMIT", "OTEL_SPAN_ATTRIBUTE_COUNT_LIMIT", "OTEL_LOGRECORD_ATTRIBUTE_VALUE_LENGTH_LIMIT", "OTEL_LOGRECORD_ATTRIBUTE_COUNT_LIMIT", "OTEL_SPAN_EVENT_COUNT_LIMIT", "OTEL_SPAN_LINK_COUNT_LIMIT", "OTEL_SPAN_ATTRIBUTE_PER_EVENT_COUNT_LIMIT", "OTEL_SPAN_ATTRIBUTE_PER_LINK_COUNT_LIMIT", "OTEL_EXPORTER_OTLP_TIMEOUT", "OTEL_EXPORTER_OTLP_TRACES_TIMEOUT", "OTEL_EXPORTER_OTLP_METRICS_TIMEOUT", "OTEL_EXPORTER_OTLP_LOGS_TIMEOUT", "OTEL_EXPORTER_JAEGER_AGENT_PORT"]; | ||
declare type ENVIRONMENT_NUMBERS = { | ||
[K in typeof ENVIRONMENT_NUMBERS_KEYS[number]]?: number; | ||
[K in (typeof ENVIRONMENT_NUMBERS_KEYS)[number]]?: number; | ||
}; | ||
declare const ENVIRONMENT_LISTS_KEYS: readonly ["OTEL_NO_PATCH_MODULES", "OTEL_PROPAGATORS"]; | ||
declare type ENVIRONMENT_LISTS = { | ||
[K in typeof ENVIRONMENT_LISTS_KEYS[number]]?: string[]; | ||
[K in (typeof ENVIRONMENT_LISTS_KEYS)[number]]?: string[]; | ||
}; | ||
@@ -18,0 +18,0 @@ export declare type ENVIRONMENT = { |
@@ -16,17 +16,3 @@ /* | ||
*/ | ||
var __extends = (this && this.__extends) || (function () { | ||
var extendStatics = function (d, b) { | ||
extendStatics = Object.setPrototypeOf || | ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || | ||
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; }; | ||
return extendStatics(d, b); | ||
}; | ||
return function (d, b) { | ||
if (typeof b !== "function" && b !== null) | ||
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null"); | ||
extendStatics(d, b); | ||
function __() { this.constructor = d; } | ||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); | ||
}; | ||
})(); | ||
import { __extends } from "tslib"; | ||
/** | ||
@@ -33,0 +19,0 @@ * Error that is thrown on timeouts. |
@@ -1,12 +0,2 @@ | ||
var __values = (this && this.__values) || function(o) { | ||
var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0; | ||
if (m) return m.call(o); | ||
if (o && typeof o.length === "number") return { | ||
next: function () { | ||
if (o && i >= o.length) o = void 0; | ||
return { value: o && o[i++], done: !o }; | ||
} | ||
}; | ||
throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined."); | ||
}; | ||
import { __values } from "tslib"; | ||
/* | ||
@@ -13,0 +3,0 @@ * Copyright The OpenTelemetry Authors |
@@ -1,2 +0,2 @@ | ||
export declare const VERSION = "1.14.0"; | ||
export declare const VERSION = "1.15.0"; | ||
//# sourceMappingURL=version.d.ts.map |
@@ -17,3 +17,3 @@ /* | ||
// this is autogenerated file, see scripts/version-update.js | ||
export var VERSION = '1.14.0'; | ||
export var VERSION = '1.15.0'; | ||
//# sourceMappingURL=version.js.map |
@@ -7,11 +7,11 @@ import { DiagLogLevel } from '@opentelemetry/api'; | ||
declare type ENVIRONMENT_BOOLEANS = { | ||
[K in typeof ENVIRONMENT_BOOLEAN_KEYS[number]]?: boolean; | ||
[K in (typeof ENVIRONMENT_BOOLEAN_KEYS)[number]]?: boolean; | ||
}; | ||
declare const ENVIRONMENT_NUMBERS_KEYS: readonly ["OTEL_BSP_EXPORT_TIMEOUT", "OTEL_BSP_MAX_EXPORT_BATCH_SIZE", "OTEL_BSP_MAX_QUEUE_SIZE", "OTEL_BSP_SCHEDULE_DELAY", "OTEL_BLRP_EXPORT_TIMEOUT", "OTEL_BLRP_MAX_EXPORT_BATCH_SIZE", "OTEL_BLRP_MAX_QUEUE_SIZE", "OTEL_BLRP_SCHEDULE_DELAY", "OTEL_ATTRIBUTE_VALUE_LENGTH_LIMIT", "OTEL_ATTRIBUTE_COUNT_LIMIT", "OTEL_SPAN_ATTRIBUTE_VALUE_LENGTH_LIMIT", "OTEL_SPAN_ATTRIBUTE_COUNT_LIMIT", "OTEL_LOGRECORD_ATTRIBUTE_VALUE_LENGTH_LIMIT", "OTEL_LOGRECORD_ATTRIBUTE_COUNT_LIMIT", "OTEL_SPAN_EVENT_COUNT_LIMIT", "OTEL_SPAN_LINK_COUNT_LIMIT", "OTEL_SPAN_ATTRIBUTE_PER_EVENT_COUNT_LIMIT", "OTEL_SPAN_ATTRIBUTE_PER_LINK_COUNT_LIMIT", "OTEL_EXPORTER_OTLP_TIMEOUT", "OTEL_EXPORTER_OTLP_TRACES_TIMEOUT", "OTEL_EXPORTER_OTLP_METRICS_TIMEOUT", "OTEL_EXPORTER_OTLP_LOGS_TIMEOUT", "OTEL_EXPORTER_JAEGER_AGENT_PORT"]; | ||
declare type ENVIRONMENT_NUMBERS = { | ||
[K in typeof ENVIRONMENT_NUMBERS_KEYS[number]]?: number; | ||
[K in (typeof ENVIRONMENT_NUMBERS_KEYS)[number]]?: number; | ||
}; | ||
declare const ENVIRONMENT_LISTS_KEYS: readonly ["OTEL_NO_PATCH_MODULES", "OTEL_PROPAGATORS"]; | ||
declare type ENVIRONMENT_LISTS = { | ||
[K in typeof ENVIRONMENT_LISTS_KEYS[number]]?: string[]; | ||
[K in (typeof ENVIRONMENT_LISTS_KEYS)[number]]?: string[]; | ||
}; | ||
@@ -18,0 +18,0 @@ export declare type ENVIRONMENT = { |
@@ -1,2 +0,2 @@ | ||
export declare const VERSION = "1.14.0"; | ||
export declare const VERSION = "1.15.0"; | ||
//# sourceMappingURL=version.d.ts.map |
@@ -17,3 +17,3 @@ /* | ||
// this is autogenerated file, see scripts/version-update.js | ||
export const VERSION = '1.14.0'; | ||
export const VERSION = '1.15.0'; | ||
//# sourceMappingURL=version.js.map |
@@ -17,43 +17,34 @@ "use strict"; | ||
*/ | ||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); | ||
}) : (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
o[k2] = m[k]; | ||
})); | ||
var __exportStar = (this && this.__exportStar) || function(m, exports) { | ||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p); | ||
}; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.internal = exports.baggageUtils = void 0; | ||
__exportStar(require("./baggage/propagation/W3CBaggagePropagator"), exports); | ||
__exportStar(require("./common/anchored-clock"), exports); | ||
__exportStar(require("./common/attributes"), exports); | ||
__exportStar(require("./common/global-error-handler"), exports); | ||
__exportStar(require("./common/logging-error-handler"), exports); | ||
__exportStar(require("./common/time"), exports); | ||
__exportStar(require("./common/types"), exports); | ||
__exportStar(require("./ExportResult"), exports); | ||
__exportStar(require("./version"), exports); | ||
const tslib_1 = require("tslib"); | ||
(0, tslib_1.__exportStar)(require("./baggage/propagation/W3CBaggagePropagator"), exports); | ||
(0, tslib_1.__exportStar)(require("./common/anchored-clock"), exports); | ||
(0, tslib_1.__exportStar)(require("./common/attributes"), exports); | ||
(0, tslib_1.__exportStar)(require("./common/global-error-handler"), exports); | ||
(0, tslib_1.__exportStar)(require("./common/logging-error-handler"), exports); | ||
(0, tslib_1.__exportStar)(require("./common/time"), exports); | ||
(0, tslib_1.__exportStar)(require("./common/types"), exports); | ||
(0, tslib_1.__exportStar)(require("./ExportResult"), exports); | ||
(0, tslib_1.__exportStar)(require("./version"), exports); | ||
exports.baggageUtils = require("./baggage/utils"); | ||
__exportStar(require("./platform"), exports); | ||
__exportStar(require("./propagation/composite"), exports); | ||
__exportStar(require("./trace/W3CTraceContextPropagator"), exports); | ||
__exportStar(require("./trace/IdGenerator"), exports); | ||
__exportStar(require("./trace/rpc-metadata"), exports); | ||
__exportStar(require("./trace/sampler/AlwaysOffSampler"), exports); | ||
__exportStar(require("./trace/sampler/AlwaysOnSampler"), exports); | ||
__exportStar(require("./trace/sampler/ParentBasedSampler"), exports); | ||
__exportStar(require("./trace/sampler/TraceIdRatioBasedSampler"), exports); | ||
__exportStar(require("./trace/suppress-tracing"), exports); | ||
__exportStar(require("./trace/TraceState"), exports); | ||
__exportStar(require("./utils/environment"), exports); | ||
__exportStar(require("./utils/merge"), exports); | ||
__exportStar(require("./utils/sampling"), exports); | ||
__exportStar(require("./utils/timeout"), exports); | ||
__exportStar(require("./utils/url"), exports); | ||
__exportStar(require("./utils/wrap"), exports); | ||
__exportStar(require("./utils/callback"), exports); | ||
__exportStar(require("./version"), exports); | ||
(0, tslib_1.__exportStar)(require("./platform"), exports); | ||
(0, tslib_1.__exportStar)(require("./propagation/composite"), exports); | ||
(0, tslib_1.__exportStar)(require("./trace/W3CTraceContextPropagator"), exports); | ||
(0, tslib_1.__exportStar)(require("./trace/IdGenerator"), exports); | ||
(0, tslib_1.__exportStar)(require("./trace/rpc-metadata"), exports); | ||
(0, tslib_1.__exportStar)(require("./trace/sampler/AlwaysOffSampler"), exports); | ||
(0, tslib_1.__exportStar)(require("./trace/sampler/AlwaysOnSampler"), exports); | ||
(0, tslib_1.__exportStar)(require("./trace/sampler/ParentBasedSampler"), exports); | ||
(0, tslib_1.__exportStar)(require("./trace/sampler/TraceIdRatioBasedSampler"), exports); | ||
(0, tslib_1.__exportStar)(require("./trace/suppress-tracing"), exports); | ||
(0, tslib_1.__exportStar)(require("./trace/TraceState"), exports); | ||
(0, tslib_1.__exportStar)(require("./utils/environment"), exports); | ||
(0, tslib_1.__exportStar)(require("./utils/merge"), exports); | ||
(0, tslib_1.__exportStar)(require("./utils/sampling"), exports); | ||
(0, tslib_1.__exportStar)(require("./utils/timeout"), exports); | ||
(0, tslib_1.__exportStar)(require("./utils/url"), exports); | ||
(0, tslib_1.__exportStar)(require("./utils/wrap"), exports); | ||
(0, tslib_1.__exportStar)(require("./utils/callback"), exports); | ||
(0, tslib_1.__exportStar)(require("./version"), exports); | ||
const exporter_1 = require("./internal/exporter"); | ||
@@ -60,0 +51,0 @@ exports.internal = { |
@@ -17,20 +17,11 @@ "use strict"; | ||
*/ | ||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); | ||
}) : (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
o[k2] = m[k]; | ||
})); | ||
var __exportStar = (this && this.__exportStar) || function(m, exports) { | ||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p); | ||
}; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
__exportStar(require("./environment"), exports); | ||
__exportStar(require("./globalThis"), exports); | ||
__exportStar(require("./hex-to-base64"), exports); | ||
__exportStar(require("./RandomIdGenerator"), exports); | ||
__exportStar(require("./performance"), exports); | ||
__exportStar(require("./sdk-info"), exports); | ||
__exportStar(require("./timer-util"), exports); | ||
const tslib_1 = require("tslib"); | ||
(0, tslib_1.__exportStar)(require("./environment"), exports); | ||
(0, tslib_1.__exportStar)(require("./globalThis"), exports); | ||
(0, tslib_1.__exportStar)(require("./hex-to-base64"), exports); | ||
(0, tslib_1.__exportStar)(require("./RandomIdGenerator"), exports); | ||
(0, tslib_1.__exportStar)(require("./performance"), exports); | ||
(0, tslib_1.__exportStar)(require("./sdk-info"), exports); | ||
(0, tslib_1.__exportStar)(require("./timer-util"), exports); | ||
//# sourceMappingURL=index.js.map |
"use strict"; | ||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); | ||
}) : (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
o[k2] = m[k]; | ||
})); | ||
var __exportStar = (this && this.__exportStar) || function(m, exports) { | ||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p); | ||
}; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
const tslib_1 = require("tslib"); | ||
/* | ||
@@ -28,3 +19,3 @@ * Copyright The OpenTelemetry Authors | ||
*/ | ||
__exportStar(require("./node"), exports); | ||
(0, tslib_1.__exportStar)(require("./node"), exports); | ||
//# sourceMappingURL=index.js.map |
@@ -17,20 +17,11 @@ "use strict"; | ||
*/ | ||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); | ||
}) : (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
o[k2] = m[k]; | ||
})); | ||
var __exportStar = (this && this.__exportStar) || function(m, exports) { | ||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p); | ||
}; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
__exportStar(require("./environment"), exports); | ||
__exportStar(require("./globalThis"), exports); | ||
__exportStar(require("./hex-to-base64"), exports); | ||
__exportStar(require("./RandomIdGenerator"), exports); | ||
__exportStar(require("./performance"), exports); | ||
__exportStar(require("./sdk-info"), exports); | ||
__exportStar(require("./timer-util"), exports); | ||
const tslib_1 = require("tslib"); | ||
(0, tslib_1.__exportStar)(require("./environment"), exports); | ||
(0, tslib_1.__exportStar)(require("./globalThis"), exports); | ||
(0, tslib_1.__exportStar)(require("./hex-to-base64"), exports); | ||
(0, tslib_1.__exportStar)(require("./RandomIdGenerator"), exports); | ||
(0, tslib_1.__exportStar)(require("./performance"), exports); | ||
(0, tslib_1.__exportStar)(require("./sdk-info"), exports); | ||
(0, tslib_1.__exportStar)(require("./timer-util"), exports); | ||
//# sourceMappingURL=index.js.map |
@@ -7,11 +7,11 @@ import { DiagLogLevel } from '@opentelemetry/api'; | ||
declare type ENVIRONMENT_BOOLEANS = { | ||
[K in typeof ENVIRONMENT_BOOLEAN_KEYS[number]]?: boolean; | ||
[K in (typeof ENVIRONMENT_BOOLEAN_KEYS)[number]]?: boolean; | ||
}; | ||
declare const ENVIRONMENT_NUMBERS_KEYS: readonly ["OTEL_BSP_EXPORT_TIMEOUT", "OTEL_BSP_MAX_EXPORT_BATCH_SIZE", "OTEL_BSP_MAX_QUEUE_SIZE", "OTEL_BSP_SCHEDULE_DELAY", "OTEL_BLRP_EXPORT_TIMEOUT", "OTEL_BLRP_MAX_EXPORT_BATCH_SIZE", "OTEL_BLRP_MAX_QUEUE_SIZE", "OTEL_BLRP_SCHEDULE_DELAY", "OTEL_ATTRIBUTE_VALUE_LENGTH_LIMIT", "OTEL_ATTRIBUTE_COUNT_LIMIT", "OTEL_SPAN_ATTRIBUTE_VALUE_LENGTH_LIMIT", "OTEL_SPAN_ATTRIBUTE_COUNT_LIMIT", "OTEL_LOGRECORD_ATTRIBUTE_VALUE_LENGTH_LIMIT", "OTEL_LOGRECORD_ATTRIBUTE_COUNT_LIMIT", "OTEL_SPAN_EVENT_COUNT_LIMIT", "OTEL_SPAN_LINK_COUNT_LIMIT", "OTEL_SPAN_ATTRIBUTE_PER_EVENT_COUNT_LIMIT", "OTEL_SPAN_ATTRIBUTE_PER_LINK_COUNT_LIMIT", "OTEL_EXPORTER_OTLP_TIMEOUT", "OTEL_EXPORTER_OTLP_TRACES_TIMEOUT", "OTEL_EXPORTER_OTLP_METRICS_TIMEOUT", "OTEL_EXPORTER_OTLP_LOGS_TIMEOUT", "OTEL_EXPORTER_JAEGER_AGENT_PORT"]; | ||
declare type ENVIRONMENT_NUMBERS = { | ||
[K in typeof ENVIRONMENT_NUMBERS_KEYS[number]]?: number; | ||
[K in (typeof ENVIRONMENT_NUMBERS_KEYS)[number]]?: number; | ||
}; | ||
declare const ENVIRONMENT_LISTS_KEYS: readonly ["OTEL_NO_PATCH_MODULES", "OTEL_PROPAGATORS"]; | ||
declare type ENVIRONMENT_LISTS = { | ||
[K in typeof ENVIRONMENT_LISTS_KEYS[number]]?: string[]; | ||
[K in (typeof ENVIRONMENT_LISTS_KEYS)[number]]?: string[]; | ||
}; | ||
@@ -18,0 +18,0 @@ export declare type ENVIRONMENT = { |
@@ -1,2 +0,2 @@ | ||
export declare const VERSION = "1.14.0"; | ||
export declare const VERSION = "1.15.0"; | ||
//# sourceMappingURL=version.d.ts.map |
@@ -20,3 +20,3 @@ "use strict"; | ||
// this is autogenerated file, see scripts/version-update.js | ||
exports.VERSION = '1.14.0'; | ||
exports.VERSION = '1.15.0'; | ||
//# sourceMappingURL=version.js.map |
{ | ||
"name": "@opentelemetry/core", | ||
"version": "1.14.0", | ||
"version": "1.15.0", | ||
"description": "OpenTelemetry Core provides constants and utilities shared by all OpenTelemetry SDK packages.", | ||
@@ -31,3 +31,3 @@ "main": "build/src/index.js", | ||
"watch": "tsc --build --watch tsconfig.json tsconfig.esm.json tsconfig.esnext.json", | ||
"precompile": "lerna run version --scope $(npm pkg get name) --include-dependencies", | ||
"precompile": "cross-var lerna run version --scope $npm_package_name --include-dependencies", | ||
"prewatch": "npm run precompile", | ||
@@ -69,18 +69,19 @@ "peer-api-check": "node ../../scripts/peer-api-check.js" | ||
"@opentelemetry/api": ">=1.0.0 <1.5.0", | ||
"@types/mocha": "10.0.0", | ||
"@types/mocha": "10.0.1", | ||
"@types/node": "18.6.5", | ||
"@types/sinon": "10.0.13", | ||
"@types/sinon": "10.0.15", | ||
"@types/webpack-env": "1.16.3", | ||
"codecov": "3.8.3", | ||
"cross-var": "1.1.0", | ||
"istanbul-instrumenter-loader": "3.0.1", | ||
"karma": "6.3.16", | ||
"karma": "6.4.2", | ||
"karma-chrome-launcher": "3.1.0", | ||
"karma-coverage-istanbul-reporter": "3.0.3", | ||
"karma-mocha": "2.0.1", | ||
"karma-spec-reporter": "0.0.32", | ||
"karma-spec-reporter": "0.0.36", | ||
"karma-webpack": "4.0.2", | ||
"lerna": "6.0.3", | ||
"mocha": "10.0.0", | ||
"lerna": "7.1.1", | ||
"mocha": "10.2.0", | ||
"nyc": "15.1.0", | ||
"sinon": "15.0.0", | ||
"sinon": "15.1.2", | ||
"ts-loader": "8.4.0", | ||
@@ -95,7 +96,8 @@ "ts-mocha": "10.0.0", | ||
"dependencies": { | ||
"@opentelemetry/semantic-conventions": "1.14.0" | ||
"@opentelemetry/semantic-conventions": "1.15.0", | ||
"tslib": "^2.3.1" | ||
}, | ||
"homepage": "https://github.com/open-telemetry/opentelemetry-js/tree/main/packages/opentelemetry-core", | ||
"sideEffects": false, | ||
"gitHead": "edebbcc757535bc88f01340409dbbecc0bb6ccf8" | ||
"gitHead": "06e919d6c909e8cc8e28b6624d9843f401d9b059" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
Unidentified License
License(Experimental) Something that seems like a license was found, but its contents could not be matched with a known license.
Found 1 instance in 1 package
0
100
0
867698
3
22
9892
+ Addedtslib@^2.3.1
+ Added@opentelemetry/semantic-conventions@1.15.0(transitive)
+ Addedtslib@2.8.1(transitive)
- Removed@opentelemetry/semantic-conventions@1.14.0(transitive)