Skip to content

Releases: google/trillian

TLS, Merge Delay Metrics, Easier Admin Tests

07 Feb 09:41
Compare
Choose a tag to compare

The API protos have been rebuilt with gRPC 1.3.

Timestamps have been added to the log leaves in the MySQL database. Before upgrading to this version you must make the following schema changes:

  • Add the following column to the LeafData table. If you have existing data in the queue you might have to remove the NOT NULL clause: QueueTimestampNanos BIGINT NOT NULL

  • Add the following column to the SequencedLeafData table: IntegrateTimestampNanos BIGINT NOT NULL

The above timestamps are used to export metrics via monitoring that give the merge delay for each tree that is in use. This is a good metric to use for alerting on.

The Log and Map RPC servers now support TLS.

AdminServer tests have been improved.

Fix election issue. Large vendor updates.

05 Feb 15:42
Compare
Choose a tag to compare

An issue has been fixed where the master for a log could resign from the election while it was in the process of integrating a batch of leaves. We do not believe this could cause any issues with data integrity because of the versioned tree storage.

This release includes a large number of vendor commits merged to catch up with etcd 3.2.10 and gRPC v1.3.

Auth API. Interceptor fixes. Request validation + More

05 Feb 15:33
9d08b33
Compare
Choose a tag to compare

An authorization API has been added to the interceptors. This is intended for future development and integration.

Issues where the interceptor would not time out on PutTokens have been fixed. This should make the quota system more robust.

A bug has been fixed where the interceptor did not pass the context deadline through to other requests it made. This would cause some failing requests to do so after longer than the deadline with a misleading reason in the log. It did not cause request failures if they would otherwise succeed.

Metalinter has been added and the code has been cleaned up where appropriate.

Docker and Kubernetes scripts have been available and images are now built with Go 1.9.

Sqlite has been introduced for unit tests where possible. Note that it is not multi threaded and cannot support all our testing scenarios. We still require MySQL for integration tests. Please note that Sqlite must not be used for production deployments as RPC servers are multi threaded database clients.

The Log RPC server now applies tighter validation to request parameters than before. It's possible that some requests will be rejected. This should not affect valid requests.

The admin server will only create trees for the log type it is hosted in. For example the admin server running in the Log server will not create Map trees. This may be reviewed in future as applications can legitimately use both tree types.

TreeGC, Go 1.9, Update Private Keys.

05 Feb 15:18
Compare
Choose a tag to compare

Go 1.9 is required.

It is now possible to update private keys via the admin API and this was added to the available field masks. The key storage format has not changed so we believe this change is transparent.

Deleted trees are now garbage collected after an interval. This hard deletes them and they cannot be recovered. Be aware of this before upgrading if you have any that are in a soft deleted state.

The Admin RPC API has been extended to allow trees to be undeleted - up to the point where they are hard deleted as set out above.

Batched Queue Option Added

05 Feb 14:49
Compare
Choose a tag to compare

Apart from fixes this release includes the option for a batched queue. This has been reported to allow faster sequencing but is not enabled by default.

If you want to switch to this you must build the code with the --tags batched_queue option. You must then also apply a schema change if you are running with a previous version of the database. Add the following column to the Unsequenced table:

QueueID VARBINARY(32) DEFAULT NULL

If you don't plan to switch to the batched_queue mode then you don't need to make the above change.

First Log version we believe was ready for use. To support CT.

05 Feb 13:51
Compare
Choose a tag to compare

Quota metrics published. Quota admin api + server implemented. Improvements to local / AWS deployment. Map fixes and further development. ECDSA key handling improvements. Key factory improvements. Code coverage added. Quota integration test added. Etcd quota support in log and map connected up. Incompatibility with C++ code fixed where consistency proof requests for first == second == 0 were rejected.

etcd based Quotas. PKCS#11 Support. CONIKS hasher.

05 Feb 13:41
Compare
Choose a tag to compare

Monitoring fixes split log / map hashers and add CONIKS hasher. Algorithm / cipher related changes. Sign map roots in server now. Add a hasher registry. Quota fixes and etcd based implementation. Add PKCS#11 signer. Refactor to add a MapEnv similar to LogEnv.

Monitoring. Key / Multi Node fixes.

05 Feb 13:31
Compare
Choose a tag to compare
Pre-release

Monitoring APIs and Prometheus implementation. Log and map servers instrumented. Fixes for KT development. Improvements to key management and some admin things. Add root signing at intervals back to the log server code.

Split CT to separate Repo. Rate Limiting. Docker.

05 Feb 13:24
Compare
Choose a tag to compare

All CT related code has moved to a new repo https://github.com/google/certificate-transparency.go.
Add quota APIs and rate limiting via a time based quota system. Add Dockerfiles. Lots more fixes and development.

Multi node CT

05 Feb 13:17
Compare
Choose a tag to compare
Multi node CT Pre-release
Pre-release

Multi node CT support aded. Vendor in coreos/etcd and GRPC. Add initial configs for Kubernetes / Galera. Switch to context aware sql database API.