From 557129a6a60e1ab942ef8166e29b624b3d324a01 Mon Sep 17 00:00:00 2001 From: Thomas Stromberg Date: Mon, 20 May 2019 16:16:26 -0700 Subject: [PATCH 1/5] Bump makefile to v1.1.0 --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index ea65ed68dca7..2cd355935886 100755 --- a/Makefile +++ b/Makefile @@ -14,10 +14,10 @@ # Bump these on release - and please check ISO_VERSION for correctness. VERSION_MAJOR ?= 1 -VERSION_MINOR ?= 0 -VERSION_BUILD ?= 1 +VERSION_MINOR ?= 1 +VERSION_BUILD ?= 0 # Default to .0 for higher cache hit rates, as build increments typically don't require new ISO versions -ISO_VERSION ?= v$(VERSION_MAJOR).$(VERSION_MINOR).1 +ISO_VERSION ?= v$(VERSION_MAJOR).$(VERSION_MINOR).0 VERSION ?= v$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_BUILD) DEB_VERSION ?= $(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_BUILD) From a14f8c93106f892010e93ad1a18fc6cf94827add Mon Sep 17 00:00:00 2001 From: Thomas Stromberg Date: Mon, 20 May 2019 16:22:29 -0700 Subject: [PATCH 2/5] Update release notes to mention v1.1.0 --- CHANGELOG.md | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7064566d7bd3..1bce642a4825 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,46 @@ # Minikube Release Notes +## Version 1.1.0 - 2019-05-20 + +* Upgrade Docker, from 18.09.5 to 18.09.6 [#4296](https://github.com/kubernetes/minikube/pull/4296) +* Expose ‘—pod-network-cidr’ argument in minikube [#3892](https://github.com/kubernetes/minikube/pull/3892) +* Allow minikube to function with misconfigured NO_PROXY value [#4229](https://github.com/kubernetes/minikube/pull/4229) +* Set apiserver oom_adj to -10 to avoid OOMing before other pods [#4282](https://github.com/kubernetes/minikube/pull/4282) +* Upgrade Docker, from 18.06.3-ce to 18.09.5 [#4204](https://github.com/kubernetes/minikube/pull/4204) +* Upgrade default Kubernetes release to v1.14.2 [#4279](https://github.com/kubernetes/minikube/pull/4279) +* Restart kube-proxy using kubeadm & add bootstrapper.WaitCluster [#4276](https://github.com/kubernetes/minikube/pull/4276) +* Allow macOS to resolve service FQDNs during 'minikube tunnel' [#3464](https://github.com/kubernetes/minikube/pull/3464) +* Return host IP when using vmware as vm driver. [#4255](https://github.com/kubernetes/minikube/pull/4255) +* Unset the current-context after minikube stop [#4177](https://github.com/kubernetes/minikube/pull/4177) +* Add Go modules support [#4241](https://github.com/kubernetes/minikube/pull/4241) +* Select an accessible image repository for some users [#3937](https://github.com/kubernetes/minikube/pull/3937) +* Fix registry addon ReplicationController template [#4220](https://github.com/kubernetes/minikube/pull/4220) +* Standardize ASCII prefix for info, warning, and error messages [#4162](https://github.com/kubernetes/minikube/pull/4162) +* Make handling of stale mount pid files more robust [#4191](https://github.com/kubernetes/minikube/pull/4191) +* Add new kubectl command [#4193](https://github.com/kubernetes/minikube/pull/4193) +* Don't attempt to pull docker images on relaunch [#4129](https://github.com/kubernetes/minikube/pull/4129) +* storageclass no longer beta #4148 [#4153](https://github.com/kubernetes/minikube/pull/4153) +* Adding support for s390x [#4091](https://github.com/kubernetes/minikube/pull/4091) + +Thank you to the contributors whose work made v1.1 into something we could all be proud of: + +- Anders F Björklund +- Chris Eason +- Deepika Pandhi +- Himanshu Pandey +- Jan Janik +- Marcos Diez +- Maximilian Hess +- Medya Gh +- Sharif Elgamal +- Thomas Strömberg +- Tiago Ilieve +- Tobias Bradtke +- Zhongcheng Lao +- Zoran Regvart +- kerami +- salamani + ## Version 1.0.1 - 2019-04-29 * update-context is confusing with profiles [#4049](https://github.com/kubernetes/minikube/pull/4049) From 2bc916b2247339953ec0543bbd53b3373798a5bc Mon Sep 17 00:00:00 2001 From: Thomas Stromberg Date: Mon, 20 May 2019 16:26:13 -0700 Subject: [PATCH 3/5] Sort CHANGELOG entries --- CHANGELOG.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1bce642a4825..3293ce78e70a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,25 +2,25 @@ ## Version 1.1.0 - 2019-05-20 -* Upgrade Docker, from 18.09.5 to 18.09.6 [#4296](https://github.com/kubernetes/minikube/pull/4296) +* Add new kubectl command [#4193](https://github.com/kubernetes/minikube/pull/4193) * Expose ‘—pod-network-cidr’ argument in minikube [#3892](https://github.com/kubernetes/minikube/pull/3892) -* Allow minikube to function with misconfigured NO_PROXY value [#4229](https://github.com/kubernetes/minikube/pull/4229) -* Set apiserver oom_adj to -10 to avoid OOMing before other pods [#4282](https://github.com/kubernetes/minikube/pull/4282) +* Adding support for s390x [#4091](https://github.com/kubernetes/minikube/pull/4091) +* Allow macOS to resolve service FQDNs during 'minikube tunnel' [#3464](https://github.com/kubernetes/minikube/pull/3464) * Upgrade Docker, from 18.06.3-ce to 18.09.5 [#4204](https://github.com/kubernetes/minikube/pull/4204) +* Upgrade Docker, from 18.09.5 to 18.09.6 [#4296](https://github.com/kubernetes/minikube/pull/4296) * Upgrade default Kubernetes release to v1.14.2 [#4279](https://github.com/kubernetes/minikube/pull/4279) +* Allow minikube to function with misconfigured NO_PROXY value [#4229](https://github.com/kubernetes/minikube/pull/4229) +* Don't attempt to pull docker images on relaunch [#4129](https://github.com/kubernetes/minikube/pull/4129) +* Fix registry addon ReplicationController template [#4220](https://github.com/kubernetes/minikube/pull/4220) +* Make handling of stale mount pid files more robust [#4191](https://github.com/kubernetes/minikube/pull/4191) * Restart kube-proxy using kubeadm & add bootstrapper.WaitCluster [#4276](https://github.com/kubernetes/minikube/pull/4276) -* Allow macOS to resolve service FQDNs during 'minikube tunnel' [#3464](https://github.com/kubernetes/minikube/pull/3464) * Return host IP when using vmware as vm driver. [#4255](https://github.com/kubernetes/minikube/pull/4255) -* Unset the current-context after minikube stop [#4177](https://github.com/kubernetes/minikube/pull/4177) -* Add Go modules support [#4241](https://github.com/kubernetes/minikube/pull/4241) * Select an accessible image repository for some users [#3937](https://github.com/kubernetes/minikube/pull/3937) -* Fix registry addon ReplicationController template [#4220](https://github.com/kubernetes/minikube/pull/4220) +* Set apiserver oom_adj to -10 to avoid OOMing before other pods [#4282](https://github.com/kubernetes/minikube/pull/4282) * Standardize ASCII prefix for info, warning, and error messages [#4162](https://github.com/kubernetes/minikube/pull/4162) -* Make handling of stale mount pid files more robust [#4191](https://github.com/kubernetes/minikube/pull/4191) -* Add new kubectl command [#4193](https://github.com/kubernetes/minikube/pull/4193) -* Don't attempt to pull docker images on relaunch [#4129](https://github.com/kubernetes/minikube/pull/4129) +* Unset the current-context after minikube stop [#4177](https://github.com/kubernetes/minikube/pull/4177) * storageclass no longer beta #4148 [#4153](https://github.com/kubernetes/minikube/pull/4153) -* Adding support for s390x [#4091](https://github.com/kubernetes/minikube/pull/4091) +* Add Go modules support [#4241](https://github.com/kubernetes/minikube/pull/4241) Thank you to the contributors whose work made v1.1 into something we could all be proud of: From bd166d62e86367310d84ede052cd2c7ea38f64b3 Mon Sep 17 00:00:00 2001 From: Thomas Stromberg Date: Mon, 20 May 2019 16:30:42 -0700 Subject: [PATCH 4/5] Add #4299 --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3293ce78e70a..3052dc49a9b3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,9 @@ * Add new kubectl command [#4193](https://github.com/kubernetes/minikube/pull/4193) * Expose ‘—pod-network-cidr’ argument in minikube [#3892](https://github.com/kubernetes/minikube/pull/3892) -* Adding support for s390x [#4091](https://github.com/kubernetes/minikube/pull/4091) * Allow macOS to resolve service FQDNs during 'minikube tunnel' [#3464](https://github.com/kubernetes/minikube/pull/3464) +* Add support for s390x [#4091](https://github.com/kubernetes/minikube/pull/4091) +* Update to Podman 1.3 & CRIO v1.14.1 [#4299](https://github.com/kubernetes/minikube/pull/4299) * Upgrade Docker, from 18.06.3-ce to 18.09.5 [#4204](https://github.com/kubernetes/minikube/pull/4204) * Upgrade Docker, from 18.09.5 to 18.09.6 [#4296](https://github.com/kubernetes/minikube/pull/4296) * Upgrade default Kubernetes release to v1.14.2 [#4279](https://github.com/kubernetes/minikube/pull/4279) From a6f8f14195117edef2a758d7cf1a8b59fe587cf0 Mon Sep 17 00:00:00 2001 From: tstromberg Date: Tue, 21 May 2019 15:17:26 -0700 Subject: [PATCH 5/5] Include the most recent commits --- CHANGELOG.md | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3052dc49a9b3..ba6d6a0ebb7a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,27 +1,34 @@ # Minikube Release Notes -## Version 1.1.0 - 2019-05-20 +## Version 1.1.0 - 2019-05-21 -* Add new kubectl command [#4193](https://github.com/kubernetes/minikube/pull/4193) -* Expose ‘—pod-network-cidr’ argument in minikube [#3892](https://github.com/kubernetes/minikube/pull/3892) * Allow macOS to resolve service FQDNs during 'minikube tunnel' [#3464](https://github.com/kubernetes/minikube/pull/3464) -* Add support for s390x [#4091](https://github.com/kubernetes/minikube/pull/4091) +* Expose ‘—pod-network-cidr’ argument in minikube [#3892](https://github.com/kubernetes/minikube/pull/3892) +* Upgrade default Kubernetes release to v1.14.2 [#4279](https://github.com/kubernetes/minikube/pull/4279) * Update to Podman 1.3 & CRIO v1.14.1 [#4299](https://github.com/kubernetes/minikube/pull/4299) * Upgrade Docker, from 18.06.3-ce to 18.09.5 [#4204](https://github.com/kubernetes/minikube/pull/4204) * Upgrade Docker, from 18.09.5 to 18.09.6 [#4296](https://github.com/kubernetes/minikube/pull/4296) -* Upgrade default Kubernetes release to v1.14.2 [#4279](https://github.com/kubernetes/minikube/pull/4279) +* Add Go modules support [#4241](https://github.com/kubernetes/minikube/pull/4241) +* Add more solutions messages [#4257](https://github.com/kubernetes/minikube/pull/4257) +* Add new kubectl command [#4193](https://github.com/kubernetes/minikube/pull/4193) +* Add solution text for common kvm2 and VirtualBox problems [#4198](https://github.com/kubernetes/minikube/pull/4198) +* Adding support for s390x [#4091](https://github.com/kubernetes/minikube/pull/4091) * Allow minikube to function with misconfigured NO_PROXY value [#4229](https://github.com/kubernetes/minikube/pull/4229) +* Disable SystemVerification preflight on Kubernetes releases <1.13 [#4306](https://github.com/kubernetes/minikube/pull/4306) * Don't attempt to pull docker images on relaunch [#4129](https://github.com/kubernetes/minikube/pull/4129) +* Fix location of Kubernetes binaries in cache directory [#4244](https://github.com/kubernetes/minikube/pull/4244) * Fix registry addon ReplicationController template [#4220](https://github.com/kubernetes/minikube/pull/4220) +* Make default output of 'minikube start' consume fewer lines in the terminal [#4197](https://github.com/kubernetes/minikube/pull/4197) * Make handling of stale mount pid files more robust [#4191](https://github.com/kubernetes/minikube/pull/4191) +* Make sure to start Docker, before getting version [#4307](https://github.com/kubernetes/minikube/pull/4307) * Restart kube-proxy using kubeadm & add bootstrapper.WaitCluster [#4276](https://github.com/kubernetes/minikube/pull/4276) * Return host IP when using vmware as vm driver. [#4255](https://github.com/kubernetes/minikube/pull/4255) * Select an accessible image repository for some users [#3937](https://github.com/kubernetes/minikube/pull/3937) * Set apiserver oom_adj to -10 to avoid OOMing before other pods [#4282](https://github.com/kubernetes/minikube/pull/4282) * Standardize ASCII prefix for info, warning, and error messages [#4162](https://github.com/kubernetes/minikube/pull/4162) * Unset the current-context after minikube stop [#4177](https://github.com/kubernetes/minikube/pull/4177) +* Validate kvm network exists [#4308](https://github.com/kubernetes/minikube/pull/4308) * storageclass no longer beta #4148 [#4153](https://github.com/kubernetes/minikube/pull/4153) -* Add Go modules support [#4241](https://github.com/kubernetes/minikube/pull/4241) Thank you to the contributors whose work made v1.1 into something we could all be proud of: @@ -39,6 +46,7 @@ Thank you to the contributors whose work made v1.1 into something we could all b - Tobias Bradtke - Zhongcheng Lao - Zoran Regvart +- josedonizetti - kerami - salamani