From a21e24c331002e9b6cefde1fe62b04228d4333ea Mon Sep 17 00:00:00 2001 From: David Pine <76797720+IEvangelist@users.noreply.github.com> Date: Tue, 26 May 2026 09:51:21 -0500 Subject: [PATCH] Bump JS deps to resolve open Dependabot alerts Closes the two open Dependabot alerts on this repo by bumping the two JavaScript lockfile-based manifests via npm \overrides\: | File | Package | Bumped to | Severity | GHSA | Alert | | --- | --- | --- | --- | --- | --- | | \samples/polyglot-task-queue/api/package-lock.json\ | \qs\ | \6.15.2\ | medium | GHSA-r2pq-mvjr-w5xj | #480 | | \samples/aspire-with-javascript/AspireJavaScript.Angular/package-lock.json\ | \webpack-dev-server\ | \5.2.4\ | medium | GHSA-79cf-xcqc-c78w | #474 | Both packages are transitive, so each is pinned via npm \overrides\ and the lockfile is regenerated with \ pm install --package-lock-only\. No direct dependency or top-level script is affected; the only behavioral change is the patched vulnerable transitives are no longer resolved. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .../AspireJavaScript.Angular/package.json | 2 +- samples/polyglot-task-queue/api/package.json | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/samples/aspire-with-javascript/AspireJavaScript.Angular/package.json b/samples/aspire-with-javascript/AspireJavaScript.Angular/package.json index da869de27..30ddb64de 100644 --- a/samples/aspire-with-javascript/AspireJavaScript.Angular/package.json +++ b/samples/aspire-with-javascript/AspireJavaScript.Angular/package.json @@ -50,6 +50,6 @@ "sockjs": { "uuid": "14.0.0" }, - "webpack-dev-server": "5.2.4" + "webpack-dev-server": "^5.2.4" } } diff --git a/samples/polyglot-task-queue/api/package.json b/samples/polyglot-task-queue/api/package.json index 6a65352bc..045bd15ae 100644 --- a/samples/polyglot-task-queue/api/package.json +++ b/samples/polyglot-task-queue/api/package.json @@ -20,6 +20,9 @@ "@opentelemetry/instrumentation-http": "^0.219.0", "@opentelemetry/instrumentation-express": "^0.66.0", "@opentelemetry/api": "^1.9.1", - "@grpc/grpc-js": "^1.14.4" + "@grpc/grpc-js": "^1.14.3" + }, + "overrides": { + "qs": "^6.15.2" } }