Skip to content

Commit 9459979

Browse files
committed
chore: patch winston module (logform breaking), ts 4.5.5 fixes
1 parent 6293719 commit 9459979

File tree

88 files changed

+115
-114
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

88 files changed

+115
-114
lines changed

archive/opentelemetry-browser-extension-autoinjection/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
"sinon-chrome": "3.0.1",
5858
"ts-loader": "9.2.5",
5959
"ts-mocha": "10.0.0",
60-
"typescript": "4.3.5",
60+
"typescript": "4.5.5",
6161
"webpack": "4.46.0",
6262
"webpack-cli": "4.7.2",
6363
"webpack-merge": "5.8.0"

detectors/node/opentelemetry-resource-detector-alibaba-cloud/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
"rimraf": "3.0.2",
5555
"sinon": "14.0.0",
5656
"ts-mocha": "10.0.0",
57-
"typescript": "4.3.5"
57+
"typescript": "4.5.5"
5858
},
5959
"peerDependencies": {
6060
"@opentelemetry/api": "^1.0.0"

detectors/node/opentelemetry-resource-detector-aws/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
"rimraf": "3.0.2",
5454
"sinon": "14.0.0",
5555
"ts-mocha": "10.0.0",
56-
"typescript": "4.3.5"
56+
"typescript": "4.5.5"
5757
},
5858
"peerDependencies": {
5959
"@opentelemetry/api": "^1.0.0"

detectors/node/opentelemetry-resource-detector-aws/src/detectors/AwsBeanstalkDetector.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ export class AwsBeanstalkDetector implements Detector {
8080
[SemanticResourceAttributes.SERVICE_INSTANCE_ID]:
8181
parsedData.deployment_id,
8282
});
83-
} catch (e) {
83+
} catch (e: any) {
8484
diag.debug(`AwsBeanstalkDetector failed: ${e.message}`);
8585
return Resource.empty();
8686
}

detectors/node/opentelemetry-resource-detector-aws/src/detectors/AwsEksDetector.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ export class AwsEksDetector implements Detector {
180180
return str.substring(str.length - this.CONTAINER_ID_LENGTH);
181181
}
182182
}
183-
} catch (e) {
183+
} catch (e: any) {
184184
diag.warn(`AwsEksDetector failed to read container ID: ${e.message}`);
185185
}
186186
return undefined;

detectors/node/opentelemetry-resource-detector-container/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
"rimraf": "3.0.2",
4949
"sinon": "14.0.0",
5050
"ts-mocha": "10.0.0",
51-
"typescript": "4.3.5"
51+
"typescript": "4.5.5"
5252
},
5353
"peerDependencies": {
5454
"@opentelemetry/api": "^1.0.0"

detectors/node/opentelemetry-resource-detector-gcp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
"nyc": "15.1.0",
5353
"rimraf": "3.0.2",
5454
"ts-mocha": "10.0.0",
55-
"typescript": "4.3.5"
55+
"typescript": "4.5.5"
5656
},
5757
"peerDependencies": {
5858
"@opentelemetry/api": "^1.0.0"

detectors/node/opentelemetry-resource-detector-github/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
"rimraf": "3.0.2",
5656
"sinon": "14.0.0",
5757
"ts-mocha": "10.0.0",
58-
"typescript": "4.3.5"
58+
"typescript": "4.5.5"
5959
},
6060
"dependencies": {
6161
"@opentelemetry/resources": "^1.0.0"

detectors/node/opentelemetry-resource-detector-instana/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
"nyc": "15.1.0",
5252
"rimraf": "3.0.2",
5353
"ts-mocha": "10.0.0",
54-
"typescript": "4.3.5"
54+
"typescript": "4.5.5"
5555
},
5656
"dependencies": {
5757
"@opentelemetry/resources": "^1.0.0",

detectors/node/opentelemetry-resource-detector-instana/test/InstanaAgentDetectorUnitTest.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ describe('[UNIT] instanaAgentDetector', () => {
138138
try {
139139
await instanaAgentDetector.detect();
140140
assert.ok(false, 'Expected to throw');
141-
} catch (err) {
141+
} catch (err: any) {
142142
assert.equal(err.code, 'ECONNREFUSED');
143143
}
144144
});

0 commit comments

Comments
 (0)