diff --git a/CHANGELOG.md b/CHANGELOG.md index 8abafa17..a601d75b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log - @splunk/otel +## 2.2.3 + +June 27, 2023 + +- Fixed `logLevel` configuration option for `start` function throwing an error [#741](https://github.com/signalfx/splunk-otel-js/pull/741) +- Added Docker image for the OpenTelemetry Operator for Kubernetes [#740](https://github.com/signalfx/splunk-otel-js/pull/740) + ## 2.2.2 May 3, 2023 diff --git a/package-lock.json b/package-lock.json index 65b825a0..89212368 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@splunk/otel", - "version": "2.2.2", + "version": "2.2.3", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@splunk/otel", - "version": "2.2.2", + "version": "2.2.3", "hasInstallScript": true, "license": "Apache-2.0", "dependencies": { diff --git a/package.json b/package.json index 560913ad..ccf325b8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@splunk/otel", - "version": "2.2.2", + "version": "2.2.3", "description": "The Splunk distribution of OpenTelemetry Node Instrumentation provides a Node agent that automatically instruments your Node application to capture and report distributed traces to Splunk APM.", "repository": "git@github.com:signalfx/splunk-otel-js.git", "author": "Splunk ", diff --git a/src/version.ts b/src/version.ts index 603e91ca..b97ebead 100644 --- a/src/version.ts +++ b/src/version.ts @@ -14,4 +14,4 @@ * limitations under the License. */ -export const VERSION = '2.2.2'; +export const VERSION = '2.2.3';