Jim Green
Jim Green

Reputation: 1118

What is main difference between hyperledge Fabric 0.6、1.0 and 1.1 version?

What is the main goal to modify fabric source code from 0.6 version to 1.1? what is the most important change logs ? Architecture? Please describe or provide some important reference!

Upvotes: 0

Views: 646

Answers (1)

christo4ferris
christo4ferris

Reputation: 4037

Each release is accompanied by changelog entries linking to the JIRA issues closed (representing every commit), and we also publish release notes in two places: on the GitHub repositories (fabric, fabric-ca, fabric-sdk-node, fabric-sdk-java, fabric-chaincode-node) and in the documentation that uplevel to a more human accessible description of the major new features or changes.

tl;dr: v0.6 -> v1.0.0 was a major re-architecture of the consensus model and added support for channels. v1.1.0 -> v1.1.0 is a series of performance and scale improvements, added support for Javascript (Node.js) chaincode, added support for CouchDB and attribute based access control and a few other features, but is forward compatible with v1.0.x releases and can be upgraded in place.

Upvotes: 1

Related Questions