-
Notifications
You must be signed in to change notification settings - Fork 144
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Matthew B White <whitemat@uk.ibm.com> Change-Id: I1e77b81ea9488047f1ba64f6ee222c054fc573dc
- Loading branch information
Showing
23 changed files
with
134 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
steps: | ||
- script: | | ||
env | sort | ||
VERSION=$(jq '.version' $(Build.SourcesDirectory)/package.json | sed -r "s/\"([0-9]?[0-9]\.[0-9]?[0-9]\.[0-9]?[0-9]).*/\1/") | ||
echo Current version in code is :${VERSION}: | ||
echo "##vso[task.setvariable variable=PACKAGE_VERSION;isOutput=true]${VERSION}" | ||
name: BuildData | ||
displayName: 'Build data' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
v2.0.0-beta, 12 December 2019 | ||
----------------------------- | ||
|
||
Release Notes | ||
------------- | ||
The main change in the v2.0.0 beta is the level of NodeJS runtime has moved up to the latest LTS version of v12.13.0 | ||
v2.0.0 beta has the fixes from v1.4.4 level. | ||
|
||
Migration Notes | ||
--------------- | ||
Note that a change needed to be made to the metadata schema as it was in error; it had diverged from the JSONSchema standard | ||
so that it was not possible to validate complex objects. | ||
|
||
If you have custom metadata defined in the contract, then for the complex objects defined in the 'components' section | ||
the properties of this object where previously held as array; they now need to be held as a map with the key as the name | ||
of the property | ||
|
||
Return types on functions where returned as an array of schema objects. this has been modified to be a single object. i.e. | ||
the single value array is now just a single value. | ||
|
||
There is also a new nodeenv docker image that is used for hosting the chaincode rather than use the baseos image as in V1.4 | ||
|
||
In v1.4, the fabric-contract-api had a dependency on the fabric-shim. This has changed in this version to have a dependency | ||
on the new fabric-shim-api module. This allows the fabric-contract-api to be used client side for annotations. | ||
|
||
For contributors, the v2.0.0 repo is built using rush and is organized as a full mono-repo. | ||
|
||
The @Object annotation has been deprecated in favour of the @DataType annotation | ||
|
||
The x509 library used for parsing has changed; this should be parse the X509 certificates exactly the same way; this is a note that | ||
differences are observed in the parsed certificates please raise an issue. | ||
|
||
Summary of the programming model | ||
------------------------------- | ||
|
||
This is designed to improve developer productivity and ease of use. | ||
For more information see https://hyperledger-fabric.readthedocs.io/en/developapps/developing_applications.html | ||
|
||
Known Vulnerabilities | ||
--------------------- | ||
none | ||
|
||
Resolved Vulnerabilities | ||
------------------------ | ||
none | ||
|
||
Known Issues & Workarounds | ||
-------------------------- | ||
none | ||
|
||
Change Log | ||
---------- | ||
https://github.com/hyperledger/fabric-chaincode-node/blob/release-1.4/CHANGELOG.md#v141 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters