Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package MozillaFirefox for openSUSE:Factory checked in at 2026-04-09 16:08:05 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/MozillaFirefox (Old) and /work/SRC/openSUSE:Factory/.MozillaFirefox.new.21863 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "MozillaFirefox" Thu Apr 9 16:08:05 2026 rev:482 rq:1345066 version:149.0.2 Changes: -------- --- /work/SRC/openSUSE:Factory/MozillaFirefox/MozillaFirefox.changes 2026-03-28 20:14:43.896841547 +0100 +++ /work/SRC/openSUSE:Factory/.MozillaFirefox.new.21863/MozillaFirefox.changes 2026-04-09 16:10:05.138354381 +0200 @@ -1,0 +2,62 @@ +Tue Apr 7 05:09:07 UTC 2026 - Wolfgang Rosenauer <[email protected]> + +- Mozilla Firefox 149.0.2 + MFSA 2026-25 + * CVE-2026-5732 (bmo#2017867) + Incorrect boundary conditions, integer overflow in the + Graphics: Text component + * CVE-2026-5733 (bmo#2022554) + Incorrect boundary conditions in the Graphics: WebGPU component + * CVE-2026-5731 (bmo#2021894, bmo#2022225, bmo#2022252, bmo#2022294, + bmo#2023007, bmo#2023130, bmo#2023191, bmo#2023364, bmo#2023829, + bmo#2024074, bmo#2024417, bmo#2024433, bmo#2024436, bmo#2024437, + bmo#2024453, bmo#2024461, bmo#2024462, bmo#2024472, bmo#2024474, + bmo#2024477, bmo#2025364, bmo#2025401, bmo#2025402, bmo#2025472, + bmo#2026287, bmo#2026299, bmo#2026305, bmo#2026426) + Memory safety bugs fixed in Firefox ESR 115.34.1, Firefox ESR + 140.9.1, Thunderbird ESR 140.9.1, Firefox 149.0.2 and + Thunderbird 149.0.2 + * CVE-2026-5734 (bmo#2022369, bmo#2023026, bmo#2023545, bmo#2023555, + bmo#2023958, bmo#2025422, bmo#2025468, bmo#2025492, bmo#2025505) + Memory safety bugs fixed in Firefox ESR 140.9.1, Thunderbird + ESR 140.9.1, Firefox 149.0.2 and Thunderbird 149.0.2 + * CVE-2026-5735 (bmo#2025475, bmo#2025477) + Memory safety bugs fixed in Firefox 149.0.2 and Thunderbird + 149.0.2 + * Enterprise: Introduced a new enterprise policy that allows + administrators to directly manage and control AI-related + features within Firefox. (bmo#2019983) + * Enterprise: Fixed an issue where enterprise policies for the + browser homepage and start page were not being applied + correctly. (bmo#2027888) + * Enterprise: Introduced a new enterprise policy that allows + administrators to prevent the built-in VPN and IP protection + features from being available to users. (bmo#2022365) + * Fixed: Fixed an issue where certain parts of web pages, such + as drop-down menus and specific styles, did not appear + correctly when printing. (bmo#2026109) + * Fixed: Fixed an issue where some website error pages + displayed generic connection messages instead of the specific + error code and description provided by the server. (bmo#2023800) + * Fixed: Fixed a crash that occurred when using certain + security keys or WebAuthn features for two-factor + authentication. (bmo#2026688) + * Fixed: Fixed an issue on Linux where the browser toolbar + could become unresponsive to mouse clicks after dragging a + tab when using Wayland. (bmo#2022238) + * Fixed: Fixed a layout issue where text inside certain + graphics (SVG) appeared shifted or misaligned from its + intended position. (bmo#2024647) + * Fixed: Fixed an issue where the "Send to device" option + failed to work when used from the Open Tabs section in + Firefox View. (bmo#2023201) + +------------------------------------------------------------------- +Fri Mar 27 15:12:04 UTC 2026 - Manfred Hollstein <[email protected]> + +- Building on Leap definitely needs to be clang based; define + clang_build appropriately. To make clang find a suitable STL + library, explicitly BuildRequire libstdc++6-devel-gcc?? which + corresponds to the version of which gcc would be used. + +------------------------------------------------------------------- Old: ---- firefox-149.0.source.tar.xz firefox-149.0.source.tar.xz.asc l10n-149.0.tar.xz New: ---- firefox-149.0.2.source.tar.xz firefox-149.0.2.source.tar.xz.asc l10n-149.0.2.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ MozillaFirefox.spec ++++++ --- /var/tmp/diff_new_pack.Cl3sVR/_old 2026-04-09 16:10:17.906882767 +0200 +++ /var/tmp/diff_new_pack.Cl3sVR/_new 2026-04-09 16:10:17.910882932 +0200 @@ -29,8 +29,8 @@ # major 69 # mainver %%major.99 %define major 149 -%define mainver %major.0 -%define orig_version 149.0 +%define mainver %major.0.2 +%define orig_version 149.0.2 %define orig_suffix %{nil} %define update_channel release %define branding 1 @@ -38,7 +38,13 @@ %define do_profiling 1 # upstream default is clang (to use gcc for large parts set to 0) +%if 0%{?is_opensuse} && 0%{?suse_version} <= 1600 +# builds on Leap definitely need clang +%define clang_build 1 +%else +# stick with gcc based builds on all other platforms %define clang_build 0 +%endif %bcond_with only_print_mozconfig @@ -103,8 +109,10 @@ %if 0%{?suse_version} < 1550 && 0%{?sle_version} <= 150600 BuildRequires: gcc13 BuildRequires: gcc13-c++ +BuildRequires: libstdc++6-devel-gcc13 %else -BuildRequires: gcc-c++ +BuildRequires: gcc15-c++ +BuildRequires: libstdc++6-devel-gcc15 %endif BuildRequires: cargo1.93 BuildRequires: rust1.93 @@ -403,11 +411,11 @@ export CC=gcc-13 export CXX=g++-13 %else -export CC=gcc -export CXX=g++ -export AR=gcc-ar -export NM=gcc-nm -export RANLIB=gcc-ranlib +export CC=gcc-15 +export CXX=g++-15 +export AR=gcc-ar-15 +export NM=gcc-nm-15 +export RANLIB=gcc-ranlib-15 %endif %endif %ifarch %arm %ix86 ++++++ firefox-149.0.source.tar.xz -> firefox-149.0.2.source.tar.xz ++++++ /work/SRC/openSUSE:Factory/MozillaFirefox/firefox-149.0.source.tar.xz /work/SRC/openSUSE:Factory/.MozillaFirefox.new.21863/firefox-149.0.2.source.tar.xz differ: char 15, line 1 ++++++ l10n-149.0.tar.xz -> l10n-149.0.2.tar.xz ++++++ /work/SRC/openSUSE:Factory/MozillaFirefox/l10n-149.0.tar.xz /work/SRC/openSUSE:Factory/.MozillaFirefox.new.21863/l10n-149.0.2.tar.xz differ: char 15, line 1 ++++++ tar_stamps ++++++ --- /var/tmp/diff_new_pack.Cl3sVR/_old 2026-04-09 16:10:18.330900261 +0200 +++ /var/tmp/diff_new_pack.Cl3sVR/_new 2026-04-09 16:10:18.334900425 +0200 @@ -1,11 +1,11 @@ PRODUCT="firefox" CHANNEL="release" -VERSION="149.0" +VERSION="149.0.2" VERSION_SUFFIX="" -PREV_VERSION="148.0.2" +PREV_VERSION="149.0" PREV_VERSION_SUFFIX="" #SKIP_LOCALES="" # Uncomment to skip l10n and compare-locales-generation RELEASE_REPO="https://hg.mozilla.org/releases/mozilla-release" -RELEASE_TAG="b20f603334b8677ba67ed2fb12a1043b3c8c6933" -RELEASE_TIMESTAMP="20260318190823" +RELEASE_TAG="9f0b9889e371a1c81cc665cfce6f53803006ad9b" +RELEASE_TIMESTAMP="20260403140140"
