Accepting request 1076695 from devel:languages:javascript

- update to 1.32.3
  * fix(check): ensure diagnostics caused by changes in other files get
    invalidated between runs (#18541)
  * fix(ext/ffi): crash when same reference struct is used in two fields (#18531)
  * fix(lsp): add a document preload file system entry limit (#18553)
  * fix(repl): disable language server document preloading in the repl (#18543)
  * fix(test): don't swallow sanitizer errors with permissions (#18550)
  * perf(check): faster source hashing (#18534)
- update to 1.32.2:
  * Revert "refactor(ext/node): Use Deno.inspect (#17960)" (#18491)
  * feat(core): initialize SQLite off-main-thread (#18401)
  * feat(ext/kv): return versionstamp from set/commit (#18512)
  * feat(ext/node): add crypto.checkPrime API (#18465)
  * feat(ext/node): implement crypto.createSecretKey (#18413)
  * feat(test): print pending tests on sigint (#18246)
  * feat: port node:zlib to rust (#18291)
  * fix(cli): add colors to "Module not found" error frame (#18437)
  * fix(cli): don't store blob and data urls in the module cache (#18261)
  * fix(cli/bench): look for clone3 syscalls for thread count (#18456)
  * fix(core): located_script_name macro was using format syntax (#18388)
  * fix(core): panic at build time if extension code contains
    anything other than 7-bit ASCII (#18372)
  * fix(core): restore cache journal mode to TRUNCATE and tweak
    tokio test in CacheDB (#18469)
  * fix(coverage): ignore files from npm registry (#18457)
  * fix(dts): improve types for the Deno.KV API (#18510)
  * fix(ext/kv): add missing getMany method (#18410)
  * fix(ext/node): add aes-128-ecb algorithm support (#18412)
  * fix(ext/node): add missing _preloadModules hook (#18447)
  * fix(ext/node): implement crypto.Sign
    (RSA/PEM/SHA{224,256,384,512}) (#18471)
  * fix(ext/node): make cipher/decipher transform stream (#18408)
  * fix(lsp): textDocument/references should respect
    includeDeclaration (#18496)
  * fix(lsp): better handling of data: urls (#18527)
  * fix(lsp): include all diagnosable documents on initialize (#17979)
  * fix(ops): fallback when FastApiOneByteString is not utf8 (#18518)
  * fix(repl): improve package.json support (#18497)
  * fix(streams): add support Float64Array to ReadableStreamByobReader
    (#18188)
  * fix: Add missing processenv winapi feature to deno_io (#18485)
  * fix: upgrade to TypeScript 5.0.3 (#18532)
  * perf(ext/websocket): efficient event kind serialization (#18509)
  * perf(ext/websocket): special op for sending binary data frames (#18506)
  * perf(ext/websocket): special op for sending text data frames (#18507)
  * perf(ext/websocket): use opAsync2 to avoid spread deopt (#18525)
  * perf: const op declaration (#18288)

OBS-URL: https://build.opensuse.org/request/show/1076695
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/deno?expand=0&rev=12
This commit is contained in:
Dominique Leuenberger 2023-04-02 17:18:17 +00:00 committed by Git OBS Bridge
commit 330a1b26dd
6 changed files with 65 additions and 10 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.32.1</param>
<param name="version">1.32.1</param>
<param name="revision">v1.32.3</param>
<param name="version">1.32.3</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.66.0</param>
<param name="version">0.66.0</param>
<param name="revision">v0.68.0</param>
<param name="version">0.68.0</param>
<param name="exclude">.github</param>
<!--

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:324fb20d55d87f9c997f0c4bbca81412d5585c2cef3514ee9da1191b1990d62d
size 7154700

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

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:71223868fe2c33bf4283dd8df2ebcc7b3463fa01d7bb144f158ba07c15b328c7
size 7147476

View File

@ -1,3 +1,58 @@
-------------------------------------------------------------------
Sun Apr 2 02:45:22 UTC 2023 - Avindra Goolcharan <avindra@opensuse.org>
- update to 1.32.3
* fix(check): ensure diagnostics caused by changes in other files get
invalidated between runs (#18541)
* fix(ext/ffi): crash when same reference struct is used in two fields (#18531)
* fix(lsp): add a document preload file system entry limit (#18553)
* fix(repl): disable language server document preloading in the repl (#18543)
* fix(test): don't swallow sanitizer errors with permissions (#18550)
* perf(check): faster source hashing (#18534)
-------------------------------------------------------------------
Sat Apr 1 17:58:43 UTC 2023 - Avindra Goolcharan <avindra@opensuse.org>
- update to 1.32.2:
* Revert "refactor(ext/node): Use Deno.inspect (#17960)" (#18491)
* feat(core): initialize SQLite off-main-thread (#18401)
* feat(ext/kv): return versionstamp from set/commit (#18512)
* feat(ext/node): add crypto.checkPrime API (#18465)
* feat(ext/node): implement crypto.createSecretKey (#18413)
* feat(test): print pending tests on sigint (#18246)
* feat: port node:zlib to rust (#18291)
* fix(cli): add colors to "Module not found" error frame (#18437)
* fix(cli): don't store blob and data urls in the module cache (#18261)
* fix(cli/bench): look for clone3 syscalls for thread count (#18456)
* fix(core): located_script_name macro was using format syntax (#18388)
* fix(core): panic at build time if extension code contains
anything other than 7-bit ASCII (#18372)
* fix(core): restore cache journal mode to TRUNCATE and tweak
tokio test in CacheDB (#18469)
* fix(coverage): ignore files from npm registry (#18457)
* fix(dts): improve types for the Deno.KV API (#18510)
* fix(ext/kv): add missing getMany method (#18410)
* fix(ext/node): add aes-128-ecb algorithm support (#18412)
* fix(ext/node): add missing _preloadModules hook (#18447)
* fix(ext/node): implement crypto.Sign
(RSA/PEM/SHA{224,256,384,512}) (#18471)
* fix(ext/node): make cipher/decipher transform stream (#18408)
* fix(lsp): textDocument/references should respect
includeDeclaration (#18496)
* fix(lsp): better handling of data: urls (#18527)
* fix(lsp): include all diagnosable documents on initialize (#17979)
* fix(ops): fallback when FastApiOneByteString is not utf8 (#18518)
* fix(repl): improve package.json support (#18497)
* fix(streams): add support Float64Array to ReadableStreamByobReader
(#18188)
* fix: Add missing processenv winapi feature to deno_io (#18485)
* fix: upgrade to TypeScript 5.0.3 (#18532)
* perf(ext/websocket): efficient event kind serialization (#18509)
* perf(ext/websocket): special op for sending binary data frames (#18506)
* perf(ext/websocket): special op for sending text data frames (#18507)
* perf(ext/websocket): use opAsync2 to avoid spread deopt (#18525)
* perf: const op declaration (#18288)
-------------------------------------------------------------------
Thu Mar 23 23:52:07 UTC 2023 - Avindra Goolcharan <avindra@opensuse.org>

View File

@ -19,7 +19,7 @@
Name: deno
Version: 1.32.1
Version: 1.32.3
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:75b636db84e99ea2be754038c703a475e3b01ad932d3ea83ddb187a704e93d2d
size 67672072
oid sha256:cc4c3468aa9703f61ba0555278fe3edd0aee67a9a697a9ec3773c47cda15b316
size 68831456