Skip to content

Commit 62e108c

Browse files
authored
Merge pull request #14707 from klaases/release1.26.1
release 1.26.1
2 parents 1564a04 + 37aa78a commit 62e108c

File tree

2 files changed

+68
-1
lines changed

2 files changed

+68
-1
lines changed

CHANGELOG.md

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

3+
## Version 1.26.1 - 2022-08-02
4+
5+
Minor Improvements:
6+
* Check for cri-dockerd & dockerd runtimes when using none-driver on Kubernetes 1.24+ [#14555](https://github.com/kubernetes/minikube/pull/14555)
7+
* Add solution message for when `cri-docker` is missing [#14483](https://github.com/kubernetes/minikube/pull/14483)
8+
* Limit number of audit entries [#14695](https://github.com/kubernetes/minikube/pull/14695)
9+
* Optimize audit logging [#14596](https://github.com/kubernetes/minikube/pull/14596)
10+
* Show the container runtime when running without kubernetes #13432 [#14200](https://github.com/kubernetes/minikube/pull/14200)
11+
* Add warning when enabling thrid-party addons [#14499](https://github.com/kubernetes/minikube/pull/14499)
12+
13+
Bug fixes:
14+
* Fix url index out of range error in service [#14658](https://github.com/kubernetes/minikube/pull/14658)
15+
* Fix incorrect user and profile in audit logging [#14562](https://github.com/kubernetes/minikube/pull/14562)
16+
* Fix overwriting err for OCI "minikube start" [#14506](https://github.com/kubernetes/minikube/pull/14506)
17+
* Fix panic when environment variables are empty [#14415](https://github.com/kubernetes/minikube/pull/14415)
18+
19+
Version Upgrades:
20+
* Bump Kubernetes version default: v1.24.3 and latest: v1.24.3 [#14606](https://github.com/kubernetes/minikube/pull/14606)
21+
* ISO: Update Docker from 20.10.16 to 20.10.17 [#14534](https://github.com/kubernetes/minikube/pull/14534)
22+
* ISO/Kicbase: Update cri-o from v1.22.3 to v1.24.1 [#14420](https://github.com/kubernetes/minikube/pull/14420)
23+
* ISO: Update conmon from v2.0.24 to v2.1.2 [#14545](https://github.com/kubernetes/minikube/pull/14545)
24+
* Update gcp-auth-webhook from v0.0.9 to v0.0.10 [#14670](https://github.com/kubernetes/minikube/pull/14670)
25+
* ISO/Kicbase: Update base images [#14481](https://github.com/kubernetes/minikube/pull/14481)
26+
27+
For a more detailed changelog, including changes occurring in pre-release versions, see [CHANGELOG.md](https://github.com/kubernetes/minikube/blob/master/CHANGELOG.md).
28+
29+
Thank you to our contributors for this release!
30+
31+
- Akihiro Suda
32+
- Akira Yoshiyama
33+
- Bradley S
34+
- Christoph "criztovyl" Schulz
35+
- Gimb0
36+
- HarshCasper
37+
- Jeff MAURY
38+
- Medya Ghazizadeh
39+
- Niels de Vos
40+
- Paul S. Schweigert
41+
- Santhosh Nagaraj S
42+
- Steven Powell
43+
- Tobias Pfandzelter
44+
- anoop142
45+
- inifares23lab
46+
- klaases
47+
- peizhouyu
48+
- zhouguowei
49+
- 吴梓铭
50+
- 李龙峰
51+
52+
Thank you to our PR reviewers for this release!
53+
54+
- spowelljr (50 comments)
55+
- medyagh (9 comments)
56+
- atoato88 (3 comments)
57+
- klaases (2 comments)
58+
- afbjorklund (1 comments)
59+
60+
Thank you to our triage members for this release!
61+
62+
- afbjorklund (75 comments)
63+
- RA489 (56 comments)
64+
- klaases (32 comments)
65+
- spowelljr (27 comments)
66+
- medyagh (13 comments)
67+
68+
Check out our [contributions leaderboard](https://minikube.sigs.k8s.io/docs/contrib/leaderboard/v1.26.0/) for this release!
69+
370
## Version 1.26.0 - 2022-06-22
471

572
Features:

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# Bump these on release - and please check ISO_VERSION for correctness.
1616
VERSION_MAJOR ?= 1
1717
VERSION_MINOR ?= 26
18-
VERSION_BUILD ?= 0
18+
VERSION_BUILD ?= 1
1919
RAW_VERSION=$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_BUILD)
2020
VERSION ?= v$(RAW_VERSION)
2121

0 commit comments

Comments
 (0)