Skip to content

Commit 0ba3410

Browse files
committed
Update Makefile and CHANGELOG for 1.24.0-beta.0 release
1 parent 6bbf98d commit 0ba3410

File tree

2 files changed

+88
-2
lines changed

2 files changed

+88
-2
lines changed

CHANGELOG.md

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

3+
## Version 1.24.0-beta.0 - 2021-10-28
4+
5+
Features:
6+
* Allow running podman as experimental driver in Windows & macOS [#12579](https://github.com/kubernetes/minikube/pull/12579)
7+
* Add Aliyun (China) mirror for preload images and K8s release binaries [#12578](https://github.com/kubernetes/minikube/pull/12578)
8+
9+
Minor Improvements:
10+
* certs: Renew minikube certs if expired [#12534](https://github.com/kubernetes/minikube/pull/12534)
11+
* mount: Persist mount settings after stop start [#12719](https://github.com/kubernetes/minikube/pull/12719)
12+
* cri-o: Implement --force-systemd into cri-o [#12553](https://github.com/kubernetes/minikube/pull/12553)
13+
* tunnel: Use new bridge interface name on OSX Monterey [#12799](https://github.com/kubernetes/minikube/pull/12799)
14+
* Added port validation [#12233](https://github.com/kubernetes/minikube/pull/12233)
15+
* buildkit: Start the daemon on demand (socket-activated) [#12081](https://github.com/kubernetes/minikube/pull/12081)
16+
17+
Bug Fixes:
18+
* ingress: Restore ingress & ingress-dns backwards compatibility for k8s < v1.19 [#12794](https://github.com/kubernetes/minikube/pull/12794)
19+
* gcp-auth: Fix disabling addon [#12779](https://github.com/kubernetes/minikube/pull/12779)
20+
* podman: Fix network inspect index check [#12756](https://github.com/kubernetes/minikube/pull/12756)
21+
* cilium: Fix Ipv4 cidr [#12587](https://github.com/kubernetes/minikube/pull/12587)
22+
* mount: Fix mounting on non-default profile [#12711](https://github.com/kubernetes/minikube/pull/12711)
23+
* podman: Match the lower case of the podman error message [#12685](https://github.com/kubernetes/minikube/pull/12685)
24+
* ssh: Fix using tilde in ssh-key path [#12672](https://github.com/kubernetes/minikube/pull/12672)
25+
* podman: Fix network not getting deleted [#12627](https://github.com/kubernetes/minikube/pull/12627)
26+
* zsh: Fix completion [#12420](https://github.com/kubernetes/minikube/pull/12420)
27+
* windows wsl2: Fix invoking kubeadm failing when spaces in PATH for none driver [#12617](https://github.com/kubernetes/minikube/pull/12617)
28+
* image build: Only build on control plane by default [#12149](https://github.com/kubernetes/minikube/pull/12149)
29+
* mount: Fix `minikube stop` on Windows VMs taking 9 minutes when mounted [#12716](https://github.com/kubernetes/minikube/pull/12716)
30+
31+
Version Upgrades:
32+
* ingres controller: Update to v1/1.0.4 and v1beta1/0.49.3 [#12702](https://github.com/kubernetes/minikube/pull/12702)
33+
* minikube-ingress-dns: Update image to 0.0.2 [#12730](https://github.com/kubernetes/minikube/pull/12730)
34+
* helm-tiller: Update image to v2.17.0 [#12641](https://github.com/kubernetes/minikube/pull/12641)
35+
36+
For a more detailed changelog, including changes occuring in pre-release versions, see [CHANGELOG.md](https://github.com/kubernetes/minikube/blob/master/CHANGELOG.md).
37+
38+
Thank you to our contributors for this release!
39+
40+
- Akira Yoshiyama
41+
- Alexandre Garnier
42+
- Anders F Björklund
43+
- Aniruddha Amit Dutta
44+
- Avinash Upadhyaya
45+
- Cameron Brunner
46+
- Carlos Santana
47+
- Claudiu Belu
48+
- Gio Gutierrez
49+
- Jeff MAURY
50+
- KallyDev
51+
- Keyhoh
52+
- Kumar Shivendu
53+
- Li Yi
54+
- Marc Velasco
55+
- Marcus Watkins
56+
- Medya Ghazizadeh
57+
- Michael Cade
58+
- Pablo Caderno
59+
- Peixuan Ding
60+
- Piotr Resztak
61+
- Predrag Rogic
62+
- RA489
63+
- Sharif Elgamal
64+
- Steven Powell
65+
- Taylor Steil
66+
- Wei Luo
67+
- phbits
68+
- yxxhero
69+
70+
Thank you to our PR reviewers for this release!
71+
72+
- spowelljr (27 comments)
73+
- medyagh (22 comments)
74+
- t-inu (20 comments)
75+
- sharifelgamal (9 comments)
76+
- atoato88 (6 comments)
77+
- rikatz (5 comments)
78+
- YuikoTakada (1 comments)
79+
- tstromberg (1 comments)
80+
81+
Thank you to our triage members for this release!
82+
83+
- spowelljr (37 comments)
84+
- afbjorklund (34 comments)
85+
- RA489 (30 comments)
86+
- medyagh (29 comments)
87+
- sharifelgamal (29 comments)
88+
389
## Version 1.23.2 - 2021-09-21
490

591
Fix crio regression:

Makefile

Lines changed: 2 additions & 2 deletions
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 ?= 23
18-
VERSION_BUILD ?= 2
17+
VERSION_MINOR ?= 24
18+
VERSION_BUILD ?= 0-beta.0
1919
RAW_VERSION=$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_BUILD)
2020
VERSION ?= v$(RAW_VERSION)
2121

0 commit comments

Comments
 (0)