Accepting request 1089028 from devel:languages:javascript
- update to 1.34.0: * BREAKING(unstable): change return type of Deno.serve() API (#19189) * feat(cli): add nodeModulesDir option to config file (#19095) * feat(cli): top-level exclude field in deno.json (#17778) * feat(ext/fs): add isBlockDevice, isCharDevice, isFifo, isSocket to FileInfo (#19008) * feat(ext/http): Add support for trailers w/internal API (HTTP/2 only) (#19182) * feat(ext/http): Brotli Compression (#19216) * feat(ext/http): ref/unref for server (#19197) * feat(lsp): support lockfile and node_modules directory (#19203) * feat(runtime): Provide environment-configurable options for tokio parameters (#19173) * feat(task): glob expansion (#19084) * feat(unstable): add more options to Deno.createHttpClient (#17385) * feat(vendor): support for npm specifiers (#19186) * feat: add support for globs in the config file and CLI arguments for files (#19102) * feat: top level package.json install when node_modules dir is explicitly opted into (#19233) * fix(ext/node): ClientRequest.setTimeout(0) should remove listeners (#19240) * fix(ext/node): add basic node:worker_threads support (#19192) * fix(ext/web): improve timers resolution for 0ms timeouts (#19212) * fix(napi): add napi_async_init and napi_async_destroy (#19234) * fix(node): add http.Server.unref() (#19201) * fix(node): duplicate node_module suffixes (#19222) * fix(node): fire 'unhandledrejection' event when using node: or npm: imports (#19235) * fix(node): make sure "setImmediate" is not clamped to 4ms (#19213) * fix(npm): process not defined in readline (#19184) * fix(npm): better handling of optional peer dependencies (#19236) * fix(npm): create node_modules/.deno/node_modules folder (#19242) * fix(npm): run pre and post tasks if present (#19178) * fix(npm): store npm binary command resolution in lockfile (#19219) - rebase deno-disable-update-check.patch - update deno-disable-update-check.patch * remove DENO_NO_UPDATE_CHECK block from env variables help OBS-URL: https://build.opensuse.org/request/show/1089028 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/deno?expand=0&rev=20
This commit is contained in:
commit
15c83f10ef
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.33.4</param>
|
||||
<param name="version">1.33.4</param>
|
||||
<param name="revision">v1.34.0</param>
|
||||
<param name="version">1.34.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.71.2</param>
|
||||
<param name="version">0.71.2</param>
|
||||
<param name="revision">v0.72.0</param>
|
||||
<param name="version">0.72.0</param>
|
||||
<param name="exclude">.github</param>
|
||||
|
||||
<!--
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b90dad69595dd379325b46b051eaa734948fed090324bfaecb9bccaad46cfd77
|
||||
size 7171864
|
3
deno-1.34.0.tar.xz
Normal file
3
deno-1.34.0.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3c3da6db60bb04ea2fa07f69951fc2920fe9f43364143291e900794c07b0796b
|
||||
size 7177636
|
@ -1,5 +1,5 @@
|
||||
diff --git a/cli/tools/run.rs.1 b/cli/tools/run.rs
|
||||
index 99312d5..e733306 100644
|
||||
index 4805ea7..57bb752 100644
|
||||
--- a/cli/tools/run.rs.1
|
||||
+++ b/cli/tools/run.rs
|
||||
@@ -38,13 +38,6 @@ To grant permissions, set them before the script argument. For example:
|
||||
@ -15,4 +15,17 @@ index 99312d5..e733306 100644
|
||||
-
|
||||
let main_module = cli_options.resolve_main_module()?;
|
||||
|
||||
let permissions = PermissionsContainer::new(Permissions::from_options(
|
||||
maybe_npm_install(&factory).await?;
|
||||
diff --git a/cli/args/flags.rs.1 b/cli/args/flags.rs
|
||||
index fa28241..d6e2baa 100644
|
||||
--- a/cli/args/flags.rs.1
|
||||
+++ b/cli/args/flags.rs
|
||||
@@ -580,8 +580,6 @@ static ENV_VARIABLES_HELP: &str = r#"ENVIRONMENT VARIABLES:
|
||||
DENO_NO_PACKAGE_JSON Disables auto-resolution of package.json
|
||||
DENO_NO_PROMPT Set to disable permission prompts on access
|
||||
(alternative to passing --no-prompt on invocation)
|
||||
- DENO_NO_UPDATE_CHECK Set to disable checking if a newer Deno version is
|
||||
- available
|
||||
DENO_V8_FLAGS Set V8 command line options
|
||||
DENO_JOBS Number of parallel workers used for the --parallel
|
||||
flag with the test subcommand. Defaults to number
|
||||
|
44
deno.changes
44
deno.changes
@ -1,3 +1,47 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu May 25 01:41:56 UTC 2023 - Avindra Goolcharan <avindra@opensuse.org>
|
||||
|
||||
- update to 1.34.0:
|
||||
* BREAKING(unstable): change return type of Deno.serve() API (#19189)
|
||||
* feat(cli): add nodeModulesDir option to config file (#19095)
|
||||
* feat(cli): top-level exclude field in deno.json (#17778)
|
||||
* feat(ext/fs): add isBlockDevice, isCharDevice, isFifo,
|
||||
isSocket to FileInfo (#19008)
|
||||
* feat(ext/http): Add support for trailers w/internal API (HTTP/2 only) (#19182)
|
||||
* feat(ext/http): Brotli Compression (#19216)
|
||||
* feat(ext/http): ref/unref for server (#19197)
|
||||
* feat(lsp): support lockfile and node_modules directory (#19203)
|
||||
* feat(runtime): Provide environment-configurable options for
|
||||
tokio parameters (#19173)
|
||||
* feat(task): glob expansion (#19084)
|
||||
* feat(unstable): add more options to Deno.createHttpClient (#17385)
|
||||
* feat(vendor): support for npm specifiers (#19186)
|
||||
* feat: add support for globs in the config file and CLI
|
||||
arguments for files (#19102)
|
||||
* feat: top level package.json install when node_modules dir is
|
||||
explicitly opted into (#19233)
|
||||
* fix(ext/node): ClientRequest.setTimeout(0) should remove listeners (#19240)
|
||||
* fix(ext/node): add basic node:worker_threads support (#19192)
|
||||
* fix(ext/web): improve timers resolution for 0ms timeouts (#19212)
|
||||
* fix(napi): add napi_async_init and napi_async_destroy (#19234)
|
||||
* fix(node): add http.Server.unref() (#19201)
|
||||
* fix(node): duplicate node_module suffixes (#19222)
|
||||
* fix(node): fire 'unhandledrejection' event when using node:
|
||||
or npm: imports (#19235)
|
||||
* fix(node): make sure "setImmediate" is not clamped to 4ms (#19213)
|
||||
* fix(npm): process not defined in readline (#19184)
|
||||
* fix(npm): better handling of optional peer dependencies (#19236)
|
||||
* fix(npm): create node_modules/.deno/node_modules folder (#19242)
|
||||
* fix(npm): run pre and post tasks if present (#19178)
|
||||
* fix(npm): store npm binary command resolution in lockfile (#19219)
|
||||
- rebase deno-disable-update-check.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri May 19 19:07:35 UTC 2023 - Avindra Goolcharan <avindra@opensuse.org>
|
||||
|
||||
- update deno-disable-update-check.patch
|
||||
* remove DENO_NO_UPDATE_CHECK block from env variables help
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu May 18 20:19:52 UTC 2023 - Avindra Goolcharan <avindra@opensuse.org>
|
||||
|
||||
|
@ -19,7 +19,7 @@
|
||||
|
||||
|
||||
Name: deno
|
||||
Version: 1.33.4
|
||||
Version: 1.34.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:80da2100b848b0c9a5e30f46a1b7bb9cd1ee225132410f8cbcc040f462a55865
|
||||
size 73486108
|
||||
oid sha256:51588cf16a894f5d52a65eda99aa79957769ee99e0d6ddbd9061aa82a76a65ed
|
||||
size 73130100
|
||||
|
Loading…
Reference in New Issue
Block a user