Corda Enterprise Edition 4.11 release notes
Corda Enterprise Edition 4.11.4 release notes
Corda Enterprise Edition 4.11.4 is a patch release of Corda Enterprise Edition focused on resolving issues.
Upgrade recommendation
As a developer or node operator, you should upgrade to the latest released version of Corda as soon as possible. The latest Corda Enterprise release notes are on this page, and for the latest upgrade guide, refer to Upgrading a CorDapp or node.
Fixed 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 beforeResolveTransactionFlow
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.
Corda Enterprise Edition 4.11.3 release notes
Corda Enterprise Edition 4.11.3 is a patch release of Corda Enterprise Edition focused on resolving issues.
Upgrade recommendation
As a developer or node operator, you should upgrade to the latest released version of Corda as soon as possible. The latest Corda Enterprise release notes are on this page, and for the latest upgrade guide, refer to Upgrading a CorDapp or node.
Fixed issues
- Database upgrades failed when upgrading from a pre-4.11 node, if the database contained new-style confidential identities, that is, those without a certificate.
Corda Enterprise Edition 4.11.2 release notes
Corda Enterprise Edition 4.11.2 is a patch release of Corda Enterprise Edition focused on resolving issues.
Upgrade recommendation
As a developer or node operator, you should upgrade to the latest released version of Corda as soon as possible. The latest Corda Enterprise release notes are on this page, and for the latest upgrade guide, refer to Upgrading a CorDapp or node.
Fixed issues
- In the default log4j2.xml file, the Delete action in the DefaultRolloverStrategy policy for log files beginning with
diagnostic-*
orcheckpoints_agent-*
was incorrect. It erroneously compared against the wrong file names. This issue has been rectified, ensuring that files are now deleted in accordance with the policy. - Resolved a TLS connection issue regression when using a HSM to store TLS private keys.
- Fixed a regression in the RPC
getFlowsMatchingV2
extension operation that rendered it incompatible with previous Corda releases. This issue manifested in the Corda flow management GUI, preventing it from displaying the flow status of previous Corda releases. Due to this fix, if you have created an RPC client using 4.11.1 or 4.11, you need to rebuild the client using 4.11.2. - Previously, a rare error scenario could occur where a node would erroneously perceive a valid connection to a peer when, in fact, it was not connected. This issue typically arose when the peer node was disconnecting/connecting. This issue has now been resolved.
Third party component upgrades
- Jetty version was upgraded from 9.4.51.v20230217 to 9.4.53.v20231009.
- Apache Tomcat was upgraded from 9.0.82 to 9.0.83 in the node management plugin, which is now at version 1.0.6.
Corda Enterprise Edition 4.11.1 release notes
Corda Enterprise Edition 4.11.1 is a patch release of Corda Enterprise Edition focused on resolving issues.
Upgrade recommendation
As a developer or node operator, you should upgrade to the latest released version of Corda as soon as possible. The latest Corda Enterprise release notes are on this page, and for the latest upgrade guide, refer to Upgrading a CorDapp or node.
Fixed issues
- Interoperability fix between 4.11 and pre-4.11 nodes when sending/fetching transactions for new data type:
TRANSACTION_RECOVERY
.
Corda Enterprise Edition 4.11 release notes
Corda Enterprise Edition 4.11 includes several new features, enhancements, and fixes.
Platform version change
Corda 4.11 uses platform version 13.
For more information about platform versions, see Versioning.
New features and enhancements
Archive Service and Corda Enterprise compatibility
The Archive Service is a standalone service that operates on a different release cadence to the Corda platform. If you intend to use it with Corda Enterprise 4.11 and above, you must use the 1.1.x version of the Archive Service. Version 1.0.x of the Archive Service is compatible with Corda 4.10 and below. The latest 1.1.x version of the Archive Service was introduced to handle the extra signatures column added to the node transactions table.
JDK Azul and Oracle JDK upgrade
Corda now supports JDK Azul 8u382 and Oracle JDK 8u381.
Ledger Recovery
Ledger Recovery was introduced as part of the Corda 4.11 release. It complements a standardised Corda network operational backup and recovery process.
For more information, see Ledger Recovery.
Two Phase Finality
Two Phase Finality protocol (FinalityFlow
and ReceiveFinalityFlow
sub-flows) has been added to improve resiliency and
recoverability of CorDapps using finality. Existing CorDapps do not require any changes to take advantage of this
new improved protocol.
For more information, see Two Phase Finality.
Finality Recovery Tooling
RPC extension operations (additions to the FlowRPCOps interface) that allow for Finality Flow recovery by both the initiator and the receiver(s) have been added. Also, Node Shell commands now allow operations teams to perform Finality Flow recovery.
For more information, see Finality Flow Recovery
Ledger Recovery flow
A new ledger recovery flow (LedgerRecoveryFlow
) enables a node to identify and recover transactions from
peer recovery nodes to which it was a party (either initiator or receiver) and which are missing from its own ledger.
For more information, see Ledger Recovery flow parameters.
Confidential Identity key-pair generator
A new service has been added that pregenerates Confidential Identity keys to be used when using CIs in transactions. These pre-generated CIs are subsequently used for backup recovery purposes.
Additional Network Parameters
The following network parameters, and associated node configuration parameters, have been added:
confidentialIdentityMinimumBackupInterval
recoveryMaximumBackupInterval
These network parameters require CENM 1.6 or later.
For more information, see Available Network Parameters.
Distribution record cleanup
A new maintenance job DistributionRecordCleanupTask
has been added. This removes ledger recovery distribution records that are older than the recoveryMaximumBackupInterval
network parameter, and which are no longer needed.
If the network parameter recoveryMaximumBackupInterval
is not defined, then the node parameter enterpriseConfiguration.ledgerRecoveryConfiguration.recoveryMaximumBackupInterval
, if defined, is used instead.
If neither parameter is defined, then the distribution record maintenance job is disabled.
For more information, see Ledger Recovery distribution record cleanup.
Improved double-spend exception handling
Two Phase Finality automatically deletes an unnotarized transaction from the DBTransaction
table if a double spend
is detected upon attempting notarization by the the initiator of FinalityFlow
.
Additionally, if the new optional ReceiveFinalityFlow
handlePropagatedNotaryError
constructor parameter is set to true
(default: false
),
then the double spend error (NotaryError.Conflict
) propagates back to the 2PF initiator. This enables the initiator to automatically remove the associated unnotarized transaction from its DBTransaction
table.
If a CorDapp is compiled against Corda 4.11 (that is, its target platform version = 13) then double spend handling is enabled by default. For more information, see Versioning.
Deserializing AMQP data performance improvement
This release includes improvements in the performance of deserializing AMQP data, which may result in performance improvements for LedgerGraph, Archiving and other CorDapps.
Detect vault changes while vault query pages loaded
A new property, previousPageAnchor
, has been added to Vault.Page
. It is used to detect if the vault has changed while pages of a vault query have been loaded. If such a scenario is important to detect, then the property can be used to restart querying.
An example of how to use this property can be found in Vault Queries.
Upgraded dependencies
The following dependencies have been upgraded to address critical and high-severity security vulnerabilities:
Hibernate has been upgraded from 5.4.32.Final to 5.6.14.Final
H2 upgraded from 1.4.197 to 2.2.214
H2 database has been upgraded to version 2.2.224 primarily to address vulnerabilities reported in earlier versions of H2. H2 is not a supported production database and should only be used for development and test purposes. For detailed information regarding the differences between H2 version 1.4.197 used in previous versions of Corda, and the new H2 version 2.2.224 implemented in 4.11, see the H2 documentation. The most important differences are the following:
Entity naming
H2 version 2.2.224 implements stricter rules regarding the naming of tables and columns within the database. The use of SQL keywords is no longer permitted. If a CorDapp schema uses a reserved name for a table or column, the CorDapp’s flows will fail when attempting to interact with the table, resulting in an SQL-related exception.
The solution for this issue involves renaming the problematic table or column to a non-reserved name. This renaming process should be implemented in the CorDapp’s migration scripts and in the JPA entity definition within the CorDapp code.
Backwards compatibility
H2 version 2.x is not backwards-compatible with older versions. Limited backwards compatibility can be achieved by adding
MODE=LEGACY
to the H2 database URL. For more information, go to the LEGACY Compatibility Mode section of the H2 Features page.H2 2.x is unable to read database files created by older H2 versions. The recommended approach for upgrading an older database involves exporting the data and subsequently re-importing it into a new version 2.x database. Further details on this process are outlined on the H2 Migration to 2.0 page.
Liquibase upgraded from 3.6.3 to 4.20.0
API
This version of Liquibase features a slightly different API compared to the previous version. CorDapps that have implemented their own database migration code that uses Liquibase need to be updated to align with the new API.
Logging
In this version of Liquibase, all INFO-level logging is directed to STDERR, while STDOUT is used for logging SQL queries. Utilities that have implemented their own database migration code that uses Liquibase can establish their custom logger to capture Liquibase’s informational logging. The Liquibase API provides classes that can be used to integrate custom loggers.
Consuming transaction IDs added to vault_state
table
When a state is consumed by a transaction, Corda now adds the ID of the consuming transaction in the consuming_tx_id
column of the vault_state
table. Corda only updates this database column for new transactions; for existing consumed states already in the ledger, the value of consuming_tx_id
is null.
Node configuration change for better performance
To reduce flow latency and improve throughput, the following default values in the node configuration have changed:
enterpriseConfiguration.tuning.brokerConnectionTtlCheckIntervalMs
changed from 20 to 1 millisecond.enterpriseConfiguration.tuning.journalBufferTimeout
changed from 3333333 nanoseconds to 1000000 nanoseconds.notary.extraConfig.batchTimeoutMs
changed from 200 to 1.
DJVM removal
Beta feature of the DJVM has been removed. As a result of the DJVM removal, the two constructor parameters djvmBootstrapSource
and djvmCordaSource
have been removed from the DriverParameters
class. Any client code that utilizes DriverParameters
now requires recompiling.
Additional signature verification
The recordTransactions()
function now performs stricter signature verification when using public ServiceHub
API.
For more information, see DBTransactionStorage.
Fixed issues
This release includes the following fixes since 4.10.3:
PostgreSQL 9.6 and 10.10 have been removed from our support matrix as they are no longer supported by PostgreSQL themselves.
log4j2.xml now deletes the correct file for diagnostic and checkpoint logs in the rollover strategy configuration.
In the previous patch release, while enhancing SSL certificate handling, certain log messages associated with failed SSL handshakes were unintentionally added. These messages often appeared in the logs during connectivity tests for traffic load balancers and system monitoring. To reduce log noise, we have now silenced these specific log messages.
Database schema changes
For a complete description of all database tables, see Database tables.
The following database changes have been applied:
The
vault_state
table now includes aconsuming_tx_id
column. The new column was added in the following migration script:vault-schema.changelog-v14.xml
.Two Phase Finality introduces an additional data field within the main
DbTransaction
table:@Column(name = "signatures") val signatures: ByteArray?
Two Phase Finality introduces two new database tables for storage of recovery metadata distribution records:
@Entity @Table(name = "${NODE_DATABASE_PREFIX}sender_distr_recs") data class DBSenderDistributionRecord( @EmbeddedId var compositeKey: PersistentKey, /** states to record: NONE, ALL_VISIBLE, ONLY_RELEVANT */ @Column(name = "sender_states_to_record", nullable = false) var senderStatesToRecord: StatesToRecord, /** states to record: NONE, ALL_VISIBLE, ONLY_RELEVANT */ @Column(name = "receiver_states_to_record", nullable = false) var receiverStatesToRecord: StatesToRecord ) @Entity @Table(name = "${NODE_DATABASE_PREFIX}receiver_distr_recs") data class DBReceiverDistributionRecord( @EmbeddedId var compositeKey: PersistentKey, /** Encrypted recovery information for sole use by Sender **/ @Lob @Column(name = "distribution_list", nullable = false) val distributionList: ByteArray, /** states to record: NONE, ALL_VISIBLE, ONLY_RELEVANT */ @Column(name = "receiver_states_to_record", nullable = false) val receiverStatesToRecord: StatesToRecord )
The above tables use the same persistent composite key type:
@Embeddable @Immutable data class PersistentKey( @Column(name = "transaction_id", length = 144, nullable = false) var txId: String, @Column(name = "peer_party_id", nullable = false) var peerPartyId: Long, @Column(name = "timestamp", nullable = false) var timestamp: Instant, @Column(name = "timestamp_discriminator", nullable = false) var timestampDiscriminator: Int )
There are two further tables to hold distribution list privacy information (including encryption keys):
@Entity @Table(name = "${NODE_DATABASE_PREFIX}recovery_party_info") data class DBRecoveryPartyInfo( @Id /** CordaX500Name hashCode() **/ @Column(name = "party_id", nullable = false) var partyId: Long, /** CordaX500Name of party **/ @Column(name = "party_name", nullable = false) val partyName: String ) @Entity @Table(name = "${NODE_DATABASE_PREFIX}aes_encryption_keys") class EncryptionKeyRecord( @Id @Type(type = "uuid-char") @Column(name = "key_id", nullable = false) val keyId: UUID, @Column(name = "key_material", nullable = false) val keyMaterial: ByteArray )
Pre-generation of confidential identities for Ledger Recovery introduces four new fields within the
node_our_key_pairs
table:@Entity @Table(name = "${NODE_DATABASE_PREFIX}our_key_pairs") class PersistentKey( <.... existing fields not shown .... > @Enumerated(EnumType.ORDINAL) @Column(name = "key_type", nullable = false) var keyType: KeyType = CI, @Column(name = "crypto_config_hash", length = MAX_HASH_HEX_SIZE, nullable = true) var cryptoConfigHash: String? = null, @Enumerated(EnumType.ORDINAL) @Column(name = "status", nullable = false) var status: Status = CREATED, @Column(name = "generate_tm", nullable = false) var insertionDate: Instant = Instant.now() )
Third party component upgrades
The following table lists the dependency version changes between 4.10.3 and 4.11 Enterprise Editions:
Dependency | Name | Version 4.10.3 Enterprise | Version 4.11 Enterprise |
---|---|---|---|
org.bouncycastle | Bouncy Castle | bcprov-jdk15on:1.70 | bcprov-jdk18on:1.75 |
co.paralleluniverse:quasar-core | Quasar | 0.7.15_r3 | 0.7.16_r3 |
org.hibernate | Hibernate | 5.4.32.Final | 5.6.14.Final |
com.h2database | H2 | 1.4.197 | 2.2.2241 |
org.liquibase | Liquibase | 3.6.3 | 4.20.0 |
Log4j patches
Click here to find all patches addressing the December 2021 Log4j vulnerability.
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.