diff options
Diffstat (limited to 'packages/order-watcher')
-rw-r--r-- | packages/order-watcher/CHANGELOG.json | 28 | ||||
-rw-r--r-- | packages/order-watcher/CHANGELOG.md | 16 | ||||
-rw-r--r-- | packages/order-watcher/package.json | 44 |
3 files changed, 62 insertions, 26 deletions
diff --git a/packages/order-watcher/CHANGELOG.json b/packages/order-watcher/CHANGELOG.json index e747a2129..a8eb2ae9e 100644 --- a/packages/order-watcher/CHANGELOG.json +++ b/packages/order-watcher/CHANGELOG.json @@ -1,5 +1,33 @@ [ { + "timestamp": 1532357734, + "version": "1.0.0", + "changes": [ + { + "note": "Dependencies updated" + } + ] + }, + { + "timestamp": 1532043000, + "version": "1.0.0-rc.1", + "changes": [ + { + "note": "Add support for ERC721 event watching and Exchange V2 events", + "pr": 887 + } + ] + }, + { + "timestamp": 1531919263, + "version": "0.0.8", + "changes": [ + { + "note": "Dependencies updated" + } + ] + }, + { "version": "0.0.7", "changes": [ { diff --git a/packages/order-watcher/CHANGELOG.md b/packages/order-watcher/CHANGELOG.md index c14b66e39..d2ab44d6c 100644 --- a/packages/order-watcher/CHANGELOG.md +++ b/packages/order-watcher/CHANGELOG.md @@ -1,14 +1,28 @@ <!-- -This file is auto-generated using the monorepo-scripts package. Don't edit directly. +changelogUtils.file is auto-generated using the monorepo-scripts package. Don't edit directly. Edit the package's CHANGELOG.json file only. --> CHANGELOG +## v1.0.0 - _July 23, 2018_ + + * Dependencies updated + +## v1.0.0-rc.1 - _July 20, 2018_ + + * Add support for ERC721 event watching and Exchange V2 events (#887) + +## v0.0.8 - _July 18, 2018_ + + * Dependencies updated + ## v0.0.7 - _July 9, 2018_ * Switch out simple getLogs polling with ethereumjs-blockstream (#825) * Do not stop subscription if error is encountered (#825) + * Fixed a bug that caused the incorrect block to be fetched via JSON-RPC within Blockstream (#875) + * Remove stateLayer config from OrderWatcher. It now always operates on the latest block (#875) ## v0.0.6 - _June 19, 2018_ diff --git a/packages/order-watcher/package.json b/packages/order-watcher/package.json index cafa38946..2fc177db5 100644 --- a/packages/order-watcher/package.json +++ b/packages/order-watcher/package.json @@ -1,6 +1,6 @@ { "name": "@0xproject/order-watcher", - "version": "0.0.7", + "version": "1.0.0-rc.1", "description": "An order watcher daemon that watches for order validity", "keywords": [ "0x", @@ -30,13 +30,7 @@ }, "config": { "compact_artifacts": "Exchange DummyToken ZRXToken Token EtherToken TokenTransferProxy TokenRegistry", - "contracts": "Exchange DummyToken ZRXToken Token WETH9 TokenTransferProxy_v1 MultiSigWallet MultiSigWalletWithTimeLock MultiSigWalletWithTimeLockExceptRemoveAuthorizedAddress MaliciousToken TokenRegistry Arbitrage EtherDelta AccountLevels", - "postpublish": { - "assets": [ - "packages/order-watcher/_bundles/index.js", - "packages/order-watcher/_bundles/index.min.js" - ] - } + "contracts": "Exchange DummyToken ZRXToken Token WETH9 TokenTransferProxy_v1 MultiSigWallet MultiSigWalletWithTimeLock MultiSigWalletWithTimeLockExceptRemoveAuthorizedAddress MaliciousToken TokenRegistry Arbitrage EtherDelta AccountLevels" }, "repository": { "type": "git", @@ -47,12 +41,12 @@ "node": ">=6.0.0" }, "devDependencies": { - "@0xproject/abi-gen": "^0.3.3", - "@0xproject/dev-utils": "^0.4.5", - "@0xproject/migrations": "^0.0.9", - "@0xproject/monorepo-scripts": "^0.2.2", - "@0xproject/sol-compiler": "^0.5.3", - "@0xproject/tslint-config": "^0.4.21", + "@0xproject/abi-gen": "^1.0.0", + "@0xproject/dev-utils": "^1.0.0", + "@0xproject/migrations": "^1.0.0", + "@0xproject/monorepo-scripts": "^1.0.0", + "@0xproject/sol-compiler": "^1.0.0", + "@0xproject/tslint-config": "^1.0.0", "@types/bintrees": "^1.0.2", "@types/lodash": "4.14.104", "@types/mocha": "^2.2.42", @@ -77,18 +71,18 @@ "typescript": "2.7.1" }, "dependencies": { - "@0xproject/assert": "0.3.0", - "@0xproject/base-contract": "0.3.5", - "@0xproject/contract-wrappers": "0.1.0", - "@0xproject/fill-scenarios": "1.0.0", - "@0xproject/json-schemas": "1.0.0", - "@0xproject/order-utils": "1.0.0", - "@0xproject/types": "1.0.0", - "@0xproject/typescript-typings": "^0.4.2", - "@0xproject/utils": "^0.7.2", - "@0xproject/web3-wrapper": "^0.7.2", + "@0xproject/assert": "^1.0.0", + "@0xproject/base-contract": "^1.0.0", + "@0xproject/contract-wrappers": "^1.0.0-rc.1", + "@0xproject/fill-scenarios": "^1.0.0-rc.1", + "@0xproject/json-schemas": "^1.0.0-rc.1", + "@0xproject/order-utils": "^1.0.0-rc.1", + "@0xproject/types": "^1.0.0-rc.1", + "@0xproject/typescript-typings": "^1.0.0", + "@0xproject/utils": "^1.0.0", + "@0xproject/web3-wrapper": "^1.0.0", "ethereumjs-blockstream": "5.0.0", - "ethereum-types": "^0.0.2", + "ethereum-types": "^1.0.0", "bintrees": "^1.0.2", "ethers": "3.0.22", "lodash": "^4.17.4" |