We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35752a3 commit 6083968Copy full SHA for 6083968
2 files changed
CHANGELOG.md
@@ -31,6 +31,11 @@
31
- test(testscript): add API testscript runner with per-scenario resource lifecycle #804
32
- test(testscript): make PTY inputs deterministic via event-driven @wait: synchronisation #804
33
34
+### Breaking changes
35
+
36
+- refacto(compute): display instance type memory using an IEC size instead of an SI size #818
37
38
39
## 1.93.0
40
41
### Features
cmd/compute/instance_type/instance_type_list.go
@@ -48,7 +48,7 @@ func (o *instanceTypeListOutput) ToTable() {
48
cols = append(
49
cols,
50
fmt.Sprint(p.CPUs),
51
- humanize.Bytes(uint64(p.Memory)),
+ humanize.IBytes(uint64(p.Memory)),
52
fmt.Sprint(p.Authorized),
53
)
54
}
0 commit comments