2021-08-11 02:35:30 +00:00
committed by Git OBS Bridge
parent 2b6b3146ef
commit 74005709e5
6 changed files with 72 additions and 12 deletions

View File

@@ -1,3 +1,63 @@
-------------------------------------------------------------------
Wed Aug 11 02:17:35 UTC 2021 - Avindra Goolcharan <avindra@opensuse.org>
- update to v1.13.0
* BREAKING(unstable): Rename Deno.WebSocketUpgrade::websocket to
socket (#11542)
* feat: Add --unsafely-ignore-certificate-errors flag to disable SSL
verification (#11324)
* feat: add experimental WebSocketStream API (#10365)
* feat: FFI API replacing native plugins (#11152)
* feat: stabilize Deno.serveHttp() (#11544)
* feat: support AbortSignal in writeFile (#11568)
* feat: support client certificates for connectTls (#11598)
* feat: type check codeblocks in Markdown file with
"deno test --doc" (#11421)
* feat(extensions/crypto): implement importKey and exportKey for
raw HMAC keys (#11367)
* feat(extensions/crypto): implement verify() for HMAC (#11387)
* feat(extensions/tls): Optionally support loading native certs (#11491)
* feat(extensions/web): add structuredClone function (#11572)
* feat(fmt): format top-level JSX elements/fragments with parens
when multi-line (#11582)
* feat(lsp): ability to set DENO_DIR via settings (#11527)
* feat(lsp): implement refactoring code actions (#11555)
* feat(lsp): support clients which do not support disabled code
actions (#11612)
* feat(repl): add --eval flag for evaluating code when the repl
starts (#11590)
* feat(repl): support exports in the REPL (#11592)
* feat(runtime): allow URL for permissions (#11578)
* feat(runtime): implement navigator.hardwareConcurrency (#11448)
* feat(unstable): clean environmental variables for subprocess (#11571)
* fix: support windows file specifiers with import maps (#11551)
* fix: Type Deno.errors.* as subclasses of Error (#10702)
* fix(doc): panic on invalid url (#11536)
* fix(extensions/fetch): Add Origin header to outgoing requests
for fetch (#11557)
* fix(extensions/websocket): allow any close code for server (#11614)
* fix(lsp): do not output to stderr before exiting the process (#11562)
- deno_std updated to 0.104.0:
* feat: Add collections module (#993, #1075, #1103, #1062, #1062, #1109,
#1108, #1071, #1069, #1104, #1097, #1110, #1116)
* feat(crypto): add std/crypto wrapping and extending runtime
WebCrypto (#1025)
* feat(http/file_server): return code 304 based on If-Modified-Since Header
(#1078)
* feat(node): add remaining Node.js builtin aliases (#1085)
* feat(node): add shim for perf_hooks (#1088)
* feat(node): assert/strict alias (#1084)
* feat(node): fs/promises implementation (#1083)
* feat(testing): add assertRejects, deprecate assertThrowsAsync (#1101)
* fix(async): make it so exception of deadline can be caught (#1105)
* fix(http/file_server): fix flaky 'file_server sets Date header
correctly' test case (#1095)
* fix(node): assert/strict, fs/promises, perf_hooks modules
could not be required (#1107)
* fix(node/events): optimize listener management (#1113)
* fix(testing): change assertThrows and assertThrowsAsync
return type to void and Promise<void> (#1052)
-------------------------------------------------------------------
Mon Jul 26 23:19:02 UTC 2021 - Avindra Goolcharan <avindra@opensuse.org>