From 8a395bce8bdf66664a3e2c08217f99e46c1004ff Mon Sep 17 00:00:00 2001 From: Bartek Nowotarski Date: Wed, 8 Feb 2017 14:59:08 +0100 Subject: [PATCH] Upgrade stellar-base --- CHANGELOG.md | 16 ++++++++++++++++ package.json | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 03ec19e0e..48e9bf499 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,22 @@ As this project is pre 1.0, breaking changes may happen for minor version bumps. A breaking change will get clearly notified in this log. +## 0.7.1 + +* Upgrade `stellar-base`. + +## 0.7.0 + +* Support for new signer types: `sha256Hash`, `preAuthTx`. +* `StrKey` helper class with `strkey` encoding related methods. +* Removed deprecated methods: `Keypair.isValidPublicKey` (use `StrKey`), `Keypair.isValidSecretKey` (use `StrKey`), `Keypair.fromSeed`, `Keypair.seed`, `Keypair.rawSeed`. +* **Breaking changes**: + * `Network` must be explicitly selected. Previously testnet was a default network. + * `Operation.setOptions()` method `signer` param changed. + * `Keypair.fromAccountId()` renamed to `Keypair.fromPublicKey()`. + * `Keypair.accountId()` renamed to `Keypair.publicKey()`. + * Dropping support for `End-of-Life` node versions. + ## 0.6.2 * Updated `stellar.toml` location diff --git a/package.json b/package.json index cedb281a1..238d1b2b2 100644 --- a/package.json +++ b/package.json @@ -83,7 +83,7 @@ "eventsource": "^0.2.1", "jsdoc": "^3.4.1", "lodash": "^4.0.1", - "stellar-base": "^0.7.1", + "stellar-base": "^0.7.2", "toml": "^2.3.0" } }