2017-03-01 15:43:56 +00:00
Changelog
=========
2016-05-24 11:26:17 +00:00
2018-04-03 17:03:07 +00:00
Here's a summary of what's changed in each Corda release. For guidance on how to upgrade code from the previous
release, see :doc: `upgrade-notes` .
2018-03-14 10:05:38 +00:00
Unreleased
2018-06-21 15:57:30 +00:00
----------
2018-07-10 07:35:14 +00:00
* Docs for IdentityService. assertOwnership updated to correctly state that an UnknownAnonymousPartyException is thrown
rather than IllegalStateException.
2018-07-05 08:37:30 +00:00
* The Corda JPA entities no longer implement java.io.Serializable, as this was causing persistence errors in obscure cases.
Java serialization is disabled globally in the node, but in the unlikely event you were relying on these types being Java serializable please contact us.
2018-06-25 12:01:33 +00:00
* Remove all references to the out-of-process transaction verification.
2018-05-10 20:21:42 +00:00
2018-06-25 10:33:37 +00:00
* The class carpenter has a "lenient" mode where it will, during deserialisation, happily synthesis classes that implement
interfaces that will have unimplemented methods. This is useful, for example, for object viewers. This can be turned on
with `` SerializationContext.withLenientCarpenter `` .
2018-06-19 15:43:46 +00:00
* Introduced a grace period before the initial node registration fails if the node cannot connect to the Doorman.
It retries 10 times with a 1 minute interval in between each try. At the moment this is not configurable.
2018-06-18 16:59:00 +00:00
* Added a `` FlowMonitor `` to log information about flows that have been waiting for IO more than a configurable threshold.
2018-06-13 15:23:39 +00:00
* H2 database changes:
* The node's H2 database now listens on `` localhost `` by default.
* The database server address must also be enabled in the node configuration.
2018-06-21 15:57:30 +00:00
* A new `` h2Settings `` configuration block supersedes the `` h2Port `` option.
2018-06-13 15:23:39 +00:00
2018-06-13 08:43:16 +00:00
* Improved documentation PDF quality. Building the documentation now requires `` LaTex `` to be installed on the OS.
2018-06-12 10:03:32 +00:00
* Add `` devModeOptions.allowCompatibilityZone `` to re-enable the use of a compatibility zone and `` devMode ``
2018-06-11 16:53:31 +00:00
* Fixed an issue where `` trackBy `` was returning `` ContractStates `` from a transaction that were not being tracked. The
unrelated `` ContractStates `` will now be filtered out from the returned `` Vault.Update `` .
2018-06-07 15:18:00 +00:00
* Introducing the flow hospital - a component of the node that manages flows that have errored and whether they should
be retried from their previous checkpoints or have their errors propagate. Currently it will respond to any error that
2018-06-21 15:57:30 +00:00
occurs during the resolution of a received transaction as part of `` FinalityFlow `` . In such a scenario the receiving
2018-06-07 15:18:00 +00:00
flow will be parked and retried on node restart. This is to allow the node operator to rectify the situation as otherwise
the node will have an incomplete view of the ledger.
2018-06-01 15:16:23 +00:00
* Fixed an issue preventing out of process nodes started by the `` Driver `` from logging to file.
2018-06-21 15:57:30 +00:00
* Fixed an issue with `` CashException `` not being able to deserialize after the introduction of AMQP for RPC.
2018-05-30 16:15:50 +00:00
2018-06-07 15:18:00 +00:00
* Removed -Xmx VM argument from Explorer's Capsule setup. This helps avoiding out of memory errors.
* New `` killFlow `` RPC for killing stuck flows.
2018-05-30 14:04:24 +00:00
2018-05-30 09:29:10 +00:00
* Shell now kills an ongoing flow when CTRL+C is pressed in the terminal.
2018-06-01 12:37:39 +00:00
* Add check at startup that all persisted Checkpoints are compatible with the current version of the code.
2018-05-29 14:25:34 +00:00
* `` ServiceHub `` and `` CordaRPCOps `` can now safely be used from multiple threads without incurring in database transaction problems.
2018-05-25 10:37:20 +00:00
* Doorman and NetworkMap url's can now be configured individually rather than being assumed to be
the same server. Current `` compatibilityZoneURL `` configurations remain valid. See both :doc: `corda-configuration-file`
and :doc: `permissioning` for details.
2018-05-24 15:06:14 +00:00
* Improved audit trail for `` FinalityFlow `` and related sub-flows.
2018-06-12 07:50:26 +00:00
* Notary client flow retry logic was improved to handle validating flows better. Instead of re-sending flow messages the
entire flow is now restarted after a timeout. The relevant node configuration section was renamed from `` p2pMessagingRetry `` ,
to `` flowTimeout `` to reflect the behaviour change.
2018-06-07 15:18:00 +00:00
* The node's configuration is only printed on startup if `` devMode `` is `` true `` , avoiding the risk of printing passwords
in a production setup.
2018-05-23 12:51:40 +00:00
2018-06-13 15:23:39 +00:00
* `` NodeStartup `` will now only print node's configuration if `` devMode `` is `` true `` , avoiding the risk of printing passwords in a production setup.
2018-05-23 12:23:02 +00:00
* SLF4J's MDC will now only be printed to the console if not empty. No more log lines ending with "{}".
2018-05-22 10:38:56 +00:00
* `` WireTransaction.Companion.createComponentGroups `` has been marked as `` @CordaInternal `` . It was never intended to be
public and was already internal for Kotlin code.
2018-05-10 20:21:42 +00:00
* RPC Framework moved from Kryo to the Corda AMQP implementation [Corda-847]. This completes the removal
2018-05-25 10:37:20 +00:00
of `` Kryo `` from general use within Corda, remaining only for use in flow checkpointing.
2018-05-10 20:21:42 +00:00
2018-05-14 16:26:08 +00:00
* Set co.paralleluniverse.fibers.verifyInstrumentation=true in devMode.
2018-05-11 13:08:53 +00:00
* Node will now gracefully fail to start if one of the required ports is already in use.
2018-05-10 15:00:47 +00:00
* Node will now gracefully fail to start if `` devMode `` is true and `` compatibilityZoneURL `` is specified.
2018-05-11 16:48:02 +00:00
* Added smart detection logic for the development mode setting and an option to override it from the command line.
2018-05-09 20:42:55 +00:00
* Changes to the JSON/YAML serialisation format from `` JacksonSupport `` , which also applies to the node shell:
* `` Instant `` and `` Date `` objects are serialised as ISO-8601 formatted strings rather than timestamps
* `` PublicKey `` objects are serialised and looked up according to their Base58 encoded string
* `` Party `` objects can be deserialised by looking up their public key, in addition to their name
* `` NodeInfo `` objects are serialised as an object and can be looked up using the same mechanism as `` Party ``
* `` NetworkHostAndPort `` serialised according to its `` toString() ``
2018-05-24 17:26:55 +00:00
* `` PartyAndCertificate `` is serialised as the name
* `` SerializedBytes `` is serialised by materialising the bytes into the object it represents, and then serialising that
object into YAML/JSON
* `` X509Certificate `` is serialised as an object with key fields such as `` issuer `` , `` publicKey `` , `` serialNumber `` , etc.
2018-06-21 15:57:30 +00:00
The encoded bytes are also serialised into the `` encoded `` field. This can be used to deserialize an `` X509Certificate ``
2018-05-24 17:26:55 +00:00
back.
* `` CertPath `` objects are serialised as a list of `` X509Certificate `` objects.
2018-05-30 15:37:41 +00:00
* `` WireTransaction `` now nicely outputs into its components: `` id `` , `` notary `` , `` inputs `` , `` attachments `` , `` outputs `` ,
2018-06-21 15:57:30 +00:00
`` commands `` , `` timeWindow `` and `` privacySalt `` . This can be deserialized back.
2018-05-30 15:37:41 +00:00
* `` SignedTransaction `` is serialised into `` wire `` (i.e. currently only `` WireTransaction `` tested) and `` signatures `` ,
2018-06-21 15:57:30 +00:00
and can be deserialized back.
2018-05-09 20:42:55 +00:00
2018-05-24 17:26:55 +00:00
* `` fullParties `` boolean parameter added to `` JacksonSupport.createDefaultMapper `` and `` createNonRpcMapper `` . If `` true ``
then `` Party `` objects are serialised as JSON objects with the `` name `` and `` owningKey `` fields. For `` PartyAndCertificate ``
the `` certPath `` is serialised.
2018-05-04 15:40:46 +00:00
* Several members of `` JacksonSupport `` have been deprecated to highlight that they are internal and not to be used.
2018-05-04 15:37:56 +00:00
2018-05-04 15:40:46 +00:00
* The Vault Criteria API has been extended to take a more precise specification of which class contains a field. This
primarily impacts Java users; Kotlin users need take no action. The old methods have been deprecated but still work -
the new methods avoid bugs that can occur when JPA schemas inherit from each other.
2018-05-02 14:48:41 +00:00
2018-05-02 11:21:38 +00:00
* Due to ongoing work the experimental interfaces for defining custom notary services have been moved to the internal package.
CorDapps implementing custom notary services will need to be updated, see `` samples/notary-demo `` for an example.
Further changes may be required in the future.
2018-04-11 12:05:50 +00:00
2018-05-04 15:40:46 +00:00
* Configuration file changes:
2018-05-09 14:19:35 +00:00
2018-05-04 15:40:46 +00:00
* Added program line argument `` on-unknown-config-keys `` to allow specifying behaviour on unknown node configuration property keys.
Values are: [FAIL, WARN, IGNORE], default to FAIL if unspecified.
* Introduced a placeholder for custom properties within `` node.conf `` ; the property key is "custom".
* The deprecated web server now has its own `` web-server.conf `` file, separate from `` node.conf `` .
* Property keys with double quotes (e.g. `"key"` ) in `` node.conf `` are no longer allowed, for rationale refer to :doc: `corda-configuration-file` .
2018-04-11 12:05:50 +00:00
2018-05-21 10:05:08 +00:00
* Added public support for creating `` CordaRPCClient `` using SSL. For this to work the node needs to provide client applications
a certificate to be added to a truststore. See :doc: `tutorial-clientrpc-api`
* The node RPC broker opens 2 endpoints that are configured with `` address `` and `` adminAddress `` . RPC Clients would connect to the address, while the node will connect
to the adminAddress. Previously if ssl was enabled for RPC the `` adminAddress `` was equal to `` address `` .
2018-05-04 14:04:52 +00:00
2018-05-04 15:40:46 +00:00
* Upgraded H2 to v1.4.197
2018-04-11 12:05:50 +00:00
* Shell (embedded available only in dev mode or via SSH) connects to the node via RPC instead of using the `` CordaRPCOps `` object directly.
To enable RPC connectivity ensure node’ s `` rpcSettings.address `` and `` rpcSettings.adminAddress `` settings are present.
2018-03-14 10:05:38 +00:00
2018-04-17 14:38:25 +00:00
* Changes to the network bootstrapper:
2018-05-09 14:19:35 +00:00
2018-04-17 14:38:25 +00:00
* The whitelist.txt file is no longer needed. The existing network parameters file is used to update the current contracts
whitelist.
* The CorDapp jars are also copied to each nodes' `cordapps` directory.
2018-04-12 16:03:06 +00:00
2018-03-29 12:01:41 +00:00
* Errors thrown by a Corda node will now reported to a calling RPC client with attention to serialization and obfuscation of internal data.
2018-03-27 09:06:46 +00:00
* Serializing an inner class (non-static nested class in Java, inner class in Kotlin) will be rejected explicitly by the serialization
framework. Prior to this change it didn't work, but the error thrown was opaque (complaining about too few arguments
to a constructor). Whilst this was possible in the older Kryo implementation (Kryo passing null as the synthesised
reference to the outer class) as per the Java documentation `here <https://docs.oracle.com/javase/tutorial/java/javaOO/nested.html> `_
2018-05-04 15:40:46 +00:00
we are disallowing this as the paradigm in general makes little sense for contract states.
2018-03-26 18:09:03 +00:00
2018-03-19 14:20:10 +00:00
* Node can be shut down abruptly by `` shutdown `` function in `CordaRPCOps` or gracefully (draining flows first) through `` gracefulShutdown `` command from shell.
2018-05-25 17:03:24 +00:00
* API change: `` net.corda.core.schemas.PersistentStateRef `` fields (index and txId) are now non-nullable.
The fields were always effectively non-nullable - values were set from non-nullable fields of other objects.
The class is used as database Primary Key columns of other entities and databases already impose those columns as non-nullable
(even if JPA annotation nullable=false was absent).
In case your Cordapps use this entity class to persist data in own custom tables as non Primary Key columns refer to :doc: `upgrade-notes` for upgrade instructions.
2018-05-29 16:11:00 +00:00
* Adding a public method to check if a public key satisfies Corda recommended algorithm specs, `Crypto.validatePublicKey(java.security.PublicKey)` .
For instance, this method will check if an ECC key lies on a valid curve or if an RSA key is >= 2048bits. This might
be required for extra key validation checks, e.g., for Doorman to check that a CSR key meets the minimum security requirements.
2018-06-01 15:08:19 +00:00
* Table name with a typo changed from `` NODE_ATTCHMENTS_CONTRACTS `` to `` NODE_ATTACHMENTS_CONTRACTS `` .
2018-06-08 09:25:50 +00:00
* Node logs a warning for any `` MappedSchema `` containing a JPA entity referencing another JPA entity from a different `` MappedSchema ` .
The log entry starts with `Cross-reference between MappedSchemas.` .
API: Persistence documentation no longer suggests mapping between different schemas.
2018-04-11 12:05:50 +00:00
.. _changelog_v3.1:
2018-03-15 10:11:01 +00:00
2018-04-11 12:05:50 +00:00
Version 3.1
-----------
2018-03-20 15:42:25 +00:00
2018-04-11 12:05:50 +00:00
* Update the fast-classpath-scanner dependent library version from 2.0.21 to 2.12.3
2018-04-11 12:38:06 +00:00
2018-05-09 14:19:35 +00:00
.. note :: Whilst this is not the latest version of this library, that being 2.18.1 at time of writing, versions
2018-06-13 08:43:16 +00:00
later than 2.12.3 (including 2.12.4) exhibit a different issue.
2018-04-11 12:05:50 +00:00
* Updated the api scanner gradle plugin to work the same way as the version in master. These changes make the api scanner more
accurate and fix a couple of bugs, and change the format of the api-current.txt file slightly. Backporting these changes
to the v3 branch will make it easier for us to ensure that apis are stable for future versions. These changes are
released in gradle plugins version 3.0.10. For more information on the api scanner see
the `documentation <https://github.com/corda/corda-gradle-plugins/tree/master/api-scanner> `_ .
* Fixed security vulnerability when using the `` HashAttachmentConstraint `` . Added strict check that the contract JARs
referenced in a transaction were deployed on the node.
* Fixed node's behaviour on startup when there is no connectivity to network map. Node continues to work normally if it has
all the needed network data, waiting in the background for network map to become available.
2018-04-04 14:59:05 +00:00
2018-03-14 10:05:38 +00:00
.. _changelog_v3:
Version 3.0
-----------
2018-02-14 14:49:59 +00:00
2018-02-15 14:06:41 +00:00
* Per CorDapp configuration is now exposed. `` CordappContext `` now exposes a `` CordappConfig `` object that is populated
at CorDapp context creation time from a file source during runtime.
2018-02-14 14:49:59 +00:00
2018-02-12 16:13:43 +00:00
* Introduced Flow Draining mode, in which a node continues executing existing flows, but does not start new. This is to support graceful node shutdown/restarts.
In particular, when this mode is on, new flows through RPC will be rejected, scheduled flows will be ignored, and initial session messages will not be consumed.
This will ensure that the number of checkpoints will strictly diminish with time, allowing for a clean shutdown.
2018-02-12 10:07:25 +00:00
* Make the serialisation finger-printer a pluggable entity rather than hard wiring into the factory
2018-01-31 17:05:52 +00:00
* Removed blacklisted word checks in Corda X.500 name to allow "Server" or "Node" to be use as part of the legal name.
2018-01-23 16:23:37 +00:00
* Separated our pre-existing Artemis broker into an RPC broker and a P2P broker.
* Refactored `` NodeConfiguration `` to expose `` NodeRpcOptions `` (using top-level "rpcAddress" property still works with warning).
* Modified `` CordaRPCClient `` constructor to take a `` SSLConfiguration? `` additional parameter, defaulted to `` null `` .
* Introduced `` CertificateChainCheckPolicy.UsernameMustMatchCommonName `` sub-type, allowing customers to optionally enforce username == CN condition on RPC SSL certificates.
* Modified `` DriverDSL `` and sub-types to allow specifying RPC settings for the Node.
* Modified the `` DriverDSL `` to start Cordformation nodes allowing automatic generation of "rpcSettings.adminAddress" in case "rcpSettings.useSsl" is `` false `` (the default).
* Introduced `` UnsafeCertificatesFactory `` allowing programmatic generation of X509 certificates for test purposes.
2018-01-10 11:42:08 +00:00
* JPA Mapping annotations for States extending `` CommonSchemaV1.LinearState `` and `` CommonSchemaV1.FungibleState `` on the
`participants` collection need to be moved to the actual class. This allows to properly specify the unique table name per a collection.
See: DummyDealStateSchemaV1.PersistentDummyDealState
2017-12-07 10:41:20 +00:00
2017-12-18 16:23:34 +00:00
* X.509 certificates now have an extension that specifies the Corda role the certificate is used for, and the role
hierarchy is now enforced in the validation code. See `` net.corda.core.internal.CertRole `` for the current implementation
until final documentation is prepared. Certificates at `` NODE_CA `` , `` WELL_KNOWN_SERVICE_IDENTITY `` and above must
only ever by issued by network services and therefore issuance constraints are not relevant to end users.
The `` TLS `` , `` WELL_KNOWN_LEGAL_IDENTITY `` roles must be issued by the `` NODE_CA `` certificate issued by the
Doorman, and `` CONFIDENTIAL_IDENTITY `` certificates must be issued from a `` WELL_KNOWN_LEGAL_IDENTITY `` certificate.
2018-02-28 18:04:08 +00:00
For a detailed specification of the extension please see :doc: `permissioning` .
2017-12-18 16:23:34 +00:00
2017-12-07 10:41:20 +00:00
* The network map service concept has been re-designed. More information can be found in :doc: `network-map` .
* The previous design was never intended to be final but was rather a quick implementation in the earliest days of the
2017-12-07 14:48:31 +00:00
Corda project to unblock higher priority items. It suffers from numerous disadvantages including lack of scalability,
2017-12-07 10:41:20 +00:00
as one node is expected to hold open and manage connections to every node on the network; not reliable; hard to defend
against DoS attacks; etc.
* There is no longer a special network map node for distributing the network map to the other nodes. Instead the network
map is now a collection of signed `` NodeInfo `` files distributed via HTTP.
* The `` certificateSigningService `` config has been replaced by `` compatibilityZoneURL `` which is the base URL for the
doorman registration and for downloading the network map. There is also an end-point for the node to publish its node-info
object, which the node does each time it changes. `` networkMapService `` config has been removed.
* To support local and test deployments, the node polls the `` additional-node-infos `` directory for these signed `` NodeInfo ``
objects which are stored in its local cache. On startup the node generates its own signed file with the filename format
2018-05-09 14:19:35 +00:00
"nodeInfo-\*". This can be copied to every node's `` additional-node-infos `` directory that is part of the network.
2017-12-07 10:41:20 +00:00
* Cordform (which is the `` deployNodes `` gradle task) does this copying automatically for the demos. The `` NetworkMap ``
parameter is no longer needed.
2018-06-23 10:36:10 +00:00
* For test deployments we've introduced a bootstrapping tool (see :doc: `network-bootstrapper` ).
2017-12-07 10:41:20 +00:00
* `` extraAdvertisedServiceIds `` , `` notaryNodeAddress `` , `` notaryClusterAddresses `` and `` bftSMaRt `` configs have been
removed. The configuration of notaries has been simplified into a single `` notary `` config object. See
:doc: `corda-configuration-file` for more details.
* Introducing the concept of network parameters which are a set of constants which all nodes on a network must agree on
2018-06-21 15:57:30 +00:00
to correctly interoperate. These can be retrieved from `` ServiceHub.networkParameters `` .
2018-02-19 12:23:59 +00:00
* One of these parameters, `` maxTransactionSize `` , limits the size of a transaction, including its attachments, so that
all nodes have sufficient memory to validate transactions.
2017-12-07 10:41:20 +00:00
* The set of valid notaries has been moved to the network parameters. Notaries are no longer identified by the CN in
their X500 name.
* Single node notaries no longer have a second separate notary identity. Their main identity *is* their notary identity.
Use `` NetworkMapCache.notaryIdentities `` to get the list of available notaries.
2018-03-14 10:05:38 +00:00
* Added `` NetworkMapCache.getNodesByLegalName `` for querying nodes belonging to a distributed service such as a notary cluster
where they all share a common identity. `` NetworkMapCache.getNodeByLegalName `` has been tightened to throw if more than
one node with the legal name is found.
2017-12-07 10:41:20 +00:00
* The common name in the node's X500 legal name is no longer reserved and can be used as part of the node's name.
* Moved `` NodeInfoSchema `` to internal package as the node info's database schema is not part of the public API. This
was needed to allow changes to the schema.
2017-12-07 14:48:31 +00:00
* Support for external user credentials data source and password encryption [CORDA-827].
2017-12-08 16:27:12 +00:00
* Exporting additional JMX metrics (artemis, hibernate statistics) and loading Jolokia agent at JVM startup when using
DriverDSL and/or cordformation node runner.
2017-11-28 17:33:02 +00:00
* Removed confusing property database.initDatabase, enabling its guarded behaviour with the dev-mode.
In devMode Hibernate will try to create or update database schemas, otherwise it will expect relevant schemas to be present
in the database (pre configured via DDL scripts or equivalent), and validate these are correct.
2017-11-20 17:41:38 +00:00
2017-11-14 10:22:02 +00:00
* `` AttachmentStorage `` now allows providing metadata on attachments upload - username and filename, currently as plain
strings. Those can be then used for querying, utilizing `` queryAttachments `` method of the same interface.
2017-11-20 17:41:38 +00:00
* `` SSH Server `` - The node can now expose shell via SSH server with proper authorization and permissioning built in.
2017-11-02 15:09:49 +00:00
* `` CordaRPCOps `` implementation now checks permissions for any function invocation, rather than just when starting flows.
2017-10-25 11:32:31 +00:00
2017-11-17 18:13:35 +00:00
* `` wellKnownPartyFromAnonymous() `` now always resolve the key to a `` Party `` , then the party to the well known party.
Previously if it was passed a `` Party `` it would use its name as-is without verifying the key matched that name.
2017-10-13 11:27:42 +00:00
* `` OpaqueBytes.bytes `` now returns a clone of its underlying `` ByteArray `` , and has been redeclared as `` final `` .
This is a minor change to the public API, but is required to ensure that classes like `` SecureHash `` are immutable.
2017-10-19 21:17:54 +00:00
* Experimental support for PostgreSQL: CashSelection done using window functions
2017-10-09 12:46:37 +00:00
* `` FlowLogic `` now exposes a series of function called `` receiveAll(...) `` allowing to join `` receive(...) `` instructions.
2017-09-21 08:05:32 +00:00
2017-10-13 14:01:24 +00:00
* Renamed "plugins" directory on nodes to "cordapps"
2017-10-09 19:08:08 +00:00
* The `` Cordformation `` gradle plugin has been split into `` cordformation `` and `` cordapp `` . The former builds and
deploys nodes for development and testing, the latter turns a project into a cordapp project that generates JARs in
2017-10-10 14:03:05 +00:00
the standard CorDapp format.
2017-10-09 19:08:08 +00:00
2017-09-26 16:15:11 +00:00
* `` Cordapp `` now has a name field for identifying CorDapps and all CorDapp names are printed to console at startup.
2017-10-19 09:21:20 +00:00
* Enums now respect the whitelist applied to the Serializer factory serializing / deserializing them. If the enum isn't
2017-09-27 17:02:35 +00:00
either annotated with the @CordaSerializable annotation or explicitly whitelisted then a NotSerializableException is
thrown.
2017-10-25 11:32:31 +00:00
* Gradle task `` deployNodes `` can have an additional parameter `` configFile `` with the path to a properties file
2017-10-10 14:03:05 +00:00
to be appended to node.conf.
2017-10-25 11:32:31 +00:00
* Cordformation node building DSL can have an additional parameter `` configFile `` with the path to a properties file
2017-10-10 14:03:05 +00:00
to be appended to node.conf.
2017-10-11 13:33:20 +00:00
* `` FlowLogic `` now has a static method called `` sleep `` which can be used in certain circumstances to help with resolving
contention over states in flows. This should be used in place of any other sleep primitive since these are not compatible
with flows and their use will be prevented at some point in the future. Pay attention to the warnings and limitations
described in the documentation for this method. This helps resolve a bug in `` Cash `` coin selection.
2017-10-25 11:32:31 +00:00
A new static property `` currentTopLevel `` returns the top most `` FlowLogic `` instance, or null if not in a flow.
2017-10-11 13:33:20 +00:00
2017-10-09 09:44:32 +00:00
* `` CordaService `` annotated classes should be upgraded to take a constructor parameter of type `` AppServiceHub `` which
allows services to start flows marked with the `` StartableByService `` annotation. For backwards compatability
service classes with only `` ServiceHub `` constructors will still work.
2017-12-07 10:41:20 +00:00
* `` TimeWindow `` now has a `` length `` property that returns the length of the time-window as a `` java.time.Duration `` object,
or `` null `` if the time-window isn't closed.
2017-10-11 15:15:24 +00:00
2017-10-19 09:21:20 +00:00
* A new `` SIGNERS_GROUP `` with ordinal 6 has been added to `` ComponentGroupEnum `` that corresponds to the `` Command ``
signers.
* `` PartialMerkleTree `` is equipped with a `` leafIndex `` function that returns the index of a hash (leaf) in the
partial Merkle tree structure.
* A new function `` checkCommandVisibility(publicKey: PublicKey) `` has been added to `` FilteredTransaction `` to check
if every command that a signer should receive (e.g. an Oracle) is indeed visible.
2018-06-21 15:57:30 +00:00
* Changed the AMQP serializer to use the officially assigned R3 identifier rather than a placeholder.
2017-10-25 11:32:31 +00:00
* The `` ReceiveTransactionFlow `` can now be told to record the transaction at the same time as receiving it. Using this
feature, better support for observer/regulator nodes has been added. See :doc: `tutorial-observer-nodes` .
2017-10-19 11:06:00 +00:00
2018-05-09 14:19:35 +00:00
* Added an overload of `` TransactionWithSignatures.verifySignaturesExcept `` which takes in a collection of `` PublicKey `` s.
2017-11-07 09:33:19 +00:00
2017-12-07 10:41:20 +00:00
* `` DriverDSLExposedInterface `` has been renamed to `` DriverDSL `` and the `` waitForAllNodesToFinish() `` method has instead
become a parameter on driver creation.
2017-11-06 14:24:27 +00:00
2017-12-07 10:41:20 +00:00
* Values for the `` database.transactionIsolationLevel `` config now follow the `` java.sql.Connection `` int constants but
2018-05-09 14:19:35 +00:00
without the "TRANSACTION" prefix, i.e. "NONE", "READ_UNCOMMITTED", etc.
2017-11-25 15:55:31 +00:00
2017-12-15 17:48:33 +00:00
* Peer-to-peer communications is now via AMQP 1.0 as default.
Although the legacy Artemis CORE bridging can still be used by setting the `` useAMQPBridges `` configuration property to false.
2018-01-17 16:06:31 +00:00
* The Artemis topics used for peer-to-peer communication have been changed to be more consistent with future cryptographic
agility and to open up the future possibility of sharing brokers between nodes. This is a breaking wire level change
as it means that nodes after this change will not be able to communicate correctly with nodes running the previous version.
Also, any pending enqueued messages in the Artemis message store will not be delivered correctly to their original target.
However, assuming a clean reset of the artemis data and that the nodes are consistent versions,
data persisted via the AMQP serializer will be forward compatible.
2018-01-24 15:19:24 +00:00
* The ability for CordaServices to register callbacks so they can be notified of shutdown and clean up resource such as
open ports.
2018-01-25 17:53:34 +00:00
* Move to a message based control of peer to peer bridge formation to allow for future out of process bridging components.
This removes the legacy Artemis bridges completely, so the `` useAMQPBridges `` configuration property has been removed.
2018-02-08 14:38:15 +00:00
* A `` CordaInternal `` attribute has been added to identify properties that are not intended to form part of the
public api and as such are not intended for public use. This is alongside the existing `` DoNotImplement `` attribute for classes which
provide Corda functionality to user applications, but should not be implemented by consumers, and any classes which
are defined in `` .internal `` packages, which are also not for public use.
* Marked `` stateMachine `` on `` FlowLogic `` as `` CordaInternal `` to make clear that is it not part of the public api and is
only for internal use
2018-02-15 14:06:41 +00:00
* Provided experimental support for specifying your own webserver to be used instead of the default development
webserver in `` Cordform `` using the `` webserverJar `` argument
2018-02-12 10:09:59 +00:00
* Created new `` StartedMockNode `` and `` UnstartedMockNode `` classes which are wrappers around our MockNode implementation
that expose relevant methods for testing without exposing internals, create these using a `` MockNetwork `` .
2018-02-15 14:06:41 +00:00
* The test utils in `` Expect.kt `` , `` SerializationTestHelpers.kt `` , `` TestConstants.kt `` and `` TestUtils.kt `` have moved
from the `` net.corda.testing `` package to the `` net.corda.testing.core `` package, and `` FlowStackSnapshot.kt `` has moved to the
2018-02-16 10:22:41 +00:00
`` net.corda.testing.services `` package. Moving existing classes out of the `` net.corda.testing.* `` package
will help make it clearer which parts of the api are stable. Scripts have been provided to smooth the upgrade
process for existing projects in the `` tools\scripts `` directory of the Corda repo.
2018-02-15 14:06:41 +00:00
2018-03-14 10:05:38 +00:00
* `` TransactionSignature `` includes a new `` partialMerkleTree `` property, required for future support of signing over
multiple transactions at once.
2018-04-30 09:24:08 +00:00
* Updating Jolokia dependency to latest version (includes security fixes)
2017-10-03 16:32:11 +00:00
.. _changelog_v1:
2017-09-22 16:37:12 +00:00
Release 1.0
-----------
2017-09-27 14:29:00 +00:00
* Unification of VaultQuery And VaultService APIs
Developers now only need to work with a single Vault Service API for all needs.
2017-09-26 12:22:59 +00:00
* Java 8 lambdas now work property with Kryo during check-pointing.
2017-10-03 16:32:11 +00:00
* Java 8 serializable lambdas now work property with Kryo during check-pointing.
2017-09-22 16:37:12 +00:00
* String constants have been marked as `` const `` type in Kotlin, eliminating cases where functions of the form
`` get<constant name>() `` were created for the Java API. These can now be referenced by their name directly.
* `` FlowLogic `` communication has been extensively rewritten to use functions on `` FlowSession `` as the base for communication
between nodes.
2017-10-03 16:32:11 +00:00
2017-09-22 16:37:12 +00:00
* Calls to `` send() `` , `` receive() `` and `` sendAndReceive() `` on FlowLogic should be replaced with calls
to the function of the same name on `` FlowSession `` . Note that the replacement functions do not take in a destination
parameter, as this is defined in the session.
* Initiated flows now take in a `` FlowSession `` instead of `` Party `` in their constructor. If you need to access the
counterparty identity, it is in the `` counterparty `` property of the flow session.
2017-10-03 16:32:11 +00:00
2017-09-22 16:37:12 +00:00
* Added X509EdDSAEngine to intercept and rewrite EdDSA public keys wrapped in X509Key instances. This corrects an issue
with verifying certificate paths loaded from a Java Keystore where they contain EdDSA keys.
2017-10-03 16:32:11 +00:00
* Confidential identities are now complete:
* The identity negotiation flow is now called `` SwapIdentitiesFlow `` , renamed from `` TransactionKeyFlow `` .
* generateSpend() now creates a new confidential identity for the change address rather than using the identity of the
input state owner.
* Please see the documentation :doc: `key-concepts-identity` and :doc: `api-identity` for more details.
2017-09-22 16:37:12 +00:00
* Remove the legacy web front end from the SIMM demo.
2017-09-21 08:05:32 +00:00
2017-09-20 12:19:57 +00:00
* `` NodeInfo `` and `` NetworkMapCache `` changes:
2017-10-03 16:32:11 +00:00
2017-09-20 12:19:57 +00:00
* Removed `` NodeInfo::legalIdentity `` in preparation for handling of multiple identities. We left list of `` NodeInfo::legalIdentitiesAndCerts `` ,
2017-10-03 16:32:11 +00:00
the first identity still plays a special role of main node identity.
2017-09-20 12:19:57 +00:00
* We no longer support advertising services in network map. Removed `` NodeInfo::advertisedServices `` , `` serviceIdentities ``
2017-10-03 16:32:11 +00:00
and `` notaryIdentity `` .
2017-09-20 12:19:57 +00:00
* Removed service methods from `` NetworkMapCache `` : `` partyNodes `` , `` networkMapNodes `` , `` notaryNodes `` , `` regulatorNodes `` ,
2017-10-03 16:32:11 +00:00
`` getNodesWithService `` , `` getPeersWithService `` , `` getRecommended `` , `` getNodesByAdvertisedServiceIdentityKey `` , `` getAnyNotary `` ,
`` notaryNode `` , `` getAnyServiceOfType `` . To get all known `` NodeInfo `` 's call `` allNodes `` .
2017-09-20 12:19:57 +00:00
* In preparation for `` NetworkMapService `` redesign and distributing notaries through `` NetworkParameters `` we added
2017-10-03 16:32:11 +00:00
`` NetworkMapCache::notaryIdentities `` list to enable to lookup for notary parties known to the network. Related `` CordaRPCOps::notaryIdentities ``
was introduced. Other special nodes parties like Oracles or Regulators need to be specified directly in CorDapp or flow.
2017-09-20 12:19:57 +00:00
* Moved `` ServiceType `` and `` ServiceInfo `` to `` net.corda.nodeapi `` package as services are only required on node startup.
2017-09-01 14:07:08 +00:00
* Adding enum support to the class carpenter
2017-09-11 15:44:18 +00:00
* `` ContractState::contract `` has been moved `` TransactionState::contract `` and it's type has changed to `` String `` in order to
support dynamic classloading of contract and contract constraints.
2017-09-13 17:43:37 +00:00
* CorDapps that contain contracts are now automatically loaded into the attachment storage - for CorDapp developers this
now means that contracts should be stored in separate JARs to flows, services and utilities to avoid large JARs being
auto imported to the attachment store.
2017-09-05 17:27:26 +00:00
* About half of the code in test-utils has been moved to a new module `` node-driver `` ,
and the test scope modules are now located in a `` testing `` directory.
2017-10-03 16:32:11 +00:00
* `` CordaPluginRegistry `` has been renamed to `` SerializationWhitelist `` and moved to the `` net.corda.core.serialization ``
2017-09-29 14:45:19 +00:00
package. The API for whitelisting types that can't be annotated was slightly simplified. This class used to contain
many things, but as we switched to annotations and classpath scanning over time it hollowed out until this was
the only functionality left. You also need to rename your services resource file to the new class name.
An associated property on `` MockNode `` was renamed from `` testPluginRegistries `` to `` testSerializationWhitelists `` .
2017-09-13 11:06:24 +00:00
2018-06-21 15:57:30 +00:00
* Contract Upgrades: deprecated RPC authorization / deauthorization API calls in favour of equivalent flows in ContractUpgradeFlow.
2017-09-05 12:23:19 +00:00
Implemented contract upgrade persistence using JDBC backed persistent map.
2017-08-25 07:38:12 +00:00
* Vault query common attributes (state status and contract state types) are now handled correctly when using composite
criteria specifications. State status is overridable. Contract states types are aggregatable.
2017-08-22 17:09:23 +00:00
* Cash selection algorithm is now pluggable (with H2 being the default implementation)
2017-06-29 10:13:40 +00:00
2018-06-21 15:57:30 +00:00
* Removed usage of Requery ORM library (replaced with JPA/Hibernate)
2017-08-21 09:42:59 +00:00
* Vault Query performance improvement (replaced expensive per query SQL statement to obtain concrete state types
with single query on start-up followed by dynamic updates using vault state observable))
2017-08-10 16:39:14 +00:00
* Vault Query fix: filter by multiple issuer names in `` FungibleAssetQueryCriteria ``
* Following deprecated methods have been removed:
2017-10-03 16:32:11 +00:00
2017-08-10 16:39:14 +00:00
* In `` DataFeed ``
2017-10-03 16:32:11 +00:00
2017-08-10 16:39:14 +00:00
* `` first `` and `` current `` , replaced by `` snapshot ``
* `` second `` and `` future `` , replaced by `` updates ``
2017-10-03 16:32:11 +00:00
2017-08-10 16:39:14 +00:00
* In `` CordaRPCOps ``
2017-10-03 16:32:11 +00:00
2017-08-10 16:39:14 +00:00
* `` stateMachinesAndUpdates `` , replaced by `` stateMachinesFeed ``
* `` verifiedTransactions `` , replaced by `` verifiedTransactionsFeed ``
* `` stateMachineRecordedTransactionMapping `` , replaced by `` stateMachineRecordedTransactionMappingFeed ``
* `` networkMapUpdates `` , replaced by `` networkMapFeed ``
* Due to security concerns and the need to remove the concept of state relevancy (which isn't needed in Corda),
`` ResolveTransactionsFlow `` has been made internal. Instead merge the receipt of the `` SignedTransaction `` and the subsequent
sub-flow call to `` ResolveTransactionsFlow `` with a single call to `` ReceiveTransactionFlow `` . The flow running on the counterparty
must use `` SendTransactionFlow `` at the correct place. There is also `` ReceiveStateAndRefFlow `` and `` SendStateAndRefFlow `` for
2017-10-03 16:32:11 +00:00
dealing with `` StateAndRef `` 's.
2017-08-10 16:39:14 +00:00
* Vault query soft locking enhancements and deprecations
2017-10-03 16:32:11 +00:00
2018-05-09 14:19:35 +00:00
* removed original `` VaultService `` `` softLockedStates `` query mechanism.
2017-10-03 16:32:11 +00:00
* introduced improved `` SoftLockingCondition `` filterable attribute in `` VaultQueryCriteria `` to enable specification of different soft locking retrieval behaviours (exclusive of soft locked states, soft locked states only, specified by set of lock ids)
2017-08-10 16:39:14 +00:00
2017-08-11 09:20:27 +00:00
* Trader demo now issues cash and commercial paper directly from the bank node, rather than the seller node self-issuing
commercial paper but labelling it as if issued by the bank.
2017-08-14 23:17:21 +00:00
* Merged handling of well known and confidential identities in the identity service. Registration now takes in an identity
(either type) plus supporting certificate path, and de-anonymisation simply returns the issuing identity where known.
If you specifically need well known identities, use the network map, which is the authoritative source of current well
known identities.
2017-10-03 16:32:11 +00:00
* Currency-related API in `` net.corda.core.contracts.ContractsDSL `` has moved to `` ` net.corda.finance.CurrencyUtils `` .
2017-08-14 18:03:24 +00:00
2017-08-11 13:03:23 +00:00
* Remove `IssuerFlow` as it allowed nodes to request arbitrary amounts of cash to be issued from any remote node. Use
`CashIssueFlow` instead.
2017-08-17 11:12:20 +00:00
* Some utility/extension functions (`` sumOrThrow `` , `` sumOrNull `` , `` sumOrZero `` on `` Amount `` and `` Commodity `` )
have moved to be static methods on the classes themselves. This improves the API for Java users who no longer
have to see or known about file-level FooKt style classes generated by the Kotlin compile, but means that IntelliJ
no longer auto-suggests these extension functions in completion unless you add import lines for them yourself
(this is Kotlin IDE bug KT-15286).
2017-08-15 08:14:15 +00:00
* `` :finance `` module now acting as a CorDapp with regard to flow registration, schemas and serializable types.
* `` WebServerPluginRegistry `` now has a `` customizeJSONSerialization `` which can be overridden to extend the REST JSON
serializers. In particular the IRS demos must now register the `` BusinessCalendar `` serializers.
2017-08-21 15:40:28 +00:00
* Moved `` :finance `` gradle project files into a `` net.corda.finance `` package namespace.
This may require adjusting imports of Cash flow references and also of `` StartFlow `` permission in `` gradle.build `` files.
2017-08-30 15:26:34 +00:00
* Removed the concept of relevancy from `` LinearState `` . The `` ContractState `` 's relevancy to the vault can be determined
by the flow context, the vault will process any transaction from a flow which is not derived from transaction resolution verification.
2017-08-31 15:56:24 +00:00
* Removed the tolerance attribute from `` TimeWindowChecker `` and thus, there is no extra tolerance on the notary side anymore.
* The `` FungibleAsset `` interface has been made simpler. The `` Commands `` grouping interface
that included the `` Move `` , `` Issue `` and `` Exit `` interfaces have all been removed, while the `` move `` function has
been renamed to `` withNewOwnerAndAmount `` to be consistent with the `` withNewOwner `` function of the `` OwnableState `` .
* The `` IssueCommand `` interface has been removed from `` Structures `` , because, due to the introduction of nonces per
transaction component, the issue command does not need a nonce anymore and it does not require any other attributes.
* As a consequence of the above and the simpler `` FungibleAsset `` format, fungible assets like `` Cash `` now use
`` class Issue : TypeOnlyCommandData() `` , because it's only its presence (`` Issue `` ) that matters.
* A new `PrivacySalt` transaction component is introduced, which is now an attribute in `` TraversableTransaction `` and
inherently in `` WireTransaction `` .
* A new `` nonces: List<SecureHash> `` feature has been added to `` FilteredLeaves `` .
* Due to the `` nonces `` and `` PrivacySalt `` introduction, new functions have been added to `` MerkleTransaction `` :
`` fun <T : Any> serializedHash(x: T, privacySalt: PrivacySalt?, index: Int): SecureHash ``
`` fun <T : Any> serializedHash(x: T, nonce: SecureHash): SecureHash ``
`` fun computeNonce(privacySalt: PrivacySalt, index: Int) `` .
* A new `` SignatureMetadata `` data class is introduced with two attributes, `` platformVersion: Int `` and
`` schemeNumberID: Int `` (the signature scheme used).
* As part of the metadata support in signatures, a new `` data class SignableData(val txId: SecureHash, val signatureMetadata: SignatureMetadata) ``
is introduced, which represents the object actually signed.
* The unused `` MetaData `` and `` SignatureType `` in `` crypto `` package have been removed.
2017-10-03 16:32:11 +00:00
* The `` class TransactionSignature(bytes: ByteArray, val by: PublicKey, val signatureMetadata: ``
`` SignatureMetadata): DigitalSignature(bytes) `` class is now utilised Vs the old `` DigitalSignature.WithKey `` for
Corda transaction signatures. Practically, it takes the `` signatureMetadata `` as an extra input, in order to support
signing both the transaction and the extra metadata.
2017-08-31 15:56:24 +00:00
* To reflect changes in the signing process, the `` Crypto `` object is now equipped with the:
`` fun doSign(keyPair: KeyPair, signableData: SignableData): TransactionSignature `` and
`` fun doVerify(txId: SecureHash, transactionSignature: TransactionSignature): Boolean `` functions.
2017-10-03 16:32:11 +00:00
* `` SerializationCustomization.addToWhitelist() `` now accepts multiple classes via varargs.
2017-08-31 12:24:45 +00:00
2017-09-01 09:45:01 +00:00
* Two functions to easily sign a `` FilteredTransaction `` have been added to `` ServiceHub `` :
`` createSignature(filteredTransaction: FilteredTransaction, publicKey: PublicKey) `` and
`` createSignature(filteredTransaction: FilteredTransaction) `` to sign with the legal identity key.
2017-09-01 18:26:00 +00:00
* A new helper method `` buildFilteredTransaction(filtering: Predicate<Any>) `` is added to `` SignedTransaction `` to
directly build a `` FilteredTransaction `` using provided filtering functions, without first accessing the
`` tx: WireTransaction `` .
2017-09-08 08:24:22 +00:00
* Test type `` NodeHandle `` now has method `` stop(): CordaFuture<Unit> `` that terminates the referenced node.
2017-09-13 08:42:16 +00:00
* Fixed some issues in IRS demo:
* Fixed leg and floating leg notional amounts were not displayed for created deals neither in single nor in list view.
* Parties were not displayed for created deals in single view.
* Non-default notional amounts caused the creation of new deals to fail.
2017-09-13 14:39:39 +00:00
.. warning :: Renamed configuration property key `basedir` to `baseDirectory` . This will require updating existing configuration files.
* Removed deprecated parts of the API.
2017-09-14 08:00:02 +00:00
* Removed `` PluginServiceHub `` . Replace with `` ServiceHub `` for `` @CordaService `` constructors.
2017-09-14 14:48:33 +00:00
* `` X509CertificateHolder `` has been removed from the public API, replaced by `` java.security.X509Certificate `` .
2017-09-19 16:36:26 +00:00
* Moved `` CityDatabase `` out of `` core `` and into `` finance ``
2017-09-20 12:11:58 +00:00
* All of the `` serializedHash `` and `` computeNonce `` functions have been removed from `` MerkleTransaction `` .
The `` serializedHash(x: T) `` and `` computeNonce `` were moved to `` CryptoUtils `` .
2017-10-03 16:32:11 +00:00
* Two overloaded methods `` componentHash(opaqueBytes: OpaqueBytes, privacySalt: PrivacySalt, ``
`` componentGroupIndex: Int, internalIndex: Int): SecureHash `` and `` componentHash(nonce: SecureHash, opaqueBytes: OpaqueBytes): SecureHash `` have
2017-09-20 12:11:58 +00:00
been added to `` CryptoUtils `` . Similarly to `` computeNonce `` , they internally use SHA256d for nonce and leaf hash
computations.
* The `` verify(node: PartialTree, usedHashes: MutableList<SecureHash>): SecureHash `` in `` PartialMerkleTree `` has been
renamed to `` rootAndUsedHashes `` and is now public, as it is required in the verify function of `` FilteredTransaction `` .
* `` TraversableTransaction `` is now an abstract class extending `` CoreTransaction `` . `` WireTransaction `` and
`` FilteredTransaction `` now extend `` TraversableTransaction `` .
* Two classes, `` ComponentGroup(open val groupIndex: Int, open val components: List<OpaqueBytes>) `` and
2017-10-03 16:32:11 +00:00
`` FilteredComponentGroup(override val groupIndex: Int, override val components: ``
`` List<OpaqueBytes>, val nonces: List<SecureHash>, val partialMerkleTree: ``
`` PartialMerkleTree): ComponentGroup(groupIndex, components) `` have been added, which are properties
of the `` WireTransaction `` and `` FilteredTransaction `` , respectively.
2017-09-20 12:11:58 +00:00
* `` checkAllComponentsVisible(componentGroupEnum: ComponentGroupEnum) `` is added to `` FilteredTransaction `` , a new
function to check if all components are visible in a specific component-group.
* To allow for backwards compatibility, `` WireTransaction `` and `` FilteredTransaction `` have new fields and
constructors: `` WireTransaction(componentGroups: List<ComponentGroup>, privacySalt: PrivacySalt = PrivacySalt()) `` ,
2017-10-03 16:32:11 +00:00
`` FilteredTransaction private constructor(id: SecureHash,filteredComponentGroups: ``
`` List<FilteredComponentGroup>, groupHashes: List<SecureHash> `` . `` FilteredTransaction `` is still built via
`` buildFilteredTransaction(wtx: WireTransaction, filtering: Predicate<Any>) `` .
2017-09-20 12:11:58 +00:00
* `` FilteredLeaves `` class have been removed and as a result we can directly call the components from
`` FilteredTransaction `` , such as `` ftx.inputs `` Vs the old `` ftx.filteredLeaves.inputs `` .
* A new `` ComponentGroupEnum `` is added with the following enum items: `` INPUTS_GROUP `` , `` OUTPUTS_GROUP `` ,
2017-10-03 16:32:11 +00:00
`` COMMANDS_GROUP `` , `` ATTACHMENTS_GROUP `` , `` NOTARY_GROUP `` , `` TIMEWINDOW_GROUP `` .
2017-09-20 12:11:58 +00:00
2017-09-22 09:17:01 +00:00
* `` ContractUpgradeFlow.Initiator `` has been renamed to `` ContractUpgradeFlow.Initiate ``
2017-09-22 15:03:24 +00:00
* `` @RPCSinceVersion `` , `` RPCException `` and `` PermissionException `` have moved to `` net.corda.client.rpc `` .
2017-09-26 08:11:00 +00:00
* Current implementation of SSL in `` CordaRPCClient `` has been removed until we have a better solution which doesn't rely
on the node's keystore.
2017-10-03 16:32:11 +00:00
.. _changelog_m14:
2017-08-10 16:39:14 +00:00
Milestone 14
------------
2017-07-27 12:14:08 +00:00
2017-06-27 17:14:51 +00:00
* Changes in `` NodeInfo `` :
* `` PhysicalLocation `` was renamed to `` WorldMapLocation `` to emphasise that it doesn't need to map to a truly physical
location of the node server.
2018-05-09 14:19:35 +00:00
* Slots for multiple IP addresses and `` legalIdentitiesAndCert `` entries were introduced. Addresses are no longer of type
2017-07-07 14:11:07 +00:00
`` SingleMessageRecipient `` , but of `` NetworkHostAndPort `` .
2017-04-12 16:15:29 +00:00
2017-06-29 10:13:40 +00:00
* `` ServiceHub.storageService `` has been removed. `` attachments `` and `` validatedTransactions `` are now direct members of
`` ServiceHub `` .
2017-07-04 12:56:51 +00:00
* Mock identity constants used in tests, such as `` ALICE `` , `` BOB `` , `` DUMMY_NOTARY `` , have moved to `` net.corda.testing ``
in the `` test-utils `` module.
2017-07-06 09:24:42 +00:00
* `` DummyContract `` , `` DummyContractV2 `` , `` DummyLinearContract `` and `` DummyState `` have moved to `` net.corda.testing.contracts ``
in the `` test-utils `` modules.
2017-07-06 09:08:17 +00:00
* In Java, `` QueryCriteriaUtilsKt `` has moved to `` QueryCriteriaUtils `` . Also `` and `` and `` or `` are now instance methods
2018-06-21 15:57:30 +00:00
of `` QueryCriteria `` .
2017-07-06 09:08:17 +00:00
2017-07-06 16:27:44 +00:00
* `` random63BitValue() `` has moved to `` CryptoUtils ``
2017-07-10 11:49:00 +00:00
* Added additional common Sort attributes (see `` Sort.CommandStateAttribute `` ) for use in Vault Query criteria
to include STATE_REF, STATE_REF_TXN_ID, STATE_REF_INDEX
2017-07-12 11:19:36 +00:00
* Moved the core flows previously found in `` net.corda.flows `` into `` net.corda.core.flows `` . This is so that all packages
in the `` core `` module begin with `` net.corda.core `` .
2017-08-10 16:39:14 +00:00
* `` FinalityFlow `` can now be subclassed, and the `` broadcastTransaction `` and `` lookupParties `` function can be
2018-06-21 15:57:30 +00:00
overridden in order to handle cases where no single transaction participant is aware of all parties, and therefore
2017-07-14 15:54:39 +00:00
the transaction must be relayed between participants rather than sent from a single node.
2017-07-19 12:06:43 +00:00
* `` TransactionForContract `` has been removed and all usages of this class have been replaced with usage of
`` LedgerTransaction `` . In particular `` Contract.verify `` and the `` Clauses `` API have been changed and now take a
2018-06-21 15:57:30 +00:00
`` LedgerTransaction `` as passed in parameter. The principal consequence of this is that the types of the input and output
2017-07-19 12:06:43 +00:00
collections on the transaction object have changed, so it may be necessary to `` map `` down to the `` ContractState ``
sub-properties in existing code.
2017-07-24 11:41:21 +00:00
* Added various query methods to `` LedgerTransaction `` to simplify querying of states and commands. In the same vain
`` Command `` is now parameterised on the `` CommandData `` field.
2017-07-19 12:06:43 +00:00
2017-07-24 09:12:27 +00:00
* Kotlin utilities that we deemed useful enough to keep public have been moved out of `` net.corda.core.Utils `` and into
`` net.corda.core.utilities.KotlinUtils `` . The other utilities have been marked as internal.
2017-07-25 16:54:36 +00:00
* Changes to `` Cordformation `` / cordapp building:
* `` Cordformation `` modifies the JAR task to make cordapps build as semi fat JARs containing all dependencies
except other cordapps and Corda core dependencies.
* `` Cordformation `` adds a `` corda `` and `` cordaRuntime `` configuration to projects which cordapp developers should
use to exclude core Corda JARs from being built into Cordapp fat JARs.
2017-08-10 16:39:14 +00:00
* `` database `` field in `` AbstractNode `` class has changed the type from `` org.jetbrains.exposed.sql.Database `` to
‘ net.corda.node.utilities.CordaPersistence’ - no change is needed for the typical use
(i.e. services.database.transaction { code block } ) however a change is required when Database was explicitly declared
2017-08-03 16:17:17 +00:00
2017-08-10 16:39:14 +00:00
* `` DigitalSignature.LegallyIdentifiable `` , previously used to identify a signer (e.g. in Oracles), has been removed.
One can use the public key to derive the corresponding identity.
2017-07-31 13:23:17 +00:00
2017-08-10 16:39:14 +00:00
* Vault Query improvements and fixes:
2017-08-04 15:22:21 +00:00
2017-08-10 16:39:14 +00:00
* FIX inconsistent behaviour: Vault Query defaults to UNCONSUMED in all QueryCriteria types
2017-07-31 13:23:17 +00:00
2017-08-10 16:39:14 +00:00
* FIX serialization error: Vault Query over RPC when using custom attributes using VaultCustomQueryCriteria.
2017-08-04 10:26:31 +00:00
2017-08-10 16:39:14 +00:00
* Aggregate function support: extended VaultCustomQueryCriteria and associated DSL to enable specification of
2018-05-09 14:19:35 +00:00
aggregate functions (sum, max, min, avg, count) with, optional, group by clauses and sorting (on calculated aggregate).
* Pagination simplification. Pagination continues to be optional, with following changes:
2017-08-04 10:26:31 +00:00
2017-08-10 16:39:14 +00:00
- If no PageSpecification provided then a maximum of MAX_PAGE_SIZE (200) results will be returned, otherwise we fail-fast with a `` VaultQueryException `` to alert the API user to the need to specify a PageSpecification.
Internally, we no longer need to calculate a results count (thus eliminating an expensive SQL query) unless a PageSpecification is supplied (note: that a value of -1 is returned for total_results in this scenario).
Internally, we now use the AggregateFunction capability to perform the count.
- Paging now starts from 1 (was previously 0).
* Additional Sort criteria: by StateRef (or constituents: txId, index)
* Confidential identities API improvements
* Registering anonymous identities now takes in AnonymousPartyAndPath
* AnonymousParty.toString() now uses toStringShort() to match other toString() functions
* Add verifyAnonymousIdentity() function to verify without storing an identity
* Replace pathForAnonymous() with anonymousFromKey() which matches actual use-cases better
* Add unit test for fetching the anonymous identity from a key
* Update verifyAnonymousIdentity() function signature to match registerAnonymousIdentity()
* Rename AnonymisedIdentity to AnonymousPartyAndPath
* Remove certificate from AnonymousPartyAndPath as it's not actually used.
* Rename registerAnonymousIdentity() to verifyAndRegisterAnonymousIdentity()
2017-08-04 16:23:31 +00:00
2017-08-10 16:17:12 +00:00
* Added JPA `` AbstractPartyConverter `` to ensure identity schema attributes are persisted securely according to type
(well known party, resolvable anonymous party, completely anonymous party).
2017-10-03 16:32:11 +00:00
.. _changelog_m13:
2017-06-23 12:12:56 +00:00
Milestone 13
2017-06-29 10:13:40 +00:00
------------
2017-06-23 12:12:56 +00:00
Special thank you to `Frederic Dalibard <https://github.com/FredericDalibard> `_ , for his contribution which adds
support for more currencies to the DemoBench and Explorer tools.
2017-05-17 21:42:00 +00:00
2017-06-23 12:12:56 +00:00
* A new Vault Query service:
2017-06-14 13:26:06 +00:00
2017-06-23 12:12:56 +00:00
* Implemented using JPA and Hibernate, this new service provides the ability to specify advanced queries using
criteria specification sets for both vault attributes and custom contract specific attributes. In addition, new
queries provide sorting and pagination capabilities.
The new API provides two function variants which are exposed for usage within Flows and by RPC clients:
2018-05-09 14:19:35 +00:00
2017-06-23 12:12:56 +00:00
- `` queryBy() `` for point-in-time snapshot queries
(replaces several existing VaultService functions and a number of Kotlin-only extension functions)
- `` trackBy() `` for snapshot and streaming updates
(replaces the VaultService `` track() `` function and the RPC `` vaultAndUpdates() `` function)
2018-05-09 14:19:35 +00:00
2017-06-23 12:12:56 +00:00
Existing VaultService API methods will be maintained as deprecated until the following milestone release.
2017-06-20 16:13:39 +00:00
2017-06-23 12:12:56 +00:00
* The NodeSchema service has been enhanced to automatically generate mapped objects for any ContractState objects
that extend FungibleAsset or LinearState, such that common attributes of those parent states are persisted to
two new vault tables: vault_fungible_states and vault_linear_states (and thus queryable using the new Vault Query
service API).
Similarly, two new common JPA superclass schemas (`` CommonSchemaV1.FungibleState `` and
`` CommonSchemaV1.LinearState `` ) mirror the associated FungibleAsset and LinearState interface states to enable
CorDapp developers to create new custom schemas by extension (rather than duplication of common attribute mappings)
2017-06-20 16:13:39 +00:00
2017-06-23 12:12:56 +00:00
* A new configurable field `` requiredSchemas `` has been added to the CordaPluginRegistry to enable CorDapps to
register custom contract state schemas they wish to query using the new Vault Query service API (using the
`` VaultCustomQueryCriteria `` ).
2017-06-20 16:13:39 +00:00
2018-05-09 14:19:35 +00:00
* See :doc: `api-vault-query` for full details and code samples of using the new Vault Query service.
2017-06-23 12:12:56 +00:00
* Identity and cryptography related changes:
* Enable certificate validation in most scenarios (will be enforced in all cases in an upcoming milestone).
* Added DER encoded format for CompositeKey so they can be used in X.509 certificates.
* Corrected several tests which made assumptions about counterparty keys, which are invalid when confidential
identities are used.
* A new RPC has been added to support fuzzy matching of X.500 names, for instance, to translate from user input to
an unambiguous identity by searching the network map.
2017-06-23 12:48:21 +00:00
* A function for deterministic key derivation `` Crypto.deriveKeyPair(privateKey: PrivateKey, seed: ByteArray) ``
2017-06-23 12:12:56 +00:00
has been implemented to support deterministic `` KeyPair `` derivation using an existing private key and a seed
as inputs. This operation is based on the HKDF scheme and it's a variant of the hardened parent-private ->
child-private key derivation function of the BIP32 protocol, but it doesn't utilize extension chain codes.
Currently, this function supports the following schemes: ECDSA secp256r1 (NIST P-256), ECDSA secp256k1 and
EdDSA ed25519.
* A new `` ClassWhitelist `` implementation, `` AllButBlacklisted `` is used internally to blacklist classes/interfaces,
which are not expected to be serialised during checkpoints, such as `` Thread `` , `` Connection `` and `` HashSet `` .
This implementation supports inheritance and if a superclass or superinterface of a class is blacklisted, so is
the class itself. An `` IllegalStateException `` informs the user if a class is blacklisted and such an exception is
returned before checking for `` @CordaSerializable `` ; thus, blacklisting precedes annotation checking.
* `` TimeWindow `` has a new 5th factory method `` TimeWindow.fromStartAndDuration(fromTime: Instant, duration: Duration) ``
which takes a start-time and a period-of-validity (after this start-time) as inputs.
* The node driver has moved to net.corda.testing.driver in the test-utils module.
* Web API related collections `` CordaPluginRegistry.webApis `` and `` CordaPluginRegistry.staticServeDirs `` moved to
`` net.corda.webserver.services.WebServerPluginRegistry `` in `` webserver `` module.
Classes serving Web API should now extend `` WebServerPluginRegistry `` instead of `` CordaPluginRegistry ``
and they should be registered in `` resources/META-INF/services/net.corda.webserver.services.WebServerPluginRegistry `` .
* Added a flag to the driver that allows the running of started nodes in-process, allowing easier debugging.
To enable use `driver(startNodesInProcess = true) { .. }` , or `startNode(startInSameProcess = true, ..)`
to specify for individual nodes.
2017-06-20 14:29:35 +00:00
2017-06-23 12:12:56 +00:00
* Dependencies changes:
* Upgraded Dokka to v0.9.14.
* Upgraded Gradle Plugins to 0.12.4.
* Upgraded Apache ActiveMQ Artemis to v2.1.0.
* Upgraded Netty to v4.1.9.Final.
* Upgraded BouncyCastle to v1.57.
* Upgraded Requery to v1.3.1.
2017-06-20 14:29:35 +00:00
2017-10-03 16:32:11 +00:00
.. _changelog_m12:
Milestone 12 (First Public Beta)
--------------------------------
2017-06-08 14:29:48 +00:00
2017-05-19 15:14:48 +00:00
* Quite a few changes have been made to the flow API which should make things simpler when writing CorDapps:
2017-05-25 12:18:49 +00:00
2018-05-09 14:19:35 +00:00
* `` CordaPluginRegistry.requiredFlows `` is no longer needed. Instead annotate any flows you wish to start via RPC with
2017-05-19 15:14:48 +00:00
`` @StartableByRPC `` and any scheduled flows with `` @SchedulableFlow `` .
2017-05-10 10:28:25 +00:00
2017-05-19 15:14:48 +00:00
* `` CordaPluginRegistry.servicePlugins `` is also no longer used, along with `` PluginServiceHub.registerFlowInitiator `` .
Instead annotate your initiated flows with `` @InitiatedBy `` . This annotation takes a single parameter which is the
initiating flow. This initiating flow further has to be annotated with `` @InitiatingFlow `` . For any services you
2017-06-02 14:47:20 +00:00
may have, such as oracles, annotate them with `` @CordaService `` . These annotations will be picked up automatically
when the node starts up.
* Due to these changes, when unit testing flows make sure to use `` AbstractNode.registerInitiatedFlow `` so that the flows
are wired up. Likewise for services use `` AbstractNode.installCordaService `` .
2017-04-12 16:15:29 +00:00
2017-05-19 15:14:48 +00:00
* Related to `` InitiatingFlow `` , the `` shareParentSessions `` boolean parameter of `` FlowLogic.subFlow `` has been
removed. This was an unfortunate parameter that unnecessarily exposed the inner workings of flow sessions. Now, if
your sub-flow can be started outside the context of the parent flow then annotate it with `` @InitiatingFlow `` . If
it's meant to be used as a continuation of the existing parent flow, such as `` CollectSignaturesFlow `` , then it
doesn't need any annotation.
2017-05-08 09:38:18 +00:00
2017-05-19 15:14:48 +00:00
* The `` InitiatingFlow `` annotation also has an integer `` version `` property which assigns the initiating flow a version
number, defaulting to 1 if it's not specified. This enables versioning of flows with nodes only accepting communication
if the version number matches. At some point we will support the ability for a node to have multiple versions of the
same flow registered, enabling backwards compatibility of flows.
2017-05-03 10:02:56 +00:00
2017-05-19 15:14:48 +00:00
* `` ContractUpgradeFlow.Instigator `` has been renamed to just `` ContractUpgradeFlow `` .
2017-05-03 12:46:04 +00:00
2017-05-19 15:14:48 +00:00
* `` NotaryChangeFlow.Instigator `` has been renamed to just `` NotaryChangeFlow `` .
2017-05-03 12:46:04 +00:00
2017-05-19 15:14:48 +00:00
* `` FlowLogic.getCounterpartyMarker `` is no longer used and been deprecated for removal. If you were using this to
manage multiple independent message streams with the same party in the same flow then use sub-flows instead.
2017-05-08 09:38:18 +00:00
2017-05-19 15:14:48 +00:00
* There are major changes to the `` Party `` class as part of confidential identities:
2017-05-10 10:55:52 +00:00
2017-05-19 15:14:48 +00:00
* `` Party `` has moved to the `` net.corda.core.identity `` package; there is a deprecated class in its place for
backwards compatibility, but it will be removed in a future release and developers should move to the new class as soon
as possible.
* There is a new `` AbstractParty `` superclass to `` Party `` , which contains just the public key. This now replaces
use of `` Party `` and `` PublicKey `` in state objects, and allows use of full or anonymised parties depending on
use-case.
2017-06-01 17:54:44 +00:00
* A new `` PartyAndCertificate `` class has been added which aggregates a Party along with an X.509 certificate and
certificate path back to a network trust root. This is used where a Party and its proof of identity are required,
for example in identity registration.
2017-05-19 15:14:48 +00:00
* Names of parties are now stored as a `` X500Name `` rather than a `` String `` , to correctly enforce basic structure of the
name. As a result all node legal names must now be structured as X.500 distinguished names.
2017-05-10 10:55:52 +00:00
2017-05-31 13:45:58 +00:00
* The identity management service takes an optional network trust root which it will validate certificate paths to, if
provided. A later release will make this a required parameter.
2017-05-19 15:14:48 +00:00
* There are major changes to transaction signing in flows:
2017-05-30 15:10:57 +00:00
2017-05-19 15:14:48 +00:00
* You should use the new `` CollectSignaturesFlow `` and corresponding `` SignTransactionFlow `` which handle most
2018-05-09 14:19:35 +00:00
of the details of this for you. They may get more complex in future as signing becomes a more featureful
operation. `` ServiceHub.legalIdentityKey `` no longer returns a `` KeyPair `` , it instead returns just the
`` PublicKey `` portion of this pair. The `` ServiceHub.notaryIdentityKey `` has changed similarly. The goal of this
change is to keep private keys encapsulated and away from most flow code/Java code, so that the private key
material can be stored in HSMs and other key management devices.
2017-06-08 14:29:48 +00:00
* The `` KeyManagementService `` no longer provides any mechanism to request the node's `` PrivateKey `` objects directly.
2017-05-19 15:14:48 +00:00
Instead signature creation occurs in the `` KeyManagementService.sign `` , with the `` PublicKey `` used to indicate
2017-06-08 14:29:48 +00:00
which of the node's keypairs to use. This lookup also works for `` CompositeKey `` scenarios
2017-05-19 15:14:48 +00:00
and the service will search for a leaf key hosted on the node.
* The `` KeyManagementService.freshKey `` method now returns only the `` PublicKey `` portion of the newly generated `` KeyPair ``
with the `` PrivateKey `` kept internally to the service.
* Flows which used to acquire a node's `` KeyPair `` , typically via `` ServiceHub.legalIdentityKey `` ,
should instead use the helper methods on `` ServiceHub `` . In particular to freeze a `` TransactionBuilder `` and
2017-08-04 10:50:52 +00:00
generate an initial partially signed `` SignedTransaction `` the flow should use `` ServiceHub.toSignedTransaction `` .
2017-05-19 15:14:48 +00:00
Flows generating additional party signatures should use `` ServiceHub.createSignature `` . Each of these methods is
provided with two signatures. One version that signs with the default node key, the other which allows key selection
by passing in the `` PublicKey `` partner of the desired signing key.
* The original `` KeyPair `` signing methods have been left on the `` TransactionBuilder `` and `` SignedTransaction `` , but
should only be used as part of unit testing.
* `` Timestamp `` used for validation/notarization time-range has been renamed to `` TimeWindow `` .
There are now 4 factory methods `` TimeWindow.fromOnly(fromTime: Instant) `` ,
`` TimeWindow.untilOnly(untilTime: Instant) `` , `` TimeWindow.between(fromTime: Instant, untilTime: Instant) `` and
`` TimeWindow.withTolerance(time: Instant, tolerance: Duration) `` .
Previous constructors `` TimeWindow(fromTime: Instant, untilTime: Instant) `` and
`` TimeWindow(time: Instant, tolerance: Duration) `` have been removed.
* The Bouncy Castle library `` X509CertificateHolder `` class is now used in place of `` X509Certificate `` in order to
have a consistent class used internally. Conversions to/from `` X509Certificate `` are done as required, but should
be avoided where possible.
2017-05-08 09:38:18 +00:00
2017-05-24 15:13:37 +00:00
* The certificate hierarchy has been changed in order to allow corda node to sign keys with proper certificate chain.
* The corda node will now be issued a restricted client CA for identity/transaction key signing.
* TLS certificate are now stored in `sslkeystore.jks` and identity keys are stored in `nodekeystore.jks`
2017-05-17 21:42:00 +00:00
2017-05-24 15:13:37 +00:00
.. warning :: The old keystore will need to be removed when upgrading to this version.
2017-05-15 16:23:07 +00:00
Milestone 11.1
--------------
* Fix serialisation error when starting a flow.
* Automatically whitelist subclasses of `InputStream` when serialising.
* Fix exception in DemoBench on Windows when loading CorDapps into the Node Explorer.
* Detect when localhost resolution is broken on MacOSX, and provide instructions on how to fix it.
2017-05-03 10:02:56 +00:00
Milestone 11.0
--------------
* API changes:
* Added extension function `` Database.transaction `` to replace `` databaseTransaction `` , which is now deprecated.
2017-04-13 12:25:12 +00:00
2017-04-26 09:11:10 +00:00
* Starting a flow no longer enables progress tracking by default. To enable it, you must now invoke your flow using
one of the new `` CordaRPCOps.startTrackedFlow `` functions. `` FlowHandle `` is now an interface, and its `` progress: Observable ``
field has been moved to the `` FlowProgressHandle `` child interface. Hence developers no longer need to invoke `` notUsed ``
on their flows' unwanted progress-tracking observables.
2017-04-19 19:11:51 +00:00
2017-02-24 16:15:03 +00:00
* Moved `` generateSpend `` and `` generateExit `` functions into `` OnLedgerAsset `` from the vault and
`` AbstractConserveAmount `` clauses respectively.
2017-05-08 09:38:18 +00:00
* Added `` CompositeSignature `` and `` CompositeSignatureData `` as part of enabling `` java.security `` classes to work
with composite keys and signatures.
2017-04-26 09:11:10 +00:00
2017-05-08 09:38:18 +00:00
* `` CompositeKey `` now implements `` java.security.PublicKey `` interface, so that keys can be used on standard classes
such as `` Certificate `` .
2017-05-03 10:02:56 +00:00
2017-05-08 09:38:18 +00:00
* There is no longer a need to transform single keys into composite - `` composite `` extension was removed, it is
2018-06-21 15:57:30 +00:00
impossible to create `` CompositeKey `` with only one leaf.
2017-05-03 10:02:56 +00:00
2017-05-08 09:38:18 +00:00
* Constructor of `` CompositeKey `` class is now private. Use `` CompositeKey.Builder `` to create a composite key.
Keys emitted by the builder are normalised so that it's impossible to create a composite key with only one node.
(Long chains of single nodes are shortened.)
2017-05-03 10:02:56 +00:00
2017-05-08 09:38:18 +00:00
* Use extension function `` PublicKeys.keys `` to access all keys belonging to an instance of `` PublicKey `` . For a
`` CompositeKey `` , this is equivalent to `` CompositeKey.leafKeys `` .
2017-05-03 10:02:56 +00:00
2017-05-08 09:38:18 +00:00
* Introduced `` containsAny `` , `` isFulfilledBy `` , `` keys `` extension functions on `` PublicKey `` - `` CompositeKey ``
type checking is done there.
2017-05-03 10:02:56 +00:00
2017-05-08 09:38:18 +00:00
* Corda now requires JDK 8u131 or above in order to run. Our Kotlin now also compiles to JDK8 bytecode, and so you'll need
to update your CorDapp projects to do the same. E.g. by adding this to `` build.gradle `` :
2017-05-03 10:02:56 +00:00
.. parsed-literal ::
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
kotlinOptions {
languageVersion = "1.1"
apiVersion = "1.1"
jvmTarget = "1.8"
}
}
..
or by adjusting `` Settings/Build,Execution,Deployment/Compiler/KotlinCompiler `` in IntelliJ::
- Language Version: 1.1
- API Version: 1.1
- Target JVM Version: 1.8
2017-04-26 09:11:10 +00:00
2017-04-20 14:25:27 +00:00
* DemoBench is now installed as `` Corda DemoBench `` instead of `` DemoBench `` .
2017-04-27 10:27:55 +00:00
* Rewrote standard test identities to have full X.500 distinguished names. As part of this work we standardised on a
smaller set of test identities, to reduce risk of subtle differences (i.e. similar common names varying by whitespace)
in naming making it hard to diagnose issues.
2017-04-07 09:12:01 +00:00
Milestone 10.0
--------------
2017-03-05 21:20:43 +00:00
2017-04-26 09:11:10 +00:00
Special thank you to `Qian Hong <https://github.com/fracting> `_ , `Marek Skocovsky <https://github.com/marekdapps> `_ ,
`Karel Hajek <https://github.com/polybioz> `_ , and `Jonny Chiu <https://github.com/johnnyychiu> `_ for their contributions
to Corda in M10.
2017-04-07 16:33:45 +00:00
2017-04-26 09:11:10 +00:00
.. warning :: Due to incompatibility between older version of IntelliJ and gradle 3.4, you will need to upgrade Intellij
2018-06-13 08:43:16 +00:00
to 2017.1 (with kotlin-plugin v1.1.1) in order to run Corda demos in IntelliJ. You can download the latest IntelliJ
2017-04-26 09:11:10 +00:00
from `JetBrains <https://www.jetbrains.com/idea/download/> `_ .
2017-03-05 21:20:43 +00:00
2017-04-26 09:11:10 +00:00
.. warning :: The Kapt-generated models are no longer included in our codebase. If you experience `` unresolved references ``
2018-06-13 08:43:16 +00:00
errors when building in IntelliJ, please rebuild the schema model by running `` gradlew kaptKotlin `` in Windows or
2017-04-26 09:11:10 +00:00
`` ./gradlew kaptKotlin `` in other systems. Alternatively, perform a full gradle build or install.
2017-04-07 09:12:01 +00:00
2017-04-26 09:11:10 +00:00
.. note :: Kapt is used to generate schema model and entity code (from annotations in the codebase) using the Kotlin Annotation
2018-06-13 08:43:16 +00:00
processor.
2017-04-07 09:12:01 +00:00
* Corda DemoBench:
2017-05-08 09:38:18 +00:00
* DemoBench is a new tool to make it easy to configure and launch local Corda nodes. A very useful tool to demonstrate
to your colleagues the fundamentals of Corda in real-time. It has the following features:
2017-05-03 10:02:56 +00:00
2017-04-26 09:11:10 +00:00
* Clicking "Add node" creates a new tab that lets you edit the most important configuration properties of the node
before launch, such as its legal name and which CorDapps will be loaded.
2017-04-07 09:12:01 +00:00
* Each tab contains a terminal emulator, attached to the pseudoterminal of the node. This lets you see console output.
2017-04-26 09:11:10 +00:00
* You can launch an Corda Explorer instance for each node via the DemoBench UI. Credentials are handed to the Corda
Explorer so it starts out logged in already.
2017-04-07 09:12:01 +00:00
* Some basic statistics are shown about each node, informed via the RPC connection.
* Another button launches a database viewer in the system browser.
* The configurations of all running nodes can be saved into a single `` .profile `` file that can be reloaded later.
2017-05-03 10:02:56 +00:00
2018-05-09 14:19:35 +00:00
* Download `Corda DemoBench <https://www.corda.net/downloads/> `_ .
2017-04-07 09:12:01 +00:00
* Vault:
2017-04-26 09:11:10 +00:00
* Soft Locking is a new feature implemented in the vault which prevent a node constructing transactions that attempt
to use the same input(s) simultaneously.
2017-04-07 09:12:01 +00:00
* Such transactions would result in naturally wasted effort when the notary rejects them as double spend attempts.
2017-04-26 09:11:10 +00:00
* Soft locks are automatically applied to coin selection (eg. cash spending) to ensure that no two transactions attempt
to spend the same fungible states.
2017-04-07 09:12:01 +00:00
* Corda Shell :
* The shell lets developers and node administrators easily command the node by running flows, RPCs and SQL queries.
* It provides a variety of commands to monitor the node.
2017-04-26 09:11:10 +00:00
* The Corda Shell is based on the popular `CRaSH project <http://www.crashub.org/> `_ and new commands can be easily
added to the node by simply dropping Groovy or Java files into the node's `` shell-commands `` directory.
2017-04-07 09:12:01 +00:00
* We have many enhancements planned over time including SSH access, more commands and better tab completion.
* API changes:
* The new Jackson module provides JSON/YAML serialisers for common Corda datatypes.
If you have previously been using the JSON support in the standalone web server,
please be aware that Amounts are now serialised as strings instead of { quantity, token } pairs as before.
The old format is still accepted, but the new JSON will be produced using strings like "1000.00 USD" when writing.
You can use any format supported by `` Amount.parseCurrency `` as input.
* We have restructured client package in this milestone.
* `` CordaClientRPC `` is now in the new `` :client:rpc `` module.
* The old `` :client `` module has been split up into `` :client:jfx `` and `` :client:mock `` .
2017-04-26 09:11:10 +00:00
* We also have a new `` :node-api `` module (package `` net.corda.nodeapi `` ) which contains the shared code between
`` node `` and `` client `` .
2017-04-07 09:12:01 +00:00
2017-04-26 09:11:10 +00:00
* The basic Amount API has been upgraded to have support for advanced financial use cases and to better integrate with
currency reference data.
2017-03-05 21:20:43 +00:00
2017-03-17 10:32:14 +00:00
* Configuration:
2017-04-07 09:12:01 +00:00
* Replace `` artemisPort `` with `` p2pPort `` in Gradle configuration.
* Replace `` artemisAddress `` with `` p2pAddress `` in node configuration.
* Added `` rpcAddress `` in node configuration for non-ssl RPC connection.
* Object Serialization:
* Pool Kryo instances for efficiency.
* RPC client changes:
2017-04-26 09:11:10 +00:00
* RPC clients can now connect to the node without the need for SSL. This requires a separate port on the Artemis broker,
SSL must not be used for RPC connection.
2017-04-07 09:12:01 +00:00
* CordaRPCClient now needs to connect to `` rpcAddress `` rather than `` p2pAddress `` .
* Dependencies changes:
* Upgraded Kotlin to v1.1.1.
* Upgraded Gradle to v3.4.1.
* Upgraded requery to v1.2.1.
* Upgraded H2 to v1.4.194.
* Replaced kotlinx-support-jdk8 with kotlin-stdlib-jre8.
* Improvements:
* Added `` --version `` command line flag to print the version of the node.
* Flows written in Java can now execute a sub-flow inside `` UntrustworthyData.unwrap `` .
2017-04-26 09:11:10 +00:00
* Added optional out-of-process transaction verification. Any number of external verifier processes may be attached
to the node which can handle loadbalanced verification requests.
2017-04-07 09:12:01 +00:00
* Bug fixes:
* `` --logging-level `` command line flag was previously broken, now correctly sets the logging level.
* Fixed bug whereby Cash Exit was not taking into account the issuer reference.
2017-03-17 10:32:14 +00:00
2017-03-08 14:36:12 +00:00
Milestone 9.1
-------------
2017-03-08 14:56:42 +00:00
* Correct web server ports for IRS demo.
2017-03-08 14:36:12 +00:00
* Correct which corda-webserver JAR is published to Maven.
2017-02-02 16:56:25 +00:00
Milestone 9
-----------
2017-03-01 15:43:56 +00:00
* With thanks to `Thomas Schroeter <https://github.com/thschroeter> `_ for the Byzantine fault tolerant (BFT)
notary prototype.
* Web server is a separate JAR. This is a breaking change. The new webserver JAR (`` corda-webserver.jar `` )
must be invoked separately to node startup, using the command`` java -jar corda-webserver.jar `` in the same
directory as the `` node.conf `` . Further changes are anticipated in upcoming milestone releases.
2017-02-02 16:56:25 +00:00
* API:
* Pseudonymous `` AnonymousParty `` class added as a superclass of `` Party `` .
2017-02-03 14:07:45 +00:00
* Split `` CashFlow `` into individual `` CashIssueFlow `` , `` CashPaymentFlow `` and `` CashExitFlow `` flows, so that fine
grained permissions can be applied. Added `` CashFlowCommand `` for use-cases where cash flow triggers need to be
captured in an object that can be passed around.
2017-02-28 08:12:18 +00:00
* `` CordaPluginRegistry `` method `` registerRPCKryoTypes `` is renamed `` customizeSerialization `` and the argument
types now hide the presence of Kryo.
2017-03-01 15:43:56 +00:00
* New extension functions for encoding/decoding to base58, base64, etc. See
`` core/src/main/kotlin/net/corda/core/crypto/EncodingUtils.kt ``
* Add `` openAttachment `` function to Corda RPC operations, for downloading an attachment from a node's data storage.
* Add `` getCashBalances `` function to Corda RPC operations, for getting cash balances from a node's vault.
* Configuration:
* `` extraAdvertisedServiceIds `` config is now a list of strings, rather than a comma separated string. For example
`` [ "corda.interest_rates" ] `` instead of `` "corda.interest_rates" `` .
* Flows:
* Split `` CashFlow `` into separate `` CashIssueFlow `` , `` CashPaymentFlow `` and `` CashExitFlow `` so that permissions can
be assigned individually.
* Split single example user into separate "bankUser" and "bigCorpUser" so that permissions for the users make sense
rather than being a combination of both roles.
* `` ProgressTracker `` emits exception thrown by the flow, allowing the ANSI renderer to correctly stop and print the error
2017-02-28 08:12:18 +00:00
* Object Serialization:
* Consolidated Kryo implementations across RPC and P2P messaging with whitelisting of classes via plugins or with
`` @CordaSerializable `` for added node security.
2017-02-02 16:56:25 +00:00
2017-03-01 15:43:56 +00:00
* Privacy:
* Non-validating notary service now takes in a `` FilteredTransaction `` so that no potentially sensitive transaction
details are unnecessarily revealed to the notary
* General:
* Add vault service persistence using Requery
* Certificate signing utility output is now more verbose
2017-01-23 11:54:04 +00:00
Milestone 8
-----------
2017-02-06 16:16:25 +00:00
* Node memory usage and performance improvements, demo nodes now only require 200 MB heap space to run.
* The Corda node no longer runs an internal web server, it's now run in a separate process. Driver and Cordformation have
2017-04-26 09:11:10 +00:00
been updated to reflect this change. Existing CorDapps should be updated with additional calls to the new `` startWebserver() ``
interface in their Driver logic (if they use the driver e.g. in integration tests). See the IRS demo for an example.
2017-02-06 16:16:25 +00:00
* Data model: `` Party `` equality is now based on the owning key, rather than the owning key and name. This is important for
party anonymisation to work, as each key must identify exactly one party.
* Contracts: created new composite clauses called `` AllOf `` , `` AnyOf `` and `` FirstOf `` to replace `` AllComposition `` , `` AnyComposition ``
and `` FirstComposition `` , as this is significantly clearer in intent. `` AnyOf `` also enforces that at least one subclause
must match, whereas `` AnyComposition `` would accept no matches.
* Explorer: the user can now configure certificate path and keystore/truststore password on the login screen.
* Documentation:
* Key Concepts section revamped with new structure and content.
* Added more details to :doc: `getting-set-up` page.
* Flow framework: improved exception handling with the introduction of `` FlowException `` . If this or a subtype is thrown
inside a flow it will propagate to all counterparty flows and subsequently be thrown by them as well. Existing flows such as
`` NotaryFlow.Client/Service `` and others have been modified to throw a `` FlowException `` (in this particular case a
`` NotaryException `` ) instead of sending back error responses.
* Notary flow: provide complete details of underlying error when contract validation fails.
2017-01-23 11:54:04 +00:00
2017-01-06 15:54:26 +00:00
Milestone 7
2017-01-06 16:48:14 +00:00
-----------
2017-01-06 15:54:26 +00:00
2017-01-09 15:03:53 +00:00
* With thanks to `Thomas Schroeter <https://github.com/thschroeter> `_ `` NotaryFlow `` is now idempotent.
2017-01-06 15:54:26 +00:00
2017-01-06 16:55:17 +00:00
* Explorer:
2017-01-06 15:54:26 +00:00
2017-01-06 16:55:17 +00:00
* The GUI for the explorer now shows other nodes on the network map and the transactions between them.
* Map resolution increased and allows zooming and panning.
2017-01-09 15:03:53 +00:00
* `Video demonstration <https://www.corda.net/2017/01/03/the-node-explorer/> `_ of the Node Explorer.
2017-01-06 15:54:26 +00:00
2017-01-06 16:55:17 +00:00
* The CorDapp template now has a Java example that parallels the Kotlin one for developers more comfortable with Java.
2017-01-06 17:09:37 +00:00
ORM support added to the Kotlin example.
2017-01-06 15:54:26 +00:00
2017-01-06 16:48:14 +00:00
* Demos:
2017-01-06 15:54:26 +00:00
2017-01-06 16:55:17 +00:00
* Added the Bank of Corda demo - a demo showing a node (Bank of Corda) acting as an issuer of Cash, and a client
driver providing both Web and RPC access to request issuance of cash.
2017-01-06 15:54:26 +00:00
* Demos now use RPC to communicate with the node from the webserver. This brings the demos more in line with how
interaction with nodes is expected to be. The demos now treat their webservers like clients. This will also allow
for the splitting of the webserver from the node for milestone 8.
2017-01-06 16:48:14 +00:00
* Added a SIMM valuation demo integration test to catch regressions.
2017-01-06 15:54:26 +00:00
2017-01-06 16:55:17 +00:00
* Security:
2017-01-06 16:10:59 +00:00
2017-01-06 16:55:17 +00:00
* MQ broker of the node now requires authentication which means that third parties cannot connect to and
listen to queues on the Node. RPC and P2P between nodes is now authenticated as a result of this change.
This also means that nodes or RPC users cannot pretend to be other nodes or RPC users.
* The node now does host verification of any node that connects to it and prevents man in the middle attacks.
2017-01-06 16:10:59 +00:00
2017-01-06 16:55:17 +00:00
* Improvements:
2017-01-06 17:09:37 +00:00
* Vault updates now contain full `` StateAndRef `` which allows subscribers to check whether the update contains
2017-01-06 15:54:26 +00:00
relevant states.
* Cash balances are calculated using aggregate values to prevent iterating through all states in the vault, which
2017-01-06 16:48:14 +00:00
improves performance.
* Multi-party services, such as notaries, are now load balanced and represented as a single `` Party `` object.
2017-01-06 16:55:17 +00:00
* The Notary Change flow now supports encumbrances.
2017-01-06 15:54:26 +00:00
2016-11-29 14:03:36 +00:00
Milestone 6
-----------
2016-11-29 16:05:17 +00:00
* Added the `Corda technical white paper <_static/corda-technical-whitepaper.pdf> `_ . Note that its current version
is 0.5 to reflect the fact that the Corda design is still evolving. Although we expect only relatively small tweaks
at this point, when Corda reaches 1.0 so will the white paper.
2016-11-29 14:03:36 +00:00
* Major documentation restructuring and new content:
2016-11-29 16:05:17 +00:00
* More details on Corda node internals.
* New CorDapp tutorial.
* New tutorial on building transactions.
2016-11-29 14:03:36 +00:00
* New tutorials on how to run and use a notary service.
2016-11-29 16:05:17 +00:00
* An experimental version of the deterministic JVM sandbox has been added. It is not integrated with the node and will
undergo some significant changes in the coming releases before it is integrated, as the code is finished, as bugs are
found and fixed, and as the platform subset we choose to expose is finalised. Treat this as an outline of the basic
approach rather than something usable for production.
2016-11-29 14:03:36 +00:00
2016-11-29 16:05:17 +00:00
* Developer experience:
2016-11-29 14:03:36 +00:00
2016-11-29 16:05:17 +00:00
* Samples have been merged back into the main repository. All samples can now be run via command line or IntelliJ.
2016-11-29 14:03:36 +00:00
2016-11-29 16:05:17 +00:00
* Added a Client RPC python example.
2016-11-29 14:03:36 +00:00
* Node console output now displays concise startup information, such as startup time or web address. All logging to
the console is suppressed apart from errors and flow progress tracker steps. It can be re-enabled by passing
2017-01-06 11:05:37 +00:00
`` --log-to-console `` command line parameter. Note that the log file remains unchanged and will still contain all
2016-11-29 14:03:36 +00:00
log entries.
2016-11-29 16:05:17 +00:00
* The `` runnodes `` scripts generated by the Gradle plugins now open each node in separate terminal windows or (on macOS) tabs.
* A much more complete template app.
* JARs now available on Maven Central.
2016-11-29 14:03:36 +00:00
2016-11-29 16:05:17 +00:00
* Data model: A party is now identified by a composite key (formerly known as a "public key tree") instead of a single public key.
Read more in :ref: `composite-keys` . This allows expressing distributed service identities, e.g. a distributed notary.
In the future this will also allow parties to use multiple signing keys for their legal identity.
2016-11-29 14:03:36 +00:00
2016-11-29 16:05:17 +00:00
* Decentralised consensus: A prototype RAFT based notary composed of multiple nodes has been added. This implementation
is optimised for high performance over robustness against malicious cluster members, which may be appropriate for
2018-05-09 14:19:35 +00:00
some financial situations.
2016-11-29 14:03:36 +00:00
2016-11-29 16:05:17 +00:00
* Node explorer app:
2016-11-29 14:03:36 +00:00
2016-11-29 16:05:17 +00:00
* New theme aligned with the Corda branding.
* The New Transaction screen moved to the Cash View (as it is used solely for cash transactions)
* Removed state machine/flow information from Transaction table. A new view for this will be created in a future release.
* Added a new Network View that displays details of all nodes on the network.
* Users can now configure the reporting currency in settings.
* Various layout and performance enhancements.
2016-11-29 14:03:36 +00:00
2016-11-29 16:05:17 +00:00
* Client RPC:
2016-11-29 14:03:36 +00:00
2016-11-29 16:05:17 +00:00
* Added a generic `` startFlow `` method that enables starting of any flow, given sufficient permissions.
* Added the ability for plugins to register additional classes or custom serialisers with Kryo for use in RPC.
* `` rpc-users.properties `` file has been removed with RPC user settings moved to the config file.
2016-11-29 14:03:36 +00:00
2016-11-29 16:05:17 +00:00
* Configuration changes: It is now possible to specify a custom legal name for any of the node's advertised services.
2016-11-29 14:03:36 +00:00
2016-11-29 16:05:17 +00:00
* Added a load testing framework which allows stress testing of a node cluster, as well as specifying different ways of
disrupting the normal operation of nodes. See :doc: `loadtesting` .
2016-11-29 14:03:36 +00:00
2016-11-29 16:05:17 +00:00
* Improvements to the experimental contract DSL, by Sofus Mortensen of Nordea Bank (please give Nordea a shoutout too).
2016-11-29 14:03:36 +00:00
API changes:
2016-11-29 16:05:17 +00:00
* The top level package has been renamed from `` com.r3corda `` to `` net.corda `` .
2016-11-29 14:03:36 +00:00
* Protocols have been renamed to "flows".
2016-11-29 16:05:17 +00:00
* `` OpaqueBytes `` now uses `` bytes `` as the field name rather than `` bits `` .
2016-11-29 14:03:36 +00:00
2016-11-04 13:10:27 +00:00
Milestone 5
-----------
* A simple RPC access control mechanism. Users, passwords and permissions can be defined in a configuration file.
This mechanism will be extended in future to support standard authentication systems like LDAP.
* New features in the explorer app and RPC API for working with cash:
* Cash can now be sent, issued and exited via RPC.
* Notes can now be associated with transactions.
* Hashes are visually represented using identicons.
* Lots of functional work on the explorer UI. You can try it out by running `` gradle tools:explorer:runDemoNodes `` to run
a local network of nodes that swap cash with each other, and then run `` gradle tools:explorer:run `` to start
the app.
* A new demo showing shared valuation of derivatives portfolios using the ISDA SIMM has been added. Note that this app
relies on a proprietary implementation of the ISDA SIMM business logic from OpenGamma. A stub library is provided
to ensure it compiles but if you want to use the app for real please contact us.
* Developer experience (we plan to do lots more here in milestone 6):
* Demos and samples have been split out of the main repository, and the initial developer experience continues to be
refined. All necessary JARs can now be installed to Maven Local by simply running `` gradle install `` .
* It's now easier to define a set of nodes to run locally using the new "CordFormation" gradle plugin, which
defines a simple DSL for creating networks of nodes.
* The template CorDapp has been upgraded with more documentation and showing more features.
* Privacy: transactions are now structured as Merkle trees, and can have sections "torn off" - presented for
verification and signing without revealing the rest of the transaction.
* Lots of bug fixes, tweaks and polish starting the run up to the open source release.
API changes:
* Plugin service classes now take a `` PluginServiceHub `` rather than a `` ServiceHubInternal `` .
* `` UniqueIdentifier `` equality has changed to only take into account the underlying UUID.
* The contracts module has been renamed to finance, to better reflect what it is for.
2016-10-07 14:49:02 +00:00
Milestone 4
-----------
New features in this release:
* Persistence:
* States can now be written into a relational database and queried using JDBC. The schemas are defined by the
smart contracts and schema versioning is supported. It is reasonable to write an app that stores data in a mix
of global ledger transactions and local database tables which are joined on demand, using join key slots that
2018-05-09 14:19:35 +00:00
are present in many state definitions. Read more about :doc: `api-persistence` .
2016-10-07 14:49:02 +00:00
* The embedded H2 SQL database is now exposed by default to any tool that can speak JDBC. The database URL is
printed during node startup and can be used to explore the database, which contains both node internal data
and tables generated from ledger states.
* Protocol checkpoints are now stored in the database as well. Message processing is now atomic with protocol
checkpointing and run under the same RDBMS transaction.
* MQ message deduplication is now handled at the app layer and performed under the RDMS transaction, so
ensuring messages are only replayed if the RDMS transaction rolled back.
* "The wallet" has been renamed to "the vault".
* Client RPC:
* New RPCs added to subscribe to snapshots and update streams state of the vault, currently executing protocols
and other important node information.
* New tutorial added that shows how to use the RPC API to draw live transaction graphs on screen.
* Protocol framework:
* Large simplifications to the API. Session management is now handled automatically. Messages are now routed
based on identities rather than node IP addresses.
* Decentralised consensus:
* A standalone one-node notary backed by a JDBC store has been added.
* A prototype RAFT based notary composed of multiple nodes is available on a branch.
* Data model:
* Compound keys have been added as preparation for merging a distributed RAFT based notary. Compound keys
are trees of public keys in which interior nodes can have validity thresholds attached, thus allowing
boolean formulas of keys to be created. This is similar to Bitcoin's multi-sig support and the data model
2018-06-21 15:57:30 +00:00
is the same as the InterLedger Crypto-Conditions spec, which should aid interoperate in future. Read more about
2017-06-05 12:37:23 +00:00
key trees in the ":doc: `api-core-types` " article.
2016-10-07 14:49:02 +00:00
* A new tutorial has been added showing how to use transaction attachments in more detail.
* Testnet
* Permissioning infrastructure phase one is built out. The node now has a notion of developer mode vs normal
mode. In developer mode it works like M3 and the SSL certificates used by nodes running on your local
machine all self-sign using a developer key included in the source tree. When developer mode is not active,
the node won't start until it has a signed certificate. Such a certificate can be obtained by simply running
an included command line utility which generates a CSR and submits it to a permissioning service, then waits
for the signed certificate to be returned. Note that currently there is no public Corda testnet, so we are
not currently running a permissioning service.
* Standalone app development:
* The Corda libraries that app developers need to link against can now be installed into your local Maven
2017-06-05 12:37:23 +00:00
repository, where they can then be used like any other JAR. See :doc: `running-a-node` .
2016-10-07 14:49:02 +00:00
* User interfaces:
* Infrastructure work on the node explorer is now complete: it is fully switched to using the MQ based RPC system.
* A library of additional reactive collections has been added. This API builds on top of Rx and the observable
collections API in Java 8 to give "live" data structures in which the state of the node and ledger can be
2016-10-11 09:31:12 +00:00
viewed as an ordinary Java `` List `` , `` Map `` and `` Set `` , but which also emit callbacks when these views
2016-10-07 14:49:02 +00:00
change, and which can have additional views derived in a functional manner (filtered, mapped, sorted, etc).
Finally, these views can then be bound directly into JavaFX UIs. This makes for a concise and functional
way of building application UIs that render data from the node, and the API is available for third party
app developers to use as well. We believe this will be highly productive and enjoyable for developers who
have the option of building JavaFX apps (vs web apps).
* The visual network simulator tool that was demoed back in April as part of the first Corda live demo has
been merged into the main repository.
* Documentation
* New secure coding guidelines. Corda tries to eliminate as many security mistakes as practical via the type
system and other mechanically checkable processes, but there are still things that one must be aware of.
* New attachments tutorial.
* New Client RPC tutorial.
* More tutorials on how to build a standalone CorDapp.
* Testing
* More integration testing support
* New micro-DSLs for expressing expected sequences of operations with more or less relaxed ordering constraints.
* QuickCheck generators to create streams of randomised transactions and other basic types. QuickCheck is a way
of writing unit tests that perform randomised fuzz testing of code, originally developed by the Haskell
community and now also available in Java.
2016-09-06 13:59:41 +00:00
API changes:
2016-11-10 13:14:38 +00:00
* The transaction types (Signed, Wire, LedgerTransaction) have moved to `` net.corda.core.transactions `` . You can
2016-09-06 13:59:41 +00:00
update your code by just deleting the broken import lines and letting your IDE re-import them from the right
location.
2016-09-07 10:40:13 +00:00
* `` AbstractStateReplacementProtocol.verifyProposal `` has changed its prototype in a minor way.
* The `` UntrustworthyData<T>.validate `` method has been renamed to `` unwrap `` - the old name is now deprecated.
2016-09-19 10:32:38 +00:00
* The wallet, wallet service, etc. are now vault, vault service, etc. These better reflect the intent that they
are a generic secure data store, rather than something which holds cash.
2016-10-07 14:49:02 +00:00
* The protocol send/receive APIs have changed to no longer require a session id. Please check the current version
of the protocol framework tutorial for more details.
2016-09-06 13:59:41 +00:00
2016-08-30 12:40:12 +00:00
Milestone 3
-----------
* More work on preparing for the testnet:
* Corda is now a standalone app server that loads "CorDapps" into itself as plugins. Whilst the existing IRS
and trader demos still exist for now, these will soon be removed and there will only be a single Corda node
2016-08-31 15:14:14 +00:00
program. Note that the node is a single, standalone jar file that is easier to execute than the demos.
* Project Vega (shared SIMM modelling for derivative portfolios) has already been converted to be a CorDapp.
2016-08-30 12:40:12 +00:00
* Significant work done on making the node persist its wallet data to a SQL backend, with more on the way.
* Upgrades and refactorings of the core transaction types in preparation for the incoming sandboxing work.
* The Clauses API that seeks to make writing smart contracts easier has gone through another design iteration,
with the result that clauses are now cleaner and more composable.
* Improvements to the protocol API for finalising transactions (notarising, transmitting and storing).
* Lots of work done on an MQ based client API.
* Improvements to the developer site:
* The developer site has been re-read from start to finish and refreshed for M3 so there should be no obsolete
texts or references anywhere.
* The Corda non-technical white paper is now a part of the developer site and git repository. The LaTeX source is
also provided so if you spot any issues with it, you can send us patches.
2016-08-31 15:14:14 +00:00
* There is a new section on how to write CorDapps.
2016-08-30 12:40:12 +00:00
* Further R&D work by Sofus Mortensen in the experimental module on a new 'universal' contract language.
* SSL for the REST API and webapp server can now be configured.
2016-07-28 10:46:12 +00:00
Milestone 2
-----------
* Big improvements to the interest rate swap app:
2016-09-23 10:06:13 +00:00
* A new web app demonstrating the IRS contract has been added. This can be used as an example for how to interact with
2016-07-28 10:46:12 +00:00
the Corda API from the web.
* Simplifications to the way the demo is used from the command line.
* :doc: `Detailed documentation on how the contract works and can be used <contract-irs>` has been written.
* Better integration testing of the app.
2016-05-24 11:26:17 +00:00
2016-07-12 09:24:11 +00:00
* Smart contracts have been redesigned around reusable components, referred to as "clauses". The cash, commercial paper
and obligation contracts now share a common issue clause.
2016-07-28 10:46:12 +00:00
* New code in the experimental module (note that this module is a place for work-in-progress code which has not yet gone
through code review and which may, in general, not even function correctly):
* Thanks to the prolific Sofus Mortensen @ Nordea Bank, an experimental generic contract DSL that is based on the famous
2001 "Composing contracts" paper has been added. We thank Sofus for this great and promising research, which is so
2017-01-06 11:05:37 +00:00
relevant in the wake of the DAO hack.
2016-07-28 10:46:12 +00:00
* The contract code from the recent trade finance demos is now in experimental. This code comes thanks to a
collaboration of the members; all credit to:
* Mustafa Ozturk @ Natixis
* David Nee @ US Bank
* Johannes Albertsen @ Dankse Bank
* Rui Hu @ Nordea
* Daniele Barreca @ Unicredit
* Sukrit Handa @ Scotiabank
* Giuseppe Cardone @ Banco Intesa
* Robert Santiago @ BBVA
* The usability of the command line demo programs has been improved.
* All example code and existing contracts have been ported to use the new Java/Kotlin unit testing domain-specific
languages (DSLs) which make it easy to construct chains of transactions and verify them together. This cleans up
and unifies the previous ad-hoc set of similar DSLs. A tutorial on how to use it has been added to the documentation.
We believe this largely completes our testing story for now around smart contracts. Feedback from bank developers
during the Trade Finance project has indicated that the next thing to tackle is docs and usability improvements in
the protocols API.
* Significant work done towards defining the "CorDapp" concept in code, with dynamic loading of API services and more to
come.
* Inter-node communication now uses SSL/TLS and AMQP/1.0, albeit without all nodes self-signing at the moment. A real
PKI for the p2p network will come later.
* Logging is now saved to files with log rotation provided by Log4J.
API changes:
* Some utility methods and extension functions that are specific to certain contract types have moved packages: just
delete the import lines that no longer work and let IntelliJ replace them with the correct package paths.
* The `` arg `` method in the test DSL is now called `` command `` to be consistent with the rest of the data model.
* The messaging APIs have changed somewhat to now use a new `` TopicSession `` object. These APIs will continue to change
in the upcoming releases.
2016-08-19 15:26:28 +00:00
* Clauses now have default values provided for `` ifMatched `` , `` ifNotMatched `` and `` requiredCommands `` .
2016-07-28 10:46:12 +00:00
New documentation:
* :doc: `contract-catalogue`
* :doc: `contract-irs`
* :doc: `tutorial-test-dsl`
2016-06-30 09:52:31 +00:00
Milestone 1
-----------
Highlights of this release:
* Event scheduling. States in the ledger can now request protocols to be invoked at particular times, for states
considered relevant by the wallet.
* Upgrades to the notary/consensus service support:
* There is now a way to change the notary controlling a state.
2018-06-21 15:57:30 +00:00
* You can pick between validating and non-validating notaries, these let you select your privacy/robustness trade-off.
2016-06-30 09:52:31 +00:00
* A new obligation contract that supports bilateral and multilateral netting of obligations, default tracking and
more.
* Improvements to the financial type system, with core classes and contracts made more generic.
* Switch to a better digital signature algorithm: ed25519 instead of the previous JDK default of secp256r1.
* A new integration test suite.
* A new Java unit testing DSL for contracts, similar in spirit to the one already developed for Kotlin users (which
depended on Kotlin specific features).
* An experimental module, where developers who want to work with the latest Corda code can check in contracts/cordapp
code before it's been fully reviewed. Code in this module has compiler warnings suppressed but we will still make
sure it compiles across refactorings.
* Persistence improvements: transaction data is now stored to disk and automatic protocol resume is now implemented.
* Many smaller bug fixes, cleanups and improvements.
We have new documentation on:
* :doc: `event-scheduling`
2018-05-09 14:19:35 +00:00
* :doc: `api-core-types`
2017-06-05 12:37:23 +00:00
* :doc: `key-concepts-consensus`
2016-06-30 09:52:31 +00:00
Summary of API changes (not exhaustive):
* Notary/consensus service:
* `` NotaryService `` is now extensible.
* Every `` ContractState `` now has to specify a *participants* field, which is a list of parties that are able to
consume this state in a valid transaction. This is used for e.g. making sure all relevant parties obtain the updated
state when changing a notary.
* Introduced `` TransactionState `` , which wraps `` ContractState `` , and is used when defining a transaction output.
The notary field is moved from `` ContractState `` into `` TransactionState `` .
* Every transaction now has a *type* field, which specifies custom build & validation rules for that transaction type.
Currently two types are supported: General (runs the default build and validation logic) and NotaryChange (
contract code is not run during validation, checks that the notary field is the only difference between the
inputs and outputs).
2016-06-30 10:46:26 +00:00
`` TransactionBuilder() `` is now abstract, you should use `` TransactionType.General.Builder() `` for building transactions.
2016-06-30 09:52:31 +00:00
2016-11-10 13:14:38 +00:00
* The cash contract has moved from `` net.corda.contracts `` to `` net.corda.contracts.cash ``
2016-06-30 09:52:31 +00:00
* `` Amount `` class is now generic, to support non-currency types such as physical assets. Where you previously had just
`` Amount `` , you should now use `` Amount<Currency> `` .
2016-05-31 10:54:03 +00:00
* Refactored the Cash contract to have a new FungibleAsset superclass, to model all countable assets that can be merged
and split (currency, barrels of oil, etc.)
2016-06-30 09:52:31 +00:00
* Messaging:
* `` addMessageHandler `` now has a different signature as part of error handling changes.
* If you want to return nothing to a protocol, use `` Ack `` instead of `` Unit `` from now on.
* In the IRS contract, dateOffset is now an integer instead of an enum.
* In contracts, you now use `` tx.getInputs `` and `` tx.getOutputs `` instead of `` getInStates `` and `` getOutStates `` . This is
just a renaming.
* A new `` NonEmptySet `` type has been added for cases where you wish to express that you have a collection of unique
objects which cannot be empty.
* Please use the global `` newSecureRandom() `` function rather than instantiating your own SecureRandom's from now on, as
the custom function forces the use of non-blocking random drivers on Linux.
2016-05-24 11:26:17 +00:00
Milestone 0
-----------
This is the first release, which includes:
* Some initial smart contracts: cash, commercial paper, interest rate swaps
* An interest rate oracle
* The first version of the protocol/orchestration framework
* Some initial support for pluggable consensus mechanisms
* Tutorials and documentation explaining how it works
2016-06-09 15:41:57 +00:00
* Much more ...