Accepting request 1227361 from devel:languages:javascript

- Update to version 2.1.2:
  * fix(node/timers): error when passing id to clearTimeout/clearInterval
  * fix(init): support scoped npm packages
  * fix: support bun specifiers in JSR publish
  * fix(ext/node): `tls.connect` socket upgrades
  * perf(compile): read embedded files as static references when UTF-8 and reading as strings
  * fix(info): resolve bare specifier pointing to workspace member
  * fix(ext/webgpu): use correct variable name
  * chore: fix lint step due to node compat test changes
  * fix(node/http): casing ignored in ServerResponse.hasHeader()
  * fix(task): strip ansi codes and control chars when printing tasks
  * test(ext/node): enable parallel/test-fs-promises-file-handle-stat.js
  * feat(unstable): repurpose `--unstable-detect-cjs` to attempt loading more modules as cjs
  * perf(ext/webstorage): use object wrap for `Storage`
  * fix(tools/doc): HTML resolve main entrypoint from config file 
  * fix(node/fs): add missing stat path argument validation
  * chore(lint): add .out file reference checker
  * fix(task): handle carriage return in task description
  * chore: fix flaky `specs::publish::npm_workspace_jsr_pkg_with_npm_dep::dep_and_workspace_dep`
  * fix(install): don't re-set up node_modules if running lifecycle script
  * fix(streams): reject `string` in `ReadableStream.from` type
  * fix(node): correct resolution of dynamic import of esm from cjs
  * fix(ext/webgpu): normalize limits to number
  * fix(ext/fetch): don't throw when `bodyUsed` inspect after upgrade
  * chore(compile): prefer denort binary in target/ directory when available
  * chore(node/tests): increase tolerance of timers test on CI
  * chore: update node_compat setup script, show remaining percentage
  * docs(cli): remove redundant word in comment
  * refactor(unstable): move telemetry to own ext
  * fix(lsp): support task object notation for tasks request
  * fix(task): handle multiline descriptions properly
  * fix(check): support jsdoc `@import` tag
  * fix(compile): do not error embedding same symlink via multiple methods
  * fix(runtime/ops): Fix watchfs remove event
  * feat(unstable): Instrument fetch
  * chore: upgrade sqlformat-rs to non-forked version
  * fix(init): always force managed node modules
  * fix(compile): handle TypeScript file included as asset
  * chore: update node_compat setup script
  * feat: Instrument Deno.serve
  * fix(ext/node): add `fs.promises.fstat` and `FileHandle#stat`
  * fix(lsp): wasm file import completions
  * chore: update to file_test_runner 0.7.3
  * fix(fmt): return `None` if sql fmt result is the same
  * fix(lsp): remove stray debug output
  * fix(node/fs): missing uv error context for readFile
  * fix(compile): correct buffered reading of assets and files
  * chore(check): add test for Wasm memory and table
  * fix: support non-function exports in Wasm modules
  * chore(compile): log code cache file path
  * fix(ext/websocket): don't throw exception when sending to closed socket

OBS-URL: https://build.opensuse.org/request/show/1227361
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/deno?expand=0&rev=57
This commit is contained in:
Ana Guerrero 2024-11-30 12:31:23 +00:00 committed by Git OBS Bridge
commit 15c0a8fe95
8 changed files with 67 additions and 12 deletions

View File

@ -8,7 +8,7 @@
<param name="url">https://github.com/denoland/deno</param>
<!-- param name="versionformat">@PARENT_TAG@+git@TAG_OFFSET@</param -->
<param name="versionformat">@PARENT_TAG@</param>
<param name="revision">v2.1.1</param>
<param name="revision">v2.1.2</param>
<param name="versionrewrite-pattern">v(.*)</param>
<param name="versionrewrite-replacement">\1</param>
<param name="changesgenerate">enable</param>
@ -22,7 +22,7 @@
</service>
<service name="roast" mode="manual">
<param name="target">deno</param>
<param name="outfile">deno-2.1.1.tar.zst</param>
<param name="outfile">deno-2.1.2.tar.zst</param>
<param name="preserve-root">true</param>
<param name="reproducible">true</param>
</service>

View File

