Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package kimageformats for openSUSE:Factory checked in at 2022-09-13 15:08:42 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kimageformats (Old) and /work/SRC/openSUSE:Factory/.kimageformats.new.2083 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kimageformats" Tue Sep 13 15:08:42 2022 rev:110 rq:1002832 version:5.98.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kimageformats/kimageformats.changes 2022-08-15 19:59:26.597264733 +0200 +++ /work/SRC/openSUSE:Factory/.kimageformats.new.2083/kimageformats.changes 2022-09-13 15:10:19.952801970 +0200 @@ -1,0 +2,11 @@ +Tue Sep 6 07:17:04 UTC 2022 - Christophe Giboudeaux <christo...@krop.fr> + +- Update to 5.98.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/frameworks/5/5.98.0 +- Changes since 5.97.0: + * Add FreeBSD Qt6 CI support + * Protect against too big resize for a QByteArray + +------------------------------------------------------------------- Old: ---- kimageformats-5.97.0.tar.xz kimageformats-5.97.0.tar.xz.sig New: ---- kimageformats-5.98.0.tar.xz kimageformats-5.98.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kimageformats.spec ++++++ --- /var/tmp/diff_new_pack.70Ya4U/_old 2022-09-13 15:10:20.544803637 +0200 +++ /var/tmp/diff_new_pack.70Ya4U/_new 2022-09-13 15:10:20.548803648 +0200 @@ -22,7 +22,7 @@ %if 0%{?suse_version} > 1500 || (0%{?is_opensuse} && 0%{?sle_version} >= 150300) %define with_heif 1 %endif -%define _tar_path 5.97 +%define _tar_path 5.98 # Full KF5 version (e.g. 5.33.0) %{!?_kf5_version: %global _kf5_version %{version}} # Last major and minor KF5 version (e.g. 5.33) @@ -30,7 +30,7 @@ # Only needed for the package signature condition %bcond_without released Name: kimageformats -Version: 5.97.0 +Version: 5.98.0 Release: 0 Summary: Image format plugins for Qt License: LGPL-2.1-or-later ++++++ kimageformats-5.97.0.tar.xz -> kimageformats-5.98.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimageformats-5.97.0/.gitlab-ci.yml new/kimageformats-5.98.0/.gitlab-ci.yml --- old/kimageformats-5.97.0/.gitlab-ci.yml 2022-08-07 14:18:50.000000000 +0200 +++ new/kimageformats-5.98.0/.gitlab-ci.yml 2022-09-05 11:27:11.000000000 +0200 @@ -8,3 +8,4 @@ - https://invent.kde.org/sysadmin/ci-utilities/raw/master/gitlab-templates/linux-qt6.yml - https://invent.kde.org/sysadmin/ci-utilities/raw/master/gitlab-templates/android-qt6.yml - https://invent.kde.org/sysadmin/ci-utilities/raw/master/gitlab-templates/windows.yml + - https://invent.kde.org/sysadmin/ci-utilities/raw/master/gitlab-templates/freebsd-qt6.yml diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimageformats-5.97.0/CMakeLists.txt new/kimageformats-5.98.0/CMakeLists.txt --- old/kimageformats-5.97.0/CMakeLists.txt 2022-08-07 14:18:50.000000000 +0200 +++ new/kimageformats-5.98.0/CMakeLists.txt 2022-09-05 11:27:11.000000000 +0200 @@ -3,7 +3,7 @@ project(KImageFormats) include(FeatureSummary) -find_package(ECM 5.97.0 NO_MODULE) +find_package(ECM 5.98.0 NO_MODULE) set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake Modules." URL "https://commits.kde.org/extra-cmake-modules") feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND FATAL_ON_MISSING_REQUIRED_PACKAGES) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimageformats-5.97.0/src/imageformats/psd.cpp new/kimageformats-5.98.0/src/imageformats/psd.cpp --- old/kimageformats-5.97.0/src/imageformats/psd.cpp 2022-08-07 14:18:50.000000000 +0200 +++ new/kimageformats-5.98.0/src/imageformats/psd.cpp 2022-09-05 11:27:11.000000000 +0200 @@ -938,6 +938,9 @@ bool readChannel(QByteArray& target, QDataStream &stream, quint32 compressedSize, quint16 compression) { if (compression) { + if (compressedSize > kMaxQVectorSize) { + return false; + } QByteArray tmp; tmp.resize(compressedSize); if (stream.readRawData(tmp.data(), tmp.size()) != tmp.size()) {