Skip to content

Latest commit

 

History

History
114 lines (72 loc) · 5.18 KB

CHANGELOG.md

File metadata and controls

114 lines (72 loc) · 5.18 KB

0.13.0 (2020-06-08)

Bug Fixes

  • invalid JSON RPC internal error code (#271)
  • incorrect behaviour on undefined data in handleAbciResponseError (#265)

Features

  • get identity by public key endpoints (#263, #266)

Tests

  • identity topup functional test (#268)
  • functional for validating public key uniqueness (#269)

Code Refactoring

  • actualize drive env variables (#270)

BREAKING CHANGES

  • previously internal errors were respond with wrong error code -32602 (invalid argument). The error code is changed to -32603 (internal error).
  • see DPP breaking changes

0.12.0 (2020-04-18)

Bug Fixes

  • in case of Timed out waiting for tx to be included in a block DAPI responds with Internal error (#258)

Code Refactoring

  • remove Platform JSON RPC endpoints (#256)
  • rename TENDERMINT_CORE_... envs to TENDERMINT_RPC_... (98c6ad0)
  • remove rate limiter errors (#254)

Features

  • handle insufficient funds ABCI error (#257)
  • update deploy script to tag image for every Semver segment (#260)
  • update according to merge of Drive and Machine (#255, #259)

BREAKING CHANGES

  • fetchDocuments, fetchDataContract, fetchIdentity, applyStateTransition JSON RPC endpoints are removed. Use gRPC analogues.
  • rename TENDERMINT_CORE_... envs to TENDERMINT_RPC_...
  • see DPP breaking changes

0.11.1 (2020-03-17)

Bug Fixes

  • throw correct JSON RPC error on invalid Insight params (#252, 52b1276)

0.11.0 (2020-03-09)

Bug Fixes

  • Core gRPC service is not initialized (86dff35)
  • load .env at correct time for tx-filter-stream (7b091e0)
  • prevent to update dependencies with major version 0 to minor versions (ea7de93)
  • handle errors in getTransaction endpoints (e0d36ae)
  • handle errors in sendTransaction endpoint (cd2e6c8)
  • handle errors in getBlock endpoint (6d474b4)
  • handle rate, time and resource limit ABCI errors (4c979a3)
  • handle Tendermint errors in applyStateTransition (f8764e9)
  • "not found" instead of "invalid argument" in gRPC endpoints (126c929)

Features

  • remove insecure API endpoints and code (11b3df3)
  • introduce generateToAddress endpoint (3a2f497)
  • upgrade DPP to 0.11 (3b36078)

Tests

  • functional test for getStatus endpoint (3f3ec06)
  • forced json rpc client tests (5259535)

BREAKING CHANGES

  • A ton of insecure endpoints were removed so it's easier to list what left.
    • JSON RPC (deprecated)
      • generateToAddress
      • getAddressSummary
      • getBestBlockHash
      • getBlockHash
      • getMnListDiff
      • getUTXO
    • Core gRPC
      • subscribeToTransactionsWithProofs
      • getBlock
      • getStatus
      • getTransaction
      • sendTransaction
    • Platform gRPC
      • applyStateTransition
      • getDataContract
      • getDocuments
      • getIdentity
  • see DPP breaking changes