Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package deno for openSUSE:Factory checked in at 2023-05-25 23:52:52 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/deno (Old) and /work/SRC/openSUSE:Factory/.deno.new.1533 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "deno" Thu May 25 23:52:52 2023 rev:20 rq:1089028 version:1.34.0 Changes: -------- --- /work/SRC/openSUSE:Factory/deno/deno.changes 2023-05-19 11:56:14.291509153 +0200 +++ /work/SRC/openSUSE:Factory/.deno.new.1533/deno.changes 2023-05-25 23:53:02.731790208 +0200 @@ -1,0 +2,44 @@ +Thu May 25 01:41:56 UTC 2023 - Avindra Goolcharan <avin...@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 <avin...@opensuse.org> + +- update deno-disable-update-check.patch + * remove DENO_NO_UPDATE_CHECK block from env variables help + +------------------------------------------------------------------- Old: ---- deno-1.33.4.tar.xz New: ---- deno-1.34.0.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ deno.spec ++++++ --- /var/tmp/diff_new_pack.aCQ2AS/_old 2023-05-25 23:53:05.475806318 +0200 +++ /var/tmp/diff_new_pack.aCQ2AS/_new 2023-05-25 23:53:05.483806365 +0200 @@ -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 ++++++ _service ++++++ --- /var/tmp/diff_new_pack.aCQ2AS/_old 2023-05-25 23:53:05.531806647 +0200 +++ /var/tmp/diff_new_pack.aCQ2AS/_new 2023-05-25 23:53:05.535806670 +0200 @@ -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> <!-- ++++++ deno-1.33.4.tar.xz -> deno-1.34.0.tar.xz ++++++ /work/SRC/openSUSE:Factory/deno/deno-1.33.4.tar.xz /work/SRC/openSUSE:Factory/.deno.new.1533/deno-1.34.0.tar.xz differ: char 15, line 1 ++++++ deno-disable-update-check.patch ++++++ --- /var/tmp/diff_new_pack.aCQ2AS/_old 2023-05-25 23:53:05.579806929 +0200 +++ /var/tmp/diff_new_pack.aCQ2AS/_new 2023-05-25 23:53:05.583806952 +0200 @@ -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,5 +15,18 @@ - 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 ++++++ vendor.tar.xz ++++++ /work/SRC/openSUSE:Factory/deno/vendor.tar.xz /work/SRC/openSUSE:Factory/.deno.new.1533/vendor.tar.xz differ: char 15, line 1