Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package autoyast2 for openSUSE:Factory 
checked in at 2025-02-25 16:39:16
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/autoyast2 (Old)
 and      /work/SRC/openSUSE:Factory/.autoyast2.new.1873 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "autoyast2"

Tue Feb 25 16:39:16 2025 rev:338 rq:1248027 version:5.0.4

Changes:
--------
--- /work/SRC/openSUSE:Factory/autoyast2/autoyast2.changes      2024-10-02 
21:32:11.467404831 +0200
+++ /work/SRC/openSUSE:Factory/.autoyast2.new.1873/autoyast2.changes    
2025-02-25 16:39:32.434738683 +0100
@@ -1,0 +2,7 @@
+Thu Feb 20 14:29:46 UTC 2025 - Knut Anderssen <kanders...@suse.com>
+
+- Update the partitioning schema to support the pervasive encryption
+  apqns and key type elements (jsc#PED-10950).
+- 5.0.4
+
+-------------------------------------------------------------------

Old:
----
  autoyast2-5.0.3.tar.bz2

New:
----
  autoyast2-5.0.4.tar.bz2

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

Other differences:
------------------
++++++ autoyast2.spec ++++++
--- /var/tmp/diff_new_pack.s4qvz2/_old  2025-02-25 16:39:33.142768263 +0100
+++ /var/tmp/diff_new_pack.s4qvz2/_new  2025-02-25 16:39:33.142768263 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package autoyast2
 #
-# Copyright (c) 2024 SUSE LLC
+# Copyright (c) 2025 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -22,7 +22,7 @@
 %endif
 
 Name:           autoyast2
-Version:        5.0.3
+Version:        5.0.4
 Release:        0
 Summary:        YaST2 - Automated Installation
 License:        GPL-2.0-only

++++++ autoyast2-5.0.3.tar.bz2 -> autoyast2-5.0.4.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/autoyast2-5.0.3/package/autoyast2.changes 
new/autoyast2-5.0.4/package/autoyast2.changes
--- old/autoyast2-5.0.3/package/autoyast2.changes       2024-10-02 
10:26:10.000000000 +0200
+++ new/autoyast2-5.0.4/package/autoyast2.changes       2025-02-24 
09:44:06.000000000 +0100
@@ -1,4 +1,11 @@
 -------------------------------------------------------------------
+Thu Feb 20 14:29:46 UTC 2025 - Knut Anderssen <kanders...@suse.com>
+
+- Update the partitioning schema to support the pervasive encryption
+  apqns and key type elements (jsc#PED-10950).
+- 5.0.4
+
+-------------------------------------------------------------------
 Tue Oct  1 13:30:17 UTC 2024 - Stefan Hundhammer <shundham...@suse.com>
 
 - Removed obsolete USERADD_CMD, USERDEL_PRECMD, USERDEL_POSTCMD 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/autoyast2-5.0.3/package/autoyast2.spec 
new/autoyast2-5.0.4/package/autoyast2.spec
--- old/autoyast2-5.0.3/package/autoyast2.spec  2024-10-02 10:26:10.000000000 
+0200
+++ new/autoyast2-5.0.4/package/autoyast2.spec  2025-02-24 09:44:06.000000000 
+0100
@@ -22,7 +22,7 @@
 %endif
 
 Name:           autoyast2
-Version:        5.0.3
+Version:        5.0.4
 Release:        0
 Summary:        YaST2 - Automated Installation
 License:        GPL-2.0-only
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/autoyast2-5.0.3/src/autoyast-rnc/partitioning.rnc 
new/autoyast2-5.0.4/src/autoyast-rnc/partitioning.rnc
--- old/autoyast2-5.0.3/src/autoyast-rnc/partitioning.rnc       2024-10-02 
10:26:10.000000000 +0200
+++ new/autoyast2-5.0.4/src/autoyast-rnc/partitioning.rnc       2025-02-24 
09:44:06.000000000 +0100
@@ -66,6 +66,8 @@
   | part_crypt_label
   | part_crypt_cipher
   | part_crypt_key_size
+  | part_crypt_pervasive_apqns
+  | part_crypt_pervasive_key_type
   | part_filesystem
   | part_format
   | part_fs_options
@@ -117,6 +119,12 @@
 part_crypt_label = element crypt_label { STRING }
 part_crypt_cipher = element crypt_cipher { STRING }
 part_crypt_key_size = element crypt_key_size { INTEGER }
+part_crypt_pervasive_apqns =
+  element crypt_pervasive_apqns {
+    LIST,
+    element crypt_pervasive_apqn { STRING }
+  }
+part_crypt_pervasive_key_type = element crypt_pervasive_key_type { 
STRING_ATTR, ("CCA-AESCIPHER" | "CCA-AESDATA") }
 part_filesystem =
   element filesystem { SYMBOL }
 part_format =
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/autoyast2-5.0.3/src/include/autoinstall/xml.rb 
new/autoyast2-5.0.4/src/include/autoinstall/xml.rb
--- old/autoyast2-5.0.3/src/include/autoinstall/xml.rb  2024-10-02 
10:26:10.000000000 +0200
+++ new/autoyast2-5.0.4/src/include/autoinstall/xml.rb  2025-02-24 
09:44:06.000000000 +0100
@@ -28,6 +28,7 @@
         "children"                 => "child",
         "chroot-scripts"           => "script",
         "classes"                  => "class",
+        "crypt_pervasive_apqns"    => "crypt_pervasive_apqn",
         "denyusers"                => "denyuser",
         "device_map"               => "device_map_entry",
         "device_map_entry"         => "device",

Reply via email to