Skip to content

Commit 4100248

Browse files
committed
Release 1.4.5
Signed-off-by: Matthew B White <[email protected]>
1 parent 2b5f33a commit 4100248

File tree

3 files changed

+44
-2
lines changed

3 files changed

+44
-2
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## v1.4.5
2+
Thu 16 Jan 16:16:48 GMT 2020
3+
4+
* [bc99f73](https://github.com/hyperledger/fabric-chaincode-java/commit/bc99f73) [FABCJ-259](https://jira.hyperledger.org/browse/FABCJ-259) Pagination Fix
5+
* [8fc5763](https://github.com/hyperledger/fabric-chaincode-java/commit/8fc5763) Maven build in batch mode
6+
* [4f03935](https://github.com/hyperledger/fabric-chaincode-java/commit/4f03935) [FAB-17100](https://jira.hyperledger.org/browse/FAB-17100) Default Thread Pool not set correctly
7+
* [5ff847e](https://github.com/hyperledger/fabric-chaincode-java/commit/5ff847e) [FAB-17078](https://jira.hyperledger.org/browse/FAB-17078) Update version number
8+
19
## v1.4.4
210
Mon 11 Nov 15:57:05 GMT 2019
311

release_notes/v1.4.5.txt

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
v1.4.5 16 January 2020
2+
----------------------------
3+
4+
Release Notes
5+
-------------
6+
7+
The work in this release has been primarily the move to github, Azure Pipelines
8+
and artifactory
9+
10+
The main fix is to correct set the default values of the internal thread pools
11+
(https://jira.hyperledger.org/browse/FAB-17100)
12+
13+
14+
For more information on the Contract Programming Model please
15+
see https://hyperledger-fabric.readthedocs.io/en/developapps/developing_applications.html
16+
17+
baseimage version: 0.4.15
18+
Java version: openjdk version "1.8.0_181"
19+
20+
Known Vulnerabilities
21+
---------------------
22+
none
23+
24+
Resolved Vulnerabilities
25+
------------------------
26+
none
27+
28+
Known Issues & Workarounds
29+
--------------------------
30+
none
31+
Change Log
32+
----------
33+
https://github.com/hyperledger/fabric-chaincode-java/blob/release-1.4/CHANGELOG.md#v145

scripts/changelog.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,10 @@
66
#
77

88

9-
echo "## $2\n$(date)" >> CHANGELOG.new
9+
echo "## $2" >> CHANGELOG.new
10+
echo "$(date)" >> CHANGELOG.new
1011
echo "" >> CHANGELOG.new
11-
git log $1..HEAD --oneline | grep -v Merge | sed -e "s/\[\(FAB-[0-9]*\)\]/\[\1\](https:\/\/jira.hyperledger.org\/browse\/\1\)/" -e "s/ \(FAB-[0-9]*\)/ \[\1\](https:\/\/jira.hyperledger.org\/browse\/\1\)/" -e "s/\([0-9|a-z]*\)/* \[\1\](https:\/\/github.com\/hyperledger\/fabric-chaincode-java\/commit\/\1)/" >> CHANGELOG.new
12+
git log $1..HEAD --oneline | grep -v Merge | sed -e "s/\[\(FAB.*-[0-9]*\)\]/\[\1\](https:\/\/jira.hyperledger.org\/browse\/\1\)/" -e "s/ \(FAB.*-[0-9]*\)/ \[\1\](https:\/\/jira.hyperledger.org\/browse\/\1\)/" -e "s/\([0-9|a-z]*\)/* \[\1\](https:\/\/github.com\/hyperledger\/fabric-chaincode-java\/commit\/\1)/" >> CHANGELOG.new
1213
echo "" >> CHANGELOG.new
1314
cat CHANGELOG.md >> CHANGELOG.new
1415
mv -f CHANGELOG.new CHANGELOG.md

0 commit comments

Comments
 (0)