Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package yast2-users for openSUSE:Factory checked in at 2023-07-26 13:22:03 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/yast2-users (Old) and /work/SRC/openSUSE:Factory/.yast2-users.new.15225 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-users" Wed Jul 26 13:22:03 2023 rev:258 rq:1100675 version:4.6.4 Changes: -------- --- /work/SRC/openSUSE:Factory/yast2-users/yast2-users.changes 2023-07-25 11:23:02.131610913 +0200 +++ /work/SRC/openSUSE:Factory/.yast2-users.new.15225/yast2-users.changes 2023-07-26 13:22:11.399396847 +0200 @@ -1,0 +2,8 @@ +Tue Jul 25 11:04:17 UTC 2023 - Michal Filka <[email protected]> + +- bsc#1211583 + - do not pre-fill non-sense user password when going back after + importing user +- 4.6.4 + +------------------------------------------------------------------- Old: ---- yast2-users-4.6.3.tar.bz2 New: ---- yast2-users-4.6.4.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-users.spec ++++++ --- /var/tmp/diff_new_pack.uzg0Mj/_old 2023-07-26 13:22:12.267401760 +0200 +++ /var/tmp/diff_new_pack.uzg0Mj/_new 2023-07-26 13:22:12.271401783 +0200 @@ -17,7 +17,7 @@ Name: yast2-users -Version: 4.6.3 +Version: 4.6.4 Release: 0 Summary: YaST2 - User and Group Configuration License: GPL-2.0-only ++++++ yast2-users-4.6.3.tar.bz2 -> yast2-users-4.6.4.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-users-4.6.3/package/yast2-users.changes new/yast2-users-4.6.4/package/yast2-users.changes --- old/yast2-users-4.6.3/package/yast2-users.changes 2023-07-24 16:31:37.000000000 +0200 +++ new/yast2-users-4.6.4/package/yast2-users.changes 2023-07-25 18:33:43.000000000 +0200 @@ -1,4 +1,12 @@ ------------------------------------------------------------------- +Tue Jul 25 11:04:17 UTC 2023 - Michal Filka <[email protected]> + +- bsc#1211583 + - do not pre-fill non-sense user password when going back after + importing user +- 4.6.4 + +------------------------------------------------------------------- Mon Jul 24 13:21:21 UTC 2023 - Ancor Gonzalez Sosa <[email protected]> - Allow to edit the NIS master server databases instead of the diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-users-4.6.3/package/yast2-users.spec new/yast2-users-4.6.4/package/yast2-users.spec --- old/yast2-users-4.6.3/package/yast2-users.spec 2023-07-24 16:31:37.000000000 +0200 +++ new/yast2-users-4.6.4/package/yast2-users.spec 2023-07-25 18:33:43.000000000 +0200 @@ -17,7 +17,7 @@ Name: yast2-users -Version: 4.6.3 +Version: 4.6.4 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.6.3/src/lib/users/dialogs/inst_user_first.rb new/yast2-users-4.6.4/src/lib/users/dialogs/inst_user_first.rb --- old/yast2-users-4.6.3/src/lib/users/dialogs/inst_user_first.rb 2023-07-24 16:31:37.000000000 +0200 +++ new/yast2-users-4.6.4/src/lib/users/dialogs/inst_user_first.rb 2023-07-25 18:33:43.000000000 +0200 @@ -319,7 +319,15 @@ # # @return [Array<Y2Users::User>] def imported_users - @imported_users = config.users.select { |u| importable_users.any?(u) } + @imported_users = config.users.select do |u| + importable_users.any? do |iu| + # sanitized_user is what meets each user when being prepared for writing + # basically it removes some user's config under some circumstances. When + # omited here, then it leads to failure detection of already imported (same) + # users when going back in installation. + u == sanitized_user(iu) + end + end end # Users database that was imported from a different system (done during pre_install)
