Hello community,

here is the log from the commit of package kubernetes for openSUSE:Factory 
checked in at 2018-11-06 14:05:45
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kubernetes (Old)
 and      /work/SRC/openSUSE:Factory/.kubernetes.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kubernetes"

Tue Nov  6 14:05:45 2018 rev:32 rq:646444 version:1.12.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/kubernetes/kubectl.changes       2018-08-08 
14:52:20.465435443 +0200
+++ /work/SRC/openSUSE:Factory/.kubernetes.new/kubectl.changes  2018-11-06 
14:05:52.583336178 +0100
@@ -0,0 +1,6 @@
+--------------------------------------------------------------------
+Fri Sep 28 12:19:40 UTC 2018 - Richard Brown <[email protected]>
+
+- Update to version v1.12.0
+- Remove obsolete build-with-debug-info.patch
+
--- /work/SRC/openSUSE:Factory/kubernetes/kubernetes.changes    2018-09-16 
18:30:51.523431234 +0200
+++ /work/SRC/openSUSE:Factory/.kubernetes.new/kubernetes.changes       
2018-11-06 14:06:04.203320964 +0100
@@ -1,0 +2,15 @@
+Fri Sep 28 12:19:40 UTC 2018 - Richard Brown <[email protected]>
+
+- Update to version v1.12.0
+  * API - "dry run" functionality, which enables users to see the results of a 
particular command without persisting those changes
+  * Azure - Adding Azure Availability Zones support to cloud provider
+  * Azure - Supporting Cross RG resources (disks, Azure File and node 
[Experimental])
+  * CLI - new plugin mechanism, providing a library with common CLI tooling 
for plugin authors and further refactorings of the code.
+  * cluster-lifecycle - Improved CRI handling, airgapped and offline support, 
certificate handling, and HA improvements
+  * node - graduated the PodShareProcessNamespace feature from alpha to beta. 
This feature allows a pod spec to request that all containers in a pod share a 
common process namespaces.
+  * scheduling - improving performance and reliability of the scheduler
+  * storage - promoted the Kubernetes volume topology and dynamic max volume 
count features to beta
+  * Full Changelog: 
https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG-1.12.md
+- Remove obsolete build-with-debug-info.patch
+
+-------------------------------------------------------------------

Old:
----
  build-with-debug-info.patch
  kubernetes-1.11.1.tar.xz

New:
----
  kubernetes-1.12.0.tar.xz

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

Other differences:
------------------
++++++ kubectl.spec ++++++
--- /var/tmp/diff_new_pack.UZRgCh/_old  2018-11-06 14:06:29.527287790 +0100
+++ /var/tmp/diff_new_pack.UZRgCh/_new  2018-11-06 14:06:29.543287769 +0100
@@ -18,8 +18,11 @@
 
 %{!?tmpfiles_create:%global tmpfiles_create systemd-tmpfiles --create}
 
+# baseversion - version of kubernetes for this package
+%define baseversion 1.12
+
 Name:           kubectl
-Version:        1.11.1
+Version:        %{baseversion}.0
 Release:        0
 Summary:        Kubectl (Kubernetes client tools)
 Group:          System/Management
@@ -33,7 +36,6 @@
 # Patches so it also builds in ppc64le and arm64.
 Patch1:         git-upstream.patch
 Patch4:         make-e2e_node-run-over-distro-bins.patch
-Patch6:         build-with-debug-info.patch
 Patch7:         do-not-gc-sle-kubic-images.patch
 
 BuildRequires:  bash-completion
@@ -67,7 +69,6 @@
 %setup -q -n kubernetes-%{version}
 %patch1 -p1
 %patch4 -p1
-%patch6 -p1
 %patch7 -p1
 %{goprep} github.com/kubernetes/kubernetes
 

++++++ kubernetes.spec ++++++
--- /var/tmp/diff_new_pack.UZRgCh/_old  2018-11-06 14:06:29.975287203 +0100
+++ /var/tmp/diff_new_pack.UZRgCh/_new  2018-11-06 14:06:30.015287150 +0100
@@ -19,13 +19,13 @@
 %{!?tmpfiles_create:%global tmpfiles_create systemd-tmpfiles --create}
 
 # baseversion - version of kubernetes for this package
-%define baseversion 1.11
+%define baseversion 1.12
 
 # maxcriversion - version of cri-tools which is notsupported by this version 
of kubeadm.
-%define maxcriversion 1.12
+%define maxcriversion 1.13
 
 Name:           kubernetes
-Version:        %{baseversion}.1
+Version:        %{baseversion}.0
 Release:        0
 Summary:        Container Scheduling and Management
 License:        Apache-2.0
@@ -50,7 +50,6 @@
 # Patches so it also builds in ppc64le and arm64.
 Patch1:         git-upstream.patch
 Patch4:         make-e2e_node-run-over-distro-bins.patch
-Patch6:         build-with-debug-info.patch
 Patch7:         do-not-gc-sle-kubic-images.patch
 
 BuildRequires:  bash-completion
@@ -190,7 +189,6 @@
 %setup -q -n %{name}-%{version}
 %patch1 -p1
 %patch4 -p1
-%patch6 -p1
 %patch7 -p1
 %{goprep} github.com/kubernetes/kubernetes
 
@@ -397,7 +395,7 @@
 
 %files kubelet
 %defattr(-,root,root)
-%doc README.md CONTRIBUTING.md CHANGELOG-1.11.md
+%doc README.md CONTRIBUTING.md CHANGELOG-%{baseversion}.md
 %license LICENSE
 %{_mandir}/man1/kubelet.1*
 %{_bindir}/kubelet
@@ -414,7 +412,7 @@
 
 %files kubeadm
 %defattr(-,root,root)
-%doc README.md CONTRIBUTING.md CHANGELOG-1.11.md
+%doc README.md CONTRIBUTING.md CHANGELOG-%{baseversion}.md
 %{_unitdir}/kubelet.service.d/10-kubeadm.conf
 %dir %{_libexecdir}/modules-load.d
 %{_libexecdir}/modules-load.d/kubeadm.conf
@@ -426,7 +424,7 @@
 
 %files node
 %defattr(-,root,root)
-%doc README.md CONTRIBUTING.md CHANGELOG-1.11.md
+%doc README.md CONTRIBUTING.md CHANGELOG-%{baseversion}.md
 %license LICENSE
 %{_mandir}/man1/kube-proxy.1*
 %{_bindir}/kube-proxy

++++++ kubernetes-1.11.1.tar.xz -> kubernetes-1.12.0.tar.xz ++++++
/work/SRC/openSUSE:Factory/kubernetes/kubernetes-1.11.1.tar.xz 
/work/SRC/openSUSE:Factory/.kubernetes.new/kubernetes-1.12.0.tar.xz differ: 
char 25, line 1


Reply via email to