From e6443a2612fb8fe0c1340ee934443923b4f6e769 Mon Sep 17 00:00:00 2001 From: Amir Bandeali Date: Sat, 25 May 2019 17:25:44 -0700 Subject: [PATCH] Update CHANGELOGs --- contracts/exchange-libs/CHANGELOG.json | 4 ++++ contracts/exchange/CHANGELOG.json | 24 ++++++++++++++++++++++++ packages/json-schemas/CHANGELOG.json | 4 ++++ packages/order-utils/CHANGELOG.json | 8 ++++++++ packages/types/CHANGELOG.json | 4 ++++ 5 files changed, 44 insertions(+) diff --git a/contracts/exchange-libs/CHANGELOG.json b/contracts/exchange-libs/CHANGELOG.json index 4f8ed9d1a4..f5f95a1b70 100644 --- a/contracts/exchange-libs/CHANGELOG.json +++ b/contracts/exchange-libs/CHANGELOG.json @@ -71,6 +71,10 @@ { "note": "Add `generate-exchange-selectors` package script.", "pr": 1819 + }, + { + "note": "Add `expirationTimeSeconds` to `ZeroExTransaction` struct", + "pr": 1823 } ], "timestamp": 1563006338 diff --git a/contracts/exchange/CHANGELOG.json b/contracts/exchange/CHANGELOG.json index c56333dc78..bb6e40450d 100644 --- a/contracts/exchange/CHANGELOG.json +++ b/contracts/exchange/CHANGELOG.json @@ -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 } ] }, diff --git a/packages/json-schemas/CHANGELOG.json b/packages/json-schemas/CHANGELOG.json index f7f19d0c70..02a958223d 100644 --- a/packages/json-schemas/CHANGELOG.json +++ b/packages/json-schemas/CHANGELOG.json @@ -13,6 +13,10 @@ { "note": "Add `makerAssetData` and `takerAssetData` to `Order` schemas", "pr": 1819 + }, + { + "note": "Add `expirationTimeSeconds` to `ZeroExTransaction` schema", + "pr": 1832 } ] }, diff --git a/packages/order-utils/CHANGELOG.json b/packages/order-utils/CHANGELOG.json index fcaaeffd38..ab1e709dd4 100644 --- a/packages/order-utils/CHANGELOG.json +++ b/packages/order-utils/CHANGELOG.json @@ -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 } ] }, diff --git a/packages/types/CHANGELOG.json b/packages/types/CHANGELOG.json index a19550e2ef..240cf49775 100644 --- a/packages/types/CHANGELOG.json +++ b/packages/types/CHANGELOG.json @@ -52,6 +52,10 @@ { "note": "Update `Order` type for arbitrary fee tokens (ZEIP-28).", "pr": 1819 + }, + { + "note": "Add `expirationTimeSeconds` to `ZeroExTransaction` type", + "pr": 1832 } ] },