Hello community,

here is the log from the commit of package yast2 for openSUSE:Factory checked 
in at 2020-07-13 09:06:13
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/yast2 (Old)
 and      /work/SRC/openSUSE:Factory/.yast2.new.3060 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "yast2"

Mon Jul 13 09:06:13 2020 rev:488 rq:820006 version:4.3.14

Changes:
--------
--- /work/SRC/openSUSE:Factory/yast2/yast2.changes      2020-07-09 
13:16:24.720709138 +0200
+++ /work/SRC/openSUSE:Factory/.yast2.new.3060/yast2.changes    2020-07-13 
09:06:25.316227617 +0200
@@ -1,0 +2,12 @@
+Fri Jul 10 14:15:30 UTC 2020 - David Diaz <[email protected]>
+
+- Make CFA::MultiFileConfig fully reusable (related to bsc#1155735,
+  and bsc#1157541).
+
+-------------------------------------------------------------------
+Thu Jul  9 14:35:43 UTC 2020 - Steffen Winterfeldt <[email protected]>
+
+- add space to SPACE_CHARS (bsc#1173907)
+- 4.3.14
+
+-------------------------------------------------------------------

Old:
----
  yast2-4.3.13.tar.bz2

New:
----
  yast2-4.3.14.tar.bz2

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

Other differences:
------------------
++++++ yast2.spec ++++++
--- /var/tmp/diff_new_pack.Gk7hTj/_old  2020-07-13 09:06:26.572230775 +0200
+++ /var/tmp/diff_new_pack.Gk7hTj/_new  2020-07-13 09:06:26.576230785 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           yast2
-Version:        4.3.13
+Version:        4.3.14
 Release:        0
 Summary:        YaST2 Main Package
 License:        GPL-2.0-only

++++++ yast2-4.3.13.tar.bz2 -> yast2-4.3.14.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-4.3.13/library/general/src/lib/cfa/multi_file_config.rb 
new/yast2-4.3.14/library/general/src/lib/cfa/multi_file_config.rb
--- old/yast2-4.3.13/library/general/src/lib/cfa/multi_file_config.rb   
2020-07-07 12:17:22.000000000 +0200
+++ new/yast2-4.3.14/library/general/src/lib/cfa/multi_file_config.rb   
2020-07-10 16:29:19.000000000 +0200
@@ -124,10 +124,10 @@
 
     # Return the involved configuration files
     #
-    # @return [Array<LoginDefs>] Configuration files
+    # @return [Array<Class>] Configuration files
     # @see #paths
     def files
-      @files ||= paths.map { |p| LoginDefs.new(file_path: p) }
+      @files ||= paths.map { |p| self.class.file_class.new(file_path: p) }
     end
 
     # Return the paths to the configuration files
@@ -194,14 +194,14 @@
 
     # Returns the YaST specific configuration file
     #
-    # @return [LoginDefs]
+    # @return [Class]
     def yast_config_file
       @yast_config_file ||= files.find { |f| f.file_path == yast_file_path }
     end
 
     # Returns the files with higher precedence that the YaST one
     #
-    # @return [Array<LoginDefs>] List of files
+    # @return [Array<Class>] List of files
     def higher_precedence_files
       return @higher_precedence_files if @higher_precedence_files
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-4.3.13/library/types/src/modules/String.rb 
new/yast2-4.3.14/library/types/src/modules/String.rb
--- old/yast2-4.3.13/library/types/src/modules/String.rb        2020-07-07 
12:17:22.000000000 +0200
+++ new/yast2-4.3.14/library/types/src/modules/String.rb        2020-07-10 
16:29:19.000000000 +0200
@@ -39,7 +39,7 @@
     ALPHA_NUM_CHARS = ALPHA_CHARS + DIGIT_CHARS
     PUNCT_CHARS = "!\"\#$%&'()*+,-./:;<=>?@[\\]^_`{|}~".freeze
     GRAPHICAL_CHARS = ALPHA_NUM_CHARS + PUNCT_CHARS
-    SPACE_CHARS = "\f\r\n\t\v".freeze
+    SPACE_CHARS = " \f\r\n\t\v".freeze
     PRINTABLE_CHARS = SPACE_CHARS + GRAPHICAL_CHARS
 
     def main
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-4.3.13/package/yast2.changes 
new/yast2-4.3.14/package/yast2.changes
--- old/yast2-4.3.13/package/yast2.changes      2020-07-07 12:17:22.000000000 
+0200
+++ new/yast2-4.3.14/package/yast2.changes      2020-07-10 16:29:19.000000000 
+0200
@@ -1,4 +1,16 @@
 -------------------------------------------------------------------
+Fri Jul 10 14:15:30 UTC 2020 - David Diaz <[email protected]>
+
+- Make CFA::MultiFileConfig fully reusable (related to bsc#1155735,
+  and bsc#1157541).
+
+-------------------------------------------------------------------
+Thu Jul  9 14:35:43 UTC 2020 - Steffen Winterfeldt <[email protected]>
+
+- add space to SPACE_CHARS (bsc#1173907)
+- 4.3.14
+
+-------------------------------------------------------------------
 Tue Jul  7 09:48:04 CEST 2020 - [email protected]
 
 - Command line interface: Do not start an UI while evaluating
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-4.3.13/package/yast2.spec 
new/yast2-4.3.14/package/yast2.spec
--- old/yast2-4.3.13/package/yast2.spec 2020-07-07 12:17:22.000000000 +0200
+++ new/yast2-4.3.14/package/yast2.spec 2020-07-10 16:29:19.000000000 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           yast2
-Version:        4.3.13
+Version:        4.3.14
 Release:        0
 Summary:        YaST2 Main Package
 License:        GPL-2.0-only


Reply via email to