Skip to content

Commit ef3f95e

Browse files
committed
Release 4.2.1
1 parent 8a3cdb3 commit ef3f95e

File tree

5 files changed

+28
-7
lines changed

5 files changed

+28
-7
lines changed

CHANGELOG.md

+21
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
## [4.2.1](https://github.com/project-codeflare/codeflare-cli/compare/v4.2.0...v4.2.1) (2023-04-01)
2+
3+
### Bug Fixes
4+
5+
- add `codeflare dump path` to print out location of files ([dac71c1](https://github.com/project-codeflare/codeflare-cli/commit/dac71c1a080bf0b28adb29bca55f562f60f9f2f5))
6+
- add gpu stats to dashboard ([f315efc](https://github.com/project-codeflare/codeflare-cli/commit/f315efcc3ec5b9bacc7a3db294aa9f0e43cf82c0))
7+
- also accept `codeflare db` ([c6c18d9](https://github.com/project-codeflare/codeflare-cli/commit/c6c18d97d40df0e1fce78c912b77087440fbec1f))
8+
- bump store to pick up fix for installing arm32 kubectl on arm64 systems ([3fa32c4](https://github.com/project-codeflare/codeflare-cli/commit/3fa32c4627444deb7fb6e312cb31d2b6aea6d4e5))
9+
- bump [email protected] to pick up fix for formatting issue in gpu stream ([4700ef4](https://github.com/project-codeflare/codeflare-cli/commit/4700ef4bf08536f9f0dfe5662038385707d63c34))
10+
- bump [email protected] to pick up env.json capture ([38536df](https://github.com/project-codeflare/codeflare-cli/commit/38536df1595e9fb5b35543e7c740e87ba8c13f16))
11+
- codeflare dashboard -1 was not working ([c8e33c9](https://github.com/project-codeflare/codeflare-cli/commit/c8e33c97242f7b072c95f140b84dc2232120fa45))
12+
- codeflare dump should support -f/--follow ([e925f53](https://github.com/project-codeflare/codeflare-cli/commit/e925f5334283b7734176deaaa849f1e998d4893c))
13+
- dashboard should not show gpu grids for runs not using gpus ([8a3cdb3](https://github.com/project-codeflare/codeflare-cli/commit/8a3cdb397000af60e02e2abc3cfca171ed78ca44))
14+
- improve grid legend 'mem' -> 'Memory' ([9a76acc](https://github.com/project-codeflare/codeflare-cli/commit/9a76acc6885a444415c23d6fd9dde6150a632a7e))
15+
- increase min grid size from 2 to 6 ([cd17bbb](https://github.com/project-codeflare/codeflare-cli/commit/cd17bbb0573af4cc3d5052f6318d5e1f021985d6))
16+
- pull in improved gpu utilization format from [email protected] ([f94cfc2](https://github.com/project-codeflare/codeflare-cli/commit/f94cfc206ffaeb114044c183583b4a71f3250b96))
17+
- support arranging dashboard grids into rows ([bf8d1f5](https://github.com/project-codeflare/codeflare-cli/commit/bf8d1f502af0bb94f5bd0016b4269eb87de10938))
18+
- update dashboard grid to use space-between rather than space-around for grid-of-grids row ([0c4c94c](https://github.com/project-codeflare/codeflare-cli/commit/0c4c94cb2584c9c565670fad9e59dd4f7f4ec17d))
19+
- update dashboard to support pod Evicted state ([605cdb8](https://github.com/project-codeflare/codeflare-cli/commit/605cdb88cd95d4d5fffaee0c3f34a0b2cded464a))
20+
- use colorbrewer theme for status ([3d79c2f](https://github.com/project-codeflare/codeflare-cli/commit/3d79c2f6874be06a3b5826f840056206147916e5))
21+
122
# [4.2.0](https://github.com/project-codeflare/codeflare-cli/compare/v4.1.0...v4.2.0) (2023-03-31)
223

324
### Bug Fixes

Casks/codeflare.rb

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
cask "codeflare" do
2-
version "4.2.0"
2+
version "4.2.1"
33

44
name "CodeFlare"
55
desc "CLI for Project CodeFlare"
66
homepage "https://github.com/project-codeflare/codeflare-cli"
77

88
if Hardware::CPU.intel?
99
url "https://github.com/project-codeflare/codeflare-cli/releases/download/v#{version}/CodeFlare-darwin-x64.tar.bz2"
10-
sha256 "165d652a18403aa191136a1ef32c503d2a09d3a485f76980069cedac03b5ab22"
10+
sha256 "09805383bfbdc0398a4253426c0cba5851a782966f50b1bd0928b42bf09f2081"
1111
app "CodeFlare-darwin-x64/CodeFlare.app"
1212
else
1313
url "https://github.com/project-codeflare/codeflare-cli/releases/download/v#{version}/CodeFlare-darwin-arm64.tar.bz2"
14-
sha256 "da703538fe10da1b722fa0ef49ff93640076d19e067372fd19e1749b8921c070"
14+
sha256 "cfbb1153d943aac2d303411b85ce4ead338ea478969cd5cd901812538c6e8c57"
1515
app "CodeFlare-darwin-arm64/CodeFlare.app"
1616
end
1717

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "CodeFlare.app",
3-
"version": "4.2.0",
3+
"version": "4.2.1",
44
"description": "",
55
"main": "dist/headless/codeflare.min.js",
66
"scripts": {

plugins/plugin-client-default/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@kui-shell/plugin-client",
3-
"version": "4.2.0",
3+
"version": "4.2.1",
44
"description": "Kui plugin that offers client defintion",
55
"main": "dist/headless/codeflare.min.js",
66
"module": "mdist/index.js",

0 commit comments

Comments
 (0)