Skip to content

Commit

Permalink
Replace semver package with internal semantic versioning check impl…
Browse files Browse the repository at this point in the history
…ementation
  • Loading branch information
serkan-ozal committed Jan 8, 2025
1 parent 04e74d7 commit 5a35b91
Show file tree
Hide file tree
Showing 12 changed files with 935 additions and 31 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,11 @@
"@protobuf-ts/runtime-rpc": "2.9.4",
"@types/mocha": "10.0.10",
"@types/node": "18.6.5",
"@types/semver": "7.5.8",
"@types/sinon": "17.0.3",
"cross-var": "1.1.0",
"lerna": "6.6.2",
"mocha": "10.8.2",
"nyc": "15.1.0",
"semver": "7.6.3",
"sinon": "15.1.2",
"typescript": "4.4.4"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@
"@types/mocha": "10.0.10",
"@types/node": "18.6.5",
"@types/request-promise-native": "1.0.21",
"@types/semver": "7.5.8",
"@types/sinon": "17.0.3",
"@types/superagent": "8.1.9",
"axios": "1.7.9",
Expand All @@ -78,8 +77,7 @@
"@opentelemetry/core": "1.30.0",
"@opentelemetry/instrumentation": "0.57.0",
"@opentelemetry/semantic-conventions": "1.28.0",
"forwarded-parse": "2.1.2",
"semver": "^7.5.2"
"forwarded-parse": "2.1.2"
},
"homepage": "https://github.com/open-telemetry/opentelemetry-js/tree/main/experimental/packages/opentelemetry-instrumentation-http",
"sideEffects": false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@
"@types/shimmer": "^1.2.0",
"import-in-the-middle": "^1.8.1",
"require-in-the-middle": "^7.1.1",
"semver": "^7.5.2",
"shimmer": "^1.2.1"
},
"peerDependencies": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import * as types from '../../types';
import * as path from 'path';
import { types as utilTypes } from 'util';
import { satisfies } from 'semver';
import { satisfies } from '../../semver';
import { wrap, unwrap, massWrap, massUnwrap } from 'shimmer';
import { InstrumentationAbstract } from '../../instrumentation';
import {
Expand Down
Loading

0 comments on commit 5a35b91

Please sign in to comment.