From 3abbfede85183eca0b8057d34f20988dd4295048 Mon Sep 17 00:00:00 2001 From: derailed Date: Sun, 24 Dec 2023 11:20:21 -0700 Subject: [PATCH] Release docs + rebase fixes --- Makefile | 2 +- change_logs/release_v0.30.1.md | 57 +++++++++++++++++++++++++++++++ internal/ui/dialog/prompt.go | 3 ++ internal/ui/dialog/prompt_test.go | 8 +++-- internal/view/node.go | 1 + 5 files changed, 68 insertions(+), 3 deletions(-) create mode 100644 change_logs/release_v0.30.1.md diff --git a/Makefile b/Makefile index 06dfb4c1cd..29f751e9e8 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ DATE ?= $(shell TZ=UTC date -j -f "%s" ${SOURCE_DATE_EPOCH} +"%Y-%m-%dT%H: else DATE ?= $(shell date -u -d @${SOURCE_DATE_EPOCH} +"%Y-%m-%dT%H:%M:%SZ") endif -VERSION ?= v0.30.0 +VERSION ?= v0.30.1 IMG_NAME := derailed/k9s IMAGE := ${IMG_NAME}:${VERSION} diff --git a/change_logs/release_v0.30.1.md b/change_logs/release_v0.30.1.md new file mode 100644 index 0000000000..a983a8d424 --- /dev/null +++ b/change_logs/release_v0.30.1.md @@ -0,0 +1,57 @@ + + +# Release v0.30.1 + +## Notes + +Thank you to all that contributed with flushing out issues and enhancements for K9s! +I'll try to mark some of these issues as fixed. But if you don't mind grab the latest rev +and see if we're happier with some of the fixes! +If you've filed an issue please help me verify and close. + +Your support, kindness and awesome suggestions to make K9s better are, as ever, very much noted and appreciated! +Also big thanks to all that have allocated their own time to help others on both slack and on this repo!! + +As you may know, K9s is not pimped out by corps with deep pockets, thus if you feel K9s is helping your Kubernetes journey, +please consider joining our [sponsorship program](https://github.com/sponsors/derailed) and/or make some noise on social! [@kitesurfer](https://twitter.com/kitesurfer) + +On Slack? Please join us [K9slackers](https://join.slack.com/t/k9sers/shared_invite/enQtOTA5MDEyNzI5MTU0LWQ1ZGI3MzliYzZhZWEyNzYxYzA3NjE0YTk1YmFmNzViZjIyNzhkZGI0MmJjYzhlNjdlMGJhYzE2ZGU1NjkyNTM) + +## 🎄 Maintenance Release! 🎄 + +🎵 `On The twentyfouth day of Christmas my true love gave to me... Bugs!!` 🎵 + +Got to love the aftermath... Thank you all for pitch'in in and help flesh out bugs!! The gift that keeps on... giving? + +🎅 Merry Christmas to all and Best wishes for the new year!!🧑‍🎄 + +--- + +### Videos Are In The Can! + +Please dial [K9s Channel](https://www.youtube.com/channel/UC897uwPygni4QIjkPCpgjmw) for up coming content... + +* [K9s v0.30.0 Sneak peek](https://youtu.be/mVBc1XneRJ4) +* [Vulnerability Scans](https://youtu.be/ULkl0MsaidU) + +--- + +## Resolved Issues + +* [#2368](https://github.com/derailed/k9s/issues/2368) Pod CPU and MEM columns are empty in 0.30.0 +* [#2367](https://github.com/derailed/k9s/issues/2367) k9s 0.30.0 issue loading plugins +* [#2366](https://github.com/derailed/k9s/issues/2366) List pods of deployment is now impossible +* [#2264](https://github.com/derailed/k9s/issues/2264) k9s 0.30.0 fields and values missed in action in the "namespace view" +* [#2263](https://github.com/derailed/k9s/issues/2263) Default 0.30.0 default skin on macOS is no good + +--- + +## Contributed PRs + +Please be sure to give `Big Thanks!` and `ATTA Girls/Boys!` to all the fine contributors for making K9s better for all of us!! + +* [#2360](https://github.com/derailed/k9s/pull/2360) adding cancelable launch prompts to NodeShell + +--- + + © 2023 Imhotep Software LLC. All materials licensed under [Apache v2.0](http://www.apache.org/licenses/LICENSE-2.0) diff --git a/internal/ui/dialog/prompt.go b/internal/ui/dialog/prompt.go index 622ae4a991..8232d2d215 100644 --- a/internal/ui/dialog/prompt.go +++ b/internal/ui/dialog/prompt.go @@ -1,3 +1,6 @@ +// SPDX-License-Identifier: Apache-2.0 +// Copyright Authors of K9s + package dialog import ( diff --git a/internal/ui/dialog/prompt_test.go b/internal/ui/dialog/prompt_test.go index 7d4ade05fa..a5a7c0229a 100644 --- a/internal/ui/dialog/prompt_test.go +++ b/internal/ui/dialog/prompt_test.go @@ -1,14 +1,18 @@ +// SPDX-License-Identifier: Apache-2.0 +// Copyright Authors of K9s + package dialog import ( "context" + "testing" + "time" + "github.com/derailed/k9s/internal/config" "github.com/derailed/k9s/internal/ui" "github.com/derailed/tcell/v2" "github.com/derailed/tview" "github.com/stretchr/testify/assert" - "testing" - "time" ) func TestShowPrompt(t *testing.T) { diff --git a/internal/view/node.go b/internal/view/node.go index 636031953d..c5a14b932c 100644 --- a/internal/view/node.go +++ b/internal/view/node.go @@ -14,6 +14,7 @@ import ( "github.com/derailed/k9s/internal/ui" "github.com/derailed/k9s/internal/ui/dialog" "github.com/derailed/tcell/v2" + "github.com/rs/zerolog/log" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" )