Skip to content

Commit

Permalink
release v0.25.14 (#1385)
Browse files Browse the repository at this point in the history
  • Loading branch information
derailed authored Dec 17, 2021
1 parent fdc638c commit 306e4f2
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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.25.13
VERSION ?= v0.25.14
IMG_NAME := derailed/k9s
IMAGE := ${IMG_NAME}:${VERSION}

Expand Down
27 changes: 27 additions & 0 deletions change_logs/release_v0.25.14.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<img src="https://raw.githubusercontent.com/derailed/k9s/master/assets/k9s_small.png" align="right" width="200" height="auto"/>

# Release v0.25.14

## 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)

---

## Maintenance Release!

Doh! Hot fix on the way...

---

## Resolved Issues

* [Issue #1384](https://github.com/derailed/k9s/issues/1384) Leaving Logs View Causes Crash: "panic: send on closed channel"

---

<img src="https://raw.githubusercontent.com/derailed/k9s/master/assets/imhotep_logo.png" width="32" height="auto"/> © 2021 Imhotep Software LLC. All materials licensed under [Apache v2.0](http://www.apache.org/licenses/LICENSE-2.0)
6 changes: 4 additions & 2 deletions internal/dao/pod.go
Original file line number Diff line number Diff line change
Expand Up @@ -391,12 +391,14 @@ func readLogs(ctx context.Context, stream io.ReadCloser, c LogChan, opts *LogOpt
}
}
select {
case <-ctx.Done():
close(c)
return
case c <- item:
if item.IsError {
close(c)
return
}
case <-ctx.Done():
return
}
}
}
Expand Down
4 changes: 0 additions & 4 deletions internal/view/log.go
Original file line number Diff line number Diff line change
Expand Up @@ -225,10 +225,6 @@ func (l *Log) Stop() {
l.cancelFn()
l.cancelFn = nil
}
if l.logChan != nil {
close(l.logChan)
l.logChan = nil
}
}
l.mx.Unlock()
l.app.Styles.RemoveListener(l)
Expand Down

0 comments on commit 306e4f2

Please sign in to comment.