Accepting request 1242202 from devel:languages:javascript
- Update to version 2.1.9: * perf(crypto): use ring for asm implementations of sha256/sha512 * fix(ext/node): add http information support * fix(core): Fix `create_stack_trace` from empty trace * fix(lsp): ignore errors on ambient module imports * fix(init): correct dev task for --lib * fix(ext/node): implement `crypto.hash` * fix(check): better handling of TypeScript in npm packages for type checking * docs: jsdocs for URL web API * fix(check): compiler options from workspace members * fix(process/windows): correct command resolution when PATH env var not uppercase * fix(npmrc): merge `.npmrc` in user's homedir and project * fix(ext/node): clear tz cache when setting process.env.TZ * fix(ext/crypto): fix jwk key_ops validation * fix(ext/node): implement `aes-128-ctr`, `aes-192-ctr`, and `aes-256-ctr` * fix(ext/node): do not apply socket-init-workaround to ipc socket * chore: remove unused npm package fixtures * perf(node_resolver): reduce url to/from path conversions * fix(install/global): warn about not including auto-discovered config file * fix(ext/crypto): export private x25519 JWK key * chore: fix deno_resolver non-sync build * fix(ext/node): implement X509Certificate#checkHost * fix(ext/node): fix panic when invalid AES GCM key size * fix(ext/node): fix async variant of brotliDecompress * chore(ext/node): remove internal/streams/buffer_list.mjs * fix(ext/node): scrypt panic when `log_n` > 64 * fix(core): handle dyn imports exceeding call stack size * fix(ext/node): npm:mqtt compatibility * fix(ext/fetch): update h2 to fix sending a PROTOCOL_ERROR instead of REFUSED_STREAM when receiving oversized headers * perf(lsp): cache completion item resolution during request * chore: remove LSP global symbols count tests * fix(node): align type stripping in node_modules error message with Node * fix(types): `Deno.readDirSync`'s type returns an `IteratorObject` * refactor: make PackageJsonCache injectable * chore: update ensure_registry_files_local to handle scoped packages * refactor(tsc): remove TS program creation during snapshotting * chore: trim registry.json files in tests/registry/npm * refactor(node_resolver): remove some allocations and lookups * refactor: add `WorkspaceFactory` and `ResolverFactory` * fix: do not log cache creation failure on readonly file system * fix(publish): unfurl sloppy imports in d.ts files and type imports * refactor(tsc): split TS compiler into multiple files, use ESM * refactor: use DataUrl from deno_media_type * chore: fix hmr build * fix(lsp): silence debug error for 'move to a new file' action * fix(ext/node): reference error in zlib.crc32 * feat(unstable): support https otlp endpoints * perf: full LTO in sysroot * fix(ext/node): fix formatting of debug logs * chore: note in flags output that unstable is deprecated OBS-URL: https://build.opensuse.org/request/show/1242202 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/deno?expand=0&rev=63
This commit is contained in:
commit
fdded9d9f3
4
_service
4
_service
@ -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.7</param>
|
||||
<param name="revision">v2.1.9</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.7.tar.zst</param>
|
||||
<param name="outfile">deno-2.1.9.tar.zst</param>
|
||||
<param name="preserve-root">true</param>
|
||||
<param name="reproducible">true</param>
|
||||
</service>
|
||||
|
@ -1,4 +1,4 @@
|
||||
<servicedata>
|
||||
<service name="tar_scm">
|
||||
<param name="url">https://github.com/denoland/deno</param>
|
||||
<param name="changesrevision">379079d9049499af660b70423aa7cc3aca0d5e52</param></service></servicedata>
|
||||
<param name="changesrevision">46e2f9a47ee5293547efd089438db29690a05f85</param></service></servicedata>
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a16f1c8262a6fadb7a5ce19ffc492934cf7ba25be6680d25e09da0d35d25e3f4
|
||||
size 101656441
|
3
deno-2.1.9.tar.zst
Normal file
3
deno-2.1.9.tar.zst
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:21ff4f50054e89dede8af032264b2ce8f6d8b8841ac907484666bff8262ad7b8
|
||||
size 99607829
|
54
deno.changes
54
deno.changes
@ -1,3 +1,57 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 2 07:10:43 UTC 2025 - Soc Virnyl Estela <uncomfyhalomacro@opensuse.org>
|
||||
|
||||
- Update to version 2.1.9:
|
||||
* perf(crypto): use ring for asm implementations of sha256/sha512
|
||||
* fix(ext/node): add http information support
|
||||
* fix(core): Fix `create_stack_trace` from empty trace
|
||||
* fix(lsp): ignore errors on ambient module imports
|
||||
* fix(init): correct dev task for --lib
|
||||
* fix(ext/node): implement `crypto.hash`
|
||||
* fix(check): better handling of TypeScript in npm packages for type checking
|
||||
* docs: jsdocs for URL web API
|
||||
* fix(check): compiler options from workspace members
|
||||
* fix(process/windows): correct command resolution when PATH env var not uppercase
|
||||
* fix(npmrc): merge `.npmrc` in user's homedir and project
|
||||
* fix(ext/node): clear tz cache when setting process.env.TZ
|
||||
* fix(ext/crypto): fix jwk key_ops validation
|
||||
* fix(ext/node): implement `aes-128-ctr`, `aes-192-ctr`, and `aes-256-ctr`
|
||||
* fix(ext/node): do not apply socket-init-workaround to ipc socket
|
||||
* chore: remove unused npm package fixtures
|
||||
* perf(node_resolver): reduce url to/from path conversions
|
||||
* fix(install/global): warn about not including auto-discovered config file
|
||||
* fix(ext/crypto): export private x25519 JWK key
|
||||
* chore: fix deno_resolver non-sync build
|
||||
* fix(ext/node): implement X509Certificate#checkHost
|
||||
* fix(ext/node): fix panic when invalid AES GCM key size
|
||||
* fix(ext/node): fix async variant of brotliDecompress
|
||||
* chore(ext/node): remove internal/streams/buffer_list.mjs
|
||||
* fix(ext/node): scrypt panic when `log_n` > 64
|
||||
* fix(core): handle dyn imports exceeding call stack size
|
||||
* fix(ext/node): npm:mqtt compatibility
|
||||
* fix(ext/fetch): update h2 to fix sending a PROTOCOL_ERROR instead of REFUSED_STREAM when receiving oversized headers
|
||||
* perf(lsp): cache completion item resolution during request
|
||||
* chore: remove LSP global symbols count tests
|
||||
* fix(node): align type stripping in node_modules error message with Node
|
||||
* fix(types): `Deno.readDirSync`'s type returns an `IteratorObject`
|
||||
* refactor: make PackageJsonCache injectable
|
||||
* chore: update ensure_registry_files_local to handle scoped packages
|
||||
* refactor(tsc): remove TS program creation during snapshotting
|
||||
* chore: trim registry.json files in tests/registry/npm
|
||||
* refactor(node_resolver): remove some allocations and lookups
|
||||
* refactor: add `WorkspaceFactory` and `ResolverFactory`
|
||||
* fix: do not log cache creation failure on readonly file system
|
||||
* fix(publish): unfurl sloppy imports in d.ts files and type imports
|
||||
* refactor(tsc): split TS compiler into multiple files, use ESM
|
||||
* refactor: use DataUrl from deno_media_type
|
||||
* chore: fix hmr build
|
||||
* fix(lsp): silence debug error for 'move to a new file' action
|
||||
* fix(ext/node): reference error in zlib.crc32
|
||||
* feat(unstable): support https otlp endpoints
|
||||
* perf: full LTO in sysroot
|
||||
* fix(ext/node): fix formatting of debug logs
|
||||
* chore: note in flags output that unstable is deprecated
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Jan 26 09:50:59 UTC 2025 - Soc Virnyl Estela <uncomfyhalomacro@opensuse.org>
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
name: deno
|
||||
version: 2.1.7
|
||||
mtime: 1737507098
|
||||
commit: 379079d9049499af660b70423aa7cc3aca0d5e52
|
||||
version: 2.1.9
|
||||
mtime: 1738282903
|
||||
commit: 46e2f9a47ee5293547efd089438db29690a05f85
|
||||
|
@ -21,7 +21,7 @@
|
||||
%global _lto_cflags %nil
|
||||
%global _v8_version 130.0.7
|
||||
Name: deno
|
||||
Version: 2.1.7
|
||||
Version: 2.1.9
|
||||
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:0493d9904d6a214ee4a1c205cc60660c9428e167c787e39dedca6df72cbfb33c
|
||||
size 154755239
|
||||
oid sha256:aafa5268125be9c377982b18c434b4dd72d28e1e3a3bf29cb4f9d6058090f463
|
||||
size 154808346
|
||||
|
Loading…
x
Reference in New Issue
Block a user