Corda features and versions

New versions of Corda introduce new features. These fall into one of three categories which have subtle but important implications for node owners, application developers and network operators.

The first set are changes that have no impact on application developers or the Corda network protocol. An example would be support for a new HSM or database system, for example, and which are of interest only to a node’s operator.

The second set are new or changed APIs, which are of interest to CorDapp developers. When a release of Corda ships such features, the Platform Version of that node is incremented so that a CorDapp that relies on such a new or changed feature can detect this (eg to prevent it from running on a node without the feature or to trigger an alternative optimised codepath if the feature is present). The app developer should set the CorDapp’s minimumPlatformVersion parameter to signal the minimum Platform Version against which the app can run or has been tested. If the application has also been tested against a greater platform version and can exploit it if present, the node can also set the targetPlatformVersion field.

The third set of changes are those which could affect the operation of a Corda network. Examples would include a change to the serialisation format or flow/wire protocol, or introduction of a new transaction component. These are changes to the core data model and these features have the property that it is not safe for any node or application to take advantage of until all nodes on the network are capable of understanding them. Such features are thus only enabled in a node if the network to which it is connected has published a minimumPlatformVersion in its network parameters that is greater than or equal to the Corda Platform Version that introduced the feature. For example, Corda 4.0 nodes, which implement Corda Platform Version 4, can only take advantage of the Corda Reference States feature when connected to a network with mPV 4.

If there is a Platform Version below which your application will not run or is not supported, then signal that with the application’s CorDapp.mPV field. This will prevent older nodes from running your app. Nodes which support newer Platform Versions may also use this field to trigger code paths that emulate behaviours that were in force on that older Platform Version to maximise compatibility. However, if you have tested your app against newer versions of Corda and know your node can take advantage of the new Platform Version behaviours if present, you can signal this by using CorDapp.targetPV to declare the latest Platform Version against which the app has been tested and is known to work. In this way, it is possible to ship CorDapps that can both run on all nodes supporting some minimum Platform Version of Corda as well as opt in to newer features should they happen to be available on any given node.

FeatureCorda Platform Version (PV)Min Network Platform Version (network mPV)Introduced in OS versionIntroduced in Enterprise version
Observer Nodes222.0n/a
Corda Serialization Framework333.03.0
Hash Constraints111.01.0
Whitelist Constraints333.03.0
Inline Finality Flow434.04.0
Reference States444.04.0
Signature Constraints444.04.0
Underlying Support for Accounts544.34.3
Prevent CorDapp Hosting Issue644.44.4
New Flow Framework APIs744.54.5
API Update844.64.6
API Update944.74.7
API Update1044.84.8

Was this page helpful?

Thanks for your feedback!

Chat with us

Chat with us on our #docs channel on slack. You can also join a lot of other slack channels there and have access to 1-on-1 communication with members of the R3 team and the online community.

Propose documentation improvements directly

Help us to improve the docs by contributing directly. It's simple - just fork this repository and raise a PR of your own - R3's Technical Writers will review it and apply the relevant suggestions.

We're sorry this page wasn't helpful. Let us know how we can make it better!

Chat with us

Chat with us on our #docs channel on slack. You can also join a lot of other slack channels there and have access to 1-on-1 communication with members of the R3 team and the online community.

Create an issue

Create a new GitHub issue in this repository - submit technical feedback, draw attention to a potential documentation bug, or share ideas for improvement and general feedback.

Propose documentation improvements directly

Help us to improve the docs by contributing directly. It's simple - just fork this repository and raise a PR of your own - R3's Technical Writers will review it and apply the relevant suggestions.