Make required changes to release v1.22.0
parent
46b5d39d43
commit
69148296d4
46
CHANGELOG.md
46
CHANGELOG.md
|
|
@ -1,5 +1,51 @@
|
||||||
# Release Notes
|
# Release Notes
|
||||||
|
|
||||||
|
## Version 1.22.0 - 2021-07-07
|
||||||
|
|
||||||
|
Features:
|
||||||
|
* `minikube version`: add `--components` flag to list all included software [#11843](https://github.com/kubernetes/minikube/pull/11843)
|
||||||
|
|
||||||
|
Minor Improvements:
|
||||||
|
* auto-pause: add support for other container runtimes [#11834](https://github.com/kubernetes/minikube/pull/11834)
|
||||||
|
* windows: support renaming binary to `kubectl.exe` and running as kubectl [#11819](https://github.com/kubernetes/minikube/pull/11819)
|
||||||
|
|
||||||
|
Bugs:
|
||||||
|
* Fix "kubelet Default-Start contains no runlevels" error [#11815](https://github.com/kubernetes/minikube/pull/11815)
|
||||||
|
|
||||||
|
Version Upgrades:
|
||||||
|
* bump default kubernetes version to v1.21.2 & newest kubernetes version to v1.22.0-beta.0 [#11901](https://github.com/kubernetes/minikube/pull/11901)
|
||||||
|
|
||||||
|
For a more detailed changelog, including changes occuring in pre-release versions, see [CHANGELOG.md](https://github.com/kubernetes/minikube/blob/master/CHANGELOG.md).
|
||||||
|
|
||||||
|
Thank you to our contributors for this release!
|
||||||
|
|
||||||
|
- Anders F Björklund
|
||||||
|
- Andriy Dzikh
|
||||||
|
- Dakshraj Sharma
|
||||||
|
- Ilya Zuyev
|
||||||
|
- Jeff MAURY
|
||||||
|
- Maxime Kjaer
|
||||||
|
- Medya Ghazizadeh
|
||||||
|
- Rajwinder Mahal
|
||||||
|
- Sharif Elgamal
|
||||||
|
- Steven Powell
|
||||||
|
|
||||||
|
Thank you to our PR reviewers for this release!
|
||||||
|
|
||||||
|
- medyagh (27 comments)
|
||||||
|
- sharifelgamal (10 comments)
|
||||||
|
- andriyDev (5 comments)
|
||||||
|
- spowelljr (4 comments)
|
||||||
|
- ilya-zuyev (3 comments)
|
||||||
|
|
||||||
|
Thank you to our triage members for this release!
|
||||||
|
|
||||||
|
- medyagh (16 comments)
|
||||||
|
- spowelljr (7 comments)
|
||||||
|
- afbjorklund (4 comments)
|
||||||
|
- mahalrs (4 comments)
|
||||||
|
- sharifelgamal (3 comments)
|
||||||
|
|
||||||
## Version 1.22.0-beta.0 - 2021-06-28
|
## Version 1.22.0-beta.0 - 2021-06-28
|
||||||
|
|
||||||
Features:
|
Features:
|
||||||
|
|
|
||||||
2
Makefile
2
Makefile
|
|
@ -15,7 +15,7 @@
|
||||||
# Bump these on release - and please check ISO_VERSION for correctness.
|
# Bump these on release - and please check ISO_VERSION for correctness.
|
||||||
VERSION_MAJOR ?= 1
|
VERSION_MAJOR ?= 1
|
||||||
VERSION_MINOR ?= 22
|
VERSION_MINOR ?= 22
|
||||||
VERSION_BUILD ?= 0-beta.0
|
VERSION_BUILD ?= 0
|
||||||
RAW_VERSION=$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_BUILD)
|
RAW_VERSION=$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_BUILD)
|
||||||
VERSION ?= v$(RAW_VERSION)
|
VERSION ?= v$(RAW_VERSION)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue