Release v1.12.0-beta.0
parent
fe9e0e8950
commit
bf2d09d10a
48
CHANGELOG.md
48
CHANGELOG.md
|
@ -1,5 +1,53 @@
|
|||
# Release Notes
|
||||
|
||||
## Version 1.12.0-beta.0 - 2020-06-18
|
||||
|
||||
Features:
|
||||
* Adds support for unsetting of env vars [#8506](https://github.com/kubernetes/minikube/pull/8506)
|
||||
* Require minikube-automount for /run/minikube/env [#8472](https://github.com/kubernetes/minikube/pull/8472)
|
||||
* Enable support for offline docker driver [#8417](https://github.com/kubernetes/minikube/pull/8417)
|
||||
* Added option --all to stop all clusters [#8285](https://github.com/kubernetes/minikube/pull/8285)
|
||||
* add support for microsoft wsl for docker driver [#8368](https://github.com/kubernetes/minikube/pull/8368)
|
||||
* add tutorial how to use minikube in github actions as a CI step [#8362](https://github.com/kubernetes/minikube/pull/8362)
|
||||
* Add KubeVirt addon [#8275](https://github.com/kubernetes/minikube/pull/8275)
|
||||
* Log stacks for slowjam analysis if STACKLOG_PATH is set [#8329](https://github.com/kubernetes/minikube/pull/8329)
|
||||
|
||||
Minor Improvements:
|
||||
* Add heapster alias to metrics-server addon [#8455](https://github.com/kubernetes/minikube/pull/8455)
|
||||
* Upgrade crio and crio.conf to v1.18.1 [#8404](https://github.com/kubernetes/minikube/pull/8404)
|
||||
* bump helm-tiller addon to v2.16.8 [#8471](https://github.com/kubernetes/minikube/pull/8471)
|
||||
* Upgrade falco-probe driver kernel module to 0.23 [#8450](https://github.com/kubernetes/minikube/pull/8450)
|
||||
* Upgrade conmon to 2.0.17 [#8406](https://github.com/kubernetes/minikube/pull/8406)
|
||||
* Upgrade podman to 1.9.3 [#8405](https://github.com/kubernetes/minikube/pull/8405)
|
||||
* Upgrade Docker, from 19.03.8 to 19.03.11 [#8403](https://github.com/kubernetes/minikube/pull/8403)
|
||||
|
||||
Bug Fixes:
|
||||
* Fix host network interface for VBox [#8475](https://github.com/kubernetes/minikube/pull/8475)
|
||||
|
||||
Huge thank you for this release towards our contributors:
|
||||
- Anders F Björklund
|
||||
- Ashley Schuett
|
||||
- Harkishen-Singh
|
||||
- Kenta Iso
|
||||
- Marcin Niemira
|
||||
- Medya Ghazizadeh
|
||||
- Pablo Caderno
|
||||
- Prasad Katti
|
||||
- Priya Wadhwa
|
||||
- Radoslaw Smigielski
|
||||
- Sharif Elgamal
|
||||
- Shubham Gopale
|
||||
- Stanislav Petrov
|
||||
- Tacio Costa
|
||||
- Taqui Raza
|
||||
- Thomas Strömberg
|
||||
- TrishaChetani
|
||||
- awgreene
|
||||
- gashirar
|
||||
- jjanik
|
||||
- sakshamkhanna
|
||||
|
||||
|
||||
## Version 1.11.0 - 2020-05-29
|
||||
|
||||
Features:
|
||||
|
|
6
Makefile
6
Makefile
|
@ -14,8 +14,8 @@
|
|||
|
||||
# Bump these on release - and please check ISO_VERSION for correctness.
|
||||
VERSION_MAJOR ?= 1
|
||||
VERSION_MINOR ?= 11
|
||||
VERSION_BUILD ?= 0
|
||||
VERSION_MINOR ?= 12
|
||||
VERSION_BUILD ?= 0-beta.0
|
||||
RAW_VERSION=$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_BUILD)
|
||||
VERSION ?= v$(RAW_VERSION)
|
||||
|
||||
|
@ -23,7 +23,7 @@ KUBERNETES_VERSION ?= $(shell egrep "DefaultKubernetesVersion =" pkg/minikube/co
|
|||
KIC_VERSION ?= $(shell egrep "Version =" pkg/drivers/kic/types.go | cut -d \" -f2)
|
||||
|
||||
# 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).0
|
||||
ISO_VERSION ?= v1.11.0
|
||||
# Dashes are valid in semver, but not Linux packaging. Use ~ to delimit alpha/beta
|
||||
DEB_VERSION ?= $(subst -,~,$(RAW_VERSION))
|
||||
RPM_VERSION ?= $(DEB_VERSION)
|
||||
|
|
Loading…
Reference in New Issue