diff --git a/.lycheeignore b/.lycheeignore index 039f0022..9093ef08 100644 --- a/.lycheeignore +++ b/.lycheeignore @@ -3,3 +3,4 @@ https://docs.github.com/ http://localhost:4318/ http://localhost:4317/ http://collector:4317/ +https://quickdraw.splunk.com/ diff --git a/CHANGELOG.md b/CHANGELOG.md index 08aaf10f..8bdb2afc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log - @splunk/otel +## 2.4.3 + +- Compare kafka header values case insensitively. Fixed split traces when b3 propagation is used over kafka headers and the producer does not use lowercase keys. [#804](https://github.com/signalfx/splunk-otel-js/pull/804) + ## 2.4.2 September 20, 2023 diff --git a/package-lock.json b/package-lock.json index 7fce0b3b..c4dffb9f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@splunk/otel", - "version": "2.4.2", + "version": "2.4.3", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@splunk/otel", - "version": "2.4.2", + "version": "2.4.3", "hasInstallScript": true, "license": "Apache-2.0", "dependencies": { diff --git a/package.json b/package.json index dfc1f29b..334bbf12 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@splunk/otel", - "version": "2.4.2", + "version": "2.4.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 165c2a2f..423864ea 100644 --- a/src/version.ts +++ b/src/version.ts @@ -14,4 +14,4 @@ * limitations under the License. */ -export const VERSION = '2.4.2'; +export const VERSION = '2.4.3';