Skip to content

Commit 3edf480

Browse files
authored
Merge pull request #13391 from spowelljr/release25
Release v1.25.0
2 parents db5548d + 801844e commit 3edf480

File tree

2 files changed

+98
-1
lines changed

2 files changed

+98
-1
lines changed

CHANGELOG.md

Lines changed: 97 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,102 @@
11
# Release Notes
22

3+
## Version 1.25.0 - 2022-01-18
4+
5+
Features:
6+
* New flag "--binary-mirror" to override mirror URL downloading (kubectl, kubelet, & kubeadm) [#12804](https://github.com/kubernetes/minikube/pull/12804)
7+
* Add format flag to the `image ls` command [#12996](https://github.com/kubernetes/minikube/pull/12996)
8+
* Add all mount flags to start command [#12930](https://github.com/kubernetes/minikube/pull/12930)
9+
* Auto set config to support btrfs storage driver [#12990](https://github.com/kubernetes/minikube/pull/12990)
10+
* Support CRI-O runtime with Rootless Docker driver (`--driver=docker --container-runtime=cri-o`) [#12900](https://github.com/kubernetes/minikube/pull/12900)
11+
* Allow custom cert for ingress to be overwritten [#12897](https://github.com/kubernetes/minikube/pull/12897)
12+
* Allow ppc64le & armv7 with Docker driver [#13124](https://github.com/kubernetes/minikube/pull/13124)
13+
14+
Minor Improvements:
15+
* Support DOCKER_HOST not being numeric IP [#13300](https://github.com/kubernetes/minikube/pull/13300)
16+
* Support mounting with the --no-kubernetes flag [#13144](https://github.com/kubernetes/minikube/pull/13144)
17+
* Support changing apiserver-ips when restarting minikube [#12692](https://github.com/kubernetes/minikube/pull/12692)
18+
19+
Bug fixes:
20+
* Fix ingress for k8s v1.19 [#13173](https://github.com/kubernetes/minikube/pull/13173)
21+
* Fix mounting with VMware #12426 [#13000](https://github.com/kubernetes/minikube/pull/13000)
22+
* Fix `Bad file descriptor` on mount [#13013](https://github.com/kubernetes/minikube/pull/13013)
23+
* Fix `docker-env` with new PowerShell versions [#12870](https://github.com/kubernetes/minikube/pull/12870)
24+
25+
Version Upgrades:
26+
* Upgrade Docker, from v20.10.8 to v20.10.11
27+
* Upgrade containerd, from v1.4.9 to v1.4.12
28+
* Upgrade cri-o from v1.22.0 to v1.22.1 [#13059](https://github.com/kubernetes/minikube/pull/13059)
29+
* Update gcp-auth-webhook image to v0.0.8 [#13185](https://github.com/kubernetes/minikube/pull/13185)
30+
31+
Deprecation:
32+
* mount: Remove `--mode` flag [#13162](https://github.com/kubernetes/minikube/pull/13162)
33+
34+
For a more detailed changelog, including changes occuring in pre-release versions, see [CHANGELOG.md](https://github.com/kubernetes/minikube/blob/master/CHANGELOG.md).
35+
36+
Thank you to our contributors for this release!
37+
38+
- Akihiro Suda
39+
- Akira Yoshiyama
40+
- Anders F Björklund
41+
- Ashwin901
42+
- Carl Chesser
43+
- Daehyeok Mun
44+
- Davanum Srinivas
45+
- Dimitris Aragiorgis
46+
- Emilano Vazquez
47+
- Eugene Kalinin
48+
- Frank Schwichtenberg
49+
- James Yin
50+
- Jan Klippel
51+
- Jeff MAURY
52+
- Joey Klaas
53+
- Marcus Puckett
54+
- Medya Ghazizadeh
55+
- Nikhil Sharma
56+
- Nikolay Nikolaev
57+
- Oleksii Prudkyi
58+
- Pablo Caderno
59+
- Piotr Resztak
60+
- Predrag Rogic
61+
- Rahil Patel
62+
- Sergio Galvan
63+
- Sharif Elgamal
64+
- Steven Powell
65+
- Tian Yang
66+
- Toshiaki Inukai
67+
- Vishal Jain
68+
- Zvi Cahana
69+
- gamba47
70+
- rahil-p
71+
72+
73+
Thank you to our PR reviewers for this release!
74+
75+
- spowelljr (65 comments)
76+
- medyagh (64 comments)
77+
- t-inu (46 comments)
78+
- atoato88 (39 comments)
79+
- sharifelgamal (39 comments)
80+
- klaases (17 comments)
81+
- afbjorklund (8 comments)
82+
- s-kawamura-w664 (8 comments)
83+
- yosshy (6 comments)
84+
- neolit123 (3 comments)
85+
- AkihiroSuda (1 comments)
86+
- dims (1 comments)
87+
- dobegor (1 comments)
88+
- dytyniuk (1 comments)
89+
- inductor (1 comments)
90+
- rmohr (1 comments)
91+
92+
Thank you to our triage members for this release!
93+
94+
- spowelljr (48 comments)
95+
- afbjorklund (44 comments)
96+
- RA489 (37 comments)
97+
- medyagh (33 comments)
98+
- sharifelgamal (25 comments)
99+
3100
## Version 1.24.0 - 2021-11-04
4101

5102
Features:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

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

0 commit comments

Comments
 (0)