Corda Open Source Edition 4.12 release notes

Corda Open Source Edition 4.12.1 is a patch release of Corda Community Edition focused on resolving issues.

  • ReceiveFinalityFlow was returning a transaction that was missing the notary signature. This has now been fixed. The returned transaction now includes the notary signature.
  • ReceiveTransactionFlow was checking that the network parameters on the transaction existed before ResolveTransactionFlow was executed. This could cause a problem in certain scenarios; for example, when sending a top-level transaction to a new node in a migrated network, as the old network parameters would not exist on this new node. This has now been fixed.
  • When resolving a party, in some code paths, wellKnownPartyFromAnonymous did not consider notaries from network parameters when trying to resolve an X.500 name. This scenario could occur when introducing a new node to a newly-migrated network as the new node would not have the old notary in its network map. This has now been fixed. Notaries from network parameters are now considered in the check.

The Corda Open Source Edition 4.12 release introduces upgrades to the Java and Kotlin versions, along with associated upgrade support. Apart from the features supporting the Java and Kotlin upgrade, no other major new features have been introduced. In this release, Java has been upgraded to Java 17 from Java 8 and Kotlin has been upgraded to Kotlin 1.9.20 from 1.2.71.

When a CorDapp(s) and a node are successfully upgraded to 4.12, you are able to seamlessly interoperate 4.12 and 4.11 (or earlier) nodes on the same network, including the existing transactions on the ledger.

Supporting new Java and Kotlin versions is a major feature, as we must also handle legacy contracts from existing backchains. The upgraded Java and Kotlin versions also have implications for CorDapp developers. Simply replacing the Corda JAR without introducing other changes is not possible.

As a developer or node operator, you should upgrade to the latest released version of Corda as soon as possible. The latest Corda Open Source release notes are on this page, and for the latest upgrade guide, refer to Corda Open Source Edition 4.11 to 4.12 upgrade guide.

The steps from this guide only work for direct upgrades from Corda 4.11 to 4.12. If you have any nodes on versions 4.10 and below, you must upgrade them to 4.11 first. To do that, consult the relevant release upgrade documentation.

Corda 4.12 uses platform version 140.

For more information about platform versions, see Versioning.

Corda 4.12 requires Java 17 and Kotlin 1.9.20. This means that you must recompile any legacy CorDapps written for 4.11 or earlier to work with Java 17 and Kotlin 1.9.20 to be compatible with Corda 4.12. These upgrades enhance the supportability and security of Corda.

The base Corda package includes several SDKs and libraries. These SDKs and libraries are compatible with Java 17 and Kotlin 1.9.20:

SDK/libraryJava 17 compatible release
corda-shell4.12
r3-libs1.4
confidential-identities1.2
accounts1.1
token-sdk1.3
reissue-cordapp1.1
archiving1.2
ledger-graph1.3
r3-tools4.12

Only CorDapps using signature constraints are supported in Corda 4.12; hash constraints are not supported. Using signature constraints has been recommended in previous releases of Corda as it eases the CorDapp upgrade process. If you have any 4.11 CorDapps using hash constraints, you must migrate them to signature constraints on 4.11 before upgrading to 4.12.

Once you have recompiled your 4.12 CorDapps for Java 17 and Kotlin 1.9.20, you must sign them using the same set of keys used by the 4.11 CorDapp.

Explicit contract upgrade is not supported in Corda 4.12.

You must review your CorDapps and check for any making the following calls:

  • SignedTransaction.toLedgerTransaction().verify()
  • WireTransaction.toLedgerTransaction().verify()
  • TransactionBuilder.toLedgerTransaction().verify()

CorDapps that make the above calls will not work for legacy transactions. To make those CorDapps compatible, change them to SignedTransaction.verify().

The node explorer has not been converted to use Java 17 and is not provided in the release packs. If you wish to use a node explorer, the only current option is to use a 4.11 node explorer and use it to connect to a 4.12 node.

The following two public repositories provide various CorDapp samples (branch: release/4.12):

Most samples have been converted over to Java 17, Kotlin 1.9.20, and Gradle 7.6.4.

The samples have been written to work with Corda Open Source. To convert a sample to work with Corda Enterprise, then at a minimum you need to point to a repository where your enterprise artifacts are installed. Also, the artifact group name for ENT (com.r3) must be different from OS (net.corda). For example, switch net.corda:corda-node-driver:4.12 (Corda OS) to com.r3.corda:corda-node-driver:4.12 (Corda ENT).

The following dependencies have been used in samples and can be switched from Corda OS to Corda Enterprise:

  • corda
  • corda-confidential-identities
  • corda-core-test-utils
  • corda-finance-workflows
  • corda-jackson
  • corda-node
  • corda-node-api
  • corda-node-driver
  • corda-rpc
  • corda-shell
  • corda-test-utils
  • corda-testserver-impl

The samples listed below have been converted to and tested with Java 17 and Kotlin 1.9.20:

