Compare commits

...

No commits in common. "c8-stream-rhel8" and "c9" have entirely different histories.

7 changed files with 220 additions and 193 deletions

4
.gitignore vendored
View File

@ -1,2 +1,2 @@
SOURCES/go1.20.12-2-openssl-fips.tar.gz SOURCES/go1.21.9-1-openssl-fips.tar.gz
SOURCES/go1.20.12.tar.gz SOURCES/go1.21.9.tar.gz

View File

@ -1,2 +1,2 @@
f57205df5fc5d2e0392ca39c795c6d60d22f0c80 SOURCES/go1.20.12-2-openssl-fips.tar.gz 1162b641e8b23110eaab7496003585ea6c786158 SOURCES/go1.21.9-1-openssl-fips.tar.gz
6d5bc127443fc42b1af8d9ba4115abe18554feb7 SOURCES/go1.20.12.tar.gz 54c038c82c82ebe2ad4ee2d0a3d7c4d39809f59a SOURCES/go1.21.9.tar.gz

View File

@ -1,13 +1,13 @@
diff --git a/src/cmd/dist/test.go b/src/cmd/dist/test.go diff --git a/src/cmd/dist/test.go b/src/cmd/dist/test.go
index 9f26606..2408505 100644 index 36a20e8b2a..8c2dd1b44b 100644
--- a/src/cmd/dist/test.go --- a/src/cmd/dist/test.go
+++ b/src/cmd/dist/test.go +++ b/src/cmd/dist/test.go
@@ -1259,7 +1259,7 @@ func (t *tester) registerCgoTests() { @@ -1125,7 +1125,7 @@ func (t *tester) registerCgoTests(heading string) {
} else { } else {
panic("unknown linkmode with static build: " + linkmode) panic("unknown linkmode with static build: " + linkmode)
} }
- gt.tags = append(gt.tags, "static") - gt.tags = append(gt.tags, "static")
+ gt.tags = append(gt.tags, "static", "no_openssl") + gt.tags = append(gt.tags, "static", "no_openssl")
} }
gt.ldflags = strings.Join(ldflags, " ")
t.registerTest("cgo:"+name, "../misc/cgo/test", gt, opts...)

View File

@ -0,0 +1,22 @@
From eab9004c072200e58df83ab94678bda1faa7b229 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Alejandro=20S=C3=A1ez?= <asm@redhat.com>
Date: Fri, 9 Feb 2024 20:06:16 +0100
Subject: [PATCH] Set GOTOOLCHAIN to local
---
go.env | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/go.env b/go.env
index 6ff2b921d4..e87f6e7b6d 100644
--- a/go.env
+++ b/go.env
@@ -9,4 +9,4 @@ GOSUMDB=sum.golang.org
# Automatically download newer toolchains as directed by go.mod files.
# See https://go.dev/doc/toolchain for details.
-GOTOOLCHAIN=auto
+GOTOOLCHAIN=local
--
2.43.0

View File

