Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package drkonqi6 for openSUSE:Factory 
checked in at 2024-11-06 16:51:41
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/drkonqi6 (Old)
 and      /work/SRC/openSUSE:Factory/.drkonqi6.new.2020 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "drkonqi6"

Wed Nov  6 16:51:41 2024 rev:10 rq:1221523 version:6.2.3

Changes:
--------
--- /work/SRC/openSUSE:Factory/drkonqi6/drkonqi6.changes        2024-10-24 
15:42:51.724386577 +0200
+++ /work/SRC/openSUSE:Factory/.drkonqi6.new.2020/drkonqi6.changes      
2024-11-06 16:52:56.902544004 +0100
@@ -1,0 +2,12 @@
+Tue Nov  5 13:30:11 UTC 2024 - Fabian Vogt <fab...@ritter-vogt.de>
+
+- Update to 6.2.3:
+  * New bugfix release
+  * For more details see https://kde.org/announcements/plasma/6/6.2.3
+- Changes since 6.2.2:
+  * update version for new release
+  * connectiontest: log bad requests
+  * connectiontest: fix for qt 6.8
+  * auto starting jobs don't start early
+
+-------------------------------------------------------------------

Old:
----
  drkonqi-6.2.2.tar.xz
  drkonqi-6.2.2.tar.xz.sig

New:
----
  drkonqi-6.2.3.tar.xz
  drkonqi-6.2.3.tar.xz.sig

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

Other differences:
------------------
++++++ drkonqi6.spec ++++++
--- /var/tmp/diff_new_pack.cdJWxs/_old  2024-11-06 16:52:58.310602480 +0100
+++ /var/tmp/diff_new_pack.cdJWxs/_new  2024-11-06 16:52:58.322602978 +0100
@@ -27,7 +27,7 @@
 %{!?_plasma6_bugfix: %define _plasma6_bugfix %{version}}
 # Latest ABI-stable Plasma (e.g. 6.0 in KF6, but 6.0.80 in KUF)
 %{!?_plasma6_version: %define _plasma6_version %(echo %{_plasma6_bugfix} | awk 
-F. '{print $1"."$2}')}
-Version:        6.2.2
+Version:        6.2.3
 Release:        0
 Summary:        Helper for debugging and reporting crashes
 License:        GPL-2.0-or-later

++++++ drkonqi-6.2.2.tar.xz -> drkonqi-6.2.3.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/drkonqi-6.2.2/CMakeLists.txt 
new/drkonqi-6.2.3/CMakeLists.txt
--- old/drkonqi-6.2.2/CMakeLists.txt    2024-10-22 14:55:19.000000000 +0200
+++ new/drkonqi-6.2.3/CMakeLists.txt    2024-11-05 13:34:52.000000000 +0100
@@ -1,7 +1,7 @@
 cmake_minimum_required(VERSION 3.16)
 
 project(drkonqi)
-set(PROJECT_VERSION "6.2.2")
+set(PROJECT_VERSION "6.2.3")
 set(PROJECT_VERSION_MAJOR 6)
 
 set(QT_MIN_VERSION "6.7.0")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/drkonqi-6.2.2/src/bugzillaintegration/libbugzilla/apijob.cpp 
new/drkonqi-6.2.3/src/bugzillaintegration/libbugzilla/apijob.cpp
--- old/drkonqi-6.2.2/src/bugzillaintegration/libbugzilla/apijob.cpp    
2024-10-22 14:55:19.000000000 +0200
+++ new/drkonqi-6.2.3/src/bugzillaintegration/libbugzilla/apijob.cpp    
2024-11-05 13:34:52.000000000 +0100
@@ -39,8 +39,14 @@
 void APIJob::connectNotify(const QMetaMethod &signal)
 {
     if (m_autostart && signal == QMetaMethod::fromSignal(&KJob::finished)) {
-        qCDebug(BUGZILLA_LOG) << "auto starting";
-        start();
+        // Queue the start lest we start too early for our caller.
+        QMetaObject::invokeMethod(
+            this,
+            [this] {
+                qCDebug(BUGZILLA_LOG) << "auto starting";
+                start();
+            },
+            Qt::QueuedConnection);
     }
     KJob::connectNotify(signal);
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/drkonqi-6.2.2/src/bugzillaintegration/libbugzilla/autotests/connectiontest.cpp
 
new/drkonqi-6.2.3/src/bugzillaintegration/libbugzilla/autotests/connectiontest.cpp
--- 
old/drkonqi-6.2.2/src/bugzillaintegration/libbugzilla/autotests/connectiontest.cpp
  2024-10-22 14:55:19.000000000 +0200
+++ 
new/drkonqi-6.2.3/src/bugzillaintegration/libbugzilla/autotests/connectiontest.cpp
  2024-11-05 13:34:52.000000000 +0100
@@ -151,7 +151,7 @@
                 readBlob += socket->readAll();
                 readBlob.replace("\r\n", "\n");
                 auto parts = readBlob.split("\n");
-                if (parts.contains("PUT /put HTTP/1.1") && 
parts.contains("Content-Length: 12") && parts.contains("hello there!")) {
+                if (parts.contains("PUT /put HTTP/1.1") && 
parts.contains("Content-Length: 12", Qt::CaseInsensitive) && 
parts.contains("hello there!")) {
                     QFile file(QFINDTESTDATA("data/put.http"));
                     file.open(QFile::ReadOnly | QFile::Text);
                     QByteArray ret = file.readAll();
@@ -162,6 +162,8 @@
                     socket->disconnect();
                     socket->close();
                     qDebug() << "socket closed";
+                } else {
+                    qWarning() << "Unexpected request" << readBlob;
                 }
             });
         });

Reply via email to