Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kf6-kquickcharts for 
openSUSE:Factory checked in at 2026-02-16 13:03:46
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kf6-kquickcharts (Old)
 and      /work/SRC/openSUSE:Factory/.kf6-kquickcharts.new.1977 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kf6-kquickcharts"

Mon Feb 16 13:03:46 2026 rev:24 rq:1332948 version:6.23.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/kf6-kquickcharts/kf6-kquickcharts.changes        
2026-01-12 10:16:38.861961590 +0100
+++ 
/work/SRC/openSUSE:Factory/.kf6-kquickcharts.new.1977/kf6-kquickcharts.changes  
    2026-02-16 13:06:25.798836075 +0100
@@ -1,0 +2,13 @@
+Fri Feb  6 14:25:58 UTC 2026 - Christophe Marin <[email protected]>
+
+- Update to 6.23.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/frameworks/6/6.23.0
+- Changes since 6.22.0:
+  * Update dependency version to 6.23.0
+  * Fix memory leaks in tests
+  * Enable LSAN in CI
+  * Update version to 6.23.0
+
+-------------------------------------------------------------------

Old:
----
  kquickcharts-6.22.0.tar.xz
  kquickcharts-6.22.0.tar.xz.sig

New:
----
  kquickcharts-6.23.0.tar.xz
  kquickcharts-6.23.0.tar.xz.sig

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

Other differences:
------------------
++++++ kf6-kquickcharts.spec ++++++
--- /var/tmp/diff_new_pack.v1PgV8/_old  2026-02-16 13:06:27.562909197 +0100
+++ /var/tmp/diff_new_pack.v1PgV8/_new  2026-02-16 13:06:27.562909197 +0100
@@ -19,11 +19,11 @@
 %define qt6_version 6.8.0
 
 %define rname kquickcharts
-# Full KF6 version (e.g. 6.22.0)
+# Full KF6 version (e.g. 6.23.0)
 %{!?_kf6_version: %global _kf6_version %{version}}
 %bcond_without released
 Name:           kf6-kquickcharts
-Version:        6.22.0
+Version:        6.23.0
 Release:        0
 Summary:        Set of charts for QtQuick applications
 License:        LGPL-2.1-or-later


++++++ kquickcharts-6.22.0.tar.xz -> kquickcharts-6.23.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kquickcharts-6.22.0/.kde-ci.yml 
new/kquickcharts-6.23.0/.kde-ci.yml
--- old/kquickcharts-6.22.0/.kde-ci.yml 2026-01-02 18:43:58.000000000 +0100
+++ new/kquickcharts-6.23.0/.kde-ci.yml 2026-02-06 13:16:52.000000000 +0100
@@ -7,3 +7,4 @@
  test-before-installing: True
  require-passing-tests-on: ['Linux', 'FreeBSD', 'Windows']
  run-qmllint: True
+ enable-lsan: True
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kquickcharts-6.22.0/CMakeLists.txt 
new/kquickcharts-6.23.0/CMakeLists.txt
--- old/kquickcharts-6.22.0/CMakeLists.txt      2026-01-02 18:43:58.000000000 
+0100
+++ new/kquickcharts-6.23.0/CMakeLists.txt      2026-02-06 13:16:52.000000000 
+0100
@@ -1,12 +1,12 @@
-cmake_minimum_required(VERSION 3.16)
+cmake_minimum_required(VERSION 3.27)
 
