Avindra Goolcharan 2022-06-18 21:31:06 +00:00 committed by Git OBS Bridge
parent 890e808449
commit 2d9a9544f1
6 changed files with 140 additions and 12 deletions

View File

@ -13,8 +13,8 @@
<service name="tar_scm" mode="manual">
<param name="scm">git</param>
<param name="url">https://github.com/denoland/deno</param>
<param name="revision">v1.22.0</param>
<param name="version">1.22.0</param>
<param name="revision">v1.23.0</param>
<param name="version">1.23.0</param>
<!-- remove large docs -->
<param name="exclude">docs</param>
@ -37,8 +37,8 @@
<service name="tar_scm" mode="manual">
<param name="scm">git</param>
<param name="url">https://github.com/denoland/rusty_v8</param>
<param name="revision">v0.42.1</param>
<param name="version">0.42.1</param>
<param name="revision">v0.44.1</param>
<param name="version">0.44.1</param>
<param name="exclude">.github</param>
<!--

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:58a96b4dff1ad6c4d58da9a17b54b5ece629c4b1f1ddc55302695dd436bda948
size 8424276

3
deno-1.23.0.tar.xz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:56f6203da75880daf0affaff58669d692fbf867a2d01a9c1a06869bc541c78f5
size 8515196

View File

