Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package deno for openSUSE:Factory checked in 
at 2024-06-19 16:37:22
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/deno (Old)
 and      /work/SRC/openSUSE:Factory/.deno.new.18349 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "deno"

Wed Jun 19 16:37:22 2024 rev:43 rq:1181571 version:1.44.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/deno/deno.changes        2024-06-10 
17:37:28.870612217 +0200
+++ /work/SRC/openSUSE:Factory/.deno.new.18349/deno.changes     2024-06-19 
16:37:44.215847039 +0200
@@ -1,0 +2,30 @@
+Tue Jun 18 18:34:11 UTC 2024 - Avindra Goolcharan <avin...@opensuse.org>
+
+- update to 1.44.2:
+  * fix(lsp): respect editor indentation options (#24181)
+  * fix(lsp): workspace jsr resolution (#24121)
+  * fix(check): attempt to resolve types from pkg before @types pkg (#24152)
+  * fix(cli): Explicitly cache NPM packages during deno install (#24190)
+  * fix(cli): Overwrite existing bin entries in node_modules (#24123)
+  * fix(ext/http): print [] around ipv6 addresses (#24150)
+  * fix(ext/net): make node:http2 work with DENO_FUTURE=1 (#24144)
+  * fix(ext/node): ServerResponse header array handling (#24149)
+  * fix(ext/node): add crypto and zlib constants (#24151)
+  * fix(ext/node): fix vm memory usage and context initialization (#23976)
+  * fix(ext/node): lossy UTF-8 read node_modules files (#24140)
+  * fix(ext/node): send data frame with end_stream flag on _final call (#24147)
+  * fix(ext/node): support stdin child_process IPC & fd stdout/stderr (#24106)
+  * fix(ext/web): correct string tag for MessageEvent (#24134)
+  * fix(ext/websocket): correctly order messages when sending blobs (#24133)
+  * fix(jupyter): Avoid panicking when DEBUG env var is set (#24168)
+  * fix(lsp): don't sort workspace files (#24180)
+  * fix(lsp): strip .js before probing for valid import fix (#24188)
+  * fix(npm): resolve dynamic npm imports individually (#24170)
+  * fix: Rewrite Node-API (#24101)
+  * fix: clean up some node-api details (#24178)
+  * fix: do not panic linting files with UTF-8 BOM (#24136)
+  * fix: don't panic when cache is not available (#24175)
+  * fix: make writing to the deps cache more reliable (#24135)
+  * fix: potential hang on dynamic import (#24128)
+
+-------------------------------------------------------------------

Old:
----
  deno-1.44.1.tar.xz

New:
----
  deno-1.44.2.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ deno.spec ++++++
--- /var/tmp/diff_new_pack.mxoTy2/_old  2024-06-19 16:37:53.672172757 +0200
+++ /var/tmp/diff_new_pack.mxoTy2/_new  2024-06-19 16:37:53.676172895 +0200
@@ -19,7 +19,7 @@
 
 
 Name:           deno
-Version:        1.44.1
+Version:        1.44.2
 Release:        0
 Summary:        A secure JavaScript and TypeScript runtime
 License:        MIT

++++++ _service ++++++
--- /var/tmp/diff_new_pack.mxoTy2/_old  2024-06-19 16:37:53.724174548 +0200
+++ /var/tmp/diff_new_pack.mxoTy2/_new  2024-06-19 16:37:53.728174686 +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.44.1</param>
-    <param name="version">1.44.1</param>
+    <param name="revision">v1.44.2</param>
+    <param name="version">1.44.2</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.92.0</param>
-    <param name="version">0.92.0</param>
+    <param name="revision">v0.94.0</param>
+    <param name="version">0.94.0</param>
     <param name="exclude">.github</param>
 
     <!--

++++++ deno-1.44.1.tar.xz -> deno-1.44.2.tar.xz ++++++
/work/SRC/openSUSE:Factory/deno/deno-1.44.1.tar.xz 
/work/SRC/openSUSE:Factory/.deno.new.18349/deno-1.44.2.tar.xz differ: char 15, 
line 1

++++++ deno-rm-upgrade.patch ++++++
--- /var/tmp/diff_new_pack.mxoTy2/_old  2024-06-19 16:37:53.796177028 +0200
+++ /var/tmp/diff_new_pack.mxoTy2/_new  2024-06-19 16:37:53.796177028 +0200
@@ -58,6 +58,16 @@
        | Vendor(_) => None,
        Install(_) => {
          if *DENO_FUTURE {
+@@ -1062,9 +1061,6 @@ static ENV_VARIABLES_HELP: &str = color_print::cstr!(
+     <g>DENO_NO_PROMPT</>       Set to disable permission prompts on access
+                          (alternative to passing --no-prompt on invocation)
+ 
+-    <g>DENO_NO_UPDATE_CHECK</> Set to disable checking if a newer Deno 
version is
+-                         available
+-
+     <g>DENO_TLS_CA_STORE</>    Comma-separated list of order dependent 
certificate
+                          stores. Possible values: "system", "mozilla".
+                          Defaults to "mozilla".
 @@ -944,7 +934,6 @@ pub fn flags_from_vec(args: Vec<String>) -> 
clap::error::Result<Flags> {
        "test" => test_parse(&mut flags, &mut m),
        "types" => types_parse(&mut flags, &mut m),

++++++ vendor.tar.xz ++++++
/work/SRC/openSUSE:Factory/deno/vendor.tar.xz 
/work/SRC/openSUSE:Factory/.deno.new.18349/vendor.tar.xz differ: char 15, line 1

Reply via email to