Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package yast2-bootloader for 
openSUSE:Factory checked in at 2024-01-25 18:39:53
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/yast2-bootloader (Old)
 and      /work/SRC/openSUSE:Factory/.yast2-bootloader.new.1815 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "yast2-bootloader"

Thu Jan 25 18:39:53 2024 rev:332 rq:1141512 version:5.0.4

Changes:
--------
--- /work/SRC/openSUSE:Factory/yast2-bootloader/yast2-bootloader.changes        
2023-09-26 22:16:18.320139871 +0200
+++ 
/work/SRC/openSUSE:Factory/.yast2-bootloader.new.1815/yast2-bootloader.changes  
    2024-01-25 18:39:59.536060468 +0100
@@ -1,0 +2,14 @@
+Thu Jan 25 11:18:12 UTC 2024 - Knut Anderssen <kanders...@suse.com>
+
+- Persist s390 cio_ignore kernel argument always when given 
+  (bsc#1210525).
+- 5.0.4
+
+-------------------------------------------------------------------
+Wed Jan 10 23:16:39 UTC 2024 - Josef Reidinger <jreidin...@suse.com>
+
+- Do not try finding undefined bootloader name to avoid error
+  in logs (bsc#1218700)
+- 5.0.3
+
+-------------------------------------------------------------------

Old:
----
  yast2-bootloader-5.0.2.tar.bz2

New:
----
  yast2-bootloader-5.0.4.tar.bz2

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

Other differences:
------------------
++++++ yast2-bootloader.spec ++++++
--- /var/tmp/diff_new_pack.KmtXKJ/_old  2024-01-25 18:40:00.204084302 +0100
+++ /var/tmp/diff_new_pack.KmtXKJ/_new  2024-01-25 18:40:00.204084302 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-bootloader
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:           yast2-bootloader
-Version:        5.0.2
+Version:        5.0.4
 Release:        0
 Summary:        YaST2 - Bootloader Configuration
 License:        GPL-2.0-or-later

++++++ yast2-bootloader-5.0.2.tar.bz2 -> yast2-bootloader-5.0.4.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-bootloader-5.0.2/.github/workflows/ci.yml 
new/yast2-bootloader-5.0.4/.github/workflows/ci.yml
--- old/yast2-bootloader-5.0.2/.github/workflows/ci.yml 2023-09-04 
17:41:35.000000000 +0200
+++ new/yast2-bootloader-5.0.4/.github/workflows/ci.yml 2024-01-25 
13:29:30.000000000 +0100
@@ -1,9 +1,8 @@
-
 # See 
https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions
 
 name: CI
 
-on: [push, pull_request]
+on: [ push, pull_request ]
 
 jobs:
   Tests:
@@ -12,33 +11,32 @@
     strategy:
       fail-fast: false
       matrix:
-        distro:  [ "tumbleweed", "leap_latest" ]
+        distro: [ "tumbleweed" ]
 
     container:
       image: 
registry.opensuse.org/yast/head/containers_${{matrix.distro}}/yast-ruby
 
     steps:
+      - name: Git Checkout
+        uses: actions/checkout@v2
 
-    - name: Git Checkout
-      uses: actions/checkout@v2
-
-    # just for easier debugging...
-    - name: Inspect Installed Packages
-      run: rpm -qa | sort
-
-    - name: Unit Tests
-      run: rake test:unit
-      # enable code coverage reporting
-      env:
-        COVERAGE: 1
-
-    # send the coverage report to coveralls.io
-    - name: Coveralls Report
-      # send it only from the TW build to avoid duplicate submits
-      if: ${{ matrix.distro == 'tumbleweed' }}
-      uses: coverallsapp/github-action@master
-      with:
-        github-token: ${{ secrets.GITHUB_TOKEN }}
+      # just for easier debugging...
+      - name: Inspect Installed Packages
+        run: rpm -qa | sort
+
+      - name: Unit Tests
+        run: rake test:unit
+        # enable code coverage reporting
+        env:
+          COVERAGE: 1
+
+      # send the coverage report to coveralls.io
+      - name: Coveralls Report
+        # send it only from the TW build to avoid duplicate submits
+        if: ${{ matrix.distro == 'tumbleweed' }}
+        uses: coverallsapp/github-action@master
+        with:
+          github-token: ${{ secrets.GITHUB_TOKEN }}
 
   Rubocop:
     runs-on: ubuntu-latest
@@ -46,18 +44,17 @@
     strategy:
       fail-fast: false
       matrix:
-        distro: [ "leap_latest" ]
+        distro: [ "tumbleweed" ]
 
     container:
       image: 
registry.opensuse.org/yast/head/containers_${{matrix.distro}}/yast-ruby
 
     steps:
+      - name: Git Checkout
+        uses: actions/checkout@v2
 
-    - name: Git Checkout
-      uses: actions/checkout@v2
-
-    - name: Rubocop
-      run: rake check:rubocop
+      - name: Rubocop
+        run: rake check:rubocop
 
   Package:
     runs-on: ubuntu-latest
@@ -65,18 +62,17 @@
     strategy:
       fail-fast: false
       matrix:
-        distro:  [ "tumbleweed", "leap_latest" ]
+        distro: [ "tumbleweed" ]
 
     container:
       image: 
registry.opensuse.org/yast/head/containers_${{matrix.distro}}/yast-ruby
 
     steps:
+      - name: Git Checkout
+        uses: actions/checkout@v2
 
-    - name: Git Checkout
-      uses: actions/checkout@v2
-
-    - name: Package Build
-      run: yast-ci-ruby -o package
+      - name: Package Build
+        run: yast-ci-ruby -o package
 
   Yardoc:
     runs-on: ubuntu-latest
@@ -84,18 +80,17 @@
     strategy:
       fail-fast: false
       matrix:
-        distro: [ "leap_latest" ]
+        distro: [ "tumbleweed" ]
 
     container:
       image: 
registry.opensuse.org/yast/head/containers_${{matrix.distro}}/yast-ruby
 
     steps:
+      - name: Git Checkout
+        uses: actions/checkout@v2
 
-    - name: Git Checkout
-      uses: actions/checkout@v2
-
-    - name: Yardoc
-      run: rake check:doc
+      - name: Yardoc
+        run: rake check:doc
 
   # downloading the Docker image takes some time so bundling several fast
   # checks into one job avoids that overhead
@@ -105,18 +100,17 @@
     strategy:
       fail-fast: false
       matrix:
-        distro: [ "leap_latest" ]
+        distro: [ "tumbleweed" ]
 
     container:
       image: 
registry.opensuse.org/yast/head/containers_${{matrix.distro}}/yast-ruby
 
     steps:
+      - name: Git Checkout
+        uses: actions/checkout@v2
 
-    - name: Git Checkout
-      uses: actions/checkout@v2
-
-    - name: Perl Syntax
-      run: yast-ci-ruby -o perl_syntax
+      - name: Perl Syntax
+        run: yast-ci-ruby -o perl_syntax
 
-    - name: POT Check
-      run: rake check:pot
+      - name: POT Check
+        run: rake check:pot
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-bootloader-5.0.2/package/yast2-bootloader.changes 
new/yast2-bootloader-5.0.4/package/yast2-bootloader.changes
--- old/yast2-bootloader-5.0.2/package/yast2-bootloader.changes 2023-09-04 
17:41:35.000000000 +0200
+++ new/yast2-bootloader-5.0.4/package/yast2-bootloader.changes 2024-01-25 
13:29:30.000000000 +0100
@@ -1,4 +1,18 @@
 -------------------------------------------------------------------
+Thu Jan 25 11:18:12 UTC 2024 - Knut Anderssen <kanders...@suse.com>
+
+- Persist s390 cio_ignore kernel argument always when given 
+  (bsc#1210525).
+- 5.0.4
+
+-------------------------------------------------------------------
+Wed Jan 10 23:16:39 UTC 2024 - Josef Reidinger <jreidin...@suse.com>
+
+- Do not try finding undefined bootloader name to avoid error
+  in logs (bsc#1218700)
+- 5.0.3
+
+-------------------------------------------------------------------
 Mon Sep  4 06:40:19 UTC 2023 - Stefan Schubert <sch...@suse.com>
 
 - Fixed testsuite for architectures other than x86_64.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-bootloader-5.0.2/package/yast2-bootloader.spec 
new/yast2-bootloader-5.0.4/package/yast2-bootloader.spec
--- old/yast2-bootloader-5.0.2/package/yast2-bootloader.spec    2023-09-04 
17:41:35.000000000 +0200
+++ new/yast2-bootloader-5.0.4/package/yast2-bootloader.spec    2024-01-25 
13:29:30.000000000 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           yast2-bootloader
-Version:        5.0.2
+Version:        5.0.4
 Release:        0
 Summary:        YaST2 - Bootloader Configuration
 License:        GPL-2.0-or-later
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-bootloader-5.0.2/src/lib/bootloader/bootloader_factory.rb 
new/yast2-bootloader-5.0.4/src/lib/bootloader/bootloader_factory.rb
--- old/yast2-bootloader-5.0.2/src/lib/bootloader/bootloader_factory.rb 
2023-09-04 17:41:35.000000000 +0200
+++ new/yast2-bootloader-5.0.4/src/lib/bootloader/bootloader_factory.rb 
2024-01-25 13:29:30.000000000 +0100
@@ -35,7 +35,10 @@
       end
 
       def system
-        bootloader_by_name(Sysconfig.from_system.bootloader)
+        sysconfig_name = Sysconfig.from_system.bootloader
+        return nil unless sysconfig_name
+
+        bootloader_by_name(sysconfig_name)
       end
 
       def current
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-bootloader-5.0.2/src/modules/BootArch.rb 
new/yast2-bootloader-5.0.4/src/modules/BootArch.rb
--- old/yast2-bootloader-5.0.2/src/modules/BootArch.rb  2023-09-04 
17:41:35.000000000 +0200
+++ new/yast2-bootloader-5.0.4/src/modules/BootArch.rb  2024-01-25 
13:29:30.000000000 +0100
@@ -42,7 +42,9 @@
       /fips=\S*/,
       /mitigations=\S*/,
       /rd\.zdev=\S*/,
-      /zfcp\.allow_lun_scan=\S*/
+      /zfcp\.allow_lun_scan=\S*/,
+      # Keep cio_ignore parameter always (bsc#1210525)
+      /cio_ignore=\S*/
     ].freeze
 
     # Get parameters for the default kernel

Reply via email to