deno/_service

64 lines
2.9 KiB
Plaintext
Raw Normal View History

- Update to version 2.0.5: * fix: panic_hook hangs without procfs * chore: deprecate run itests * fix(install): handle invalid function error, and fallback to junctions regardless of the error * fix: op_run_microtasks crash * fix(add): better error message when adding package that only has pre-release versions * chore: fix serve_watch_all test * ci: use self-hosted mac arm runner for building on tags * fix(workspace): support wildcard packages * fix(ext/node): add `findSourceMap` to the default export of `node:module` * fix(fmt): do not panic for jsx ignore container followed by jsx text * fix(lsp): scope attribution for lazily loaded assets * fix(types): missing `import` permission on `PermissionOptionsObject` * fix(fmt): ignore file directive for YAML files * refactor(runtime/permissions): use concrete error types * chore: update dlint to v0.68.0 for internal * perf(lsp): don't walk coverage directory * fix(add): only add npm deps to package.json if it's at least as close as deno.json * fix: improved support for cjs and cts modules * chore: upgrade to rust 1.82 and LLVM 19 * fix(cli): set `npm_config_user_agent` when running npm packages or tasks * fix(node): Implement `os.userInfo` properly, add missing `toPrimitive` * fix(ext/node): resolve exports even if parent module filename isn't present * fix(ext/node): convert errors from `fs.readFile/fs.readFileSync` to node format * fix: surface package.json location on dep parse failure * fix(coverage): exclude comment lines from coverage reports * fix(fmt): fix several HTML and components issues * fix(lsp): include unstable features from editor settings * fix: clamp smi in fast calls by default * fix: remove permission check in op_require_node_module_paths * fix(ext/node): return `this` from `http.Server.ref/unref()` * fix(serve): support serve hmr * docs(console): Update docstrings for install and uninstall - Experiment with vendoring cargo home registry. See the documentation at https://github.com/openSUSE-Rust/obs-service-cargo/blob/master/README.md#cargo-vendor-home-registry OBS-URL: https://build.opensuse.org/package/show/devel:languages:javascript/deno?expand=0&rev=224
2024-11-07 12:34:45 +01:00
<!--
# vim: set syntax=xml
-->
<services>
<service name="obs_scm" mode="manual">
<param name="scm">git</param>
<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.0.5</param>
<param name="versionrewrite-pattern">v(.*)</param>
<param name="versionrewrite-replacement">\1</param>
<param name="changesgenerate">enable</param>
</service>
<service name="cargo_vendor" mode="manual">
<param name="update">true</param>
<param name="method">registry</param>
<param name="src">deno</param>
<param name="cargotoml">bench_util/Cargo.toml</param>
<param name="cargotoml">cli/Cargo.toml</param>
<param name="cargotoml">ext/broadcast_channel/Cargo.toml</param>
<param name="cargotoml">ext/cache/Cargo.toml</param>
<param name="cargotoml">ext/canvas/Cargo.toml</param>
<param name="cargotoml">ext/console/Cargo.toml</param>
<param name="cargotoml">ext/cron/Cargo.toml</param>
<param name="cargotoml">ext/crypto/Cargo.toml</param>
<param name="cargotoml">ext/fetch/Cargo.toml</param>
<param name="cargotoml">ext/ffi/Cargo.toml</param>
<param name="cargotoml">ext/fs/Cargo.toml</param>
<param name="cargotoml">ext/http/Cargo.toml</param>
<param name="cargotoml">ext/io/Cargo.toml</param>
<param name="cargotoml">ext/kv/Cargo.toml</param>
<param name="cargotoml">ext/napi/Cargo.toml</param>
<param name="cargotoml">ext/napi/sym/Cargo.toml</param>
<param name="cargotoml">ext/net/Cargo.toml</param>
<param name="cargotoml">ext/node/Cargo.toml</param>
<param name="cargotoml">ext/tls/Cargo.toml</param>
<param name="cargotoml">ext/url/Cargo.toml</param>
<param name="cargotoml">ext/web/Cargo.toml</param>
<param name="cargotoml">ext/webgpu/Cargo.toml</param>
<param name="cargotoml">ext/webidl/Cargo.toml</param>
<param name="cargotoml">ext/websocket/Cargo.toml</param>
<param name="cargotoml">ext/webstorage/Cargo.toml</param>
<param name="cargotoml">resolvers/deno/Cargo.toml</param>
<param name="cargotoml">resolvers/node/Cargo.toml</param>
<param name="cargotoml">runtime/Cargo.toml</param>
<param name="cargotoml">runtime/permissions/Cargo.toml</param>
<param name="cargotoml">tests/Cargo.toml</param>
<param name="cargotoml">tests/ffi/Cargo.toml</param>
<param name="cargotoml">tests/napi/Cargo.toml</param>
<param name="cargotoml">tests/specs/node/child_process_extra_pipes/test-pipe/Cargo.toml</param>
<param name="cargotoml">tests/util/server/Cargo.toml</param>
- Update to version 2.0.5: * fix: panic_hook hangs without procfs * chore: deprecate run itests * fix(install): handle invalid function error, and fallback to junctions regardless of the error * fix: op_run_microtasks crash * fix(add): better error message when adding package that only has pre-release versions * chore: fix serve_watch_all test * ci: use self-hosted mac arm runner for building on tags * fix(workspace): support wildcard packages * fix(ext/node): add `findSourceMap` to the default export of `node:module` * fix(fmt): do not panic for jsx ignore container followed by jsx text * fix(lsp): scope attribution for lazily loaded assets * fix(types): missing `import` permission on `PermissionOptionsObject` * fix(fmt): ignore file directive for YAML files * refactor(runtime/permissions): use concrete error types * chore: update dlint to v0.68.0 for internal * perf(lsp): don't walk coverage directory * fix(add): only add npm deps to package.json if it's at least as close as deno.json * fix: improved support for cjs and cts modules * chore: upgrade to rust 1.82 and LLVM 19 * fix(cli): set `npm_config_user_agent` when running npm packages or tasks * fix(node): Implement `os.userInfo` properly, add missing `toPrimitive` * fix(ext/node): resolve exports even if parent module filename isn't present * fix(ext/node): convert errors from `fs.readFile/fs.readFileSync` to node format * fix: surface package.json location on dep parse failure * fix(coverage): exclude comment lines from coverage reports * fix(fmt): fix several HTML and components issues * fix(lsp): include unstable features from editor settings * fix: clamp smi in fast calls by default * fix: remove permission check in op_require_node_module_paths * fix(ext/node): return `this` from `http.Server.ref/unref()` * fix(serve): support serve hmr * docs(console): Update docstrings for install and uninstall - Experiment with vendoring cargo home registry. See the documentation at https://github.com/openSUSE-Rust/obs-service-cargo/blob/master/README.md#cargo-vendor-home-registry OBS-URL: https://build.opensuse.org/package/show/devel:languages:javascript/deno?expand=0&rev=224
2024-11-07 12:34:45 +01:00
</service>
<service mode="manual" name="set_version"/>
<service name="roast" mode="manual">
<param name="target">deno</param>
<param name="outfile">deno-2.0.5.tar.zst</param>
<param name="preserve-root">true</param>
<param name="reproducible">true</param>
</service>
</services>