Update CHANGELOG.json's

This commit is contained in:
Leonid Logvinov
2018-04-02 12:52:49 +03:00
parent 9e81d3c87b
commit 333a23f222
10 changed files with 53 additions and 18 deletions

View File

@@ -1,4 +1,14 @@
[ [
{
"version": "0.35.0",
"changes": [
{
"note":
"Removed `ZeroExError.TransactionMiningTimeout` and moved it to '@0xproject/web3_wrapper' `Web3WrapperErrors.TransactionMiningTimeout`",
"pr": 485
}
]
},
{ {
"version": "0.34.0", "version": "0.34.0",
"changes": [ "changes": [

View File

@@ -8,7 +8,6 @@ CHANGELOG
## v0.34.0 - _April 2, 2018_ ## v0.34.0 - _April 2, 2018_
* Fix the bug causing `zeroEx.exchange.fillOrdersUpToAsync` validation to fail if there were some extra orders passed (#470) * Fix the bug causing `zeroEx.exchange.fillOrdersUpToAsync` validation to fail if there were some extra orders passed (#470)
* Removed `ZeroExError.TransactionMiningTimeout` and moved it to '@0xproject/web3_wrapper' `Web3WrapperErrors.TransactionMiningTimeout` (#485)
* Remove automatic instantiation of `zeroEx.orderStateWatcher` (#488) * Remove automatic instantiation of `zeroEx.orderStateWatcher` (#488)
* Add `zeroEx.createOrderStateWatcher` to allow creating arbitrary number of OrderStateWatchers (#488) * Add `zeroEx.createOrderStateWatcher` to allow creating arbitrary number of OrderStateWatchers (#488)
* Added `stateLayer` setting to `OrderStateWatcherConfig` so OrderStateWatcher can be set to monitor different blockchain state layers (#488) * Added `stateLayer` setting to `OrderStateWatcherConfig` so OrderStateWatcher can be set to monitor different blockchain state layers (#488)

View File

@@ -1,4 +1,21 @@
[ [
{
"version": "0.1.0",
"changes": [
{
"note": "Add tests for traversing ABI tree",
"pr": 485
},
{
"note": "Fix ABI tuples traversing",
"pr": 485
},
{
"note": "Fix ABI arrays traversing",
"pr": 485
}
]
},
{ {
"timestamp": 1522658513, "timestamp": 1522658513,
"version": "0.0.6", "version": "0.0.6",

View File

@@ -9,12 +9,6 @@ CHANGELOG
* Dependencies updated * Dependencies updated
## v0.1.0 - _TBD, 2018_
* Add tests for traversing ABI tree (#485)
* Fix ABI tuples traversing (#485)
* Fix ABI arrays traversing (#485)
## v0.0.2 - _March 4, 2018_ ## v0.0.2 - _March 4, 2018_
* Initial release * Initial release

View File

@@ -1,4 +1,8 @@
[ [
{
"version": "0.5.0",
"changes": [{ "note": "Make `DataItem.components` optional", "pr": 485 }]
},
{ {
"timestamp": 1522658513, "timestamp": 1522658513,
"version": "0.4.2", "version": "0.4.2",

View File

@@ -9,10 +9,6 @@ CHANGELOG
* Dependencies updated * Dependencies updated
## v0.5.0 - _TBD, 2018_
* Make `DataItem.components` optional (#485)
## v0.4.0 - _March 18, 2018_ ## v0.4.0 - _March 18, 2018_
* Remove `JSONRPCPayload` (#426) * Remove `JSONRPCPayload` (#426)

View File

@@ -1,4 +1,8 @@
[ [
{
"version": "0.5.0",
"changes": [{ "note": "Make `AbiDecoder.addABI` public", "pr": 485 }]
},
{ {
"timestamp": 1522658513, "timestamp": 1522658513,
"version": "0.4.4", "version": "0.4.4",

View File

@@ -9,10 +9,6 @@ CHANGELOG
* Dependencies updated * Dependencies updated
## v0.5.0 - _TBD, 2018_
* Make `AbiDecoder.addABI` public (#485)
## v0.4.3 - _March 18, 2018_ ## v0.4.3 - _March 18, 2018_
* Add `@types/node` to dependencies since `intervalUtils` has the `NodeJS` type as part of its public interface. * Add `@types/node` to dependencies since `intervalUtils` has the `NodeJS` type as part of its public interface.

View File

@@ -1,4 +1,22 @@
[ [
{
"version": "0.5.0",
"changes": [
{
"note": "Add `web3Wrapper.awaitTransactionMinedAsync`",
"pr": 485
},
{
"note":
"Add a public field `abiDecoder: AbiDecoder` which allows you to add your ABIs that are later used to decode logs",
"pr": 485
},
{
"note": "Export enum `Web3WrapperErrors` with a single value so far: `TransactionMiningTimeout`",
"pr": 485
}
]
},
{ {
"version": "0.4.0", "version": "0.4.0",
"changes": [ "changes": [

View File

@@ -8,9 +8,6 @@ CHANGELOG
## v0.4.0 - _April 2, 2018_ ## v0.4.0 - _April 2, 2018_
* Rename `signTransactionAsync` to `signMessageAsync` for clarity (#465) * Rename `signTransactionAsync` to `signMessageAsync` for clarity (#465)
* Add `web3Wrapper.awaitTransactionMinedAsync` (#485)
* Add a public field `abiDecoder: AbiDecoder` which allows you to add your ABIs that are later used to decode logs (#485)
* Export enum `Web3WrapperErrors` with a single value so far: `TransactionMiningTimeout` (#485)
## v0.3.0 - _March 18, 2018_ ## v0.3.0 - _March 18, 2018_