Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package os-autoinst for openSUSE:Factory 
checked in at 2026-04-09 16:11:26
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/os-autoinst (Old)
 and      /work/SRC/openSUSE:Factory/.os-autoinst.new.21863 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "os-autoinst"

Thu Apr  9 16:11:26 2026 rev:583 rq:1345493 version:5.1775724038.b9411c7

Changes:
--------
--- /work/SRC/openSUSE:Factory/os-autoinst/os-autoinst.changes  2026-04-08 
17:18:31.098801514 +0200
+++ /work/SRC/openSUSE:Factory/.os-autoinst.new.21863/os-autoinst.changes       
2026-04-09 16:23:45.220064339 +0200
@@ -1,0 +2,11 @@
+Thu Apr 09 08:40:48 UTC 2026 - [email protected]
+
+- Update to version 5.1775724038.b9411c7:
+  * style(llm): use indented heredocs for better readability
+  * fix(consoles): support newer x3270 versions
+  * refactor: unconditionally import LLM analysis to fix coverage
+  * feat(llm): integrate LLM analysis into isotovideo
+  * feat(llm): add core LLM failure analysis module and tests
+  * chore(AGENTS.md): extend with better proactive style following
+
+-------------------------------------------------------------------

Old:
----
  os-autoinst-5.1775569433.3681116.obscpio

New:
----
  os-autoinst-5.1775724038.b9411c7.obscpio

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

Other differences:
------------------
++++++ os-autoinst-devel-test.spec ++++++
--- /var/tmp/diff_new_pack.nqi1YX/_old  2026-04-09 16:23:46.352110930 +0200
+++ /var/tmp/diff_new_pack.nqi1YX/_new  2026-04-09 16:23:46.356111096 +0200
@@ -18,7 +18,7 @@
 
 %define         short_name os-autoinst-devel
 Name:           %{short_name}-test
-Version:        5.1775569433.3681116
+Version:        5.1775724038.b9411c7
 Release:        0
 Summary:        Test package for %{short_name}
 License:        GPL-2.0-or-later

++++++ os-autoinst-openvswitch-test.spec ++++++
--- /var/tmp/diff_new_pack.nqi1YX/_old  2026-04-09 16:23:46.392112577 +0200
+++ /var/tmp/diff_new_pack.nqi1YX/_new  2026-04-09 16:23:46.396112741 +0200
@@ -19,7 +19,7 @@
 %define name_ext -test
 %define         short_name os-autoinst-openvswitch
 Name:           %{short_name}%{?name_ext}
-Version:        5.1775569433.3681116
+Version:        5.1775724038.b9411c7
 Release:        0
 Summary:        test package for %{short_name}
 License:        GPL-2.0-or-later

++++++ os-autoinst-test.spec ++++++
--- /var/tmp/diff_new_pack.nqi1YX/_old  2026-04-09 16:23:46.440114553 +0200
+++ /var/tmp/diff_new_pack.nqi1YX/_new  2026-04-09 16:23:46.444114717 +0200
@@ -19,7 +19,7 @@
 %define name_ext -test
 %define         short_name os-autoinst
 Name:           %{short_name}%{?name_ext}
-Version:        5.1775569433.3681116
+Version:        5.1775724038.b9411c7
 Release:        0
 Summary:        test package for os-autoinst
 License:        GPL-2.0-or-later

++++++ os-autoinst.spec ++++++
--- /var/tmp/diff_new_pack.nqi1YX/_old  2026-04-09 16:23:46.488116528 +0200
+++ /var/tmp/diff_new_pack.nqi1YX/_new  2026-04-09 16:23:46.492116693 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           os-autoinst
-Version:        5.1775569433.3681116
+Version:        5.1775724038.b9411c7
 Release:        0
 Summary:        OS-level test automation
 License:        GPL-2.0-or-later

++++++ os-autoinst-5.1775569433.3681116.obscpio -> 
os-autoinst-5.1775724038.b9411c7.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/os-autoinst-5.1775569433.3681116/OpenQA/Isotovideo/LLMAnalysis.pm 
new/os-autoinst-5.1775724038.b9411c7/OpenQA/Isotovideo/LLMAnalysis.pm
--- old/os-autoinst-5.1775569433.3681116/OpenQA/Isotovideo/LLMAnalysis.pm       
2026-04-07 15:43:53.000000000 +0200
+++ new/os-autoinst-5.1775724038.b9411c7/OpenQA/Isotovideo/LLMAnalysis.pm       
2026-04-09 10:40:38.000000000 +0200
@@ -58,22 +58,22 @@
     $log_tail = substr $log_tail, -MAX_PAYLOAD_SIZE if length($log_tail) > 
MAX_PAYLOAD_SIZE;
     $serial_tail = substr $serial_tail, -MAX_PAYLOAD_SIZE if 
length($serial_tail) > MAX_PAYLOAD_SIZE;
 
-    my $prompt = <<"EOF";
-You are analyzing an automated test run of $distri $version $arch.
-The following tests failed: $failed_tests.
+    my $prompt = <<~"EOF";
+        You are analyzing an automated test run of $distri $version $arch.
+        The following tests failed: $failed_tests.
 
-Relevant log tail:
-$log_tail
+        Relevant log tail:
+        $log_tail
 
-Serial output tail:
-$serial_tail
+        Serial output tail:
+        $serial_tail
 
-Provide exactly 2-3 sentences answering:
-1. Why did the tests fail?
-2. What should be done to prevent these failures?
-3. Is this likely a product regression or a test infrastructure problem
-   (false positive)?
-EOF
+        Provide exactly 2-3 sentences answering:
+        1. Why did the tests fail?
+        2. What should be done to prevent these failures?
+        3. Is this likely a product regression or a test infrastructure problem
+           (false positive)?
+        EOF
 
     return $prompt;
 }

++++++ os-autoinst.obsinfo ++++++
--- /var/tmp/diff_new_pack.nqi1YX/_old  2026-04-09 16:23:53.488404642 +0200
+++ /var/tmp/diff_new_pack.nqi1YX/_new  2026-04-09 16:23:53.516405794 +0200
@@ -1,5 +1,5 @@
 name: os-autoinst
-version: 5.1775569433.3681116
-mtime: 1775569433
-commit: 36811160762e2dc6a3d3564b0e6d9870094bffcf
+version: 5.1775724038.b9411c7
+mtime: 1775724038
+commit: b9411c73c5e75a6beb23e3a3b6c9f58d90a4c6db
 

Reply via email to