Skip to content

Latest commit

 

History

History
71 lines (50 loc) · 3.34 KB

CHANGELOG.md

File metadata and controls

71 lines (50 loc) · 3.34 KB

Changelog

Release: v0.2.0

This release features a complete redesign of the enclave API (AKA Host-enclave separation) that -

  • clearly separates the trusted/untrusted components of the app enclave code
  • extracts more reusable code into the core enclave
  • provides cleaner and more expressive abstractions

This means app devs now write up to ~20% less code.

The release also includes a new example app (called pingpong), numerous bug-fixes, API improvements, and better crate documentation.

Note: this release contains multiple breaking changes.

Features

  • feat(enclave): API improvements to Store and KeyManager (#299)
  • feat(enclave): allow app devs to define the pk type (#297)
  • feat(enclave): add sequence number for replay protection (#252)
  • feat(cw-client): add pay amount field to tx_execute (#275)
  • feat(contract): Impl #[derive(UserData)] and improve naming (#284)
  • feat(enclave): Host-enclave separation & redesign (#283)
  • feat(examples): new template app (#271)

Bug fixes

  • fix(contract): UserData derive macro to avoid having users reimport stuff (#303)
  • fix: add check for matching proof key (#251)
  • fix(enclave): core include paths (#257)
  • fix(enclave): proto build (#256)
  • fix(cli): Update paths to public repo (#258)

Refactor

  • refactor: Remove all epoch related code (#285)
  • refactor(enclave): remove core build.rs and copy data files (#259)

Docs

  • docs: Add comprehensive doc comments for core enclave traits, fns and types (#302)
  • docs fixes (#260)
  • Update docs (#262)
  • Fix: Update on getting_started / tcbinfo (#278)
  • fix(docs): checkout release version in getting_started.md (#276)
  • fix(docs): getting started for docker and neutrond (#264)

Build & CI

  • build: add unsafe-trust-latest and contract-manifest defaults (#292)
  • Add block pruning to neutrond docker (#288)
  • fix: Use docker default networking
  • Update docker to work on macs, update quick start (#263)

Misc

  • Adding props.onClose() on transfer, deposit, withdraw modals (#270)

Release: v0.1.0

This is the initial release of the quartz framework and CLI.