Update CHANGELOGs

This commit is contained in:
Amir Bandeali 2019-05-25 17:25:44 -07:00
parent d79714a3cf
commit e6443a2612
5 changed files with 44 additions and 0 deletions

View File

@ -71,6 +71,10 @@
{
"note": "Add `generate-exchange-selectors` package script.",
"pr": 1819
},
{
"note": "Add `expirationTimeSeconds` to `ZeroExTransaction` struct",
"pr": 1823
}
],
"timestamp": 1563006338

View File

@ -30,6 +30,18 @@
"note": "Add support for `SignatureType.WalletOrderValidator` for orders",
"pr": 1774
},
{
"note": "Add a `bytes` return value to `executeTransaction`, which is equal to the encoded return data of the underlying Exchange function call",
"pr": 1793
},
{
"note": "Implement `batchExecuteTransactions`",
"pr": 1793
},
{
"note": "Refactor preSign to be compatible with `executeTransaction`",
"pr": 1793
},
{
"note": "Remove ZRX fees in lieu of arbitrary maker and taker fee tokens.",
"pr": 1819
@ -45,6 +57,18 @@
{
"note": "Avoid redundant transfer in `fillOrder()` and `matchOrders()` when maker/taker is the same as feeRecipient and assets are the same",
"pr": 1819
},
{
"note": "Implement `cancelOrderNoThrow` and `batchCancelOrdersNoThrow` functions",
"pr": 1827
},
{
"note": "`executeTransaction` will now revert if the input transaction is expired",
"pr": 1832
},
{
"note": "Log an `TransactionExecuted` event when an `executeTransaction` call is successful",
"pr": 1832
}
]
},

View File

@ -13,6 +13,10 @@
{
"note": "Add `makerAssetData` and `takerAssetData` to `Order` schemas",
"pr": 1819
},
{
"note": "Add `expirationTimeSeconds` to `ZeroExTransaction` schema",
"pr": 1832
}
]
},

View File

@ -37,6 +37,14 @@
{
"note": "Update `RevertError` types for new base constructor",
"pr": 1819
},
{
"note": "Add `Expired` TransactionErrorCode",
"pr": 1832
},
{
"note": "Add `expirationTimeSeconds` to `ZeroExTransaction` parameters used for hashing",
"pr": 1832
}
]
},

View File

@ -52,6 +52,10 @@
{
"note": "Update `Order` type for arbitrary fee tokens (ZEIP-28).",
"pr": 1819
},
{
"note": "Add `expirationTimeSeconds` to `ZeroExTransaction` type",
"pr": 1832
}
]
},