Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package chromium for openSUSE:Factory checked in at 2024-09-20 17:09:04 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/chromium (Old) and /work/SRC/openSUSE:Factory/.chromium.new.29891 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "chromium" Fri Sep 20 17:09:04 2024 rev:431 rq:1201958 version:129.0.6668.58 Changes: -------- --- /work/SRC/openSUSE:Factory/chromium/chromium.changes 2024-09-12 16:55:54.207720719 +0200 +++ /work/SRC/openSUSE:Factory/.chromium.new.29891/chromium.changes 2024-09-20 17:12:05.411927691 +0200 @@ -1,0 +2,22 @@ +Wed Sep 18 17:29:16 CEST 2024 - r...@suse.de + +- Chromium 129.0.6668.58 (stable released 2024-09-17) + (boo#1230678) + * CVE-2024-8904: Type Confusion in V8 + * CVE-2024-8905: Inappropriate implementation in V8 + * CVE-2024-8906: Incorrect security UI in Downloads + * CVE-2024-8907: Insufficient data validation in Omnibox + * CVE-2024-8908: Inappropriate implementation in Autofill + * CVE-2024-8909: Inappropriate implementation in UI +- modified patches: + * chromium-prop-codecs.patch update context +- add to keeplibs: + third_party/rapidhash +- drop from keeplibs: + third_party/libudev dropped upstream + third_party/catapult/third_party/html5lib-python dropped upstream +- add patches: + chromium-129-revert-AVFMT_FLAG_NOH264PARSE.patch + (not in our ffmpeg yet) + +------------------------------------------------------------------- Old: ---- chromium-128.0.6613.137.tar.xz New: ---- chromium-129-revert-AVFMT_FLAG_NOH264PARSE.patch chromium-129.0.6668.58.tar.xz BETA DEBUG BEGIN: New:- add patches: chromium-129-revert-AVFMT_FLAG_NOH264PARSE.patch (not in our ffmpeg yet) BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ chromium.spec ++++++ --- /var/tmp/diff_new_pack.aIpuml/_old 2024-09-20 17:12:30.720981906 +0200 +++ /var/tmp/diff_new_pack.aIpuml/_new 2024-09-20 17:12:30.720981906 +0200 @@ -96,7 +96,7 @@ %define n_suffix %{nil} %endif Name: chromium%{n_suffix} -Version: 128.0.6613.137 +Version: 129.0.6668.58 Release: 0 Summary: Google's open source browser project License: BSD-3-Clause AND LGPL-2.1-or-later @@ -149,6 +149,7 @@ Patch361: chromium-127-rust-clanglib.patch Patch362: chromium-127-clang17-traitors.patch Patch363: chromium-127-constexpr.patch +Patch364: chromium-129-revert-AVFMT_FLAG_NOH264PARSE.patch BuildRequires: SDL-devel BuildRequires: bison BuildRequires: cups-devel @@ -517,7 +518,6 @@ third_party/catapult/common/py_vulcanize/third_party/rjsmin third_party/catapult/third_party/beautifulsoup4 third_party/catapult/third_party/html5lib-1.1/ - third_party/catapult/third_party/html5lib-python third_party/catapult/third_party/polymer third_party/catapult/third_party/six third_party/catapult/tracing/third_party/d3 @@ -601,7 +601,6 @@ third_party/libsecret third_party/libsrtp third_party/libsync - third_party/libudev third_party/liburlpattern third_party/libva_protected_content third_party/libwebm @@ -649,6 +648,7 @@ third_party/pyjson5 third_party/pyyaml third_party/qcms + third_party/rapidhash third_party/rnnoise third_party/rust third_party/ruy ++++++ chromium-129-revert-AVFMT_FLAG_NOH264PARSE.patch ++++++ diff --git a/media/filters/ffmpeg_glue.cc b/media/filters/ffmpeg_glue.cc index eaabc740e710e..229818059dc2c 100644 --- a/media/filters/ffmpeg_glue.cc +++ b/media/filters/ffmpeg_glue.cc @@ -21,7 +21,7 @@ namespace media { // TODO(crbug.com/355485812): Re-enable this flag. BASE_FEATURE(kAllowOnlyAudioCodecsDuringDemuxing, "AllowOnlyAudioCodecsDuringDemuxing", - base::FEATURE_ENABLED_BY_DEFAULT); + base::FEATURE_DISABLED_BY_DEFAULT); BASE_FEATURE(kForbidH264ParsingDuringDemuxing, "ForbidH264ParsingDuringDemuxing", base::FEATURE_ENABLED_BY_DEFAULT); @@ -121,7 +121,8 @@ FFmpegGlue::FFmpegGlue(FFmpegURLProtocol* protocol) { // We don't allow H.264 parsing during demuxing since we have our own parser // and the ffmpeg one increases memory usage unnecessarily. if (base::FeatureList::IsEnabled(kForbidH264ParsingDuringDemuxing)) { - format_context_->flags |= AVFMT_FLAG_NOH264PARSE; + // TODO(crbug.com/355485812): Re-enable this flag. + // format_context_->flags |= AVFMT_FLAG_NOH264PARSE; } // Ensures format parsing errors will bail out. From an audit on 11/2017, all ++++++ chromium-128.0.6613.137.tar.xz -> chromium-129.0.6668.58.tar.xz ++++++ /work/SRC/openSUSE:Factory/chromium/chromium-128.0.6613.137.tar.xz /work/SRC/openSUSE:Factory/.chromium.new.29891/chromium-129.0.6668.58.tar.xz differ: char 15, line 1 ++++++ chromium-prop-codecs.patch ++++++ --- /var/tmp/diff_new_pack.aIpuml/_old 2024-09-20 17:12:30.940991070 +0200 +++ /var/tmp/diff_new_pack.aIpuml/_new 2024-09-20 17:12:30.944991236 +0200 @@ -13,6 +13,6 @@ -} - # Common configuration for targets in the media directory; these must not be - # exported since things like USE_NEON and USE_CRAS have different meanings - # elsewhere in the code base. + # exported since things like USE_NEON have different meanings elsewhere in the + # code base.