Accepting request 1007112 from devel:languages:javascript
- update to 1.26.0: * feat: add --allow-sys permission flag (#16028) * feat: add --no-npm flag to disable npm: imports (#15673) * feat: Add requesting API name to permission prompt (#15936) * feat: allow exiting on two consecutive ctrl+c presses (#15981) * feat: download progress bar (#15814) * feat: implement Web Cache API (#15829) * feat: Refresh interactive permission prompt (#15907) * feat: Stabilize Deno.hostname() API (#15932) * feat: Stabilize Deno.refTimer() and Deno.unrefTimer() APIs (#16036) * feat: TypeScript 4.8 update (#16040) * feat(cli): update to TypeScript 4.8 (#15064) * feat(core): add Deno.core.setPromiseHooks (#15475) * feat(ext/crypto): add x25519 and Ed25519 CFRG curves (#14119) * feat(ext/flash): add reuseport option on Linux (#16022) * feat(info): add information about npm modules cache (#15750) * feat(lint): add --compact flag for terse output (#15926) * feat(npm): functionality to support child_process.fork (#15891) * feat(ops): Fallible fast ops (#15989) * feat(unstable): Deno.setRaw -> Deno.stdin.setRaw (#15797) * fix(cli/bench): strace numeric format (#16055) * fix(cli/vendor): handle assert type json during vendoring (#16059) * fix(ext/console): fix error when logging a proxied Date (#16018) * fix(ext/fetch): blob url (#16057) * fix(ext/flash): reregister socket on partial read on Windows (#16076) * fix(fmt): keep type args in type queries and keep empty array expr element's trailing comma (#16034) * fix(npm): use ntfs junctions in node_modules folder on Windows (#16061) * fix(require): tryPackage uses optional chaining (#16020) * fix(runtime): refresh perm prompt 3 lines instead of 4 (#16049) * perf: don't re-download package tarball to global cache if local node_modules folder exists for package (#16005) * perf: use fast ops for tty (#15976) * perf(ext/console): break on iterableLimit & better sparse array handling (#15935) * perf(ext/fetch): use content-length in InnerBody.consume (#15925) - includes 1.25.4: * feat(unstable/npm): add flag for creating and resolving npm packages to a local node_modules folder (#15971) * feat(unstable/npm): add support for --reload=npm: and --reload=npm: (#15972) * feat(internal/ops): Automatic fast ops creation (#15527) * fix(compile): keep non-exe extension in output name on Windows (#15994) * fix(doc): deno doc should parse modules if they haven't been parsed before (#15941) * fix(ext/node): fix builtin module module (#15904) * fix(ext/webgpu): make GPUDevice.features SetLike (#15853) * fix(flash): panic if response if undefined (#15964) * fix(runtime): better error message with Deno.env.get/set (#15966) * fix(runtime): fix permission status cache keys (#15899) * perf(cli): avoid canonicalize_path if config file does not exist (#15957) * perf(cli): avoid clap::App::clone (#15951) * perf(cli): use -O3 instead of -Oz (#15952) * perf(core): use single ObjectTemplate for ops in initialize_ops (#15959) * perf(ext/console): avoid wrapConsole when not inspecting (#15931) * perf(web): optimize encodeInto() (#15922) * perf: fs optimizations - part 1 (#15873) - update to 1.25.3: * doc(unstable): mention that signal input isn't supported in spawnSync (#15889) * fix(ext/flash): don't block requests (#15852) * fix(npm): align Deno importing Node cjs with Node esm importing cjs (#15879) * fix(npm): align Node esm code importing cjs with Node (#15838) * fix(npm): binary entrypoint for .js or no extension (#15900) * fix(npm): remove export binding to match node (#15837) * fix(npm): support cjs resolution of package subpath with package.json (#15855) * fix(npm): use shim from deno_node crate for 'module' built-in module (#15881) * fix(ops): add node.js env variable allowlist (#15893) * perf(ext/flash): remove string->buffer cache (#15850) * perf(serde_v8): remove Mutex from ZeroCopyBuf (#15888) * perf(url): return early if url has no query string (#15856) * perf: optimize URL serialization (#15663) OBS-URL: https://build.opensuse.org/request/show/1007112 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/deno?expand=0&rev=5
This commit is contained in:
commit
45cdec0888
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.25.2</param>
|
||||
<param name="version">1.25.2</param>
|
||||
<param name="revision">v1.26.0</param>
|
||||
<param name="version">1.26.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.49.0</param>
|
||||
<param name="version">0.49.0</param>
|
||||
<param name="revision">v0.51.0</param>
|
||||
<param name="version">0.51.0</param>
|
||||
<param name="exclude">.github</param>
|
||||
|
||||
<!--
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c8c1e841b6675ce555b36851a613e687285f85bfd2f34356541620fbcf9453aa
|
||||
size 9448344
|
3
deno-1.26.0.tar.xz
Normal file
3
deno-1.26.0.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:097fb5b5eb7d1fb138180904818ba4895432f2341ac8a73f387c490819dd528e
|
||||
size 8908076
|
77
deno.changes
77
deno.changes
@ -1,3 +1,80 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 29 19:17:45 UTC 2022 - Avindra Goolcharan <avindra@opensuse.org>
|
||||
|
||||
- update to 1.26.0:
|
||||
* feat: add --allow-sys permission flag (#16028)
|
||||
* feat: add --no-npm flag to disable npm: imports (#15673)
|
||||
* feat: Add requesting API name to permission prompt (#15936)
|
||||
* feat: allow exiting on two consecutive ctrl+c presses (#15981)
|
||||
* feat: download progress bar (#15814)
|
||||
* feat: implement Web Cache API (#15829)
|
||||
* feat: Refresh interactive permission prompt (#15907)
|
||||
* feat: Stabilize Deno.hostname() API (#15932)
|
||||
* feat: Stabilize Deno.refTimer() and Deno.unrefTimer() APIs (#16036)
|
||||
* feat: TypeScript 4.8 update (#16040)
|
||||
* feat(cli): update to TypeScript 4.8 (#15064)
|
||||
* feat(core): add Deno.core.setPromiseHooks (#15475)
|
||||
* feat(ext/crypto): add x25519 and Ed25519 CFRG curves (#14119)
|
||||
* feat(ext/flash): add reuseport option on Linux (#16022)
|
||||
* feat(info): add information about npm modules cache (#15750)
|
||||
* feat(lint): add --compact flag for terse output (#15926)
|
||||
* feat(npm): functionality to support child_process.fork (#15891)
|
||||
* feat(ops): Fallible fast ops (#15989)
|
||||
* feat(unstable): Deno.setRaw -> Deno.stdin.setRaw (#15797)
|
||||
* fix(cli/bench): strace numeric format (#16055)
|
||||
* fix(cli/vendor): handle assert type json during vendoring (#16059)
|
||||
* fix(ext/console): fix error when logging a proxied Date (#16018)
|
||||
* fix(ext/fetch): blob url (#16057)
|
||||
* fix(ext/flash): reregister socket on partial read on Windows (#16076)
|
||||
* fix(fmt): keep type args in type queries and keep empty array expr element's
|
||||
trailing comma (#16034)
|
||||
* fix(npm): use ntfs junctions in node_modules folder on Windows (#16061)
|
||||
* fix(require): tryPackage uses optional chaining (#16020)
|
||||
* fix(runtime): refresh perm prompt 3 lines instead of 4 (#16049)
|
||||
* perf: don't re-download package tarball to global cache if local node_modules
|
||||
folder exists for package (#16005)
|
||||
* perf: use fast ops for tty (#15976)
|
||||
* perf(ext/console): break on iterableLimit & better sparse array handling (#15935)
|
||||
* perf(ext/fetch): use content-length in InnerBody.consume (#15925)
|
||||
- includes 1.25.4:
|
||||
* feat(unstable/npm): add flag for creating and resolving npm packages to a
|
||||
local node_modules folder (#15971)
|
||||
* feat(unstable/npm): add support for --reload=npm: and --reload=npm: (#15972)
|
||||
* feat(internal/ops): Automatic fast ops creation (#15527)
|
||||
* fix(compile): keep non-exe extension in output name on Windows (#15994)
|
||||
* fix(doc): deno doc should parse modules if they haven't been parsed before (#15941)
|
||||
* fix(ext/node): fix builtin module module (#15904)
|
||||
* fix(ext/webgpu): make GPUDevice.features SetLike (#15853)
|
||||
* fix(flash): panic if response if undefined (#15964)
|
||||
* fix(runtime): better error message with Deno.env.get/set (#15966)
|
||||
* fix(runtime): fix permission status cache keys (#15899)
|
||||
* perf(cli): avoid canonicalize_path if config file does not exist (#15957)
|
||||
* perf(cli): avoid clap::App::clone (#15951)
|
||||
* perf(cli): use -O3 instead of -Oz (#15952)
|
||||
* perf(core): use single ObjectTemplate for ops in initialize_ops (#15959)
|
||||
* perf(ext/console): avoid wrapConsole when not inspecting (#15931)
|
||||
* perf(web): optimize encodeInto() (#15922)
|
||||
* perf: fs optimizations - part 1 (#15873)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 19 22:52:39 UTC 2022 - Avindra Goolcharan <avindra@opensuse.org>
|
||||
|
||||
- update to 1.25.3:
|
||||
* doc(unstable): mention that signal input isn't supported in spawnSync
|
||||
(#15889)
|
||||
* fix(ext/flash): don't block requests (#15852)
|
||||
* fix(npm): align Deno importing Node cjs with Node esm importing cjs (#15879)
|
||||
* fix(npm): align Node esm code importing cjs with Node (#15838)
|
||||
* fix(npm): binary entrypoint for .js or no extension (#15900)
|
||||
* fix(npm): remove export binding to match node (#15837)
|
||||
* fix(npm): support cjs resolution of package subpath with package.json (#15855)
|
||||
* fix(npm): use shim from deno_node crate for 'module' built-in module (#15881)
|
||||
* fix(ops): add node.js env variable allowlist (#15893)
|
||||
* perf(ext/flash): remove string->buffer cache (#15850)
|
||||
* perf(serde_v8): remove Mutex from ZeroCopyBuf (#15888)
|
||||
* perf(url): return early if url has no query string (#15856)
|
||||
* perf: optimize URL serialization (#15663)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Sep 11 23:41:13 UTC 2022 - Avindra Goolcharan <avindra@opensuse.org>
|
||||
|
||||
|
@ -19,7 +19,7 @@
|
||||
|
||||
|
||||
Name: deno
|
||||
Version: 1.25.2
|
||||
Version: 1.26.0
|
||||
Release: 0
|
||||
Summary: A secure JavaScript and TypeScript runtime
|
||||
License: MIT
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:50718859fdcb484d6a5d547e383de0b5c7ccd4535c154336ed6a84420b1e65b3
|
||||
size 68934112
|
||||
oid sha256:873746d09cb4d01cb86b8eec2e48fa4a91585ee891a33a07a132f41145d9aebf
|
||||
size 67256140
|
||||
|
Loading…
Reference in New Issue
Block a user