From 2ce25ce46152b27eb0e04efcf2f75a23dbce5471 Mon Sep 17 00:00:00 2001 From: Marius Svechla Date: Wed, 20 Nov 2024 11:16:04 +0100 Subject: [PATCH] [autoinstrumentation/nodejs] update node dependencies This updates the dependencies of the autoinstrumentation for nodejs to the latest available versions. There have been some important bugfixes for us recently. Signed-off-by: Marius Svechla --- .chloggen/auto_instr_node_up.yaml | 19 +++++++++++++++++++ autoinstrumentation/nodejs/package.json | 6 +++--- 2 files changed, 22 insertions(+), 3 deletions(-) create mode 100755 .chloggen/auto_instr_node_up.yaml diff --git a/.chloggen/auto_instr_node_up.yaml b/.chloggen/auto_instr_node_up.yaml new file mode 100755 index 0000000000..70520e9c91 --- /dev/null +++ b/.chloggen/auto_instr_node_up.yaml @@ -0,0 +1,19 @@ +# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix' +change_type: enhancement + +# The name of the component, or a single word describing the area of concern, (e.g. collector, target allocator, auto-instrumentation, opamp, github action) +component: auto-instrumentation + +# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`). +note: updated node auto-instrumentation dependencies to the latest version + +# One or more tracking issues related to the change +issues: [3476] + +# (Optional) One or more lines of additional information to render under the primary note. +# These lines will be padded with 2 spaces and then inserted directly into the document. +# Use pipe (|) for multiline entries. +subtext: | + auto-instrumentations-node to 0.53.0 + exporter-metrics-otlp-grpc to 0.55.0 + exporter-prometheus to 0.55.0 diff --git a/autoinstrumentation/nodejs/package.json b/autoinstrumentation/nodejs/package.json index be98fd9155..11fc4006ce 100644 --- a/autoinstrumentation/nodejs/package.json +++ b/autoinstrumentation/nodejs/package.json @@ -14,8 +14,8 @@ "typescript": "^5.6.3" }, "dependencies": { - "@opentelemetry/auto-instrumentations-node": "0.52.1", - "@opentelemetry/exporter-metrics-otlp-grpc": "0.54.0", - "@opentelemetry/exporter-prometheus": "0.54.0" + "@opentelemetry/exporter-metrics-otlp-grpc": "0.55.0", + "@opentelemetry/auto-instrumentations-node": "0.53.0", + "@opentelemetry/exporter-prometheus": "0.55.0" } }