Skip to content
This repository has been archived by the owner on Jan 19, 2023. It is now read-only.

Commit

Permalink
release 0.23 (#2712)
Browse files Browse the repository at this point in the history
* release 0.23

Signed-off-by: Wayne Witzel III <[email protected]>
  • Loading branch information
wwitzel3 committed Aug 2, 2021
1 parent b847c12 commit fbe2be3
Show file tree
Hide file tree
Showing 17 changed files with 63 additions and 36 deletions.
45 changes: 25 additions & 20 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,28 +1,32 @@
## Development release:
* [Unreleased Changes][0]

- [Unreleased Changes][0]

## Current release:
* [CHANGELOG-0.22.md][22]

- [CHANGELOG-0.23.md][23]

## Older releases:
* [CHANGELOG-0.21.md][21]
* [CHANGELOG-0.20.md][20]
* [CHANGELOG-0.19.md][19]
* [CHANGELOG-0.18.md][18]
* [CHANGELOG-0.17.md][17]
* [CHANGELOG-0.16.md][16]
* [CHANGELOG-0.15.md][15]
* [CHANGELOG-0.14.md][14]
* [CHANGELOG-0.13.md][13]
* [CHANGELOG-0.12.md][12]
* [CHANGELOG-0.11.md][11]
* [CHANGELOG-0.10.md][10]
* [CHANGELOG-0.9.md][9]
* [CHANGELOG-0.8.md][8]
* [CHANGELOG-0.7.md][7]
* [CHANGELOG-0.6.md][6]
* [CHANGELOG-0.5.md][5]
* [CHANGELOG-0.4.md][4]

- [CHANGELOG-0.22.md][22]
- [CHANGELOG-0.21.md][21]
- [CHANGELOG-0.20.md][20]
- [CHANGELOG-0.19.md][19]
- [CHANGELOG-0.18.md][18]
- [CHANGELOG-0.17.md][17]
- [CHANGELOG-0.16.md][16]
- [CHANGELOG-0.15.md][15]
- [CHANGELOG-0.14.md][14]
- [CHANGELOG-0.13.md][13]
- [CHANGELOG-0.12.md][12]
- [CHANGELOG-0.11.md][11]
- [CHANGELOG-0.10.md][10]
- [CHANGELOG-0.9.md][9]
- [CHANGELOG-0.8.md][8]
- [CHANGELOG-0.7.md][7]
- [CHANGELOG-0.6.md][6]
- [CHANGELOG-0.5.md][5]
- [CHANGELOG-0.4.md][4]

[0]: https://github.com/vmware-tanzu/octant/blob/master/changelogs/unreleased
[4]: https://github.com/vmware-tanzu/octant/blob/master/changelogs/CHANGELOG-0.4.md
Expand All @@ -44,3 +48,4 @@
[20]: https://github.com/vmware-tanzu/octant/blob/master/changelogs/CHANGELOG-0.20.md
[21]: https://github.com/vmware-tanzu/octant/blob/master/changelogs/CHANGELOG-0.21.md
[22]: https://github.com/vmware-tanzu/octant/blob/master/changelogs/CHANGELOG-0.22.md
[23]: https://github.com/vmware-tanzu/octant/blob/master/changelogs/CHANGELOG-0.23.md
2 changes: 1 addition & 1 deletion build.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import (
)

var (
VERSION = "v0.22.0"
VERSION = "v0.23.0"
GOPATH = os.Getenv("GOPATH")
GIT_COMMIT = gitCommit()
BUILD_TIME = time.Now().UTC().Format(time.RFC3339)
Expand Down
34 changes: 34 additions & 0 deletions changelogs/CHANGELOG-0.23.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
## v0.23.0

#### 2021-08-02

### Download

- https://github.com/vmware-tanzu/octant/releases/v0.23.0

### Highlights

- Go Plugin API now can use `SendEvent`.
- Custom Resources will show conditions table if conditions are found.
- Resources now show their status as well as phase.
- Lots of improvements to object status.

### Bug Fixes

- Fixed issue with --namespace-list not adding namespaces list. (#2259, @wwitzel3)
- Fixed panic when viewing objects with no owner reference in applications view (#2650, @GuessWhoSamFoo)

### All Changes

- Added termination threshold (#1408, @lenriquez)
- Added `PVC` to object status (#2641, @ftovaro)
- Added Octant route history dropdown and updated page title (#2580, @xtreme-vikram-yadav)
- Changed node view to use object tables (#2665, @GuessWhoSamFoo)
- Added conditions table automatically to overview summary. (#489, @wwitzel3)
- Added `SendEvent` for go plugins (#2691, @GuessWhoSamFoo)
- Added status column to Pod list (#201, @ftovaro)
- Fixed issue with --namespace-list not adding namespaces list. (#2259, @wwitzel3)
- Fixed panic when viewing objects with no owner reference in applications view (#2650, @GuessWhoSamFoo)
- Fixed `ObjectStatusResponse` to update resource viewer and object tables (#2651, @GuessWhoSamFoo)
- Fixed issues preventing complex custom resource viewer graphs from being displayed in TypeScript-based plugins (#2669 @liamrathke)
- Fixed form select not sending changes on Submit (#2623, @lenriquez)
1 change: 0 additions & 1 deletion changelogs/unreleased/1408-lenriquez

This file was deleted.

1 change: 0 additions & 1 deletion changelogs/unreleased/201-ftovaro

This file was deleted.

1 change: 0 additions & 1 deletion changelogs/unreleased/2259-wwitzel3

This file was deleted.

1 change: 0 additions & 1 deletion changelogs/unreleased/2580-xtreme-vikram-yadav

This file was deleted.

1 change: 0 additions & 1 deletion changelogs/unreleased/2623-lenriquez

This file was deleted.

1 change: 0 additions & 1 deletion changelogs/unreleased/2641-ftovaro

This file was deleted.

1 change: 0 additions & 1 deletion changelogs/unreleased/2650-GuessWhoSamFoo

This file was deleted.

1 change: 0 additions & 1 deletion changelogs/unreleased/2651-GuessWhoSamFoo

This file was deleted.

1 change: 0 additions & 1 deletion changelogs/unreleased/2665-GuessWhoSamFoo

This file was deleted.

1 change: 0 additions & 1 deletion changelogs/unreleased/2669-liamrathke

This file was deleted.

1 change: 0 additions & 1 deletion changelogs/unreleased/2691-GuessWhoSamFoo

This file was deleted.

1 change: 0 additions & 1 deletion changelogs/unreleased/489-wwitzel3

This file was deleted.

2 changes: 1 addition & 1 deletion web/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "octant",
"description": "Octant is an extensible platform that provides modules that help developers better understand their Kuberenetes resources.",
"author": "The Octant Team",
"version": "0.22.0",
"version": "0.23.0",
"homepage": "https://octant.dev",
"repository": {
"type": "git",
Expand Down Expand Up @@ -156,4 +156,4 @@
"xmlhttprequest-ssl": "^1.6.1",
"yargs-parser": "^18.1.2"
}
}
}

0 comments on commit fbe2be3

Please sign in to comment.