From 1e913fff3ae87b7bd2e17b3ca6fb8dc70e8a5995 Mon Sep 17 00:00:00 2001 From: "kalle (jag)" <2477952+applejag@users.noreply.github.com> Date: Mon, 11 Mar 2024 12:39:42 +0100 Subject: [PATCH] Update to Go v1.22.1 (#85) * Update to Go v1.22.1 * Updated CHANGELOG.md --- CHANGELOG.md | 5 +++++ go.mod | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 70749ca..07ce520 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,6 +28,11 @@ This project tries to follow [SemVer 2.0.0](https://semver.org/). for denial of service in net/http, and [GO-2023-2185](https://pkg.go.dev/vuln/GO-2023-2185) for insecure parsing of Windows paths with a `\??\` prefix. (#72) +- Changed to Go 1.22.1 to stay up to date, but also to resolve + vulnerabilities [GO-2024-2600](https://pkg.go.dev/vuln/GO-2024-2600), + [GO-2024-2599](https://pkg.go.dev/vuln/GO-2024-2599), + and [GO-2024-2598](https://pkg.go.dev/vuln/GO-2024-2598). (#85) + ## v0.5.1 (2023-11-11) - Fixes `--watch-kubeconfig` to reading a kubeconfig that has not yet been diff --git a/go.mod b/go.mod index 271c0ce..fc8bd76 100644 --- a/go.mod +++ b/go.mod @@ -4,7 +4,7 @@ module github.com/applejag/kubectl-klock -go 1.21.5 +go 1.22.1 require ( github.com/charmbracelet/bubbles v0.18.0