Skip to content

Commit

Permalink
fix(security): resolved security vulnerability in the tar package. (#…
Browse files Browse the repository at this point in the history
…1106)

* fix(security): resolved security vulnerability in the tar package.

* test: added missing parentheses for where clause in typeorm
  • Loading branch information
aryamohanan authored Apr 10, 2024
1 parent da5cbf3 commit d863aa8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/collector/test/tracing/frameworks/typeorm/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ mochaSuiteFn('frameworks/typeorm', function () {

const query =
'SELECT "UserTypeOrm"."id" AS "UserTypeOrm_id", "UserTypeOrm"."name" AS "UserTypeOrm_name" ' +
'FROM "user_type_orm" "UserTypeOrm" WHERE ("UserTypeOrm"."name" = $1) LIMIT 1';
'FROM "user_type_orm" "UserTypeOrm" WHERE (("UserTypeOrm"."name" = $1)) LIMIT 1';

verifyExitSpan({
spanName: 'postgres',
Expand Down
2 changes: 1 addition & 1 deletion packages/shared-metrics/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
"event-loop-lag": "^1.4.0",
"recursive-copy": "^2.0.13",
"semver": "^7.5.4",
"tar": "^6.1.11"
"tar": "^6.2.1"
},
"devDependencies": {
"@types/tar": "^6.1.6"
Expand Down

0 comments on commit d863aa8

Please sign in to comment.