Skip to content

Commit 4243041

Browse files
authored
Merge pull request #14955 from klaases/rel127a
release v.1.27.0
2 parents d8c4920 + fc15016 commit 4243041

File tree

2 files changed

+67
-2
lines changed

2 files changed

+67
-2
lines changed

CHANGELOG.md

+65
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,70 @@
11
# Release Notes
22

3+
## Version 1.27.0 - 2022-09-15
4+
5+
Kubernetes v1.25:
6+
* Bump default Kubernetes version to v1.25.0 and resolve `/etc/resolv.conf` regression [#14848](https://github.com/kubernetes/minikube/pull/14848)
7+
* Skip metallb PodSecurityPolicy object for kubernetes 1.25+ [#14903](https://github.com/kubernetes/minikube/pull/14903)
8+
* The DefaultKubernetesRepo changed for 1.25.0 [#14768](https://github.com/kubernetes/minikube/pull/14768)
9+
10+
Minor Improvements:
11+
* Add fscrypt kernel options [#14783](https://github.com/kubernetes/minikube/pull/14783)
12+
* Output kubeadm logs [#14697](https://github.com/kubernetes/minikube/pull/14697)
13+
14+
Bug fixes:
15+
* Fix QEMU delete errors [#14950](https://github.com/kubernetes/minikube/pull/14950)
16+
* Fix containerd configuration issue with insecure registries [#14482](https://github.com/kubernetes/minikube/pull/14482)
17+
* Fix registry when custom images provided [#14690](https://github.com/kubernetes/minikube/pull/14690)
18+
19+
Version Upgrades:
20+
* ISO: Update Docker from 20.10.17 to 20.10.18 [#14935](https://github.com/kubernetes/minikube/pull/14935)
21+
* Update kicbase base image to Ubuntu:focal-20220826 [#14904](https://github.com/kubernetes/minikube/pull/14904)
22+
* Update registry addon image from 2.7.1 to 2.8.1 [#14886](https://github.com/kubernetes/minikube/pull/14886)
23+
* Update gcp-auth-webhook addon from v0.0.10 to v0.0.11 [#14847](https://github.com/kubernetes/minikube/pull/14847)
24+
* Update Headlamp addon image from v0.9.0 to v0.11.1 [#14802](https://github.com/kubernetes/minikube/pull/14802)
25+
26+
For a more detailed changelog, including changes occurring in pre-release versions, see [CHANGELOG.md](https://github.com/kubernetes/minikube/blob/master/CHANGELOG.md).
27+
28+
Thank you to our contributors for this release!
29+
30+
- Abirdcfly
31+
- Alex
32+
- Anders F Björklund
33+
- Andrew Hamilton
34+
- Jeff MAURY
35+
- Jānis Bebrītis
36+
- Marcel Lauhoff
37+
- Medya Ghazizadeh
38+
- Renato Costa
39+
- Santhosh Nagaraj S
40+
- Siddhant Khisty
41+
- Steven Powell
42+
- Yuiko Mouri
43+
- klaases
44+
- mtardy
45+
- shaunmayo
46+
- shixiuguo
47+
48+
Thank you to our PR reviewers for this release!
49+
50+
- spowelljr (23 comments)
51+
- medyagh (6 comments)
52+
- klaases (5 comments)
53+
- vbezhenar (2 comments)
54+
- nixpanic (1 comments)
55+
- reylejano (1 comments)
56+
- t-inu (1 comments)
57+
58+
Thank you to our triage members for this release!
59+
60+
- afbjorklund (76 comments)
61+
- klaases (58 comments)
62+
- RA489 (38 comments)
63+
- spowelljr (16 comments)
64+
- eiffel-fl (10 comments)
65+
66+
Check out our [contributions leaderboard](https://minikube.sigs.k8s.io/docs/contrib/leaderboard/v1.27.0/) for this release!
67+
368
## Version 1.26.1 - 2022-08-02
469

570
Minor Improvements:

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414

1515
# Bump these on release - and please check ISO_VERSION for correctness.
1616
VERSION_MAJOR ?= 1
17-
VERSION_MINOR ?= 26
18-
VERSION_BUILD ?= 1
17+
VERSION_MINOR ?= 27
18+
VERSION_BUILD ?= 0
1919
RAW_VERSION=$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_BUILD)
2020
VERSION ?= v$(RAW_VERSION)
2121

0 commit comments

Comments
 (0)