Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package yast2-installation for openSUSE:Factory checked in at 2021-09-11 22:24:27 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/yast2-installation (Old) and /work/SRC/openSUSE:Factory/.yast2-installation.new.1899 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-installation" Sat Sep 11 22:24:27 2021 rev:478 rq:917767 version:4.4.18 Changes: -------- --- /work/SRC/openSUSE:Factory/yast2-installation/yast2-installation.changes 2021-08-28 22:28:57.617964891 +0200 +++ /work/SRC/openSUSE:Factory/.yast2-installation.new.1899/yast2-installation.changes 2021-09-11 22:24:54.623409076 +0200 @@ -1,0 +2,6 @@ +Thu Sep 9 15:54:57 UTC 2021 - Ladislav Slez??k <lsle...@suse.cz> + +- Display release notes during upgrade (bsc#1186044) +- 4.4.18 + +------------------------------------------------------------------- Old: ---- yast2-installation-4.4.17.tar.bz2 New: ---- yast2-installation-4.4.18.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-installation.spec ++++++ --- /var/tmp/diff_new_pack.8PCYyD/_old 2021-09-11 22:24:55.155409601 +0200 +++ /var/tmp/diff_new_pack.8PCYyD/_new 2021-09-11 22:24:55.159409605 +0200 @@ -17,7 +17,7 @@ Name: yast2-installation -Version: 4.4.17 +Version: 4.4.18 Release: 0 Summary: YaST2 - Installation Parts License: GPL-2.0-only ++++++ yast2-installation-4.4.17.tar.bz2 -> yast2-installation-4.4.18.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-installation-4.4.17/package/yast2-installation.changes new/yast2-installation-4.4.18/package/yast2-installation.changes --- old/yast2-installation-4.4.17/package/yast2-installation.changes 2021-08-26 15:46:35.000000000 +0200 +++ new/yast2-installation-4.4.18/package/yast2-installation.changes 2021-09-09 18:00:39.000000000 +0200 @@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Thu Sep 9 15:54:57 UTC 2021 - Ladislav Slez??k <lsle...@suse.cz> + +- Display release notes during upgrade (bsc#1186044) +- 4.4.18 + +------------------------------------------------------------------- Tue Aug 24 14:58:48 UTC 2021 - Stefan Hundhammer <shundham...@suse.com> - Refactored umount_finish.rb (bsc#1149980) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-installation-4.4.17/package/yast2-installation.spec new/yast2-installation-4.4.18/package/yast2-installation.spec --- old/yast2-installation-4.4.17/package/yast2-installation.spec 2021-08-26 15:46:35.000000000 +0200 +++ new/yast2-installation-4.4.18/package/yast2-installation.spec 2021-09-09 18:00:39.000000000 +0200 @@ -17,7 +17,7 @@ Name: yast2-installation -Version: 4.4.17 +Version: 4.4.18 Release: 0 Summary: YaST2 - Installation Parts License: GPL-2.0-only diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-installation-4.4.17/src/lib/installation/clients/inst_download_release_notes.rb new/yast2-installation-4.4.18/src/lib/installation/clients/inst_download_release_notes.rb --- old/yast2-installation-4.4.17/src/lib/installation/clients/inst_download_release_notes.rb 2021-08-26 15:46:35.000000000 +0200 +++ new/yast2-installation-4.4.18/src/lib/installation/clients/inst_download_release_notes.rb 2021-09-09 18:00:39.000000000 +0200 @@ -77,7 +77,8 @@ def main textdomain "installation" - return :auto unless Packages.init_called + # Packages.Init is not called during upgrade + return :auto if !Packages.init_called && !Stage.initial && !Mode.update return :back if GetInstArgs.going_back diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-installation-4.4.17/test/lib/clients/inst_download_release_notes_test.rb new/yast2-installation-4.4.18/test/lib/clients/inst_download_release_notes_test.rb --- old/yast2-installation-4.4.17/test/lib/clients/inst_download_release_notes_test.rb 2021-08-26 15:46:35.000000000 +0200 +++ new/yast2-installation-4.4.18/test/lib/clients/inst_download_release_notes_test.rb 2021-09-09 18:00:39.000000000 +0200 @@ -39,6 +39,7 @@ allow(sles).to receive(:status?).with(:available).and_return(false) allow(sdk).to receive(:status?).with(:available).and_return(!sdk_selected) allow(Yast::Stage).to receive(:initial).and_return(true) + allow(Yast::Mode).to receive(:update).and_return(false) allow(Yast::Packages).to receive(:init_called).and_return(packages_init_called) stub_const("Yast::Language", language)