Accepting request 1074042 from devel:languages:javascript
- update to 1.32.1: * fix(core): disable resizable ArrayBuffer and growable SharedArrayBuffer (#18395) * fix(cli): restore deno run - to handle stdin as typescript (#18391) * fix(inspect): ensure non-compact output when object literal has newline in entry text (#18366) * fix(lsp): ensure enablePaths works when clients do not provide a trailing slash for workspace dir (#18373) - update to 1.32.0: * BREAKING(unstable): remove WebGPU (#18094) * feat(ext/fs): FileInfo.dev is supported on Windows (#18237) * feat(cli): --ext parameter for run, compile, and bundle (#17172) * feat(compile): Add support for web workers in standalone mode (#17657) * feat(compile): Enable multiple roots for a standalone module graph (#17663) * feat(core): deno_core::extension! macro to simplify extension registration (#18210) * feat(ext/kv): key-value store (#18232) * feat(ext/net): Add multicasting APIs to DatagramConn (#10706) (#17811) * feat(ext/url): URLSearchParams.size (#17884) * feat(repl): add DENO_REPL_HISTORY to change history file path (#18047) * feat(serde_v8): support BigInt serialization (#18225) * feat: TypeScript 5.0.2 (except decorators) (#18294) * fix(cli): preserve blob store when resetting file watcher (#18253) * fix(cli/integration): clippy lints (#18248) * fix(ext/kv): don't request permissions for ":memory:" (#18346) * fix(ext/kv): reverse mapping between AnyValue::Bool and KeyPart::Bool (#18365) * fix(ext/node): add createDecipheriv (#18245) * fix(ext/node): resource leak in createHmac (#18229) * fix(ext/node): use Deno.Command from ext:runtime (#18289) * fix(repl): Hide indexable properties in tab completion (#18141) * fix(runtime): Extract error code for all OS error variants (#17958) * fix: include error in message about not being able to create the TypeScript cache (#18356) * perf(check): type check local files only when not using --all (#18329) * perf(core) Reduce copying and cloning in extension initialization (#18252) * perf(core) Reduce script name and script code copies (#18298) * perf(core): preserve ops between snapshots (#18080) * perf(core): use static specifier in ExtensionFileSource (#18271) * perf: disable WAL for transpiled source cache (#18084) * perf: disable runtime snapshot compression (#18239) - build: remove python3 hack OBS-URL: https://build.opensuse.org/request/show/1074042 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/deno?expand=0&rev=11
This commit is contained in:
commit
961457b7af
8
_service
8
_service
@ -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.3</param>
|
||||
<param name="version">1.31.3</param>
|
||||
<param name="revision">v1.32.1</param>
|
||||
<param name="version">1.32.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.64.0</param>
|
||||
<param name="version">0.64.0</param>
|
||||
<param name="revision">v0.66.0</param>
|
||||
<param name="version">0.66.0</param>
|
||||
<param name="exclude">.github</param>
|
||||
|
||||
<!--
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c2c7b5f597127f1f950158ede1c25422b452e62bfc1557055f628d51797621a4
|
||||
size 7638420
|
3
deno-1.32.1.tar.xz
Normal file
3
deno-1.32.1.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:324fb20d55d87f9c997f0c4bbca81412d5585c2cef3514ee9da1191b1990d62d
|
||||
size 7154700
|
53
deno.changes
53
deno.changes
@ -1,3 +1,56 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 23 23:52:07 UTC 2023 - Avindra Goolcharan <avindra@opensuse.org>
|
||||
|
||||
- update to 1.32.1:
|
||||
* fix(core): disable resizable ArrayBuffer and growable
|
||||
SharedArrayBuffer (#18395)
|
||||
* fix(cli): restore deno run - to handle stdin as typescript (#18391)
|
||||
* fix(inspect): ensure non-compact output when object literal
|
||||
has newline in entry text (#18366)
|
||||
* fix(lsp): ensure enablePaths works when clients do not
|
||||
provide a trailing slash for workspace dir (#18373)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 23 01:40:16 UTC 2023 - Avindra Goolcharan <avindra@opensuse.org>
|
||||
|
||||
- update to 1.32.0:
|
||||
* BREAKING(unstable): remove WebGPU (#18094)
|
||||
* feat(ext/fs): FileInfo.dev is supported on Windows (#18237)
|
||||
* feat(cli): --ext parameter for run, compile, and bundle (#17172)
|
||||
* feat(compile): Add support for web workers in standalone mode (#17657)
|
||||
* feat(compile): Enable multiple roots for a standalone module
|
||||
graph (#17663)
|
||||
* feat(core): deno_core::extension! macro to simplify extension
|
||||
registration (#18210)
|
||||
* feat(ext/kv): key-value store (#18232)
|
||||
* feat(ext/net): Add multicasting APIs to DatagramConn (#10706)
|
||||
(#17811)
|
||||
* feat(ext/url): URLSearchParams.size (#17884)
|
||||
* feat(repl): add DENO_REPL_HISTORY to change history file path (#18047)
|
||||
* feat(serde_v8): support BigInt serialization (#18225)
|
||||
* feat: TypeScript 5.0.2 (except decorators) (#18294)
|
||||
* fix(cli): preserve blob store when resetting file watcher (#18253)
|
||||
* fix(cli/integration): clippy lints (#18248)
|
||||
* fix(ext/kv): don't request permissions for ":memory:" (#18346)
|
||||
* fix(ext/kv): reverse mapping between AnyValue::Bool and
|
||||
KeyPart::Bool (#18365)
|
||||
* fix(ext/node): add createDecipheriv (#18245)
|
||||
* fix(ext/node): resource leak in createHmac (#18229)
|
||||
* fix(ext/node): use Deno.Command from ext:runtime (#18289)
|
||||
* fix(repl): Hide indexable properties in tab completion (#18141)
|
||||
* fix(runtime): Extract error code for all OS error variants (#17958)
|
||||
* fix: include error in message about not being able to create
|
||||
the TypeScript cache (#18356)
|
||||
* perf(check): type check local files only when not using --all (#18329)
|
||||
* perf(core) Reduce copying and cloning in extension
|
||||
initialization (#18252)
|
||||
* perf(core) Reduce script name and script code copies (#18298)
|
||||
* perf(core): preserve ops between snapshots (#18080)
|
||||
* perf(core): use static specifier in ExtensionFileSource (#18271)
|
||||
* perf: disable WAL for transpiled source cache (#18084)
|
||||
* perf: disable runtime snapshot compression (#18239)
|
||||
- build: remove python3 hack
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 16 18:23:39 UTC 2023 - Avindra Goolcharan <avindra@opensuse.org>
|
||||
|
||||
|
@ -19,7 +19,7 @@
|
||||
|
||||
|
||||
Name: deno
|
||||
Version: 1.31.3
|
||||
Version: 1.32.1
|
||||
Release: 0
|
||||
Summary: A secure JavaScript and TypeScript runtime
|
||||
License: MIT
|
||||
@ -68,12 +68,6 @@ cp %{SOURCE2} .cargo/config
|
||||
rm Cargo.lock
|
||||
|
||||
%build
|
||||
# workaround to use python3
|
||||
# where "python" is invoked
|
||||
mkdir "$(pwd)/bin"
|
||||
ln -sf %{_bindir}/python3 "$(pwd)/bin/python"
|
||||
export PATH="$PATH:$(pwd)/bin"
|
||||
|
||||
export V8_FROM_SOURCE=1
|
||||
export CLANG_BASE_PATH=%{_prefix}
|
||||
# https://www.chromium.org/developers/gn-build-configuration
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7b35c27147f73724d476e3296e940a2e4af1cc11bc60cd9223bc8a587d8c0cb2
|
||||
size 70687432
|
||||
oid sha256:75b636db84e99ea2be754038c703a475e3b01ad932d3ea83ddb187a704e93d2d
|
||||
size 67672072
|
||||
|
Loading…
Reference in New Issue
Block a user