We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d8e131 commit ca25131Copy full SHA for ca25131
.changeset/tall-crabs-enjoy.md
@@ -0,0 +1,5 @@
1
+---
2
+"ggt": patch
3
4
+
5
+Restrict SSL/TLS to require TLSv1.1 or better. SSLv3 will no longer be supported.
src/services/http/http.ts
@@ -35,7 +35,10 @@ const getContext = (options: HttpOptions): Context => {
35
export const http = got.extend({
36
agent: {
37
http: new HttpAgent({ keepAlive: true }),
38
- https: new HttpsAgent({ keepAlive: true }),
+ https: new HttpsAgent({
39
+ keepAlive: true,
40
+ minVersion: "TLSv1.1",
41
+ }),
42
},
43
retry: {
44
limit: 10,
0 commit comments