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 2023-03-25 18:55:59
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/nodejs-electron (Old)
and /work/SRC/openSUSE:Factory/.nodejs-electron.new.31432 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "nodejs-electron"
Sat Mar 25 18:55:59 2023 rev:60 rq:1074298 version:22.3.4
Changes:
--------
--- /work/SRC/openSUSE:Factory/nodejs-electron/nodejs-electron.changes
2023-03-21 17:42:57.714241744 +0100
+++
/work/SRC/openSUSE:Factory/.nodejs-electron.new.31432/nodejs-electron.changes
2023-03-25 18:56:19.734968955 +0100
@@ -1,0 +2,9 @@
+Fri Mar 24 13:42:44 UTC 2023 - Bruno Pitrus <[email protected]>
+- New upstream release 22.3.4
+ * Improved error messages on session.cookies.set failure.
+ * Vulkan: Don't close render pass if rebind to same fbo (CVE-2023-1213)
+ * CSS: In Typed CSSOM, reject adding to something that is not a list.
(CVE-2023-1215)
+ * Fix potential out of bounds write in base::SampleVectorBase (CVE-2023-1220)
+- Add services-network-optional-explicit-constructor.patch
+
+-------------------------------------------------------------------
Old:
----
electron-22.3.3.tar.zst
New:
----
electron-22.3.4.tar.zst
services-network-optional-explicit-constructor.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ nodejs-electron.spec ++++++
--- /var/tmp/diff_new_pack.XIrEbp/_old 2023-03-25 18:56:26.087002159 +0100
+++ /var/tmp/diff_new_pack.XIrEbp/_new 2023-03-25 18:56:26.091002180 +0100
@@ -201,7 +201,7 @@
Name: nodejs-electron
-Version: 22.3.3
+Version: 22.3.4
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
@@ -375,6 +375,7 @@
Patch3118: gpu_feature_info-missing-uint32_t.patch
Patch3119: blink-gcc13-missing-headers.patch
Patch3120: effect_paint_property_node-Wchanges-meaning.patch
+Patch3121: services-network-optional-explicit-constructor.patch
%if %{with clang}
BuildRequires: clang
++++++ services-network-optional-explicit-constructor.patch ++++++
[ 2542s] ../../services/network/cookie_access_delegate_impl.cc: In member
function 'virtual std::optional<base::flat_map<net::SchemefulSite,
net::FirstPartySetEntry> >
network::CookieAccessDelegateImpl::FindFirstPartySetEntries(base::flat_set<net::SchemefulSite>&,
base::OnceCallback<void(base::flat_map<net::SchemefulSite,
net::FirstPartySetEntry>)>) const':
[ 2542s] ../../services/network/cookie_access_delegate_impl.cc:81:15: error:
converting to 'std::optional<base::flat_map<net::SchemefulSite,
net::FirstPartySetEntry> >' from initializer list would use explicit
constructor 'constexpr std::optional<_Tp>::optional(std::in_place_t, _Args&&
...) [with _Args = {}; typename
std::enable_if<__and_v<std::is_constructible<_Tp, _Args ...> >, bool>::type
<anonymous> = false; _Tp = base::flat_map<net::SchemefulSite,
net::FirstPartySetEntry>]'
[ 2542s] 81 | return {{}};
[ 2542s] | ^
[ 2542s] ../../services/network/cookie_access_delegate_impl.cc:81:15: error:
converting to 'std::in_place_t' from initializer list would use explicit
constructor 'constexpr std::in_place_t::in_place_t()'
--- src/services/network/cookie_access_delegate_impl.cc.old 2023-03-24
11:21:23.446841775 +0100
+++ src/services/network/cookie_access_delegate_impl.cc 2023-03-24
13:08:04.591526417 +0100
@@ -78,7 +78,7 @@
base::OnceCallback<void(FirstPartySetsAccessDelegate::EntriesResult)>
callback) const {
if (!first_party_sets_access_delegate_)
- return {{}};
+ return {FirstPartySetsAccessDelegate::EntriesResult()};
return first_party_sets_access_delegate_->FindEntries(sites,
std::move(callback));
}
---
src/services/network/first_party_sets/first_party_sets_access_delegate.cc.old
2023-03-24 11:21:23.454841767 +0100
+++ src/services/network/first_party_sets/first_party_sets_access_delegate.cc
2023-03-24 14:41:19.809786588 +0100
@@ -95,7 +95,7 @@
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
if (!enabled_)
- return {{}};
+ return {FirstPartySetsAccessDelegate::EntriesResult()};
if (!ready_event_.has_value()) {
// base::Unretained() is safe because `this` owns `pending_queries_` and