diff --git a/build.go b/build.go index 310eadd78b..dc785303c9 100644 --- a/build.go +++ b/build.go @@ -19,7 +19,7 @@ import ( ) var ( - VERSION = "v0.10.0" + VERSION = "v0.10.1" GOPATH = os.Getenv("GOPATH") GIT_COMMIT = gitCommit() BUILD_TIME = time.Now().UTC().Format(time.RFC3339) diff --git a/changelogs/CHANGELOG-0.10.md b/changelogs/CHANGELOG-0.10.md index 3ca92c1945..67013b5b00 100644 --- a/changelogs/CHANGELOG-0.10.md +++ b/changelogs/CHANGELOG-0.10.md @@ -1,4 +1,23 @@ -- [v0.10.0](#v010) +- [v0.10.1](#v0101) +- [v0.10.0](#v0100) + +## v0.10.1 +#### 2020-01-30 + +### Download + - https://github.com/vmware/octant/releases/tag/v0.10.1 + +### All Changes + * Fixed error type assertion for AccessError. (#562, @wwitzel3) + * Fixed Workload navigation on Windows (#568, @wwitzel3) + * Added status column to pod conditions (#569, @bryanl) + * Fixed workload view failure if pod metrics are not available for a pod (#572, @bryanl) + * Fixed typo on GO111MODULE in build script's goInstall() (#574, @ilayaperumalg) + * Added a backoff strategy for objectstore access (#579, @wwitzel3) + * Removed extra pod log view (#585, @bryanl) + * Fixed CRD watcher race condition (#588, @GuessWhoSamFoo) + * Added cluster client reload when kubeconfig changes (#591, @bryanl) + * Disabled CircleCI builds (#603, @bryanl) ## v0.10.0 #### 2020-01-22 diff --git a/changelogs/unreleased/562-wwitzel3 b/changelogs/unreleased/562-wwitzel3 deleted file mode 100644 index 7f9124c893..0000000000 --- a/changelogs/unreleased/562-wwitzel3 +++ /dev/null @@ -1 +0,0 @@ -Fix error type assertion for AccessError. diff --git a/changelogs/unreleased/568-wwitzel3 b/changelogs/unreleased/568-wwitzel3 deleted file mode 100644 index 7bf410852d..0000000000 --- a/changelogs/unreleased/568-wwitzel3 +++ /dev/null @@ -1 +0,0 @@ -fix Workload navigation on Windows diff --git a/changelogs/unreleased/569-bryanl b/changelogs/unreleased/569-bryanl deleted file mode 100644 index 947ebe3066..0000000000 --- a/changelogs/unreleased/569-bryanl +++ /dev/null @@ -1 +0,0 @@ -Add status column to pod conditions diff --git a/changelogs/unreleased/572-bryanl b/changelogs/unreleased/572-bryanl deleted file mode 100644 index 2224fd83f5..0000000000 --- a/changelogs/unreleased/572-bryanl +++ /dev/null @@ -1 +0,0 @@ -bug fix: don't fail if pod metrics are not available for a pod (they are not available instantly) diff --git a/changelogs/unreleased/574-ilayaperumalg b/changelogs/unreleased/574-ilayaperumalg deleted file mode 100644 index e47b754d1d..0000000000 --- a/changelogs/unreleased/574-ilayaperumalg +++ /dev/null @@ -1 +0,0 @@ -Fix typo on GO111MODULE in build script's goInstall() diff --git a/changelogs/unreleased/579-wwitzel3 b/changelogs/unreleased/579-wwitzel3 deleted file mode 100644 index e5ded7e081..0000000000 --- a/changelogs/unreleased/579-wwitzel3 +++ /dev/null @@ -1,7 +0,0 @@ -Implements a backoff strategy for objectstore access. - -We have introduced a backoff strategy for the Dynamic Cache. Upon making a -request that requires some form of access to an object (Get, List, Update, Watch, Delete) -we check if the client has access to perform that action. If we are denied access -we create a backoff entry for the GVK the action was requested for. This backoff entry -will cause further calls to be a NOOP while the backoff is in effect. diff --git a/changelogs/unreleased/585-bryanl b/changelogs/unreleased/585-bryanl deleted file mode 100644 index fff77e751b..0000000000 --- a/changelogs/unreleased/585-bryanl +++ /dev/null @@ -1 +0,0 @@ -Regression: remove extra pod log view diff --git a/changelogs/unreleased/588-GuessWhoSamFoo b/changelogs/unreleased/588-GuessWhoSamFoo deleted file mode 100644 index 7d4c4984a2..0000000000 --- a/changelogs/unreleased/588-GuessWhoSamFoo +++ /dev/null @@ -1 +0,0 @@ -Fixed CRD watcher race condition diff --git a/changelogs/unreleased/588-bryanl b/changelogs/unreleased/588-bryanl deleted file mode 100644 index 0bfb57bda6..0000000000 --- a/changelogs/unreleased/588-bryanl +++ /dev/null @@ -1 +0,0 @@ -Disabling CircleCI builds diff --git a/changelogs/unreleased/591-bryanl b/changelogs/unreleased/591-bryanl deleted file mode 100644 index 08b258ced9..0000000000 --- a/changelogs/unreleased/591-bryanl +++ /dev/null @@ -1 +0,0 @@ -Reload cluster client when kubeconfig changes