Hello community, here is the log from the commit of package yast2-installation for openSUSE:Factory checked in at 2020-10-18 16:24:03 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/yast2-installation (Old) and /work/SRC/openSUSE:Factory/.yast2-installation.new.3486 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-installation" Sun Oct 18 16:24:03 2020 rev:456 rq:842053 version:4.3.19 Changes: -------- --- /work/SRC/openSUSE:Factory/yast2-installation/yast2-installation.changes 2020-09-15 16:15:08.253848230 +0200 +++ /work/SRC/openSUSE:Factory/.yast2-installation.new.3486/yast2-installation.changes 2020-10-18 16:24:33.152574444 +0200 @@ -1,0 +2,14 @@ +Fri Oct 16 06:28:53 UTC 2020 - Imobach Gonzalez Sosa <igonzalezs...@suse.com> + +- Run configuration_management_finish client after *.repo files + are available in the installed system (bsc#1177522). +- 4.3.19 + +------------------------------------------------------------------- +Mon Oct 12 17:13:51 CEST 2020 - sch...@suse.de + +- Control.xml docu: Added "product_upgrades" tag in software/upgrade + (jsc#SLE-14807). +- 4.3.18 + +------------------------------------------------------------------- Old: ---- yast2-installation-4.3.17.tar.bz2 New: ---- yast2-installation-4.3.19.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-installation.spec ++++++ --- /var/tmp/diff_new_pack.Pyaiu5/_old 2020-10-18 16:24:37.780576504 +0200 +++ /var/tmp/diff_new_pack.Pyaiu5/_new 2020-10-18 16:24:37.784576505 +0200 @@ -17,7 +17,7 @@ Name: yast2-installation -Version: 4.3.17 +Version: 4.3.19 Release: 0 Summary: YaST2 - Installation Parts License: GPL-2.0-only ++++++ yast2-installation-4.3.17.tar.bz2 -> yast2-installation-4.3.19.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-installation-4.3.17/doc/SELF_UPDATE.md new/yast2-installation-4.3.19/doc/SELF_UPDATE.md --- old/yast2-installation-4.3.17/doc/SELF_UPDATE.md 2020-09-08 12:42:04.000000000 +0200 +++ new/yast2-installation-4.3.19/doc/SELF_UPDATE.md 2020-10-16 09:12:56.000000000 +0200 @@ -49,6 +49,10 @@ 5. The selected meta-packages copied to the inst-sys are added as an add-on installation repository to allow updating the `skelcd-*` or `*-release` packages via the self-update repository. +6. For debugging purposes the list of installed/updated packages is written + to the `/.packages.self_update` file in the inst-sys (since + yast2-installation-4.3.16, SLE15-SP3/openSUSE Leap 15.3/openSUSE + Tumbleweed 20200905). ### Language Selection diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-installation-4.3.17/doc/control-file.md new/yast2-installation-4.3.19/doc/control-file.md --- old/yast2-installation-4.3.17/doc/control-file.md 2020-09-08 12:42:04.000000000 +0200 +++ new/yast2-installation-4.3.19/doc/control-file.md 2020-10-16 09:12:56.000000000 +0200 @@ -649,6 +649,30 @@ List of known products supported for upgrade (SuSE-release). Old releases or other distributions will report a warning. + All products (regular expressions) are matching the string which can be + found in */etc/\*-release* file. + + Regular expressions in \<regexp\_item\>s can contain standard regular + expressions, such as + + - The circumflex *\^* and the dollar sign *\$* as boundary characters + for strings + + - asterisk *\**, plus *+* and question mark *?* for repeating or + existence. + + - dot *.* as a wild-card character + + - square brackets *[]* for a list of possible characters + + - circle brackets *()* for listing possibilities + + - special all-locale class-expressions *[:alnum:]*, *[:alpha:]*, + *[:blank:]*, *[:cntrl:]*, *[:digit:]*, *[:graph:]*, *[:lower:]*, + *[:print:]*, *[:punct:]*, *[:space:]*, *[:upper:]*, *[:xdigit:]* + + These regular expressions are evaluated as [POSIX regex] + (www.regular-expressions.info/posix.html). ```xml <software> <products_supported_for_upgrade config:type="list"> @@ -660,36 +684,33 @@ </software> ``` -All products (regular expressions) are matching the string which can be -found in */etc/\*-release* file. - -Regular expressions in \<regexp\_item\>s can contain standard regular -expressions, such as - -- The circumflex *\^* and the dollar sign *\$* as boundary characters - for strings - -- asterisk *\**, plus *+* and question mark *?* for repeating or - existence. - -- dot *.* as a wild-card character - -- square brackets *[]* for a list of possible characters - -- circle brackets *()* for listing possibilities - -- special all-locale class-expressions *[:alnum:]*, *[:alpha:]*, - *[:blank:]*, *[:cntrl:]*, *[:digit:]*, *[:graph:]*, *[:lower:]*, - *[:print:]*, *[:punct:]*, *[:space:]*, *[:upper:]*, *[:xdigit:]* - -These regular expressions are evaluated as [POSIX regex] -(www.regular-expressions.info/posix.html). - - *online\_repos\_preselected* Online Repositories are pre-selected by default to be used. This item can change the default behavior. +- *upgrade\/product\_upgrades* + + List of product upgrades where defined vendor changes are possible + without asking the user for confirmation. +```xml + <software> + <upgrade> + <!-- Do not ask for vendor change during this defined upgrades --> + <product_upgrades config:type="list"> + <product_upgrade> + <from>openSUSE Leap</from> + <to>openSUSE Jump</to> + <compatible_vendors config:type="list"> + <compatible_vendor>openSUSE</compatible_vendor> + <compatible_vendor>SUSE LLC</compatible_vendor> + </compatible_vendors> + </product_upgrade> + </product_upgrades> + </upgrade> + </software> +``` + ### Supported Desktops This part defines not only all the desktops for Desktop Selection dialog diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-installation-4.3.17/package/yast2-installation.changes new/yast2-installation-4.3.19/package/yast2-installation.changes --- old/yast2-installation-4.3.17/package/yast2-installation.changes 2020-09-08 12:42:04.000000000 +0200 +++ new/yast2-installation-4.3.19/package/yast2-installation.changes 2020-10-16 09:12:56.000000000 +0200 @@ -1,4 +1,18 @@ ------------------------------------------------------------------- +Fri Oct 16 06:28:53 UTC 2020 - Imobach Gonzalez Sosa <igonzalezs...@suse.com> + +- Run configuration_management_finish client after *.repo files + are available in the installed system (bsc#1177522). +- 4.3.19 + +------------------------------------------------------------------- +Mon Oct 12 17:13:51 CEST 2020 - sch...@suse.de + +- Control.xml docu: Added "product_upgrades" tag in software/upgrade + (jsc#SLE-14807). +- 4.3.18 + +------------------------------------------------------------------- Tue Sep 8 09:20:52 CEST 2020 - sch...@suse.de - Using ":" in the autoyast(...) supplements (bsc#1146494). diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-installation-4.3.17/package/yast2-installation.spec new/yast2-installation-4.3.19/package/yast2-installation.spec --- old/yast2-installation-4.3.17/package/yast2-installation.spec 2020-09-08 12:42:04.000000000 +0200 +++ new/yast2-installation-4.3.19/package/yast2-installation.spec 2020-10-16 09:12:56.000000000 +0200 @@ -16,7 +16,7 @@ # Name: yast2-installation -Version: 4.3.17 +Version: 4.3.19 Release: 0 Group: System/YaST License: GPL-2.0-only diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-installation-4.3.17/src/lib/installation/clients/inst_finish.rb new/yast2-installation-4.3.19/src/lib/installation/clients/inst_finish.rb --- old/yast2-installation-4.3.17/src/lib/installation/clients/inst_finish.rb 2020-09-08 12:42:04.000000000 +0200 +++ new/yast2-installation-4.3.19/src/lib/installation/clients/inst_finish.rb 2020-10-16 09:12:56.000000000 +0200 @@ -388,8 +388,8 @@ "roles", "services", "services-manager", - "configuration_management", - "pkg" # Some _finish clients might still need Pkg calls (e.g. users) (bsc#1128385) + "pkg", # Some _finish clients might still need Pkg calls (e.g. users) (bsc#1128385) + "configuration_management" # *.repo files must be written to the installed system (bsc#1177522) ].freeze def save_settings_steps diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-installation-4.3.17/src/lib/installation/dialogs/ssh_import.rb new/yast2-installation-4.3.19/src/lib/installation/dialogs/ssh_import.rb --- old/yast2-installation-4.3.17/src/lib/installation/dialogs/ssh_import.rb 2020-09-08 12:42:04.000000000 +0200 +++ new/yast2-installation-4.3.19/src/lib/installation/dialogs/ssh_import.rb 2020-10-16 09:12:56.000000000 +0200 @@ -62,7 +62,7 @@ end def dialog_content - label = _("I would like to import SSH keys from a previous installation") + label = _("I would like to import SSH host keys from a previous installation") HSquash( VBox( # For some reason the CheckBoxFrame Label is cut if the label size