75a9c498a4
Fixup release notes
2016-08-31 17:14:42 +02:00
232db9a1fd
Move test utilities into their own package
...
This moves a lot of the test support code into its own package which is only imported for tests,
so it's not shipped as a part of core Corda. The node currently depends on this support code to
compile, although future work could try to separate this out. This change highlights that parts
of production code is dependent on test elements (i.e. dummy keys), and makes it harder for
such accidental crosses to occur later.
An integration test category is also added as part of this work, to contribute towards COR-345.
2016-08-31 15:40:54 +01:00
ce6d333914
Merged in mnesbit-document-corda-configuration (pull request #312 )
...
Add some documentation of the configuration options of the standalone corda.jar
2016-08-31 11:48:24 +01:00
638dfc902a
docs
...
Include database config section for completeness
Incorporate comments from review
Incorporate comments from review
2016-08-31 11:47:25 +01:00
5439e0980f
Merged in clint-driver-debug-fix (pull request #308 )
...
Fixed driver debug mode.
2016-08-31 11:31:02 +01:00
25ae224c44
Merged in mike-m3-release-notes (pull request #309 )
...
Release notes for M3
2016-08-31 11:43:45 +02:00
0c4a80453a
Used lists instead of strings for appending to JavaArgs in driver.
2016-08-30 14:01:54 +01:00
baac38c936
Release notes for M3
2016-08-30 14:40:12 +02:00
eee765237e
Merged in mnesbit-https-support (pull request #306 )
...
Add switchable HTTPS to Node web server
2016-08-30 13:18:06 +01:00
8756b49794
Add switchable HTTPS to Node web server
...
Explain change of cipher
Include extracted Dev Corda Root certificate so that it can be installed by HTTPS users.
2016-08-30 13:07:40 +01:00
89419f2444
Regen docsite
2016-08-30 13:05:32 +02:00
82b416cb88
Fixed driver debug mode.
2016-08-30 12:03:31 +01:00
cc2209f7b1
Docsite: add a warning to the index page about the docsite being for master, and update the release process doc to remind the release master to remove it on the branch.
2016-08-30 12:53:34 +02:00
5a5377f0a1
Docs: Remove warning that says Corda is developed on MacOS, it is no longer true as we have a mix of platforms in the team these days.
2016-08-30 12:48:33 +02:00
2680687dcb
Universal: Fixing and reduction
2016-08-29 22:29:24 +02:00
e11732dad3
Merged in mike-refresh-docs-for-m3 (pull request #299 )
...
Refresh the documentation site (developer guide): fresh docs are happy docs!
2016-08-26 18:57:27 +02:00
478e4bb75c
Merged in rnicoll-clause-composition (pull request #294 )
...
Rework clauses to use composition
2016-08-26 17:48:04 +01:00
13b040ecd6
Rework clauses to use composition
...
Rework clauses so that rather than defining match/no-match behaviour themselves, they are
now composed by nesting them within clauses that understand how to match their child clauses.
This unifies a lot of the structure of clauses and removes corner cases needed for the first
design, as well as moving towards a model which is easier to prove.
2016-08-26 17:35:52 +01:00
6cf01f614f
Added getFreeLocalPorts() for grabbing more than one port. Fixes bug in freeLocalHostAndPort() where the same port can be picked multiple times.
2016-08-26 13:46:11 +01:00
d6c595da37
Merged in aslemmer-canonicalizer-plugin-in-buildsrc (pull request #303 )
...
build: Move definition of CanonicalizerPlugin into buildSrc
2016-08-26 13:23:15 +01:00
1f14fe0705
build: Fix CanonicalizerPlugin dependencies
2016-08-26 12:31:09 +01:00
f783d8466d
build: Move definition of CanonicalizerPlugin into buildSrc
2016-08-26 12:11:23 +01:00
3e94fc1921
More review fixes
2016-08-26 13:05:26 +02:00
2f35dbc339
Refresh the documentation site (developer guide): fresh docs are happy docs!
2016-08-26 12:58:33 +02:00
22a8b0adb4
Merged in rnicoll-commit-tx-protocol (pull request #286 )
...
Add CommitTransactionProtocol
2016-08-25 16:37:03 +01:00
ad8ffca0b4
Add CommitTransactionProtocol
...
Add new protocol which manages the entire process of taking a signed transaction ready
for notarisation, through notarisation and onto recording it both locally and informing
remote nodes.
This protocol also optionally can include the ClientToServiceCommand which triggered a transaction
being created, to give the remote nodes context on why a change occurred (i.e. "You are being sent
£100")
2016-08-25 16:30:39 +01:00
a5344f9578
Modify obligation tests to ensure issuance does not require notary signature
2016-08-25 16:28:46 +01:00
5ff28df1ff
Modify cash issuance tests to ensure transaction does not need notary signature
2016-08-25 16:28:46 +01:00
4ac71bb97b
Merged in mnesbit-cor-356-artemis-identity-as-address (pull request #301 )
...
Only NetworkMapServer addresses can be publicly manufactured. Use identity public key as addressing, with only bridges using the HostAndPort information
2016-08-25 16:05:24 +01:00
089ba2cb69
Only NetworkMapServer addresses can be publicly manufactured. Use identity publick key as addressing, with only bridges using the HostAndPort information
...
Fixup after rebase and fix issue with checking previous deployment of bridges
Correct comments on ArtemisMessagingClient constructor
Fixup rates fix demo
Get rid of when statements
Make NetworkMapCache send modify as well as add//remove events. Make inboxes for nodes persistent.
Suppress warnings
Fix message acknowledgement so that it actually consumes messages properly.
Change queueName to SimpleString to stop lots of wasted conversions
Get rid of spurious import
Tidy up and add comments
Update to include comments on PR
Remove unnecessary import
2016-08-25 15:56:50 +01:00
99a0da9202
Merged in rnicoll-gui-cash-issuer-filter (pull request #302 )
...
Pre-filter states passed to generateSpend()
2016-08-25 15:32:27 +01:00
4cb6d11e9f
Merged in clint-caplet (pull request #292 )
...
Node server now loads plugins/cordapps from directory
2016-08-25 13:46:50 +01:00
f9880a4990
Pre-filter states passed to generateSpend()
...
Pre-filter states passed to generateSpend(), so that requests from the UI to spend cash only ever
spend cash with the correct issuer.
2016-08-25 13:20:12 +01:00
8185596224
Merged in mike-simplify-cp-contracts (pull request #297 )
...
Minor: cleanup the commercial paper contracts.
2016-08-25 11:31:04 +02:00
c8323099bb
Minor: cleanup the commercial paper contracts.
...
There's no need for the notary to be specified in commands. A few other tweaks and additions found whilst refreshing the docsite.
2016-08-25 11:30:25 +02:00
bf41d66c6d
Merged in whitepaper-minor-edits-prerelease (pull request #298 )
...
Whitepaper minor edits prerelease
2016-08-25 11:28:58 +02:00
f2a93ea67b
Fixed review comments.
2016-08-24 21:03:20 +01:00
f46cbd32c6
Fixed isJar checks.
2016-08-24 17:44:47 +01:00
a8d73fb73f
Caplet now filters for JAR files.
2016-08-24 16:40:43 +01:00
bdcbd80d4e
Updated docs to reflect gradle changes.
2016-08-24 16:30:35 +01:00
4652872338
Renamed corda output JAR to corda.jar.
2016-08-24 16:28:28 +01:00
70c057dfef
Review changes.
2016-08-24 16:19:11 +01:00
24df3e3c52
Removed term standalone and replaced with more neutral language.
2016-08-24 16:18:52 +01:00
c03d9a2cf7
Review fixes.
2016-08-24 15:33:43 +01:00
74e5e1bce8
Merged in rnicoll-commodity-cleanup (pull request #295 )
...
Documentation cleanup
2016-08-23 21:30:56 +02:00
b8ec7631b4
Update introduction to messaging documentation
2016-08-23 17:43:42 +01:00
59d3cbdece
Add documentation around Commodity and CommodityContract
2016-08-23 17:40:45 +01:00
3e330a2d36
Merged in mike-fix-walletfiller (pull request #277 )
...
Rewrite the test wallet filler code to not be buggy.
2016-08-23 17:59:19 +02:00
e3ef4ce3b3
Merged in rnicoll-cash-destroy-own (pull request #293 )
...
Restrict cash exit commands to working on cash held by the issuer
2016-08-23 14:15:54 +01:00
dc60db5f69
waitForNodeStartup should now throw after 2 minutes rather than 20 seconds.
...
Some bank devs were finding integration tests failing as nodes had still not started.
2016-08-23 13:39:23 +01:00