From a9ede22134ad68e7841b88294fd87328895b4604 Mon Sep 17 00:00:00 2001 From: derailed Date: Tue, 29 Jun 2021 08:30:52 -0600 Subject: [PATCH] add rel notes --- Dockerfile | 2 +- Makefile | 2 +- change_logs/release_v0.24.12.md | 42 +++++++++++++++++++++++++++++++++ 3 files changed, 44 insertions(+), 2 deletions(-) create mode 100644 change_logs/release_v0.24.12.md diff --git a/Dockerfile b/Dockerfile index a93bd4b8..cd2b57e1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # ----------------------------------------------------------------------------- # The base image for building the k9s binary -FROM golang:1.16.5-alpine3.14.0 AS build +FROM golang:1.16.5-alpine3.13 AS build WORKDIR /k9s COPY go.mod go.sum main.go Makefile ./ diff --git a/Makefile b/Makefile index cb722f4d..52ca571b 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ PACKAGE := github.com/derailed/$(NAME) GIT_REV ?= $(shell git rev-parse --short HEAD) SOURCE_DATE_EPOCH ?= $(shell date +%s) DATE ?= $(shell date -u -d @${SOURCE_DATE_EPOCH} +"%Y-%m-%dT%H:%M:%SZ") -VERSION ?= v0.24.11 +VERSION ?= v0.24.12 IMG_NAME := derailed/k9s IMAGE := ${IMG_NAME}:${VERSION} diff --git a/change_logs/release_v0.24.12.md b/change_logs/release_v0.24.12.md new file mode 100644 index 00000000..ac90c791 --- /dev/null +++ b/change_logs/release_v0.24.12.md @@ -0,0 +1,42 @@ + + +# Release v0.24.12 + +## 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! + +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) + +## Prompt GOT Styles! + +Added a new configuration for styling your command/search prompts. So you can now specify foreground/background and suggestion color to your heart content. For example: + +```yaml +# $HOME/.k9s/skin.yml +k9s: + body: + fgColor: aqua + bgColor: black + logoColor: purple + # Prompt styles + prompt: + fgColor: blue + bgColor: black + suggestColor: orange + ... +``` + +--- + +## Resolved Issues + +* [Issue #1169](https://github.com/derailed/k9s/issues/1169) Scaling last deployment errors out +* [Issue #1167](https://github.com/derailed/k9s/issues/1167) Cronjob trigger busted +* [Issue #1163](https://github.com/derailed/k9s/issues/1163) Color for autocomplete text + +--- + + © 2020 Imhotep Software LLC. All materials licensed under [Apache v2.0](http://www.apache.org/licenses/LICENSE-2.0)