Hello community, here is the log from the commit of package yast2-users for openSUSE:Leap:15.2 checked in at 2020-03-19 08:35:42 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Leap:15.2/yast2-users (Old) and /work/SRC/openSUSE:Leap:15.2/.yast2-users.new.3160 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-users" Thu Mar 19 08:35:42 2020 rev:53 rq:786010 version:4.2.10 Changes: -------- --- /work/SRC/openSUSE:Leap:15.2/yast2-users/yast2-users.changes 2020-02-10 16:41:21.763699492 +0100 +++ /work/SRC/openSUSE:Leap:15.2/.yast2-users.new.3160/yast2-users.changes 2020-03-19 08:35:49.645830343 +0100 @@ -1,0 +2,7 @@ +Thu Mar 12 19:35:07 UTC 2020 - Knut Anderssen <[email protected]> + +- Request confirmation for aborting in the dialog for setting the + root password (bsc#1165506) +- 4.2.10 + +------------------------------------------------------------------- Old: ---- yast2-users-4.2.9.tar.bz2 New: ---- yast2-users-4.2.10.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-users.spec ++++++ --- /var/tmp/diff_new_pack.FCPwC2/_old 2020-03-19 08:35:50.173830666 +0100 +++ /var/tmp/diff_new_pack.FCPwC2/_new 2020-03-19 08:35:50.173830666 +0100 @@ -17,7 +17,7 @@ Name: yast2-users -Version: 4.2.9 +Version: 4.2.10 Release: 0 Summary: YaST2 - User and Group Configuration License: GPL-2.0-only ++++++ yast2-users-4.2.9.tar.bz2 -> yast2-users-4.2.10.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-users-4.2.9/package/yast2-users.changes new/yast2-users-4.2.10/package/yast2-users.changes --- old/yast2-users-4.2.9/package/yast2-users.changes 2020-02-04 17:41:06.000000000 +0100 +++ new/yast2-users-4.2.10/package/yast2-users.changes 2020-03-13 09:50:43.000000000 +0100 @@ -1,4 +1,11 @@ ------------------------------------------------------------------- +Thu Mar 12 19:35:07 UTC 2020 - Knut Anderssen <[email protected]> + +- Request confirmation for aborting in the dialog for setting the + root password (bsc#1165506) +- 4.2.10 + +------------------------------------------------------------------- Tue Feb 4 14:14:31 UTC 2020 - Josef Reidinger <[email protected]> - Mark users as WSL capable module (bsc#1162650) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-users-4.2.9/package/yast2-users.spec new/yast2-users-4.2.10/package/yast2-users.spec --- old/yast2-users-4.2.9/package/yast2-users.spec 2020-02-04 17:41:06.000000000 +0100 +++ new/yast2-users-4.2.10/package/yast2-users.spec 2020-03-13 09:50:43.000000000 +0100 @@ -17,7 +17,7 @@ Name: yast2-users -Version: 4.2.9 +Version: 4.2.10 Release: 0 Summary: YaST2 - User and Group Configuration License: GPL-2.0-only diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-users-4.2.9/src/lib/users/dialogs/inst_root_first.rb new/yast2-users-4.2.10/src/lib/users/dialogs/inst_root_first.rb --- old/yast2-users-4.2.9/src/lib/users/dialogs/inst_root_first.rb 2020-02-04 17:41:06.000000000 +0100 +++ new/yast2-users-4.2.10/src/lib/users/dialogs/inst_root_first.rb 2020-03-13 09:50:43.000000000 +0100 @@ -24,6 +24,7 @@ Yast.import "Mode" Yast.import "UsersSimple" +Yast.import "Popup" module Yast # This library provides a simple dialog for setting new password for the @@ -52,6 +53,11 @@ VBox(Y2Users::Widgets::InstRootFirst.new) end + # Request confirmation for aborthing the dialog + def abort_handler + Yast::Popup.ConfirmAbort(:painless) + end + private # Returns whether we need/ed to create new UI Wizard diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-users-4.2.9/test/lib/users/dialogs/inst_root_first_test.rb new/yast2-users-4.2.10/test/lib/users/dialogs/inst_root_first_test.rb --- old/yast2-users-4.2.9/test/lib/users/dialogs/inst_root_first_test.rb 2020-02-04 17:41:06.000000000 +0100 +++ new/yast2-users-4.2.10/test/lib/users/dialogs/inst_root_first_test.rb 2020-03-13 09:50:43.000000000 +0100 @@ -41,4 +41,11 @@ end end end + + describe "#abort_handler" do + it "requests confirmation for aborting the process" do + expect(Yast::Popup).to receive(:ConfirmAbort) + subject.abort_handler + end + end end
