From 18c28a0470be3fc3554478eccd11ab6a81dd3601 Mon Sep 17 00:00:00 2001 From: Jason Harper Date: Thu, 17 Aug 2023 15:19:11 -0700 Subject: [PATCH] changes for 2.7.2 release to fix compability of Go and Excelize (#183) --- RELEASE_NOTES | 10 ++++++++++ builder/Dockerfile | 2 +- version.txt | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/RELEASE_NOTES b/RELEASE_NOTES index 34d7506..a14d803 100644 --- a/RELEASE_NOTES +++ b/RELEASE_NOTES @@ -7,6 +7,16 @@ Fully Supported Platforms - Operating Systems: Ubuntu 16.04, 18.04, 20.04, 22.04, CentOS 7, Amazon Linux 2, Debian 11, RHEL 9, Rocky Linux 8 Note: svr-info may work on other micro-architectures and Linux distributions, but has not been thoroughly tested +2.7.2 +Features Added +- None +Bugs Fixed +- Corrupt Excel reports in svr-info version 2.7.1 caused by incompatibility between Go 1.21 and Excelize package. Reverting to Go 1.20.7. +Known Issues +- The storage micro-benchmark may not run on CentOS due to OS locale settings. +- CPU cache sizes are reported in aggregate on Ubuntu 20.04 and newer. +- DRAM population and CPU frequencies may not be accurate on some public cloud IaaS VMs. + 2.7.1 Features Added - None diff --git a/builder/Dockerfile b/builder/Dockerfile index cc91b5e..0a142a5 100644 --- a/builder/Dockerfile +++ b/builder/Dockerfile @@ -26,7 +26,7 @@ RUN cp /usr/local/lib/libz.a /usr/lib/x86_64-linux-gnu/libz.a RUN curl -s https://gitlab.com/akihe/radamsa/uploads/a2228910d0d3c68d19c09cee3943d7e5/radamsa-0.6.c.gz | gzip -d | cc -O2 -x c -o /usr/local/bin/radamsa - # Install Go -ARG GO_VERSION="1.21.0" +ARG GO_VERSION="1.20.7" RUN wget https://go.dev/dl/go${GO_VERSION}.linux-amd64.tar.gz RUN tar -C /usr/local -xzf go${GO_VERSION}.linux-amd64.tar.gz RUN rm go${GO_VERSION}.linux-amd64.tar.gz diff --git a/version.txt b/version.txt index 5588ae8..fbafd6b 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.7.1 \ No newline at end of file +2.7.2 \ No newline at end of file