Hello community,

here is the log from the commit of package katacontainers-image-initrd for 
openSUSE:Factory checked in at 2020-01-21 21:01:27
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/katacontainers-image-initrd (Old)
 and      /work/SRC/openSUSE:Factory/.katacontainers-image-initrd.new.26092 
(New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "katacontainers-image-initrd"

Tue Jan 21 21:01:27 2020 rev:13 rq:765982 version:1.10.0

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/katacontainers-image-initrd/katacontainers-image-initrd.changes
  2019-12-21 12:34:35.431454801 +0100
+++ 
/work/SRC/openSUSE:Factory/.katacontainers-image-initrd.new.26092/katacontainers-image-initrd.changes
       2020-01-21 21:01:59.848894602 +0100
@@ -1,0 +2,24 @@
+Mon Jan 20 15:39:58 UTC 2020 - Ralf Haferkamp <[email protected]>
+
+- Update to 1.10.0:
+  agent:
+    - client.go: HybridVSockDialer: Check return size n of
+      unix.Recvfrom
+    - client.go: HybridVSockDialer: Change Read EOT to recv peek
+    - agent: get current cpuset from /sys/devices/system/cpu/online
+    - config: add option to control hotplug timeout of block
+      devices
+    - agent: firecracker: support debugging console
+    - agent: fix pause bin on musl
+    - docs: Add enable services and installation steps for TRACING.md
+    - docs: Add missing steps at TRACING.md
+    - tracing: Wrapper for tracing functions
+    - tracing: Generate an alias for opentracing.Span
+    - network: ensure parent directories exist
+    - Revert "client: remove the parameter of 'enableYamux'"
+    - client: remove the parameter of 'enableYamux'
+    - vendor: update libcontainer to 1.0.0-rc9
+  osbuilder:
+    - make: use `cd` instead of '--directory' option of `cpio`
+
+-------------------------------------------------------------------

Old:
----
  agent-1.9.3.tar.xz
  osbuilder-1.9.3.tar.xz

New:
----
  agent-1.10.0.tar.xz
  osbuilder-1.10.0.tar.xz

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

Other differences:
------------------
++++++ katacontainers-image-initrd.spec ++++++
--- /var/tmp/diff_new_pack.DSM4Th/_old  2020-01-21 21:02:01.796895510 +0100
+++ /var/tmp/diff_new_pack.DSM4Th/_new  2020-01-21 21:02:01.800895512 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package katacontainers-image-initrd
 #
-# Copyright (c) 2019 SUSE LLC
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -44,7 +44,7 @@
 %endif
 
 Name:           katacontainers-image-initrd
-Version:        1.9.3
+Version:        1.10.0
 Release:        0
 Summary:        Kata Containers image (initrd) and kernel
 License:        Apache-2.0

++++++ _service ++++++
--- /var/tmp/diff_new_pack.DSM4Th/_old  2020-01-21 21:02:01.824895523 +0100
+++ /var/tmp/diff_new_pack.DSM4Th/_new  2020-01-21 21:02:01.824895523 +0100
@@ -6,8 +6,8 @@
     <param name="url">https://github.com/kata-containers/osbuilder.git</param>
     <param name="filename">osbuilder</param>
     <!--- versionformat defines the name of the tarball. -->
-    <param name="versionformat">1.9.3</param>
-    <param name="revision">1.9.3</param>
+    <param name="versionformat">1.10.0</param>
+    <param name="revision">1.10.0</param>
   </service>
 
   <service name="tar_scm" mode="disabled">
@@ -15,8 +15,8 @@
     <param name="url">https://github.com/kata-containers/agent.git</param>
     <param name="filename">agent</param>
     <!--- versionformat defines the name of the tarball. -->
-    <param name="versionformat">1.9.3</param>
-    <param name="revision">1.9.3</param>
+    <param name="versionformat">1.10.0</param>
+    <param name="revision">1.10.0</param>
   </service>
 
   <service name="recompress" mode="disabled">

++++++ agent-1.9.3.tar.xz -> agent-1.10.0.tar.xz ++++++
++++ 4193 lines of diff (skipped)

++++++ osbuilder-1.9.3.tar.xz -> osbuilder-1.10.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/osbuilder-1.9.3/Makefile 
new/osbuilder-1.10.0/Makefile
--- old/osbuilder-1.9.3/Makefile        2019-12-09 20:01:05.000000000 +0100
+++ new/osbuilder-1.10.0/Makefile       2020-01-14 18:06:35.000000000 +0100
@@ -93,7 +93,7 @@
 .PRECIOUS: $(ROOTFS_BUILD_DEST)/.dracut$(ROOTFS_MARKER_SUFFIX)
 $(ROOTFS_BUILD_DEST)/.dracut$(ROOTFS_MARKER_SUFFIX): $(TARGET_INITRD)
        mkdir -p $(TARGET_ROOTFS)
-       cat $< | cpio --extract --preserve-modification-time --make-directories 
--directory=$(TARGET_ROOTFS)
+       (cd $(TARGET_ROOTFS); cat $< | cpio --extract 
--preserve-modification-time --make-directories)
        @touch $@
 
 image-%: $(IMAGES_BUILD_DEST)/kata-containers-image-%.img
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/osbuilder-1.9.3/VERSION new/osbuilder-1.10.0/VERSION
--- old/osbuilder-1.9.3/VERSION 2019-12-09 20:01:05.000000000 +0100
+++ new/osbuilder-1.10.0/VERSION        2020-01-14 18:06:35.000000000 +0100
@@ -1 +1 @@
-1.9.3
+1.10.0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/osbuilder-1.9.3/rootfs-builder/alpine/config.sh 
new/osbuilder-1.10.0/rootfs-builder/alpine/config.sh
--- old/osbuilder-1.9.3/rootfs-builder/alpine/config.sh 2019-12-09 
20:01:05.000000000 +0100
+++ new/osbuilder-1.10.0/rootfs-builder/alpine/config.sh        2020-01-14 
18:06:35.000000000 +0100
@@ -5,7 +5,7 @@
 
 OS_NAME="Alpine"
 
-OS_VERSION=${OS_VERSION:-v3.7}
+OS_VERSION=${OS_VERSION:-latest-stable}
 
 BASE_PACKAGES="alpine-base"
 


Reply via email to