@ -1,4 +1,4 @@
<servicedata>
<service name="tar_scm">
<param name="url">https://github.com/denoland/deno</param>
<param name="changesrevision">5d71b461530f7c374c08701cef5678a5a4ac5484</param></service></servicedata>
<param name="changesrevision">2039abe8d2bc82fa800f4118707a48ac6f5e02ae</param></service></servicedata>

View File

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

3
deno-2.1.2.tar.zst Normal file
View File

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

View File

@ -1,3 +1,58 @@
-------------------------------------------------------------------
Fri Nov 29 00:58:34 UTC 2024 - Soc Virnyl Estela <uncomfyhalomacro@opensuse.org>
- Update to version 2.1.2:
* fix(node/timers): error when passing id to clearTimeout/clearInterval
* fix(init): support scoped npm packages
* fix: support bun specifiers in JSR publish
* fix(ext/node): `tls.connect` socket upgrades
* perf(compile): read embedded files as static references when UTF-8 and reading as strings
* fix(info): resolve bare specifier pointing to workspace member
* fix(ext/webgpu): use correct variable name
* chore: fix lint step due to node compat test changes
* fix(node/http): casing ignored in ServerResponse.hasHeader()
* fix(task): strip ansi codes and control chars when printing tasks
* test(ext/node): enable parallel/test-fs-promises-file-handle-stat.js
* feat(unstable): repurpose `--unstable-detect-cjs` to attempt loading more modules as cjs
* perf(ext/webstorage): use object wrap for `Storage`
* fix(tools/doc): HTML resolve main entrypoint from config file
* fix(node/fs): add missing stat path argument validation
* chore(lint): add .out file reference checker
* fix(task): handle carriage return in task description
* chore: fix flaky `specs::publish::npm_workspace_jsr_pkg_with_npm_dep::dep_and_workspace_dep`
* fix(install): don't re-set up node_modules if running lifecycle script
* fix(streams): reject `string` in `ReadableStream.from` type
* fix(node): correct resolution of dynamic import of esm from cjs
* fix(ext/webgpu): normalize limits to number
* fix(ext/fetch): don't throw when `bodyUsed` inspect after upgrade
* chore(compile): prefer denort binary in target/ directory when available
* chore(node/tests): increase tolerance of timers test on CI
* chore: update node_compat setup script, show remaining percentage
* docs(cli): remove redundant word in comment
* refactor(unstable): move telemetry to own ext
* fix(lsp): support task object notation for tasks request
* fix(task): handle multiline descriptions properly
* fix(check): support jsdoc `@import` tag
* fix(compile): do not error embedding same symlink via multiple methods
* fix(runtime/ops): Fix watchfs remove event
* feat(unstable): Instrument fetch
* chore: upgrade sqlformat-rs to non-forked version
* fix(init): always force managed node modules
* fix(compile): handle TypeScript file included as asset
* chore: update node_compat setup script
* feat: Instrument Deno.serve
* fix(ext/node): add `fs.promises.fstat` and `FileHandle#stat`
* fix(lsp): wasm file import completions
* chore: update to file_test_runner 0.7.3
* fix(fmt): return `None` if sql fmt result is the same
* fix(lsp): remove stray debug output
* fix(node/fs): missing uv error context for readFile
* fix(compile): correct buffered reading of assets and files
* chore(check): add test for Wasm memory and table
* fix: support non-function exports in Wasm modules
* chore(compile): log code cache file path
* fix(ext/websocket): don't throw exception when sending to closed socket
-------------------------------------------------------------------
Fri Nov 22 02:36:21 UTC 2024 - Soc Virnyl Estela <uncomfyhalomacro@opensuse.org>

View File

@ -1,4 +1,4 @@
name: deno
version: 2.1.1
mtime: 1732210100
commit: 5d71b461530f7c374c08701cef5678a5a4ac5484
version: 2.1.2
mtime: 1732808748
commit: 2039abe8d2bc82fa800f4118707a48ac6f5e02ae

View File

@ -21,7 +21,7 @@
%global _lto_cflags %nil
%global _v8_version 130.0.1
Name: deno
Version: 2.1.1
Version: 2.1.2
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:beefaf9fe6334eaab74d0be689ebe6c7d5e985bbd6f44ff2b192aba49c821320
size 140527785
oid sha256:981237725395e80c7cdb0456333e03d154baa2ad8c0c63a322a2a8aafdf66336
size 140268290