@ -1,15 +0,0 @@
diff --git a/src/crypto/rsa/pkcs1v15_test.go b/src/crypto/rsa/pkcs1v15_test.go
index 0853178e3a..16eb37734b 100644
--- a/src/crypto/rsa/pkcs1v15_test.go
+++ b/src/crypto/rsa/pkcs1v15_test.go
@@ -247,6 +247,10 @@ func TestVerifyPKCS1v15(t *testing.T) {
}
func TestOverlongMessagePKCS1v15(t *testing.T) {
+ // OpenSSL now returns a random string instead of an error
+ if boring.Enabled() {
+ t.Skip("Not relevant in boring mode")
+ }
ciphertext := decodeBase64("fjOVdirUzFoLlukv80dBllMLjXythIf22feqPrNo0YoIjzyzyoMFiLjAc/Y4krkeZ11XFThIrEvw\nkRiZcCq5ng==")
_, err := DecryptPKCS1v15(nil, rsaPrivateKey, ciphertext)
if err == nil {

View File

@ -56,7 +56,7 @@
%endif %endif
# Controls what ever we fail on failed tests # Controls what ever we fail on failed tests
%ifarch x86_64 %{arm} aarch64 ppc64le s390x %ifarch x86_64 %{arm} ppc64le s390x
%global fail_on_tests 1 %global fail_on_tests 1
%else %else
%global fail_on_tests 0 %global fail_on_tests 0
@ -69,6 +69,7 @@
%global shared 0 %global shared 0
%endif %endif
# Pre build std lib with -race enabled
# Disabled due to 1.20 new cache usage, see 1.20 upstream release notes # Disabled due to 1.20 new cache usage, see 1.20 upstream release notes
%global race 0 %global race 0
@ -91,14 +92,14 @@
%global gohostarch s390x %global gohostarch s390x
%endif %endif
%global go_api 1.20 %global go_api 1.21
%global version 1.20.12 %global go_version 1.21.9
%global pkg_release 2 %global version %{go_version}
%global pkg_release 1
Name: golang Name: golang
Version: %{version} Version: %{version}
Release: 8%{?dist} Release: 2%{?dist}
Summary: The Go Programming Language Summary: The Go Programming Language
# source tree includes several copies of Mark.Twain-Tom.Sawyer.txt under Public Domain # source tree includes several copies of Mark.Twain-Tom.Sawyer.txt under Public Domain
License: BSD and Public Domain License: BSD and Public Domain
@ -110,7 +111,7 @@ Source0: https://github.com/golang/go/archive/refs/tags/go%{version}.tar.
# located at https://github.com/golang-fips/openssl-fips, # located at https://github.com/golang-fips/openssl-fips,
# And pre-genetated patches to set up the module for a given # And pre-genetated patches to set up the module for a given
# Go release are located at https://github.com/golang-fips/go. # Go release are located at https://github.com/golang-fips/go.
Source1: https://github.com/golang-fips/go/archive/refs/tags/go%{version}-%{pkg_release}-openssl-fips.tar.gz Source1: https://github.com/golang-fips/go/archive/refs/tags/go%{version}-%{pkg_release}-openssl-fips.tar.gz
# make possible to override default traceback level at build time by setting build tag rpm_crashtraceback # make possible to override default traceback level at build time by setting build tag rpm_crashtraceback
Source2: fedora.go Source2: fedora.go
@ -137,17 +138,17 @@ Requires: %{name}-src = %{version}-%{release}
Requires: openssl-devel Requires: openssl-devel
Requires: diffutils Requires: diffutils
# Proposed patch by jcajka https://golang.org/cl/86541 # Proposed patch by jcajka https://golang.org/cl/86541
Patch221: fix_TestScript_list_std.patch Patch221: fix_TestScript_list_std.patch
Patch222: skip-test-overlong-message.patch Patch229: fix-memleak-setupRSA.patch
Patch1939923: skip_test_rhbz1939923.patch Patch1939923: skip_test_rhbz1939923.patch
Patch2: disable_static_tests_part1.patch # Disables libc static linking tests which
Patch3: disable_static_tests_part2.patch # are incompatible with dlopen in golang-fips
Patch2: disable_static_tests_part1.patch
Patch229: fix-memleak-rsa-ecdh.patch Patch3: disable_static_tests_part2.patch
Patch4: modify_go.env.patch
# Having documentation separate was broken # Having documentation separate was broken
Obsoletes: %{name}-docs < 1.1-4 Obsoletes: %{name}-docs < 1.1-4
@ -155,7 +156,7 @@ Obsoletes: %{name}-docs < 1.1-4
# RPM can't handle symlink -> dir with subpackages, so merge back # RPM can't handle symlink -> dir with subpackages, so merge back
Obsoletes: %{name}-data < 1.1.1-4 Obsoletes: %{name}-data < 1.1.1-4
# We don't build golang-race anymore, rhbz#2230599 # We don't build golang-race anymore, rhbz#2230705
Obsoletes: golang-race < 1.20.0 Obsoletes: golang-race < 1.20.0
# These are the only RHEL/Fedora architectures that we compile this package for # These are the only RHEL/Fedora architectures that we compile this package for
@ -238,16 +239,25 @@ Requires: %{name} = %{version}-%{release}
%{summary} %{summary}
%endif %endif
%package -n go-toolset
Summary: Package that installs go-toolset
Requires: %{name} = %{version}-%{release}
%ifarch x86_64 aarch64 ppc64le
Requires: delve
%endif
%description -n go-toolset
This is the main package for go-toolset.
%prep %prep
%setup -q -n go-go%{version} %setup -q -n go-go%{version}
pushd .. pushd ..
tar -xf %{SOURCE1} tar -xf %{SOURCE1}
popd popd
patch -p1 < ../go-go%{version}-%{pkg_release}-openssl-fips/patches/000-initial-setup.patch
for patch in ../go-go%{version}-%{pkg_release}-openssl-fips/patches/*.patch; do patch -p1 < ../go-go%{version}-%{pkg_release}-openssl-fips/patches/001-initial-openssl-for-fips.patch
patch -p1 < "${patch}" patch -p1 < ../go-go%{version}-%{pkg_release}-openssl-fips/patches/002-strict-fips-runtime-detection.patch
done
# Configure crypto tests # Configure crypto tests
pushd ../go-go%{version}-%{pkg_release}-openssl-fips pushd ../go-go%{version}-%{pkg_release}-openssl-fips
@ -255,16 +265,9 @@ ln -s ../go-go%{version} go
./scripts/configure-crypto-tests.sh ./scripts/configure-crypto-tests.sh
popd popd
%patch2 -p1 %autopatch -p1
%patch3 -p1
%patch221 -p1
%patch222 -p1
%patch229 -p1
%patch1939923 -p1
sed -i '1s/$/ (%{?rhel:Red Hat} %{version}-%{release})/' VERSION
cp %{SOURCE2} ./src/runtime/ cp %{SOURCE2} ./src/runtime/
@ -335,7 +338,7 @@ rm -rf pkg/bootstrap/bin
# install everything into libdir (until symlink problems are fixed) # install everything into libdir (until symlink problems are fixed)
# https://code.google.com/p/go/issues/detail?id=5830 # https://code.google.com/p/go/issues/detail?id=5830
cp -apv api bin doc lib pkg src misc test VERSION \ cp -apv api bin doc lib pkg src misc test go.env VERSION \
$RPM_BUILD_ROOT%{goroot} $RPM_BUILD_ROOT%{goroot}
# bz1099206 # bz1099206
@ -378,7 +381,7 @@ pushd $RPM_BUILD_ROOT%{goroot}
echo "%%{goroot}/$file" >> $shared_list echo "%%{goroot}/$file" >> $shared_list
echo "%%{golibdir}/$(basename $file)" >> $shared_list echo "%%{golibdir}/$(basename $file)" >> $shared_list
done done
find pkg/*_dynlink/ -type d -printf '%%%dir %{goroot}/%p\n' >> $shared_list find pkg/*_dynlink/ -type d -printf '%%%dir %{goroot}/%p\n' >> $shared_list
find pkg/*_dynlink/ ! -type d -printf '%{goroot}/%p\n' >> $shared_list find pkg/*_dynlink/ ! -type d -printf '%{goroot}/%p\n' >> $shared_list
%endif %endif
@ -452,18 +455,16 @@ export GO_TEST_RUN=""
%if %{fail_on_tests} %if %{fail_on_tests}
# TestEd25519Vectors needs network connectivity but it should be cover by
# this test https://pkgs.devel.redhat.com/cgit/tests/golang/tree/Regression/internal-testsuite/runtest.sh#n127
./run.bash --no-rebuild -v -v -v -k $GO_TEST_RUN ./run.bash --no-rebuild -v -v -v -k $GO_TEST_RUN
# Run tests with FIPS enabled. # Run tests with FIPS enabled.
export GOLANG_FIPS=1 export GOLANG_FIPS=1
export OPENSSL_FORCE_FIPS_MODE=1
pushd crypto pushd crypto
# Run all crypto tests but skip TLS, we will run FIPS specific TLS tests later # Run all crypto tests but skip TLS, we will run FIPS specific TLS tests later
go test $(go list ./... | grep -v tls) -v go test -timeout 50m $(go list ./... | grep -v tls) -v
# Check that signature functions have parity between boring and notboring # Check that signature functions have parity between boring and notboring
CGO_ENABLED=0 go test $(go list ./... | grep -v tls) -v CGO_ENABLED=0 go test -timeout 50m $(go list ./... | grep -v tls) -v
popd popd
# Run all FIPS specific TLS tests # Run all FIPS specific TLS tests
pushd crypto/tls pushd crypto/tls
@ -520,60 +521,99 @@ cd ..
%files -f go-pkg.list bin %files -f go-pkg.list bin
%{_bindir}/go %{_bindir}/go
%{_bindir}/gofmt %{_bindir}/gofmt
%{goroot}/go.env
%if %{shared} %if %{shared}
%files -f go-shared.list shared %files -f go-shared.list shared
%endif %endif
%files -n go-toolset
%changelog %changelog
* Wed Apr 10 2024 David Benoit <dbenoit@redhat.com> - 1.20.12-8 * Mon Apr 15 2024 David Benoit <dbenoit@redhat.com> - 1.21.9-2
- Update sources file - Rebuilt for z-stream
- Related: RHEL-27928 - Related: RHEL-24312
- Related: RHEL-28940
* Tue Apr 09 2024 David Benoit <dbenoit@redhat.com> - 1.20.12-7 * Fri Apr 5 2024 Archana Ravindar <aravinda@redhat.com> - 1.21.9-1
- Fix CVE-2024-1394 - Fix CVE-2024-1394
- Resolves: RHEL-27928
* Mon Apr 08 2024 Derek Parker <deparker@redhat.com> - 1.20.12-6
- Fix CVE-2023-45288 - Fix CVE-2023-45288
- Resolves: RHEL-31914 - Resolves RHEL-24312
- Resolves RHEL-28940
* Wed Dec 13 2023 David Benoit <dbenoit@redhat.com> - 1.20.12-2 * Fri Feb 09 2024 Alejandro Sáez <asm@redhat.com> - 1.21.7-1
- Fix sources file - Rebase to Go 1.21.7
- Related: RHEL-19231 - Set GOTOOLCHAIN to local
- Resolves: RHEL-24334
- Resolves: RHEL-18364
- Resolves: RHEL-18365
* Tue Dec 12 2023 David Benoit <dbenoit@redhat.com> - 1.20.12-1 * Thu Nov 30 2023 Alejandro Sáez <asm@redhat.com> - 1.21.4-2
- Update to Go 1.20.12 - Add release information
- Fix CVE-2023-39326
- Resolves: RHEL-19231
* Fri Oct 13 2023 David Benoit <dbenoit@redhat.com> - 1.20.10-1 * Tue Nov 14 2023 Alejandro Sáez <asm@redhat.com> - 1.21.4-1
- Update to Go 1.20.10 - Rebase to Go 1.21.4
- Fix CVE-2023-39325 - Resolves: RHEL-11871
- Midstream patches
- Resolves: RHEL-12619
* Mon Aug 14 2023 Alejandro Sáez <asm@redhat.com> - 1.20.6-2 * Wed Nov 08 2023 David Benoit <dbenoit@redhat.com> - 1.21.3-5
- Don't change GOPROXY/GOSUMDB
- Related: RHEL-12624
* Thu Nov 02 2023 David Benoit <dbenoit@redhat.com> - 1.21.3-4
- Fix missing go.env in Go 1.21
- Related: RHEL-12624
* Tue Oct 31 2023 Archana Ravindar <aravinda@redhat.com> - 1.21.3-3
- Add missing strict fips runtime detection patch
- Temporarily disable FIPS tests on aarch64 due to builder kernel bugs
- Related: RHEL-12624
* Wed Oct 25 2023 Archana Ravindar <aravinda@redhat.com> - 1.21.3-2
- Rebase disable_static_tests_part2.patch to Go 1.21.3
- Related: RHEL-12624
* Fri Oct 20 2023 Archana Ravindar <aravinda@redhat.com> - 1.21.3-1
- Rebase to Go 1.21.3
- Resolves: RHEL-12624
* Wed Sep 27 2023 Alejandro Sáez <asm@redhat.com> - 1.20.8-1
- Rebase to Go 1.20.8
- Remove fix-memory-leak-evp-sign-verify.patch as it is already included in the source
- Resolves: RHEL-2775
* Mon Aug 14 2023 Alejandro Sáez <asm@redhat.com> - 1.20.6-5
- Retire golang-race package - Retire golang-race package
- Resolves: rhbz#2230599 - Resolves: rhbz#2230705
* Tue Jul 25 2023 Alejandro Sáez <asm@redhat.com> - 1.20.6-1 * Tue Jul 18 2023 Alejandro Sáez <asm@redhat.com> - 1.20.6-1
- Rebase to Go 1.20.6 - Rebase to Go 1.20.6
- Resolves: rhbz#2217596 - Change to autopatch
- Resolves: rhbz#2222313
* Fri Jun 23 2023 Alejandro Sáez <asm@redhat.com> - 1.20.4-3
- Increase the timeout in the tests
- Related: rhbz#2204477
* Fri Jun 09 2023 Carl George <carl@redhat.com> - 1.20.4-2
- Add go-toolset subpackage to ensure golang and go-toolset are published together
- Resolves: rhbz#2117248
* Mon May 29 2023 Alejandro Sáez <asm@redhat.com> - 1.20.4-1 * Mon May 29 2023 Alejandro Sáez <asm@redhat.com> - 1.20.4-1
- Rebase to Go 1.20.4 - Rebase to Go 1.20.4
- Resolves: rhbz#2204474 - Resolves: rhbz#2204477
* Tue Apr 11 2023 David Benoit <dbenoit@redhat.com> - 1.20.3-1 * Tue Apr 11 2023 David Benoit <dbenoit@redhat.com> - 1.20.3-1
- Rebase to Go 1.20.3 - Rebase to Go 1.20.3
- Remove race archives - Remove race archives
- Update static tests patches - Update static test patches
- Resolves: rhbz#2185260 - Resolves: rhbz#2185259
* Tue Jan 3 2023 David Benoit <dbenoit@redhat.com> - 1.19.4-2 * Wed Mar 01 2023 David Benoit <dbenoit@redhat.com> - 1.19.6-1
- Fix memory leaks in EVP_{sign,verify}_raw - Rebase to Go 1.19.6
- Resolves: rhbz#2132767 - Resolves: rhbz#2174429
- Fix memory leak
- Resolves: rhbz#2157602
- Enable tests in check phase
* Wed Dec 21 2022 David Benoit <dbenoit@redhat.com> - 1.19.4-1 * Wed Dec 21 2022 David Benoit <dbenoit@redhat.com> - 1.19.4-1
- Rebase to Go 1.19.4 - Rebase to Go 1.19.4
@ -581,150 +621,130 @@ cd ..
- Remove defunct patches - Remove defunct patches
- Remove downstream generated FIPS mode patches - Remove downstream generated FIPS mode patches
- Add golang-fips/go as the source for FIPS mode patches - Add golang-fips/go as the source for FIPS mode patches
- Resolves: rhbz#2144542 - Resolves: rhbz#2144539
* Mon Oct 17 2022 David Benoit <dbenoit@redhat.com> - 1.19.2-4 * Wed Nov 30 2022 David Benoit <dbenoit@redhat.com> - 1.19.2-2
- Enable big endian support in FIPS mode - Fix endian issue in FIPS mode
- Resolves: rhbz#1969844 - Resolves: rhbz#1966992
* Mon Oct 17 2022 David Benoit <dbenoit@redhat.com> - 1.19.2-3 * Fri Oct 21 2022 David Benoit <dbenoit@redhat.com> - 1.19.2-1
- Restore old HashSign/HashVerify API - Update go to version 1.19.2
- Resolves: rhbz#2132730 - Resolves: rhbz#2134407
* Mon Oct 17 2022 David Benoit <dbenoit@redhat.com> - 1.19.2-2
- Add support for 4096 bit keys in x509
- Resolves: rhbz#2132694
* Thu Oct 13 2022 David Benoit <dbenoit@redhat.com> - 1.19.2-1
- Rebase to Go 1.19.2
- Resolves: rhbz#2132730
* Wed Sep 14 2022 David Benoit <dbenoit@redhat.com> - 1.19.1-2 * Wed Sep 14 2022 David Benoit <dbenoit@redhat.com> - 1.19.1-2
- Rebase to Go 1.19.1 - Rebase to Go 1.19.1
- Resolves: rhbz#2131026 - Temporarily disable crypto tests
- Resolves: rhbz#2131028
* Wed Aug 03 2022 Alejandro Sáez <asm@redhat.com> - 1.18.4-2 * Wed Aug 10 2022 Alejandro Sáez <asm@redhat.com> - 1.18.4-2
- Adds patch for PIE mode issues on PPC64LE - Update to Go 1.18.4
- Resolves: rhbz#2111593 - Resolves: rhbz#2109180
- Deprecates keys smaller than 2048 bits in TestDecryptOAEP in boring mode
* Wed Jul 20 2022 David Benoit <dbenoit@redhat.com> - 1.18.4-1 * Fri Aug 05 2022 Alejandro Sáez <asm@redhat.com> - 1.18.4-1
- Update Go to version 1.18.4 - Update to Go 1.18.4
- Resolves: rhbz#2109179 - Resolves: rhbz#2109180
* Wed Jul 20 2022 David Benoit <dbenoit@redhat.com> - 1.18.2-3 * Fri Jun 10 2022 David Benoit <dbenoit@redhat.com> - 1.18.2-2
- Clean up dist-git patches - Update deprecated openssl algorithms patch
- Resolves: rhbz#2109175 - Rebuild against openssl-3.0.1-33
- Resolves: rhbz#2092136
- Related: rhbz#2092016
* Thu Jul 07 2022 Alejandro Sáez <asm@redhat.com> - 1.18.2-2 * Mon May 02 2022 David Benoit <dbenoit@redhat.com> - 1.18.2-1
- Bump up release version - Rebase to Go 1.18.2
- Related: rhbz#2075162 - Move to github.com/golang-fips/go
- Resolves: rhbz#2075169
- Resolves: rhbz#2060769
- Resolves: rhbz#2067531
- Resolves: rhbz#2067536
- Resolves: rhbz#2067552
- Resolves: rhbz#2025637
* Thu Jun 16 2022 David Benoit <dbenoit@redhat.com> - 1.18.2-1 * Mon Dec 13 2021 Alejandro Sáez <asm@redhat.com> - 1.17.5-1
- Update to Go 1.18.2
- Related: rhbz#2075162
* Mon Apr 18 2022 David Benoit <dbenoit@redhat.com> - 1.18.0-2
- Enable SHA1 in some contexts
- Related: rhbz#2075162
* Wed Apr 13 2022 David Benoit <dbenoit@redhat.com> - 1.18.0-1
- Update Go to 1.18.0
- Resolves: rhbz#2075162
* Thu Feb 17 2022 David Benoit <dbenoit@redhat.com> - 1.17.7-1
- Rebase to Go 1.17.7
- Remove fips memory leak patch (fixed in tree)
- Resolves: rhbz#2015930
* Fri Dec 10 2021 David Benoit <dbenoit@redhat.com> - 1.17.5-1
- Rebase to Go 1.17.5 - Rebase to Go 1.17.5
- Remove vdso_s390x_gettime patch
- Resolves: rhbz#2031112
- Related: rhbz#2028570
* Fri Dec 03 2021 David Benoit <dbenoit@redhat.com> - 1.17.4-1
- Rebase Go to 1.17.4
- Add remove_waitgroup_misuse_tests patch - Add remove_waitgroup_misuse_tests patch
- Related: rhbz#2014088 - Add remove_ed25519vectors_test.patch
- Resolves: rhbz#2028570 - Remove FIPS checks to avoid issues in the CI
- Resolves: rhbz#2022828 - Related: rhbz#2031116
- Resolves: rhbz#2024686 - Resolves: rhbz#2022829
- Resolves: rhbz#2028662 - Resolves: rhbz#2024687
- Resolves: rhbz#2030851
- Resolves: rhbz#2031253
* Wed Oct 27 2021 Alejandro Sáez <asm@redhat.com> - 1.17.2-2 * Wed Nov 03 2021 Alejandro Sáez <asm@redhat.com> - 1.17.2-1
- Resolves: rhbz#2014704
* Tue Oct 12 2021 Alejandro Sáez <asm@redhat.com> - 1.17.2-1
- Rebase to Go 1.17.2 - Rebase to Go 1.17.2
- Related: rhbz#2014088 - Related: rhbz#2014087
- Remove golang-1.15-warnCN.patch
- Remove reject-leading-zeros.patch
- Remove favicon.ico and robots.txt references - Remove favicon.ico and robots.txt references
- Exclude TestEd25519Vectors test - Exclude TestEd25519Vectors test
- Update patch rhbz1952381
- Remove rhbz1904567 patch
- Remove rhbz1939923 patch
* Tue Aug 17 2021 David Benoit <dbenoit@redhat.com> - 1.16.7-1 * Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 1.16.6-4
- Rebase to Go 1.16.7 - Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
- Resolves: rhbz#1994079 Related: rhbz#1991688
- Add reject leading zeros patch
- Resolves: rhbz#1993314
* Wed Jul 21 2021 Derek Parker <deparker@redhat.com> - 1.16.6-2 * Wed Aug 4 2021 Derek Parker <deparker@redhat.com> - 1.16.6-3
- Fix TestBoringServerCurves failure when run by itself - Include ppc64le VDSO segfault backport fix
- Resolves: rhbz#1976168 - Resolves: rhbz#1966622
* Thu Jul 15 2021 David Benoit <dbenoit@redhat.com> - 1.16.6-1 * Mon Aug 2 2021 Derek Parker <deparker@redhat.com> - 1.16.6-2
- Rebase to go-1.16.6-1-openssl-fips - Bump release
- Resolves: rhbz#1982281 - Resolves: rhbz#1904567
- Addresses CVE-2021-34558
* Tue Jul 06 2021 Alejandro Sáez <asm@redhat.com> - 1.16.5-1 * Mon Aug 2 2021 Derek Parker <deparker@redhat.com> - 1.16.6-2
- Rebase to 1.16.5 - Backport fix allowing LTO to be enabled on cgo sources
- Removes rhbz#1955032 patch, it's already included in this release - Resolves: rhbz#1904567
- Removes rhbz#1956891 patch, it's already included in this release
- Related: rhbz#1979677
- Related: rhbz#1968738
- Related: rhbz#1972420
* Thu Jun 17 2021 David Benoit <dbenoit@redhat.com> - 1.16.4-3 * Tue Jul 20 2021 Derek Parker <deparker@redhat.com> - 1.16.6-1
- Fix zero-size allocation memory leak. - Rebase to 1.16.6
- Related: rhbz#1951877 - Resolves: rhbz#1984124
- Replace symbols no longer present in OpenSSL 3.0 ABI
- Resolves: rhbz#1984110
- Fix TestBoringServerCurves failing when ran by itself
- Resolves: rhbz#1977914
* Tue Jun 08 2021 David Benoit <dbenoit@redhat.com> - 1.16.4-2 * Tue Jun 22 2021 Mohan Boddu <mboddu@redhat.com> - 1.16.4-3
- Resolves: rhbz#1951877 - Rebuilt for RHEL 9 BETA for openssl 3.0
Related: rhbz#1971065
* Mon May 24 2021 Alejandro Sáez <asm@redhat.com> - 1.16.4-1 * Fri May 28 2021 David Benoit <dbenoit@redhat.com> - 1.16.4-2
- Rebase to go-1.16.4-1-openssl-fips - Port to OpenSSL 3.0
- Resolves: rhbz#1952381
* Tue May 04 2021 Alejandro Sáez <asm@redhat.com> - 1.16.1-3 * Fri May 14 2021 Alejandro Sáez <asm@redhat.com> - 1.16.4-1
- Resolves: rhbz#1956891 - Rebase to 1.16.4
- Resolves: rhbz#1955035
- Resolves: rhbz#1957961
* Thu Apr 29 2021 Alejandro Sáez <asm@redhat.com> - 1.16.1-2 * Thu Apr 15 2021 Mohan Boddu <mboddu@redhat.com> - 1.16.1-3
- Resolves: rhbz#1955032 - Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
* Wed Mar 17 2021 Alejandro Sáez <asm@redhat.com> - 1.16.1-1 * Tue Mar 30 2021 Alejandro Sáez <asm@redhat.com> - 1.16.1-2
- Rebase to go-1.16.1-2-openssl-fips
- Resolves: rhbz#1922455
* Tue Mar 30 2021 Alejandro Sáez <asm@redhat.com> - 1.16.1-1
- Rebase to go-1.16.1-2-openssl-fips - Rebase to go-1.16.1-2-openssl-fips
- Resolves: rhbz#1938071
- Adds a workaround for rhbz#1939923 - Adds a workaround for rhbz#1939923
- Removes Patch224, it's on upstream -> rhbz#1888673 - Removes Patch224, it's on upstream -> rhbz#1888673
- Removes Patch225, it's on upstream -> https://go-review.googlesource.com/c/text/+/238238 - Removes Patch225, it's on upstream -> https://go-review.googlesource.com/c/text/+/238238
- Removes old patches for cleaning purposes - Removes old patches for cleaning purposes
- Related: rhbz#1942898
* Fri Jan 22 2021 David Benoit <dbenoit@redhat.com> - 1.15.7-1 * Fri Jan 22 2021 David Benoit <dbenoit@redhat.com> - 1.15.7-1
- Rebase to 1.15.7 - Rebase to 1.15.7
- Resolves: rhbz#1870531 - Resolves: rhbz#1892207
- Resolves: rhbz#1919261 - Resolves: rhbz#1918755
* Tue Nov 24 2020 David Benoit <dbenoit@redhat.com> - 1.15.5-1 * Tue Nov 24 2020 David Benoit <dbenoit@redhat.com> - 1.15.5-1
- Rebase to 1.15.5 - Rebase to 1.15.5
- Resolves: rhbz#1898652 - Resolves: rhbz#1899184
- Resolves: rhbz#1898660 - Resolves: rhbz#1899185
- Resolves: rhbz#1898649 - Resolves: rhbz#1899186
* Mon Nov 16 2020 David Benoit <dbenoit@redhat.com> - 1.15.3-2 * Thu Nov 12 2020 David Benoit <dbenoit@redhat.com> - 1.15.3-2
- fix typo in patch file name
- Related: rhbz#1881539
* Thu Nov 12 2020 David Benoit <dbenoit@redhat.com> - 1.15.3-1
- Rebase to 1.15.3 - Rebase to 1.15.3
- fix x/text infinite loop - fix x/text infinite loop
- Resolves: rhbz#1881539 - Resolves: rhbz#1881539