Skip to content

Commit afd1b80

Browse files
authored
Merge branch 'main' into sdk-automation/models
2 parents ec3068d + 85a513f commit afd1b80

File tree

3 files changed

+15
-6
lines changed

3 files changed

+15
-6
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,6 @@
5757
"https-proxy-agent": "5.0.1"
5858
},
5959
"optionalDependencies": {
60-
"@types/node": "14.18.63"
60+
"@types/node": "18.19.69"
6161
}
6262
}

src/__tests__/checkServerIdentity.spec.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@ const createMockedCertificate = (CN: string): PeerCertificate => ({
3131
fingerprint256: "MOCKED_FINGERPRINT_256",
3232
ext_key_usage: ["1.2.3.4.5.6.7.8"],
3333
serialNumber: "1000",
34-
raw: Buffer.from("test")
34+
raw: Buffer.from("test"),
35+
ca: false,
36+
fingerprint512: "MOCKED_FINGERPRINT_512",
3537
});
3638

3739
describe("Certificate Server Identity", function () {

yarn.lock

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -763,10 +763,12 @@
763763
dependencies:
764764
nock "*"
765765

766-
"@types/node@*", "@types/[email protected]":
767-
version "14.18.63"
768-
resolved "https://registry.npmjs.org/@types/node/-/node-14.18.63.tgz"
769-
integrity sha512-fAtCfv4jJg+ExtXhvCkCqUKZ+4ok/JQk01qDKhL5BDDoS3AxKXhV5/MAVUZyQnSEd2GT92fkgZl0pz0Q0AzcIQ==
766+
"@types/node@*", "@types/[email protected]":
767+
version "18.19.69"
768+
resolved "https://registry.npmjs.org/@types/node/-/node-18.19.69.tgz"
769+
integrity sha512-ECPdY1nlaiO/Y6GUnwgtAAhLNaQ53AyIVz+eILxpEo5OvuqE6yWkqWBIb5dU0DqhKQtMeny+FBD3PK6lm7L5xQ==
770+
dependencies:
771+
undici-types "~5.26.4"
770772

771773
"@types/prettier@^2.1.5":
772774
version "2.6.3"
@@ -3609,6 +3611,11 @@ typescript@*, typescript@^4.X.X, typescript@>=2.7, "typescript@>=2.8.0 || >= 3.2
36093611
resolved "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz"
36103612
integrity sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==
36113613

3614+
undici-types@~5.26.4:
3615+
version "5.26.5"
3616+
resolved "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz"
3617+
integrity sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==
3618+
36123619
universalify@^0.2.0:
36133620
version "0.2.0"
36143621
resolved "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz"

0 commit comments

Comments
 (0)