Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package google-guest-agent for 
openSUSE:Factory checked in at 2023-06-06 19:57:14
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/google-guest-agent (Old)
 and      /work/SRC/openSUSE:Factory/.google-guest-agent.new.15902 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "google-guest-agent"

Tue Jun  6 19:57:14 2023 rev:23 rq:1091077 version:20230601.00

Changes:
--------
--- /work/SRC/openSUSE:Factory/google-guest-agent/google-guest-agent.changes    
2023-05-11 14:42:03.358257530 +0200
+++ 
/work/SRC/openSUSE:Factory/.google-guest-agent.new.15902/google-guest-agent.changes
 2023-06-06 19:57:56.539071957 +0200
@@ -1,0 +2,10 @@
+Tue Jun  6 08:44:31 UTC 2023 - John Paul Adrian Glaubitz 
<adrian.glaub...@suse.com>
+
+- Update to version 20230601.00
+  * Revert "Avoid conflict with automated package updates (#212)" (#214)
+  * Don't block google-osconfig-agent (#213)
+- from version 20230531.00
+  * Avoid conflict with automated package updates (#212)
+  * Add a support of TrustedUserCAKeys into sshd configuration (#206)
+
+-------------------------------------------------------------------

Old:
----
  guest-agent-20230510.00.tar.gz

New:
----
  guest-agent-20230601.00.tar.gz

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

Other differences:
------------------
++++++ google-guest-agent.spec ++++++
--- /var/tmp/diff_new_pack.ObRjeV/_old  2023-06-06 19:57:57.351076770 +0200
+++ /var/tmp/diff_new_pack.ObRjeV/_new  2023-06-06 19:57:57.363076842 +0200
@@ -24,7 +24,7 @@
 %global import_path     %{provider_prefix}
 
 Name:           google-guest-agent
-Version:        20230510.00
+Version:        20230601.00
 Release:        0
 Summary:        Google Cloud Guest Agent
 License:        Apache-2.0

++++++ _service ++++++
--- /var/tmp/diff_new_pack.ObRjeV/_old  2023-06-06 19:57:57.407077103 +0200
+++ /var/tmp/diff_new_pack.ObRjeV/_new  2023-06-06 19:57:57.407077103 +0200
@@ -3,8 +3,8 @@
     <param 
name="url">https://github.com/GoogleCloudPlatform/guest-agent/</param>
     <param name="scm">git</param>
     <param name="exclude">.git</param>
-    <param name="versionformat">20230510.00</param>
-    <param name="revision">20230510.00</param>
+    <param name="versionformat">20230601.00</param>
+    <param name="revision">20230601.00</param>
     <param name="changesgenerate">enable</param>
   </service>
   <service name="recompress" mode="disabled">
@@ -15,7 +15,7 @@
     <param name="basename">guest-agent</param>
   </service>
   <service name="go_modules" mode="disabled">
-    <param name="archive">guest-agent-20230510.00.tar.gz</param>
+    <param name="archive">guest-agent-20230601.00.tar.gz</param>
   </service>
 </services>
 

++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.ObRjeV/_old  2023-06-06 19:57:57.439077293 +0200
+++ /var/tmp/diff_new_pack.ObRjeV/_new  2023-06-06 19:57:57.443077316 +0200
@@ -1,6 +1,6 @@
 <servicedata>
 <service name="tar_scm">
                 <param 
name="url">https://github.com/GoogleCloudPlatform/guest-agent/</param>
-              <param 
name="changesrevision">d98607d249b38a542839f44f5942a525223e937b</param></service></servicedata>
+              <param 
name="changesrevision">3d54673a11cb09dc2e2ac0bc6a06b0238dae058b</param></service></servicedata>
 (No newline at EOF)
 

++++++ guest-agent-20230510.00.tar.gz -> guest-agent-20230601.00.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/guest-agent-20230510.00/google_guest_agent/oslogin.go 
new/guest-agent-20230601.00/google_guest_agent/oslogin.go
--- old/guest-agent-20230510.00/google_guest_agent/oslogin.go   2023-05-10 
21:48:46.000000000 +0200
+++ new/guest-agent-20230601.00/google_guest_agent/oslogin.go   2023-06-01 
20:07:06.000000000 +0200
@@ -198,6 +198,7 @@
                }
        }
        authorizedKeysUser := "AuthorizedKeysCommandUser root"
+       trustedUserCAKeys := "TrustedUserCAKeys /etc/ssh/trustedca.pub"
        twoFactorAuthMethods := "AuthenticationMethods 
publickey,keyboard-interactive"
        if (osRelease.os == "rhel" || osRelease.os == "centos") && 
osRelease.version.major == 6 {
                authorizedKeysUser = "AuthorizedKeysCommandRunAs root"
@@ -209,7 +210,7 @@
        filtered := filterGoogleLines(string(sshConfig))
 
        if enable {
-               osLoginBlock := []string{googleBlockStart, 
authorizedKeysCommand, authorizedKeysUser}
+               osLoginBlock := []string{googleBlockStart, 
authorizedKeysCommand, authorizedKeysUser, trustedUserCAKeys}
                if twofactor {
                        osLoginBlock = append(osLoginBlock, 
twoFactorAuthMethods, challengeResponseEnable)
                }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/guest-agent-20230510.00/google_guest_agent/oslogin_test.go 
new/guest-agent-20230601.00/google_guest_agent/oslogin_test.go
--- old/guest-agent-20230510.00/google_guest_agent/oslogin_test.go      
2023-05-10 21:48:46.000000000 +0200
+++ new/guest-agent-20230601.00/google_guest_agent/oslogin_test.go      
2023-06-01 20:07:06.000000000 +0200
@@ -184,6 +184,7 @@
        authorizedKeysCommand := "AuthorizedKeysCommand 
/usr/bin/google_authorized_keys"
        authorizedKeysCommandSk := "AuthorizedKeysCommand 
/usr/bin/google_authorized_keys_sk"
        authorizedKeysUser := "AuthorizedKeysCommandUser root"
+       trustedUserCAKeys := "TrustedUserCAKeys /etc/ssh/trustedca.pub"
        twoFactorAuthMethods := "AuthenticationMethods 
publickey,keyboard-interactive"
        matchblock1 := `Match User sa_*`
        matchblock2 := `       AuthenticationMethods publickey`
@@ -204,6 +205,7 @@
                                googleBlockStart,
                                authorizedKeysCommand,
                                authorizedKeysUser,
+                               trustedUserCAKeys,
                                twoFactorAuthMethods,
                                challengeResponseEnable,
                                googleBlockEnd,
@@ -229,6 +231,7 @@
                                googleBlockStart,
                                authorizedKeysCommand,
                                authorizedKeysUser,
+                               trustedUserCAKeys,
                                twoFactorAuthMethods,
                                challengeResponseEnable,
                                googleBlockEnd,
@@ -253,6 +256,7 @@
                                googleBlockStart,
                                authorizedKeysCommand,
                                authorizedKeysUser,
+                               trustedUserCAKeys,
                                googleBlockEnd,
                                "line1",
                                "line2",
@@ -291,6 +295,7 @@
                                googleBlockStart,
                                authorizedKeysCommandSk,
                                authorizedKeysUser,
+                               trustedUserCAKeys,
                                googleBlockEnd,
                                "line1",
                                "line2",

++++++ vendor.tar.gz ++++++

Reply via email to