CorDapp typeCorDapp
Accountsobligation-accounts
sharestatewithaccount
supplychain
worldcupticketbooking
Advancedduediligence-cordapp
negotiation-cordapp
obligation-cordapp
superyacht-cordapp
syndicated-lending
Basiccordapp-example
flow-database-access
flow-http-access
opentelemetry-cordapp-example
ping-pong
tutorial-applestamp
tutorial-jarsigning
tutorial-networkbootrstrapper
Featuresattachment-blacklist
attachment-sendfile
confidentialIdentity-whistleblower
contractsdk-recordplayers
cordaService-autopayroll
customlogging-yocordapp
customquery-carinsurance
dockerform-yocordapp
encumbrance-avatar
multioutput-transaction
notarychange-iou
observableStates-tradereporting
oracle-primenumber
postgres-cordapp
queryableState-carinsurance
referenceStates-sanctionsBody
schedulableState-heartbeat
state-reissuance
Tokensbikemarket
dollartohousetoken
fungiblehousetoken
stockpaydividend
tokentofriend

The following Kotlin and Java CorDapp templates have been converted to Java 17, Kotlin 1.9.20, and Gradle 7.6.4. They have been written to work with Corda Open Source Edition (branch: release/4.12):

If your CorDapp is using internal APIs or reflective access, then you may need to explicitly open the module on the command line. You can do this by adding one or more –add-opens options when starting Corda.

Previously, if a flow was resuming on node startup, the thread context class loader was not set, potentially causing ClassNotFound issues for CorDapp classes. This has been fixed now.

If you start the node with log level set to trace via the command line option --logging-level=TRACE, then you will see some Unable to format stack trace outputs from Log4j caused by a bug in Artemis. These can be ignored and have no effect on node operation. They can be removed via a custom log4j.xml where trace output from the org.apache.activemq.artemis.core.paging.cursor.impl.PageCursorProviderImpl logger is removed.

At node startup with the default Log4j, the following message appears: main WARN The use of package scanning to locate plugins is deprecated and will be removed in a future release. This is a warning only and can be safely ignored. We are currently investigating alternatives.

When running the Gradle task deployNodes, you may occasionally see the following warning message:

exception in disposal thread: org/bouncycastle/util/dispose/DisposalDaemon$3

This is a warning message from the LTS version of Bouncy Castle we are currently using. There is no user impact and it is related to disposing of references with native code. This will be fixed in a future patch release.

The following table lists the dependency version changes between 4.11 and 4.12 Open Source Editions:

DependencyNameVersion 4.11 EnterpriseVersion 4.12 Enterprise
com.google.guava:guavaGuava28.0-jre33.1.0-jre
co.paralleluniverse:quasar-coreQuasar0.7.16_r30.9.0_r3
org.bouncycastleBouncy Castlejdk18on:1.75lts8on:2.73.6
pro com.guardsquare:proguard-gradleProGuard6.1.17.3.1
org.yaml:snakeyamlSnakeYAML1.332.2
com.github.ben-manes.caffeine:caffeineCaffeine2.9.33.1.8
io.netty:netty-tcnative-boringssl-staticTC Native2.0.48.Final2.0.65.Final
org.apache.commons:commons-configuration2Commons Configuration22.10.02.10.1
co.paralleluniverse:capsuleCapsule1.0.31.0.4_r3
org.ow2.asm:asmASM7.19.5
org.apache.activemq:*Artemis2.19.12.32.0
com.fasterxml.jackson.*Jackson XML2.13.52.17.0
org.eclipse.jetty.ee10:jetty-ee10-*Jetty9.4.53.v2023100912.0.7
org.glassfish.jersey.*Jersey2.253.1.6
javax.validation:validation-apiValidation-2.0.1.Final
org.slf4j:* SimpeLog4J1.7.302.0.12
org.apache.logging.log4j:*Log4j2.17.12.23.1
com.squareup.okhttp3:okhttpOK HTTP3.14.94.12.0
io.netty:*Netty4.1.77.Final4.1.109.Final
org.apache.commons:commons-fileupload2-jakartaFile Upload1.42.0.0-M1
com.esotericsoftware:kryoKryo4.0.25.5.0
org.mockito:mockito-coreMockito2.28.25.5.0
org.mockito.kotlin:mockito-kotlinMockito for Kotlin1.6.05.2.1
org.jetbrains.dokka:dokka-gradle-pluginDokka for Gradle0.10.11.8.20
net.i2p.crypto:eddsaEddSA0.3.0-
com.zaxxer:HikariCPHikari3.3.15.1.0
org.iq80.snappy:snappySnappy0.40.5
commons-io:commons-ioCommons I/O2.62.7
org.javassist:javassistJava Assist3.27.0-GA3.29.2-GA
org.jooq:joorJoor-0.9.15
org.apache.curator:*Apache Curator5.1.05.6.0
org.apache.zookeeper:zookeeperApache Zookeeper-3.8.3
org.apache.commons:commons-dbcp2Apache Commons-2.12.0

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.