Skip to content

Releases: apache/incubator-resilientdb

NexRes v1.9.0

30 Nov 05:43
b2c7e9b
Compare
Choose a tag to compare

Support Multi-version Key-Value Interface. (Junchao Chen)

  • Get and Set need to provide a version number to fetch the correct version of the data (if exists) or write to the correct version of data (if not overwritten already), respectively.
  • Provide interfaces to obtain historical data with a specific version or a range of versions.

NexRes v1.8.0

22 Aug 07:59
07d80f2
Compare
Choose a tag to compare

The view-change recovery protocol was extensively expanded to support the following Byzantine failures through primary/leader replacement and replica recovery. (Dakai Kang)

  • Byzantine primary becomes non-responsive, stopping proposing any new Pre-Prepare messages.
  • Byzantine primary equivocates, proposing two different client requests to two subsets of replicas.
  • Byzantine replicas try to keep some non-faulty replicas in the dark.
  • Byzantine new primary becomes non-responsive, refusing to broadcast New-View messages.

NexRes v1.7.0

05 Aug 16:28
02fca86
Compare
Choose a tag to compare

For each replica local recovery from durable storage upon system restart was added.

NexRes v1.6.0

31 May 18:52
f7a78b7
Compare
Choose a tag to compare

Refactoring and enhancement of the codebase to highlight the entire software stack of ResilientDB consisting of the following layers

  • SDK Layer (C++, Python, Go, Solidity)
  • Interface Layer (key-value, smart contract, UTXO)
  • ResilientDB Database Connectivity (RDBC) API
  • Platform Layer (consensus, chain, network, notary)
  • Transaction Layer (execution runtime and in-memory chain state)
  • Storage Layer (chain and chain state durability)

NexRes v1.5.0

05 Apr 00:37
22d41e6
Compare
Choose a tag to compare

A complete refactoring of the code base such that (1) the core engine code is now moved to the platform folder, including the formwork architectures and protocols implementations; (2) the API/interface-related code is moved to the service folder, including UTXO, smart contract, and key-value interface; (3) the python SDK code is moved to a different repository here.

ResilientDB Legacy with SGX Acceleration (v3.1)

14 Mar 18:15
3ef35b8
Compare
Choose a tag to compare

Creating a persistent release using Zenodo on the legacy codebase of ResilientDB (pre-NexRes).

NexRes v1.4.1

13 Mar 23:59
fcb0b31
Compare
Choose a tag to compare

Creating a persistent release using Zenodo.

NexRes v1.4.0

28 Feb 09:21
7e01a57
Compare
Choose a tag to compare

Major Changes

Support of UTXO model and wallet integration: Detailed Documentation

NexRes v1.3.1

27 Feb 03:03
ec8e775
Compare
Choose a tag to compare

Bugfix

Fix build fail from kv_server
Fix build fail from Ubuntu 22

NexRes v1.3.0

23 Feb 06:18
d433fe3
Compare
Choose a tag to compare

Major Changes

Added Python SDK that supports UTXO-like transactions such as asset creation, transfer, and multi-party validations.
Added REST CROW endpoints to interface with the on-chain KV service.
Extended KV service range queries.