Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kf6-ktexttemplate for 
openSUSE:Factory checked in at 2025-05-12 16:44:40
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kf6-ktexttemplate (Old)
 and      /work/SRC/openSUSE:Factory/.kf6-ktexttemplate.new.30101 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kf6-ktexttemplate"

Mon May 12 16:44:40 2025 rev:15 rq:1276399 version:6.14.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/kf6-ktexttemplate/kf6-ktexttemplate.changes      
2025-04-15 16:46:53.573583501 +0200
+++ 
/work/SRC/openSUSE:Factory/.kf6-ktexttemplate.new.30101/kf6-ktexttemplate.changes
   2025-05-12 16:47:38.737565899 +0200
@@ -1,0 +2,13 @@
+Sun May  4 19:05:30 UTC 2025 - Christophe Marin <christo...@krop.fr>
+
+- Update to 6.14.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/frameworks/6/6.14.0
+- Changes since 6.13.0:
+  * Update dependency version to 6.14.0
+  * It compiles fine without qt6.9 deprecated methods
+  * Port away from QJSValue::isVariant
+  * Update version to 6.14.0
+
+-------------------------------------------------------------------

Old:
----
  ktexttemplate-6.13.0.tar.xz
  ktexttemplate-6.13.0.tar.xz.sig

New:
----
  ktexttemplate-6.14.0.tar.xz
  ktexttemplate-6.14.0.tar.xz.sig

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ kf6-ktexttemplate.spec ++++++
--- /var/tmp/diff_new_pack.7DSqR1/_old  2025-05-12 16:47:39.429594916 +0200
+++ /var/tmp/diff_new_pack.7DSqR1/_new  2025-05-12 16:47:39.433595083 +0200
@@ -19,13 +19,13 @@
 %define qt6_version 6.7.0
 
 %define rname ktexttemplate
-# Full KF6 version (e.g. 6.13.0)
+# Full KF6 version (e.g. 6.14.0)
 %{!?_kf6_version: %global _kf6_version %{version}}
 # Last major and minor KF6 version (e.g. 6.0)
 %{!?_kf6_bugfix_version: %define _kf6_bugfix_version %(echo %{_kf6_version} | 
awk -F. '{print $1"."$2}')}
 %bcond_without released
 Name:           kf6-ktexttemplate
-Version:        6.13.0
+Version:        6.14.0
 Release:        0
 Summary:        String template library
 License:        LGPL-2.1-or-later

++++++ ktexttemplate-6.13.0.tar.xz -> ktexttemplate-6.14.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktexttemplate-6.13.0/CMakeLists.txt 
new/ktexttemplate-6.14.0/CMakeLists.txt
--- old/ktexttemplate-6.13.0/CMakeLists.txt     2025-04-04 16:03:14.000000000 
+0200
+++ new/ktexttemplate-6.14.0/CMakeLists.txt     2025-05-02 16:25:06.000000000 
+0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.16)
 
-set(KF_VERSION "6.13.0") # handled by release scripts
+set(KF_VERSION "6.14.0") # handled by release scripts
 project(KTextTemplate VERSION ${KF_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 6.13.0  CONFIG)
+find_package(ECM 6.14.0  CONFIG)
 set_package_properties(ECM PROPERTIES
   TYPE REQUIRED
   DESCRIPTION "Extra CMake Modules."
@@ -19,7 +19,7 @@
 include(KDECMakeSettings)
 include(KDEGitCommitHooks)
 
-set(REQUIRED_QT_VERSION 6.6.0)
+set(REQUIRED_QT_VERSION 6.7.0)
 find_package(Qt6Core ${REQUIRED_QT_VERSION} REQUIRED NO_MODULE)
 find_package(Qt6Qml ${REQUIRED_QT_VERSION} NO_MODULE)
 
@@ -50,7 +50,7 @@
 endif()
 
 ecm_set_disabled_deprecation_versions(
-    QT 6.8.0
+    QT 6.9.0
 )
 
 kde_enable_exceptions()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/ktexttemplate-6.13.0/src/scriptabletags/scriptablefilter.cpp 
new/ktexttemplate-6.14.0/src/scriptabletags/scriptablefilter.cpp
--- old/ktexttemplate-6.13.0/src/scriptabletags/scriptablefilter.cpp    
2025-04-04 16:03:14.000000000 +0200
+++ new/ktexttemplate-6.14.0/src/scriptabletags/scriptablefilter.cpp    
2025-05-02 16:25:06.000000000 +0200
@@ -78,10 +78,10 @@
             return {};
         auto returnedString = returnedStringObject->wrappedString();
         return returnedString;
-    } else if (returnValue.isVariant()) {
-        return qjsvalue_cast<QVariant>(returnValue);
     } else if (returnValue.isArray()) {
         return qjsvalue_cast<QVariantList>(returnValue);
+    } else if (const auto v = returnValue.toVariant(); !v.isNull()) {
+        return v;
     }
     return {};
 }

++++++ ktexttemplate-6.13.0.tar.xz.sig -> ktexttemplate-6.14.0.tar.xz.sig ++++++
--- 
/work/SRC/openSUSE:Factory/kf6-ktexttemplate/ktexttemplate-6.13.0.tar.xz.sig    
    2025-04-15 16:46:53.641586348 +0200
+++ 
/work/SRC/openSUSE:Factory/.kf6-ktexttemplate.new.30101/ktexttemplate-6.14.0.tar.xz.sig
     2025-05-12 16:47:38.993576634 +0200
@@ -1,7 +1,7 @@
 -----BEGIN PGP SIGNATURE-----
 
-iHUEABYKAB0WIQSQqWisqEU3zCe5nq8sjfWHptSqwQUCZ+/mowAKCRAsjfWHptSq
-wblUAP9wmEqQ21Zr9PAVFTruykBV7i+dakEsVWPr4tp+Kh8o7AD9FdG67Q6Tq6b2
-PIdZwV/l+QZgZH9xV0m5nyFecnYvvQc=
-=mmXc
+iHUEABYKAB0WIQSQqWisqEU3zCe5nq8sjfWHptSqwQUCaBTVxAAKCRAsjfWHptSq
+wQvDAQCbIvXb9dhOf6otVmfU5j7pI6zrU1QUcdM9WTHD/RPOawEAmylgPjOCiMjW
+cezzwJiJ9EBkaG1HYIVMNaVW+pbnagk=
+=nrnc
 -----END PGP SIGNATURE-----

Reply via email to