From b7341438f29de88f3458b32a835bfad560bda52e Mon Sep 17 00:00:00 2001 From: Luca Casonato Date: Fri, 29 Oct 2021 17:13:31 +0200 Subject: feat: stabilize Deno.startTls (#12581) This commit stabilizes `Deno.startTls` and removes `certFile` from the `StartTlsOptions`. --- runtime/js/90_deno_ns.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'runtime/js/90_deno_ns.js') diff --git a/runtime/js/90_deno_ns.js b/runtime/js/90_deno_ns.js index 40c744fc1..f858a93eb 100644 --- a/runtime/js/90_deno_ns.js +++ b/runtime/js/90_deno_ns.js @@ -88,6 +88,7 @@ listen: __bootstrap.net.listen, connectTls: __bootstrap.tls.connectTls, listenTls: __bootstrap.tls.listenTls, + startTls: __bootstrap.tls.startTls, shutdown: __bootstrap.net.shutdown, fstatSync: __bootstrap.fs.fstatSync, fstat: __bootstrap.fs.fstat, @@ -125,7 +126,6 @@ listen: __bootstrap.netUnstable.listen, connect: __bootstrap.netUnstable.connect, listenDatagram: __bootstrap.netUnstable.listenDatagram, - startTls: __bootstrap.tls.startTls, umask: __bootstrap.fs.umask, futime: __bootstrap.fs.futime, futimeSync: __bootstrap.fs.futimeSync, -- cgit v1.2.3