Skip to content

Commit c93a4cb

Browse files
authored
release: Add Changelog for v1.38.1 (#22681)
* add changelog for v1.38.1 * markdown lint * markdown lint * fix lint for markdown
1 parent af71fa6 commit c93a4cb

File tree

3 files changed

+63
-2
lines changed

3 files changed

+63
-2
lines changed

CHANGELOG.md

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

3+
## Version 1.38.1 - 2026-02-19
4+
5+
## Feature
6+
7+
* Add Support for Kubernetes version v1.35.1 ([#22665](https://github.com/kubernetes/minikube/pull/22665))
8+
9+
## Bug fixes
10+
11+
* Fix lock file regression by appending UID to the lock driectory ([#22623](https://github.com/kubernetes/minikube/pull/22623))
12+
* Fix regression cross-arch execution by masking systemd-binfmt ([#22621](https://github.com/kubernetes/minikube/pull/22621))
13+
* Fix: PowerShell curl alias on Windows to check resgistry.k8s.io connectivity ([#22659](https://github.com/kubernetes/minikube/pull/22659))
14+
15+
## Addons
16+
17+
* Addon cloud-spanner: Update cloud-spanner-emulator/emulator image from 1.5.47 to 1.5.49 ([#22637](https://github.com/kubernetes/minikube/pull/22637))
18+
* Addon Headlamp: Update Headlamp image from v0.39.0 to v0.40.0 ([#22640](https://github.com/kubernetes/minikube/pull/22640))
19+
* Addon ingress: Update ingress-nginx/controller image from v1.14.1 to v1.14.2 ([#22595](https://github.com/kubernetes/minikube/pull/22595))
20+
* Addon ingress: Update ingress-nginx/controller image from v1.14.2 to v1.14.3 ([#22638](https://github.com/kubernetes/minikube/pull/22638))
21+
* Addon inspektor-gadget: Update inspektor-gadget image from v0.48.0 to v0.48.1 ([#22592](https://github.com/kubernetes/minikube/pull/22592))
22+
* Addon inspektor-gadget: Update inspektor-gadget image from v0.48.1 to v0.49.1 ([#22634](https://github.com/kubernetes/minikube/pull/22634))
23+
* Addon metrics-server: Update metrics-server/metrics-server image from v0.8.0 to v0.8.1 ([#22596](https://github.com/kubernetes/minikube/pull/22596))
24+
* Addon nvidia-device-plugin: Update nvidia/k8s-device-plugin image from v0.18.1 to v0.18.2 ([#22531](https://github.com/kubernetes/minikube/pull/22531))
25+
* Addon registry: Update registry image from 3.0.0 to 3.0.0 ([#22593](https://github.com/kubernetes/minikube/pull/22593))
26+
* Addon Volcano: Update volcano images from v1.13.1 to v1.14.0 ([#22597](https://github.com/kubernetes/minikube/pull/22597))
27+
* Addon Volcano: Update volcano images from v1.14.0 to v1.14.1 ([#22663](https://github.com/kubernetes/minikube/pull/22663))
28+
* Addon yakd: Update manusa/yakd image from 0.0.7 to 0.0.8 ([#22639](https://github.com/kubernetes/minikube/pull/22639))
29+
* HA (multi-control plane): Update kube-vip from v1.0.3 to v1.0.4 ([#22598](https://github.com/kubernetes/minikube/pull/22598))
30+
31+
## CNI
32+
33+
* CNI: Update cilium from v1.18.6 to v1.19.0 ([#22636](https://github.com/kubernetes/minikube/pull/22636))
34+
* CNI: Update flannel from v0.27.4 to v0.28.1 ([#22635](https://github.com/kubernetes/minikube/pull/22635))
35+
* CNI: Update kindnetd from v20251212-v0.29.0-alpha-105-g20ccfc88 to v20260131-0806d083 ([#22594](https://github.com/kubernetes/minikube/pull/22594))
36+
* CNI: Update kindnetd from v20260131-0806d083 to v20260213-ea8e5717 ([#22661](https://github.com/kubernetes/minikube/pull/22661))
37+
For a more detailed changelog, including changes occurring in pre-release versions, see [CHANGELOG.md](https://github.com/kubernetes/minikube/blob/master/CHANGELOG.md).
38+
39+
Thank you to our contributors for this release!
40+
41+
- Bob Sira
42+
- Mateusz Łoskot
43+
- Medya Ghazizadeh
44+
- minikube-bot
45+
- Rachel Rice
46+
47+
Thank you to our PR reviewers for this release!
48+
49+
- nirs (8 comments)
50+
- wt (5 comments)
51+
- medyagh (2 comments)
52+
- mloskot (2 comments)
53+
54+
Thank you to our triage members for this release!
55+
56+
- nirs (8 comments)
57+
- sleonov (5 comments)
58+
- afbjorklund (4 comments)
59+
- medyagh (4 comments)
60+
- saschpe (3 comments)
61+
62+
Check out our [contributions leaderboard](https://minikube.sigs.k8s.io/docs/contrib/leaderboard/v1.38.1/) for this release!
63+
364
## Version 1.38.0 - 2026-01-28
465

566
## Higlight

Makefile

Lines changed: 1 addition & 1 deletion
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 ?= 38
18-
VERSION_BUILD ?= 0
18+
VERSION_BUILD ?= 1
1919
RAW_VERSION=$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_BUILD)
2020
VERSION ?= v$(RAW_VERSION)
2121

hack/release_notes.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ recent_date=$(git log -1 --format=%as $recent)
3939

4040
go run hack/changelog/changelog.go
4141

42-
echo ""
42+
4343
echo "For a more detailed changelog, including changes occurring in pre-release versions, see [CHANGELOG.md](https://github.com/kubernetes/minikube/blob/master/CHANGELOG.md)."
4444
echo ""
4545

0 commit comments

Comments
 (0)