Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package MozillaFirefox for openSUSE:Factory checked in at 2024-07-31 13:28:35 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/MozillaFirefox (Old) and /work/SRC/openSUSE:Factory/.MozillaFirefox.new.7232 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "MozillaFirefox" Wed Jul 31 13:28:35 2024 rev:433 rq:1190457 version:128.0.3 Changes: -------- --- /work/SRC/openSUSE:Factory/MozillaFirefox/MozillaFirefox.changes 2024-07-22 17:14:52.813770696 +0200 +++ /work/SRC/openSUSE:Factory/.MozillaFirefox.new.7232/MozillaFirefox.changes 2024-07-31 13:28:44.214430980 +0200 @@ -0,0 +1,30 @@ +------------------------------------------------------------------ +Sun Jul 28 18:08:39 UTC 2024 - Manfred Hollstein <manfre...@gmx.net> + +- Firefox 128.0.3 Release + * Fixed: Fixed an issue causing some sites to not load when + connecting via HTTP/2. (bmo#1908161, bmo#1909666) + * Fixed: Fixed collapsed table rows not appearing when expected + in some situations. (bmo#1907789) + * Fixed: Fixed the Windows on-screen keyboard potentially + concealing the webpage when displayed. (bmo#1907766) + +- Firefox 128.0.2 Release + * Fixed: Fixed an audio echo in video calls on macOS under + certain conditions. (bmo#1908539) + * Fixed: Fixed an issue where the Adguard extension popup was + not displaying. (bmo#1906132) + * Fixed: Fixed an issue causing some screen readers to fail to + read when navigating by character in rich text editors. (Bug + 1905021) + * Fixed: Fixed visual glitches when dark mode is enabled in + Windows ARM devices. (bmo#1897444) + * Fixed: Fixed an issue causing NTLM authentication failure. + (bmo#1908115) + * Fixed: Fixed an issue where content displayed on mouseover + was not captured in a screenshot. (bmo#1905468) + * Fixed: Various stability fixes. + +- renamed firefox-3781e3117706.patch to mozilla-bmo1905018.patch + to conform with patch structure and naming for the package + Old: ---- firefox-128.0.source.tar.xz firefox-128.0.source.tar.xz.asc firefox-3781e3117706.patch l10n-128.0.tar.xz New: ---- firefox-128.0.3.source.tar.xz firefox-128.0.3.source.tar.xz.asc l10n-128.0.3.tar.xz mozilla-bmo1905018.patch BETA DEBUG BEGIN: Old: - renamed firefox-3781e3117706.patch to mozilla-bmo1905018.patch to conform with patch structure and naming for the package BETA DEBUG END: BETA DEBUG BEGIN: New: - renamed firefox-3781e3117706.patch to mozilla-bmo1905018.patch to conform with patch structure and naming for the package BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ MozillaFirefox.spec ++++++ --- /var/tmp/diff_new_pack.W1bZF0/_old 2024-07-31 13:28:58.319010265 +0200 +++ /var/tmp/diff_new_pack.W1bZF0/_new 2024-07-31 13:28:58.323010428 +0200 @@ -1,5 +1,5 @@ # -# spec file +# spec file for package MozillaFirefox # # Copyright (c) 2024 SUSE LLC # Copyright (c) 2006-2024 Wolfgang Rosenauer <w...@rosenauer.org> @@ -29,8 +29,8 @@ # major 69 # mainver %%major.99 %define major 128 -%define mainver %major.0 -%define orig_version 128.0 +%define mainver %major.0.3 +%define orig_version 128.0.3 %define orig_suffix %{nil} %define update_channel release %define branding 1 @@ -230,15 +230,14 @@ Patch24: mozilla-bmo1822730.patch Patch25: mozilla-bmo1898476.patch Patch26: mozilla-bmo1907511.patch +Patch27: mozilla-bmo1905018.patch # Firefox/browser Patch101: firefox-kde.patch Patch102: firefox-branded-icons.patch -# PATCH-FIX-UPSTREAM MozillaFirefox-3781e3117706.patch bsc#1227856 -Patch103: firefox-3781e3117706.patch %endif BuildRoot: %{_tmppath}/%{name}-%{version}-build Requires(post): coreutils shared-mime-info desktop-file-utils -Requires(postun):shared-mime-info desktop-file-utils +Requires(postun): shared-mime-info desktop-file-utils Requires: %{name}-branding >= 68 %requires_ge mozilla-nspr %requires_ge mozilla-nss ++++++ firefox-128.0.source.tar.xz -> firefox-128.0.3.source.tar.xz ++++++ /work/SRC/openSUSE:Factory/MozillaFirefox/firefox-128.0.source.tar.xz /work/SRC/openSUSE:Factory/.MozillaFirefox.new.7232/firefox-128.0.3.source.tar.xz differ: char 15, line 1 ++++++ l10n-128.0.tar.xz -> l10n-128.0.3.tar.xz ++++++ /work/SRC/openSUSE:Factory/MozillaFirefox/l10n-128.0.tar.xz /work/SRC/openSUSE:Factory/.MozillaFirefox.new.7232/l10n-128.0.3.tar.xz differ: char 13, line 1 ++++++ mozilla-bmo1905018.patch ++++++ # HG changeset patch # User Paul Adenot <p...@paul.cx> # Date 1721290421 0 # Node ID 3781e311770684d79c1c8112d18abce258e29e7f # Parent fd4c60ac71c20d0cac519b517f32fc4956e0cfe3 Bug 1905018 - Fix logctx type in dovi_rpu stub. r=media-playback-reviewers,alwu Differential Revision: https://phabricator.services.mozilla.com/D216832 diff --git a/media/ffvpx/libavcodec/dovi_rpu.h b/media/ffvpx/libavcodec/dovi_rpu.h --- a/media/ffvpx/libavcodec/dovi_rpu.h +++ b/media/ffvpx/libavcodec/dovi_rpu.h @@ -5,17 +5,17 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ /* Stubs for dovi_rpu.{c,h} */ typedef struct AVCtx AVContext; typedef struct DOVICtx { int dv_profile; - AVContext* logctx; + void* logctx; int operating_point; } DOVIContext; typedef struct AVDOVICConfRecord { } AVDOVIDecoderConfigurationRecord; static void ff_dovi_ctx_unref(DOVIContext* ctx) {} static void ff_dovi_update_cfg(DOVIContext* ctx, ++++++ tar_stamps ++++++ --- /var/tmp/diff_new_pack.W1bZF0/_old 2024-07-31 13:28:58.755028172 +0200 +++ /var/tmp/diff_new_pack.W1bZF0/_new 2024-07-31 13:28:58.759028336 +0200 @@ -1,11 +1,11 @@ PRODUCT="firefox" CHANNEL="release" -VERSION="128.0" +VERSION="128.0.3" VERSION_SUFFIX="" -PREV_VERSION="127.0.2" +PREV_VERSION="128.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="14b32d530926c66251f10fe2410184f7cc7de839" -RELEASE_TIMESTAMP="20240704121409" +RELEASE_TAG="38b9888273f81488e7b45457790717820815e1d2" +RELEASE_TIMESTAMP="20240725162350"