From 29e1e77ce9d7c7c65239939da74d0345fc99c038 Mon Sep 17 00:00:00 2001 From: denyeart Date: Wed, 22 Jul 2020 11:24:36 -0400 Subject: [PATCH] Release commit for v1.4.8 (#1625) Changelog, doc, and script updates for v1.4.8 release Signed-off-by: David Enyeart --- CHANGELOG.md | 19 +++++++++++++++++++ docs/source/install.rst | 4 ++-- docs/source/whatsnew.rst | 1 + release_notes/v1.4.8.md | 2 +- scripts/bootstrap.sh | 6 +++--- 5 files changed, 26 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ae1f3dc0a45..2ad18db716d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,22 @@ +## v1.4.8 +Wed Jul 22 09:23:53 EDT 2020 + +* [112c6d9](https://github.com/hyperledger/fabric/commit/112c6d9) Add release notes for v1.4.8 +* [ae1395b](https://github.com/hyperledger/fabric/commit/ae1395b) Tag built docker images with BASE_VERSION and TWO_DIGIT_VERSION +* [81f32de](https://github.com/hyperledger/fabric/commit/81f32de) Fix latest tag on ccenv +* [caf5b56](https://github.com/hyperledger/fabric/commit/caf5b56) Raft: Check suspect info once per suspect interval (#1602) +* [66349cc](https://github.com/hyperledger/fabric/commit/66349cc) Print channel name in learnAnchorPeers +* [a7eb1f7](https://github.com/hyperledger/fabric/commit/a7eb1f7) [FAB-18043](https://jira.hyperledger.org/browse/FAB-18043) Correct the code comments (#1530) +* [34294ad](https://github.com/hyperledger/fabric/commit/34294ad) Only canonize ECDSA signatures in MSP:IsWellFormed (#1495) +* [c2ea18f](https://github.com/hyperledger/fabric/commit/c2ea18f) Bump Go to 1.13.12 and Third-Party Images to 0.4.21 (#1492) +* [d34fd05](https://github.com/hyperledger/fabric/commit/d34fd05) Fix wrong link sampleconfig +* [4a193ed](https://github.com/hyperledger/fabric/commit/4a193ed) Set http header entries before writing header +* [9d2258c](https://github.com/hyperledger/fabric/commit/9d2258c) Update gotools mockery path for release-1.4 (#1417) +* [65e7353](https://github.com/hyperledger/fabric/commit/65e7353) [FAB-17161](https://jira.hyperledger.org/browse/FAB-17161) improve error message +* [52ee947](https://github.com/hyperledger/fabric/commit/52ee947) Fix the installed binary list in the document +* [877cadd](https://github.com/hyperledger/fabric/commit/877cadd) [DocUpdate] configtxlator decode/common.ConfigUpdate +* [38b40b5](https://github.com/hyperledger/fabric/commit/38b40b5) Prepare for Fabric v1.4.8 release + ## v1.4.7 Thu May 14 12:56:18 EDT 2020 diff --git a/docs/source/install.rst b/docs/source/install.rst index 75a9e61e4c0..fd50cc19e27 100644 --- a/docs/source/install.rst +++ b/docs/source/install.rst @@ -48,12 +48,12 @@ the binaries and images. .. note:: If you want a specific release, pass a version identifier for Fabric, Fabric-ca and thirdparty Docker images. - The command below demonstrates how to download **Fabric v1.4.7** + The command below demonstrates how to download **Fabric v1.4.8** .. code:: bash curl -sSL http://bit.ly/2ysbOFE | bash -s -- - curl -sSL http://bit.ly/2ysbOFE | bash -s -- 1.4.7 1.4.7 0.4.21 + curl -sSL http://bit.ly/2ysbOFE | bash -s -- 1.4.8 1.4.7 0.4.21 .. note:: If you get an error running the above curl command, you may have too old a version of curl that does not handle diff --git a/docs/source/whatsnew.rst b/docs/source/whatsnew.rst index 56db780cc7e..c546646fe50 100644 --- a/docs/source/whatsnew.rst +++ b/docs/source/whatsnew.rst @@ -181,6 +181,7 @@ with a link to the full release change log. * `Fabric v1.4.5 release notes `_. * `Fabric v1.4.6 release notes `_. * `Fabric v1.4.7 release notes `_. +* `Fabric v1.4.8 release notes `_. * `Fabric CA v1.4.0 release notes `_. * `Fabric CA v1.4.1 release notes `_. * `Fabric CA v1.4.2 release notes `_. diff --git a/release_notes/v1.4.8.md b/release_notes/v1.4.8.md index e1a2c1df127..c3639b3df71 100644 --- a/release_notes/v1.4.8.md +++ b/release_notes/v1.4.8.md @@ -1,4 +1,4 @@ -v1.4.8 Release Notes - July 21, 2020 +v1.4.8 Release Notes - July 22, 2020 ==================================== Fixes diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index c0a326d1499..7045abbb3ba 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -6,7 +6,7 @@ # # if version not passed in, default to latest released version -export VERSION=1.4.7 +export VERSION=1.4.8 # if ca version not passed in, default to latest released version export CA_VERSION=1.4.7 # current version of thirdparty images (couchdb, kafka and zookeeper) released @@ -23,8 +23,8 @@ printHelp() { echo "-s : bypass fabric-samples repo clone" echo "-b : bypass download of platform-specific binaries" echo - echo "e.g. bootstrap.sh 1.4.7 -s" - echo "would download docker images and binaries for version 1.4.7" + echo "e.g. bootstrap.sh 1.4.8 -s" + echo "would download docker images and binaries for version 1.4.8" } dockerFabricPull() {