-set(KF_VERSION "6.22.0") # handled by release scripts
-set(KF_DEP_VERSION "6.22.0") # handled by release scripts
+set(KF_VERSION "6.23.0") # handled by release scripts
+set(KF_DEP_VERSION "6.23.0") # handled by release scripts
 
 project(KQuickCharts VERSION ${KF_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 6.22.0 NO_MODULE)
+find_package(ECM 6.23.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/kquickcharts-6.22.0/autotests/ArraySourceTest.cpp 
new/kquickcharts-6.23.0/autotests/ArraySourceTest.cpp
--- old/kquickcharts-6.22.0/autotests/ArraySourceTest.cpp       2026-01-02 
18:43:58.000000000 +0100
+++ new/kquickcharts-6.23.0/autotests/ArraySourceTest.cpp       2026-02-06 
13:16:52.000000000 +0100
@@ -17,7 +17,7 @@
     void testCreate()
     {
         // Basic creation should create an empty source.
-        auto source = new ArraySource{};
+        auto source = std::make_unique<ArraySource>();
 
         QCOMPARE(source->itemCount(), 0);
         QCOMPARE(source->item(0), QVariant{});
@@ -41,7 +41,7 @@
 
     void testWithArray()
     {
-        auto source = new ArraySource{};
+        auto source = std::make_unique<ArraySource>();
         QFETCH(QVariantList, array);
         source->setArray(array);
 
@@ -77,7 +77,7 @@
 
     void testWrap()
     {
-        auto source = new ArraySource{};
+        auto source = std::make_unique<ArraySource>();
         QFETCH(QVariantList, array);
         source->setArray(array);
         source->setWrap(true);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kquickcharts-6.22.0/autotests/HistoryProxySourceTest.cpp 
new/kquickcharts-6.23.0/autotests/HistoryProxySourceTest.cpp
--- old/kquickcharts-6.22.0/autotests/HistoryProxySourceTest.cpp        
2026-01-02 18:43:58.000000000 +0100
+++ new/kquickcharts-6.23.0/autotests/HistoryProxySourceTest.cpp        
2026-02-06 13:16:52.000000000 +0100
@@ -83,7 +83,7 @@
     void testCreate()
     {
         // Basic creation should create an empty source.
-        auto source = new HistoryProxySource{};
+        auto source = std::make_unique<HistoryProxySource>();
 
         QCOMPARE(source->itemCount(), 0);
         QCOMPARE(source->item(0), QVariant{});
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kquickcharts-6.22.0/autotests/ItemBuilderTest.cpp 
new/kquickcharts-6.23.0/autotests/ItemBuilderTest.cpp
--- old/kquickcharts-6.22.0/autotests/ItemBuilderTest.cpp       2026-01-02 
18:43:58.000000000 +0100
+++ new/kquickcharts-6.23.0/autotests/ItemBuilderTest.cpp       2026-02-06 
13:16:52.000000000 +0100
@@ -116,7 +116,8 @@
 
     void testAsync()
     {
-        m_engine->setIncubationController(new TestIncubationController);
+        m_incubationController = new TestIncubationController;
+        m_engine->setIncubationController(m_incubationController);
 
         ItemBuilder builder;
         builder.setComponent(m_component);
@@ -149,12 +150,14 @@
         delete m_item;
         delete m_component;
         delete m_engine;
+        delete m_incubationController;
     }
 
 private:
     QQmlEngine *m_engine = nullptr;
     QQmlComponent *m_component = nullptr;
     QQuickItem *m_item = nullptr;
+    TestIncubationController *m_incubationController = nullptr;
 };
 
 QTEST_GUILESS_MAIN(ItemBuilderTest)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kquickcharts-6.22.0/autotests/MapProxySourceTest.cpp 
new/kquickcharts-6.23.0/autotests/MapProxySourceTest.cpp
--- old/kquickcharts-6.22.0/autotests/MapProxySourceTest.cpp    2026-01-02 
18:43:58.000000000 +0100
+++ new/kquickcharts-6.23.0/autotests/MapProxySourceTest.cpp    2026-02-06 
13:16:52.000000000 +0100
@@ -20,7 +20,7 @@
     void testCreate()
     {
         // Basic creation should create an empty source.
-        auto source = new MapProxySource{};
+        auto source = std::make_unique<MapProxySource>();
 
         QCOMPARE(source->itemCount(), 0);
         QCOMPARE(source->item(0), QVariant{});
@@ -56,12 +56,12 @@
 
     void testWithArray()
     {
-        auto arraySource = new ArraySource{};
+        auto arraySource = std::make_unique<ArraySource>();
         QFETCH(QVariantList, array);
         arraySource->setArray(array);
 
-        auto mapSource = new MapProxySource{};
-        mapSource->setSource(arraySource);
+        auto mapSource = std::make_unique<MapProxySource>();
+        mapSource->setSource(arraySource.get());
 
         QFETCH(QVariantMap, map);
         mapSource->setMap(map);

Reply via email to