Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package nodejs-electron for openSUSE:Factory
checked in at 2024-01-25 18:41:48
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/nodejs-electron (Old)
and /work/SRC/openSUSE:Factory/.nodejs-electron.new.1815 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "nodejs-electron"
Thu Jan 25 18:41:48 2024 rev:97 rq:1141468 version:27.3.0
Changes:
--------
--- /work/SRC/openSUSE:Factory/nodejs-electron/nodejs-electron.changes
2024-01-18 21:52:40.111168958 +0100
+++
/work/SRC/openSUSE:Factory/.nodejs-electron.new.1815/nodejs-electron.changes
2024-01-25 18:41:58.612308821 +0100
@@ -1,0 +2,11 @@
+Wed Jan 24 18:59:12 UTC 2024 - Bruno Pitrus <[email protected]>
+
+- New upstream release 27.3.0
+ * Added net module to utility process
+
+-------------------------------------------------------------------
+Wed Jan 24 13:14:48 UTC 2024 - Bruno Pitrus <[email protected]>
+
+- Fix crash in media::FFmpegGlue::OpenContext
(chromium-118-sigtrap_system_ffmpeg.patch)
+
+-------------------------------------------------------------------
Old:
----
electron-27.2.3.tar.zst
New:
----
chromium-118-sigtrap_system_ffmpeg.patch
electron-27.3.0.tar.zst
BETA DEBUG BEGIN:
New:
- Fix crash in media::FFmpegGlue::OpenContext
(chromium-118-sigtrap_system_ffmpeg.patch)
BETA DEBUG END:
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ nodejs-electron.spec ++++++
--- /var/tmp/diff_new_pack.QliAZW/_old 2024-01-25 18:42:08.556663611 +0100
+++ /var/tmp/diff_new_pack.QliAZW/_new 2024-01-25 18:42:08.560663753 +0100
@@ -236,7 +236,7 @@
Name: nodejs-electron
-Version: 27.2.3
+Version: 27.3.0
Release: 0
Summary: Build cross platform desktop apps with JavaScript, HTML, and
CSS
License: AFL-2.0 AND Apache-2.0 AND blessing AND BSD-2-Clause AND
BSD-3-Clause AND BSD-Protection AND BSD-Source-Code AND bzip2-1.0.6 AND IJG AND
ISC AND LGPL-2.0-or-later AND LGPL-2.1-or-later AND MIT AND MIT-CMU AND
MIT-open-group AND (MPL-1.1 OR GPL-2.0-or-later OR LGPL-2.1-or-later) AND
MPL-2.0 AND OpenSSL AND SGI-B-2.0 AND SUSE-Public-Domain AND X11
@@ -360,6 +360,7 @@
Patch2042: brotli-remove-shared-dictionary.patch
Patch2044: computed_style_base-nbsp.patch
Patch2045: libxml-2.12-xmlCtxtGetLastError-const.patch
+Patch2046: chromium-118-sigtrap_system_ffmpeg.patch
# PATCHES that should be submitted upstream verbatim or near-verbatim
Patch3016: chromium-98-EnumTable-crash.patch
++++++ chromium-118-sigtrap_system_ffmpeg.patch ++++++
fix tab crash with SIGTRAP when opening website like ge.globo.com
author: Than Ngo <[email protected]>
diff -up chromium-118.0.5993.70/media/filters/ffmpeg_glue.cc.me
chromium-118.0.5993.70/media/filters/ffmpeg_glue.cc
--- chromium-118.0.5993.70/media/filters/ffmpeg_glue.cc.me 2023-10-16
12:52:01.716573884 +0200
+++ chromium-118.0.5993.70/media/filters/ffmpeg_glue.cc 2023-10-16
12:56:03.476075446 +0200
@@ -157,7 +157,7 @@ bool FFmpegGlue::OpenContext(bool is_loc
container_ = container_names::MediaContainerName::kContainerAVI;
// For a successfully opened file, we will get a container we've compiled in.
- CHECK_NE(container_, container_names::MediaContainerName::kContainerUnknown);
+ DCHECK_NE(container_,
container_names::MediaContainerName::kContainerUnknown);
LogContainer(is_local_file, container_);
return true;