@ -1,3 +1,131 @@
-------------------------------------------------------------------
Sat Jun 18 21:18:04 UTC 2022 - Avindra Goolcharan <avindra@opensuse.org>
- update to v1.23.0:
* BREAKING: remove Intl.v8BreakIterator (#14864)
* BREAKING: Remove unstable Deno.sleepSync (#14719)
* Deno.exit() is an alias to self.close() in worker contexts (#14826)
* feat(console): pass options and depth to custom inspects (#14855)
* feat(ext/crypto): export elliptic keys as "raw" (#14764)
* feat(ext/ffi): support passing and returning bigints (#14523)
* feat(fmt): remove some unnecessary parens in types (#14841)
* feat(fmt): support formatting cjs, cts, mjs, and mts files (#14837)
* feat(ops): 'hybrid' ops - sync returning future (#14640)
* feat(repl): Add key binding to force a new line (#14536)
* feat(runtime/signal): implement SIGINT and SIGBREAK for windows (#14694)
* feat(task): add --cwd flag for configuring the working directory (#14823)
* feat(task): support redirects, cat, xargs (#14859)
* feat(test): update test summary report (#14629)
* feat(vendor): support using an existing import map (#14836)
* feat: make Child.kill argument optional (#14669)
* feat: no type-check by default (#14691)
* feat: update to TypeScript 4.7 (#14242)
* feat(web): enable deflate-raw compression format (#14863)
* fix(check): use "moduleDetection": "force" (#14875)
* fix(cli): add config flag to deno info (#14706)
* fix(console): constrol inspect() indent with option (#14867)
* fix(url): properly indent when inspecting URLs (#14867)
* upgrade: v8 10.4.132.5 (#14874)
- includes 1.22.3:
* fix(ext/fetch): remove deprecation of URL in deno fetch (#14769)
* fix(http/upgradewebsocket): check for open state for idle timeout (#14813)
* fix(lsp): change glob to watch json and jsonc files (#14828)
* fix(lsp): handle get diagnostic errors better (#14776)
* fix(task): support parsing quotes in a word (#14807)
* fix: Format non-error exceptions (#14604)
* fix: watch dynamic imports in --watch (#14775)
- includes 1.22.2
* feat(unstable): add Deno.getGid (#14528)
* fix(cli/dts): add captureStackTrace to lib.dom.extras (#14748)
* fix(ext/crypto): adjust getRandomValues types (#14714)
* fix(fmt): do panic for import decl with empty named imports and
default import (#14773)
- includes 1.22.1:
* fix(bench): update typo in bench summary (#14672)
* fix(cli/dts): change ChildStatus.signal from string to Deno.Signal
(#14690)
* fix(core): op metrics op_names mismatch (#14716)
* fix(core): rethrow exception during structured cloning
serialization (#14671)
* fix(coverage): do not report transpiled files with no lines (#14699)
* fix(ext/websocket): WebSocket dispatch single close event (#13443)
* fix(fmt): prevent infinite loop when formatting certain binary
expressions (#14725)
* fix(runtime): improve permission descriptor validation (#14676)
* fix(vendor): handle relative imports when mapped local folder name
differs from remote's (#14465)
* fix: deno task should actually use current exe for deno command (#14705)
* fix: prevent Deno.exit to fail when dispatchEvent tampered (#14665)
* fix: read raw stdin to prevent buffering (regression) (#14704)
- includes 1.22.0:
* BREAKING(unstable): Enable Deno namespace in workers by default (#14581)
* BREAKING: Remove unstable Deno.applySourceMap API (#14473)
* BREAKING: Remove unstable Deno.emit and Deno.formatDiagnostics APIs (#14463)
* feat(core): deterministic snapshots (#14037)
* feat(core): Revert "core: don't include_str extension js code (#10786)"
(#14614)
* feat(ext/net): add "NS" record support in Deno.resolveDns API (#14372)
* feat(ext/net): add CAA DNS record support in Deno.resolveDns() API (#14624)
* feat(ext/net): add support for SOA records in Deno.resolveDns() API (#14534)
* feat(ext/net): support NAPTR records in Deno.resolveDns() API (#14613)
* feat(ext/net): support full SOA record interface (#14617)
* feat(ext/web): add performance.toJSON (#14548)
* feat(ext/web): implement static Response.json (#14566)
* feat(lsp): enable linting by default (#14583)
* feat(ops): #[op(v8)] (#14582)
* feat(ops): allow passing scope handle to ops (#14574)
* feat(ops): infallible / result-free ops (#14585)
* feat(ops): sync Rc<RefCell> (#14438)
* feat(runtime/spawn): add AbortSignal support (#14538)
* feat(serde_v8): bytes::Bytes support (#14412)
* feat(test): Represent uncaught errors (#14513)
* feat(test): Show Deno.test() call locations for failures (#14484)
* feat(test): change "failures:" headers in test report (#14490)
* feat(test): repeat test name if there's user output (#14495)
* feat(unstable/task): resolve the current executable for the deno command
(#14462)
* feat(web): add performance.timeOrigin (#14489)
* feat: add --no-config flag (#14555)
* feat: add userAgent property to Navigator's prototype (#14415)
* feat: return a signal string instead number on ChildStatus (#14643)
* feat: subcommands type-check only local files by default (#14623)
* fix(core): support classifying ENOTDIR (#14646)
* fix(ext/http): error on invalid headers (#14642)
* fix(ext/http): make serveHttp compress for Accept-Encoding: deflate, gzip
(#14525)
* fix(ext/http): no response body reader when cancelling during shutdown
(#14653)
* fix(ext/http): skip auto-compression if content-encoding present (#14641)
* fix(ext/tls): ability to ignore IP-address certificate errors (#14610)
* fix(ext/web): throw if listener and signal are null (#14601)
* fix(lsp): correct positions in some scenarios (#14359)
* fix: base64 encoding of source maps with emojis (#14607)
* perf(core): optimize encode on large strings (#14619)
* perf(ext/http): faster accept-encoding parsing (#14654)
* perf(ext/web): Add fast path for non-streaming TextDecoder (#14217)
* perf(serde_v8): fast path for large strings (#14450)
- includes 1.21.3:
* fix(cli): add deno version to manual links (#14505)
* fix(core): avoid panic on non-string Error.name (#14529)
* fix(ext/tls): finish TLS handshake before shutting down (#14547)
* fix(runtime): stdout and stderr encoding on Windows (#14559)
* fix(task): accept double hyphen arg immediately following task name (#14567)
* fix(test): do not panic on TestOutputPipe::flush when receiver
dropped (#14560)
* fix(workers): make module evaluation result deterministic (#14553)
- includes 1.21.2:
* fix(cli): add dom.extras lib (#14430)
* fix(coverage): exclude .snap files (#14480)
* fix(ext/http): explicitly close resource after reading (#14471)
* fix(runtime): lossy utf8 readTextFile (#14456)
* fix(task): allow hyphen values after task name (#14434)
* fix(task): support forwarding lone double hyphen (#14436)
* fix(test): actually capture stdout and stderr in workers (#14435)
* fix(test/bench): accept file protocol module specifier CLI args (#14429)
* fix(vendor): do not panic on relative specifier with scheme-like
folder name (#14453)
* fix: improve formatting jsdocs with asterisk as first char on line (#14446)
-------------------------------------------------------------------
Mon May 2 00:14:20 UTC 2022 - Avindra Goolcharan <avindra@opensuse.org>
@ -548,13 +676,13 @@ Sun Oct 31 18:02:53 UTC 2021 - Avindra Goolcharan <avindra@opensuse.org>
* fix(ext/http): merge identical if/else branches (#12269)
* fix(ext/net): should not panic when listening to unix abstract address (#12300)
* fix(ext/web): Format DOMException stack property (#12333)
* fix(http): don't expose body on GET/HEAD requests (#12260)
* fix(lsp): lint diagnostics respect config file (#12338)
* fix(repl): avoid panic when assigned to globalThis (#12273)
* fix(runtime): Declare Window.self and DedicatedWorkerGlobalScope.name with
* util.writable() (#12378)
* fix(runtime): don't equate SIGINT to SIGKILL on Windows (#12356)
* fix(runtime): Getting navigator.hardwareConcurrency on workers shouldn't throw (#12354)
* fix(runtime): Getting navigator.hardwareConcurrency on workers
shouldn't throw (#12354)
* fix(runtime/js/workers): throw errors instead of using an op (#12249)
* fix(runtime/testing): format aggregate errors (#12183)
* perf(core): use opcall() directly (#12310)

View File

@ -19,7 +19,7 @@
Name: deno
Version: 1.22.0
Version: 1.23.0
Release: 0
Summary: A secure JavaScript and TypeScript runtime
License: MIT

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e79ce17bcca7a2e6e15b3c9f6ff37e5b75774531fe15a05bf5222c2d4a5b2fef
size 65467368
oid sha256:a5cc75414e8adcfd6b434b428a47c771cd3a5abe50cde07216c6cab7edac3faa
size 66041708