Accepting request 1072728 from devel:languages:javascript

- update to 1.31.3:
  * fix(check): regression where config "types" entries caused type checking
    errors (#18124)
  * fix(core): Upgrades bytes crate from =1.2.1 to ^1.4.0 (#18123)
  * fix(core): SafePromiseAll to be unaffected by Array#@@iterator (#17542)
  * fix(core/internal): fix typo in primordial type definitions (#18125)
  * fix(ext/fs): retry if file already exists in makeTempFile (#17787)
  * fix(ext/http): abort request signal when response errors (#17822)
  * fix(ext/node): add crypto.createCipheriv (#18091)
  * fix(ext/node): implement "ascii" encoding for node:fs writeFile() (#18097)
  * fix(ext/web): Stop using globalThis.ReadableStream in Blob (#18187)
  * fix(info/doc): add missing --no-lock and --lock flags (#18166)
  * fix(lsp): avoid calling client while holding lock (#18197)
  * fix(npm): "not implemented scheme" message should properly show the scheme
    (#18209)
  * fix(npm): show a progress bar when initializing the node_modules folder
    (#18136)
  * fix(repl): do not panic deleting Deno or deleting all its properties
    (#18211)
  * fix: ensure no node_modules directory is created when a package.json exists
    and no npm dependencies are used (#18134)
  * perf: do not depend on iana-time-zone (#18088)
- update to 1.31.2:
  * Revert "perf: disable snapshot compression (#18061)" (#18074)
  * deps: bump regexp to ^1.7.0 (#17966)
  * deps: bump once_cell to ^1.17.1 (#18075)
  * feat(core): prevent isolate drop for CLI main worker (#18059)
  * feat(ext/ffi): Make External pointers keep reference to V8 buffer (#17955)
  * feat(ops): reland fast zero copy string arguments (#17996)
  * feat(ops): relational ops (#18023)
  * fix(check): include dts files in tsc roots (#18026)
  * fix(cli): add space after period in --v8-flags (#18063)
  * fix(cli,ext/web): Upgrading uuid from =1.1.2 to 1.3.0 (#17963)
  * fix(core): introduce SafeRegExp to primordials (#17592)
  * fix(ext/crypto): correctly limit ECDSA and hash algorithms (#18030)
  * fix(ext/ffi): Remove deno_core::OpState qualifiers, fix ops returning
    pointer defaults (#17959)
  * fix(ext/node): remove unused _hex module (#18045)
  * fix(ext/node): util.types.isSharedArrayBuffer (#17836)
  * fix(ext/webstorage): check size of inputs before insert (#18087)
  * fix(lockfile): don't touch lockfile is npm specifiers are identical (#17973)
  * fix(npm): improve peer dependency resolution with circular dependencies
    (#18069)
  * fix(prompt): better output with control chars (#18108)
  * fix(rumtime): Add Deno. prefix for registered symbols (#18086)
  * fix(runtime/windows): ensure Deno.stdin.setRaw(false) properly
    disables raw mode (#17983)
  * fix: Split extension registration and snapshotting (#18098)
  * fix: attempt to only allow one deno process to update the node_modules
    folder at a time (#18058)
  * fix: lazily surface errors in package.json deps parsing (#17974)
  * perf(core): over-allocate in ModuleMap when running from snapshot (#18083)
  * perf(ext/node): improve createHash performance (#18033)
  * perf: disable snapshot compression (#18061)
  * perf: don't add unload event listener (#18082)
  * perf: move runtime bootstrap code to snapshot time (#18062)
  * perf: move setting up Deno namespace to snapshot time (#18067)
  * wpt: unlock nightly with --no-ignore (#17998)

OBS-URL: https://build.opensuse.org/request/show/1072728
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/deno?expand=0&rev=10
This commit is contained in:
Dominique Leuenberger 2023-03-18 23:30:57 +00:00 committed by Git OBS Bridge
commit 64dff6f5e4
6 changed files with 77 additions and 11 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.31.1</param>
<param name="version">1.31.1</param>
<param name="revision">v1.31.3</param>
<param name="version">1.31.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.63.0</param>
<param name="version">0.63.0</param>
<param name="revision">v0.64.0</param>
<param name="version">0.64.0</param>
<param name="exclude">.github</param>
<!--

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:68c27a7d241a4761782976eeec77ffad986c70a8ac0fd9ac8edb9821b6105a57
size 9466752

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

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

View File

@ -1,3 +1,69 @@
-------------------------------------------------------------------
Thu Mar 16 18:23:39 UTC 2023 - Avindra Goolcharan <avindra@opensuse.org>
- update to 1.31.3:
* fix(check): regression where config "types" entries caused type checking
errors (#18124)
* fix(core): Upgrades bytes crate from =1.2.1 to ^1.4.0 (#18123)
* fix(core): SafePromiseAll to be unaffected by Array#@@iterator (#17542)
* fix(core/internal): fix typo in primordial type definitions (#18125)
* fix(ext/fs): retry if file already exists in makeTempFile (#17787)
* fix(ext/http): abort request signal when response errors (#17822)
* fix(ext/node): add crypto.createCipheriv (#18091)
* fix(ext/node): implement "ascii" encoding for node:fs writeFile() (#18097)
* fix(ext/web): Stop using globalThis.ReadableStream in Blob (#18187)
* fix(info/doc): add missing --no-lock and --lock flags (#18166)
* fix(lsp): avoid calling client while holding lock (#18197)
* fix(npm): "not implemented scheme" message should properly show the scheme
(#18209)
* fix(npm): show a progress bar when initializing the node_modules folder
(#18136)
* fix(repl): do not panic deleting Deno or deleting all its properties
(#18211)
* fix: ensure no node_modules directory is created when a package.json exists
and no npm dependencies are used (#18134)
* perf: do not depend on iana-time-zone (#18088)
-------------------------------------------------------------------
Sat Mar 11 17:58:10 UTC 2023 - Avindra Goolcharan <avindra@opensuse.org>
- update to 1.31.2:
* Revert "perf: disable snapshot compression (#18061)" (#18074)
* deps: bump regexp to ^1.7.0 (#17966)
* deps: bump once_cell to ^1.17.1 (#18075)
* feat(core): prevent isolate drop for CLI main worker (#18059)
* feat(ext/ffi): Make External pointers keep reference to V8 buffer (#17955)
* feat(ops): reland fast zero copy string arguments (#17996)
* feat(ops): relational ops (#18023)
* fix(check): include dts files in tsc roots (#18026)
* fix(cli): add space after period in --v8-flags (#18063)
* fix(cli,ext/web): Upgrading uuid from =1.1.2 to 1.3.0 (#17963)
* fix(core): introduce SafeRegExp to primordials (#17592)
* fix(ext/crypto): correctly limit ECDSA and hash algorithms (#18030)
* fix(ext/ffi): Remove deno_core::OpState qualifiers, fix ops returning
pointer defaults (#17959)
* fix(ext/node): remove unused _hex module (#18045)
* fix(ext/node): util.types.isSharedArrayBuffer (#17836)
* fix(ext/webstorage): check size of inputs before insert (#18087)
* fix(lockfile): don't touch lockfile is npm specifiers are identical (#17973)
* fix(npm): improve peer dependency resolution with circular dependencies
(#18069)
* fix(prompt): better output with control chars (#18108)
* fix(rumtime): Add Deno. prefix for registered symbols (#18086)
* fix(runtime/windows): ensure Deno.stdin.setRaw(false) properly
disables raw mode (#17983)
* fix: Split extension registration and snapshotting (#18098)
* fix: attempt to only allow one deno process to update the node_modules
folder at a time (#18058)
* fix: lazily surface errors in package.json deps parsing (#17974)
* perf(core): over-allocate in ModuleMap when running from snapshot (#18083)
* perf(ext/node): improve createHash performance (#18033)
* perf: disable snapshot compression (#18061)
* perf: don't add unload event listener (#18082)
* perf: move runtime bootstrap code to snapshot time (#18062)
* perf: move setting up Deno namespace to snapshot time (#18067)
* wpt: unlock nightly with --no-ignore (#17998)
-------------------------------------------------------------------
Sun Feb 26 20:00:55 UTC 2023 - Avindra Goolcharan <avindra@opensuse.org>

View File

@ -19,7 +19,7 @@
Name: deno
Version: 1.31.1
Version: 1.31.3
Release: 0
Summary: A secure JavaScript and TypeScript runtime
License: MIT
@ -43,7 +43,7 @@ BuildRequires: llvm
BuildRequires: ninja
BuildRequires: pkgconfig
BuildRequires: python3-base
BuildRequires: rust >= 1.62.1
BuildRequires: rust >= 1.68.0
BuildRequires: pkgconfig(glib-2.0)
BuildRequires: pkgconfig(gmodule-2.0)
BuildRequires: pkgconfig(gobject-2.0)

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:538d000dfeaf656c44c08def45d771f1fe0a79939f666ede9410e6eddd279d7f
size 70608744
oid sha256:7b35c27147f73724d476e3296e940a2e4af1cc11bc60cd9223bc8a587d8c0cb2
size 70687432