Accepting request 1083589 from devel:languages:javascript

- update to 1.33.1:
  * fix(ext/fetch): subview Uint8Array in Req/Resp (#18890)
  * fix(ext/websocket): client connect URI (#18892)
  * fix(ext/websocket): restore op_ws_send_ping (#18891)
  * fix(repl): don't panic on undefined exception (#18888)
- includes 1.33.0:
  * BREAKING(unstable): remove "Deno.serve(handler, options)" overload (#18759)
  * Revert "chore(ext/websocket): Add autobahn|testsuite fuzzingclient" (#18856)
  * feat(bench): add --no-run flag (#18433)
  * feat(cli): don't check permissions for statically analyzable
    dynamic imports (#18713)
  * feat(cli): flatten deno.json configuaration (#17799)
  * feat(ext/ffi): support marking symbols as optional (#18529)
  * feat(ext/http): Rework Deno.serve using hyper 1.0-rc3 (#18619)
  * feat(ext/kv): add more atomic operation helpers (#18854)
  * feat(ext/kv): return ok bool from atomic commit (#18873)
  * feat(ext/url): URL.canParse (#18286)
  * feat(lint): add Deno.run to no-deprecated-deno-api (#18869)
  * feat(node/crypto): Elliptic Curve Diffie-Hellman (ECDH) support (#18832)
  * feat(node/http): implement ClientRequest.setTimeout() (#18783)
  * feat(task): introduce built-in unset command to deno task (#18606)
  * feat: Deprecate Deno.run API in favor of Deno.Command (#17630) (#18866)
  * fix(compile): write bytes directly to output file (#18777)
  * fix(core): Wrap safe collections' argument of primordials (#18750)
  * fix(coverage): exclude test files (#18748)
  * fix(dts): URLPatternComponentResult groups should have
    possibly undefined key values (#18643)
  * fix(ext/node): add crypto.sign|verify methods (#18765)
  * fix(ext/node): fix hash.flush (#18818)
  * fix(ext/node): implement asymmetric keygen (#18651)
  * fix(ext/node): improve vm.runInThisContext (#18767)
  * fix(ext/node): prime generation (#18861)
  * fix(lsp): show dependency errors for repeated imports (#18807)
  * fix(npm): only include top level packages in top level
    node_modules directory (#18824)
  * fix(test): allow explicit undefined for boolean test options (#18786)
  * fix(test): handle dispatched exceptions from test functions (#18853)
  * perf(ext/http): avoid spread arg deopt in op_http_wait (#18850)
  * perf(ext/http): optimize away code based on callback length (#18849)
  * perf(ext/http): optimize for zero or one-packet response streams (#18834)
  * perf(ext/http): use smi for slab IDs (#18848)
  * perf(ext/websocket): various performance improvements (#18862)

OBS-URL: https://build.opensuse.org/request/show/1083589
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/deno?expand=0&rev=15
This commit is contained in:
Dominique Leuenberger 2023-04-29 15:28:26 +00:00 committed by Git OBS Bridge
commit cbce46fb1d
6 changed files with 56 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.5</param>
<param name="version">1.32.5</param>
<param name="revision">v1.33.1</param>
<param name="version">1.33.1</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.68.0</param>
<param name="version">0.68.0</param>
<param name="revision">v0.71.0</param>
<param name="version">0.71.0</param>
<param name="exclude">.github</param>
<!--

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2dc7edcc9352a7f8a6ca2da11de1edb815018192d1ffe7b77872637c6a222a83
size 7123760

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

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5bb2b64cdfb97d279c6af98c5f9e7c675449346c98af69c18a329f07a17b637f
size 7143944

View File

@ -1,3 +1,49 @@
-------------------------------------------------------------------
Sat Apr 29 00:29:03 UTC 2023 - Avindra Goolcharan <avindra@opensuse.org>
- update to 1.33.1:
* fix(ext/fetch): subview Uint8Array in Req/Resp (#18890)
* fix(ext/websocket): client connect URI (#18892)
* fix(ext/websocket): restore op_ws_send_ping (#18891)
* fix(repl): don't panic on undefined exception (#18888)
- includes 1.33.0:
* BREAKING(unstable): remove "Deno.serve(handler, options)" overload (#18759)
* Revert "chore(ext/websocket): Add autobahn|testsuite fuzzingclient" (#18856)
* feat(bench): add --no-run flag (#18433)
* feat(cli): don't check permissions for statically analyzable
dynamic imports (#18713)
* feat(cli): flatten deno.json configuaration (#17799)
* feat(ext/ffi): support marking symbols as optional (#18529)
* feat(ext/http): Rework Deno.serve using hyper 1.0-rc3 (#18619)
* feat(ext/kv): add more atomic operation helpers (#18854)
* feat(ext/kv): return ok bool from atomic commit (#18873)
* feat(ext/url): URL.canParse (#18286)
* feat(lint): add Deno.run to no-deprecated-deno-api (#18869)
* feat(node/crypto): Elliptic Curve Diffie-Hellman (ECDH) support (#18832)
* feat(node/http): implement ClientRequest.setTimeout() (#18783)
* feat(task): introduce built-in unset command to deno task (#18606)
* feat: Deprecate Deno.run API in favor of Deno.Command (#17630) (#18866)
* fix(compile): write bytes directly to output file (#18777)
* fix(core): Wrap safe collections' argument of primordials (#18750)
* fix(coverage): exclude test files (#18748)
* fix(dts): URLPatternComponentResult groups should have
possibly undefined key values (#18643)
* fix(ext/node): add crypto.sign|verify methods (#18765)
* fix(ext/node): fix hash.flush (#18818)
* fix(ext/node): implement asymmetric keygen (#18651)
* fix(ext/node): improve vm.runInThisContext (#18767)
* fix(ext/node): prime generation (#18861)
* fix(lsp): show dependency errors for repeated imports (#18807)
* fix(npm): only include top level packages in top level
node_modules directory (#18824)
* fix(test): allow explicit undefined for boolean test options (#18786)
* fix(test): handle dispatched exceptions from test functions (#18853)
* perf(ext/http): avoid spread arg deopt in op_http_wait (#18850)
* perf(ext/http): optimize away code based on callback length (#18849)
* perf(ext/http): optimize for zero or one-packet response streams (#18834)
* perf(ext/http): use smi for slab IDs (#18848)
* perf(ext/websocket): various performance improvements (#18862)
-------------------------------------------------------------------
Wed Apr 19 17:56:40 UTC 2023 - Avindra Goolcharan <avindra@opensuse.org

View File

@ -19,7 +19,7 @@
Name: deno
Version: 1.32.5
Version: 1.33.1
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:e93a2b866cd106437ff4a28ed2d1baf460c8a3db538bcff2286b76aebe45bca4
size 68770140
oid sha256:fed6c6f958cdf7bc6bcabe63a469affd3f5ce24a2c1377d2c19523280d7683fd
size 71051940