Accepting request 1002544 from devel:languages:javascript
- update to 1.25.2: * BREAKING(unstable): remove --compat mode (#15678) * feat(ext/ffi): Implement FFI fast-call trampoline with Dynasmrt (#15305) * feat(ext/ffi): Support bool FFI type (#15754) * feat(serde_v8): Support StringObject as unit enum variant (#15715) * fix(bench): make sure bytes/response is equal (#15763) * fix(cli): Fix panic when providing invalid urls to --reload (#15784) * fix(cli): allow using file resource synchronously while being used async (#15747) * fix(cli/repl): await Promise.any([])... (#15623) * fix(core): Register external references for imports to the SnapshotCreator (#15621) * fix(core): make errors more resistant to tampering (#15789) * fix(core): opAsync leaks a promise on type error (#15795) * fix(docs): add missing categories for unstable (#15807) * fix(docs): change category for Deno.Process to "Sub Process" (#15812) * fix(ext/flash): use utf8 length as Content-Length (#15793) * fix(ext/timers): create primordial eval (#15110) * fix(init): suppress info logs when using quiet mode (#15741) * fix(npm): add more context to errors when file doesn't exist (#15749) * fix(npm): conditional exports in npm: specifiers (#15778) * fix(npm): correct exact matching of pre-release versions (#15745) * fix(npm): recursive translation of reexports, remove window global in node code (#15806) * fix(npm): respect latest dist tag for getting current version (#15746) * fix(ops): use qualified borrow in op macro (#15769) * fix(repl): don't terminate on unhandled error events (#15548) * fix(test): unflake wasm_unreachable test (#15794) * fix(watch): ignore unload errors on drop (#15782) * fix: upgrade deno_ast to 0.19 (#15808) * perf(ops): inline &[u8] arguments and enable fast API (#15731) * perf(runtime): flatten arguments for write_file ops (#15776) * perf(runtime): short-circuit queue_async_op for Poll::Ready (#15773) OBS-URL: https://build.opensuse.org/request/show/1002544 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/deno?expand=0&rev=4
This commit is contained in:
commit
6e96d451ce
4
_service
4
_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.1</param>
|
||||
<param name="version">1.25.1</param>
|
||||
<param name="revision">v1.25.2</param>
|
||||
<param name="version">1.25.2</param>
|
||||
|
||||
<!-- remove large docs -->
|
||||
<param name="exclude">docs</param>
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:54383570c36bbde4929bde2ac8fbd72bf69d4f7c4f4a8e89fe14f7d1ebad8c07
|
||||
size 9441612
|
3
deno-1.25.2.tar.xz
Normal file
3
deno-1.25.2.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c8c1e841b6675ce555b36851a613e687285f85bfd2f34356541620fbcf9453aa
|
||||
size 9448344
|
38
deno.changes
38
deno.changes
@ -1,3 +1,41 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Sep 11 23:41:13 UTC 2022 - Avindra Goolcharan <avindra@opensuse.org>
|
||||
|
||||
- update to 1.25.2:
|
||||
* BREAKING(unstable): remove --compat mode (#15678)
|
||||
* feat(ext/ffi): Implement FFI fast-call trampoline with Dynasmrt (#15305)
|
||||
* feat(ext/ffi): Support bool FFI type (#15754)
|
||||
* feat(serde_v8): Support StringObject as unit enum variant (#15715)
|
||||
* fix(bench): make sure bytes/response is equal (#15763)
|
||||
* fix(cli): Fix panic when providing invalid urls to --reload (#15784)
|
||||
* fix(cli): allow using file resource synchronously while being used
|
||||
async (#15747)
|
||||
* fix(cli/repl): await Promise.any([])... (#15623)
|
||||
* fix(core): Register external references for imports to
|
||||
the SnapshotCreator (#15621)
|
||||
* fix(core): make errors more resistant to tampering (#15789)
|
||||
* fix(core): opAsync leaks a promise on type error (#15795)
|
||||
* fix(docs): add missing categories for unstable (#15807)
|
||||
* fix(docs): change category for Deno.Process to "Sub Process" (#15812)
|
||||
* fix(ext/flash): use utf8 length as Content-Length (#15793)
|
||||
* fix(ext/timers): create primordial eval (#15110)
|
||||
* fix(init): suppress info logs when using quiet mode (#15741)
|
||||
* fix(npm): add more context to errors when file doesn't exist (#15749)
|
||||
* fix(npm): conditional exports in npm: specifiers (#15778)
|
||||
* fix(npm): correct exact matching of pre-release versions (#15745)
|
||||
* fix(npm): recursive translation of reexports, remove window global
|
||||
in node code (#15806)
|
||||
* fix(npm): respect latest dist tag for getting current version (#15746)
|
||||
* fix(ops): use qualified borrow in op macro (#15769)
|
||||
* fix(repl): don't terminate on unhandled error events (#15548)
|
||||
* fix(test): unflake wasm_unreachable test (#15794)
|
||||
* fix(watch): ignore unload errors on drop (#15782)
|
||||
* fix: upgrade deno_ast to 0.19 (#15808)
|
||||
* perf(ops): inline &[u8] arguments and enable fast API (#15731)
|
||||
* perf(runtime): flatten arguments for write_file ops (#15776)
|
||||
* perf(runtime): short-circuit queue_async_op for Poll::Ready (#15773)
|
||||
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Sep 4 17:24:22 UTC 2022 - Avindra Goolcharan <avindra@opensuse.org>
|
||||
|
||||
|
@ -19,7 +19,7 @@
|
||||
|
||||
|
||||
Name: deno
|
||||
Version: 1.25.1
|
||||
Version: 1.25.2
|
||||
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:83312f586a39391422e28b0898a56f285634de4159e5d88214090626d2337ce7
|
||||
size 68301852
|
||||
oid sha256:50718859fdcb484d6a5d547e383de0b5c7ccd4535c154336ed6a84420b1e65b3
|
||||
size 68934112
|
||||
|
Loading…
Reference in New Issue
Block a user