Skip to content

Commit

Permalink
feat: added support for tedious v19 (#1295)
Browse files Browse the repository at this point in the history
  • Loading branch information
instanacd authored Aug 29, 2024
1 parent b5b3faf commit 6f61f9e
Show file tree
Hide file tree
Showing 3 changed files with 181 additions and 7 deletions.
184 changes: 179 additions & 5 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 package.json
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@
"square-calc": "3.2.1",
"square-calc-v2": "npm:[email protected]",
"stealthy-require": "1.1.1",
"tedious": "^18.6.1",
"tedious": "^19.0.0",
"tsoa": "^6.4.0",
"typescript": "^5.0.4",
"underscore": "^1.13.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/collector/test/tracing/opentelemetry/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ mochaSuiteFn('opentelemetry/instrumentations', function () {
));
});

const runTedious = semver.gte(process.versions.node, '18.0.0') ? describe : describe.skip;
const runTedious = semver.gte(process.versions.node, '18.17.0') ? describe : describe.skip;
runTedious('tedious', function () {
describe('opentelemetry is enabled', function () {
globalAgent.setUpCleanUpHooks();
Expand Down

0 comments on commit 6f61f9e

Please sign in to comment.