Updated CHANGELOGS
This commit is contained in:
parent
7e49db2301
commit
71d1e6b0ec
@ -29,7 +29,8 @@
|
||||
"note": "Export new `AssetData` type from types",
|
||||
"pr": 1131
|
||||
}
|
||||
]
|
||||
],
|
||||
"timestamp": 1539871071
|
||||
},
|
||||
{
|
||||
"version": "1.0.8",
|
||||
|
@ -5,6 +5,15 @@ Edit the package's CHANGELOG.json file only.
|
||||
|
||||
CHANGELOG
|
||||
|
||||
## v2.0.0 - _October 18, 2018_
|
||||
|
||||
* Add support for `eth_signTypedData`. (#1102)
|
||||
* Added `MetamaskSubprovider` to handle inconsistencies in Metamask's signing JSON RPC endpoints. (#1102)
|
||||
* Removed `SignerType` (including `SignerType.Metamask`). Please use the `MetamaskSubprovider` to wrap `web3.currentProvider`. (#1102)
|
||||
* Updated to use new modularized artifacts and the latest version of @0xproject/contract-wrappers (#1105)
|
||||
* Make web3-provider-engine types a 'dependency' so it's available to users of the library (#1105)
|
||||
* Export new `AssetData` type from types (#1131)
|
||||
|
||||
## v1.0.8 - _October 4, 2018_
|
||||
|
||||
* Dependencies updated
|
||||
@ -49,7 +58,7 @@ CHANGELOG
|
||||
|
||||
* Re-organize the exported interface of 0x.js. Remove the `ZeroEx` class, and instead export the same exports as `0x.js`'s sub-packages: `@0xproject/contract-wrappers`, `@0xproject/order-utils` and `@0xproject/order-watcher` (#963)
|
||||
|
||||
## v1.0.1-rc.3 - _August 13, 2018_
|
||||
## v1.0.1-rc.3 - _August 14, 2018_
|
||||
|
||||
* Dependencies updated
|
||||
* Update ecSignOrderHashAsync to return the signature as a string for immediate use in contracts (#914)
|
||||
|
@ -1,4 +1,13 @@
|
||||
[
|
||||
{
|
||||
"timestamp": 1539871071,
|
||||
"version": "1.0.1",
|
||||
"changes": [
|
||||
{
|
||||
"note": "Dependencies updated"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"version": "1.0.0",
|
||||
"changes": [
|
||||
|
14
packages/abi-gen-wrappers/CHANGELOG.md
Normal file
14
packages/abi-gen-wrappers/CHANGELOG.md
Normal file
@ -0,0 +1,14 @@
|
||||
<!--
|
||||
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.1 - _October 18, 2018_
|
||||
|
||||
* Dependencies updated
|
||||
|
||||
## v1.0.0 - _Invalid date_
|
||||
|
||||
* Initial release (#1105)
|
@ -1,4 +1,13 @@
|
||||
[
|
||||
{
|
||||
"timestamp": 1539871071,
|
||||
"version": "1.0.14",
|
||||
"changes": [
|
||||
{
|
||||
"note": "Dependencies updated"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"version": "1.0.13",
|
||||
"changes": [
|
||||
|
@ -5,6 +5,10 @@ Edit the package's CHANGELOG.json file only.
|
||||
|
||||
CHANGELOG
|
||||
|
||||
## v1.0.14 - _October 18, 2018_
|
||||
|
||||
* Dependencies updated
|
||||
|
||||
## v1.0.13 - _October 4, 2018_
|
||||
|
||||
* Dependencies updated
|
||||
@ -37,7 +41,7 @@ CHANGELOG
|
||||
|
||||
* Dependencies updated
|
||||
|
||||
## v1.0.5 - _August 13, 2018_
|
||||
## v1.0.5 - _August 14, 2018_
|
||||
|
||||
* Dependencies updated
|
||||
|
||||
|
@ -1,4 +1,13 @@
|
||||
[
|
||||
{
|
||||
"timestamp": 1539871071,
|
||||
"version": "1.0.14",
|
||||
"changes": [
|
||||
{
|
||||
"note": "Dependencies updated"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"version": "1.0.13",
|
||||
"changes": [
|
||||
|
@ -5,6 +5,10 @@ Edit the package's CHANGELOG.json file only.
|
||||
|
||||
CHANGELOG
|
||||
|
||||
## v1.0.14 - _October 18, 2018_
|
||||
|
||||
* Dependencies updated
|
||||
|
||||
## v1.0.13 - _October 4, 2018_
|
||||
|
||||
* Dependencies updated
|
||||
@ -37,7 +41,7 @@ CHANGELOG
|
||||
|
||||
* Dependencies updated
|
||||
|
||||
## v1.0.5 - _August 13, 2018_
|
||||
## v1.0.5 - _August 14, 2018_
|
||||
|
||||
* Dependencies updated
|
||||
|
||||
|
@ -26,7 +26,8 @@
|
||||
"note": "Add missing types to public interface",
|
||||
"pr": 1139
|
||||
}
|
||||
]
|
||||
],
|
||||
"timestamp": 1539871071
|
||||
},
|
||||
{
|
||||
"version": "2.0.0",
|
||||
|
@ -5,6 +5,15 @@ Edit the package's CHANGELOG.json file only.
|
||||
|
||||
CHANGELOG
|
||||
|
||||
## v2.1.0 - _October 18, 2018_
|
||||
|
||||
* Add `gasLimit` and `gasPrice` as optional properties on `BuyQuoteExecutionOpts`
|
||||
* Export `BuyQuoteInfo` type (#1131)
|
||||
* Updated to use new modularized artifacts and the latest version of @0xproject/contract-wrappers (#1105)
|
||||
* Add `gasLimit` and `gasPrice` as optional properties on `BuyQuoteExecutionOpts` (#1116)
|
||||
* Add `docs:json` command to package.json (#1139)
|
||||
* Add missing types to public interface (#1139)
|
||||
|
||||
## v2.0.0 - _October 4, 2018_
|
||||
|
||||
* Expand AssetBuyer to work with multiple assets at once (#1086)
|
||||
|
@ -1,4 +1,13 @@
|
||||
[
|
||||
{
|
||||
"timestamp": 1539871071,
|
||||
"version": "3.0.2",
|
||||
"changes": [
|
||||
{
|
||||
"note": "Dependencies updated"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"version": "3.0.1",
|
||||
"changes": [
|
||||
|
@ -5,6 +5,10 @@ Edit the package's CHANGELOG.json file only.
|
||||
|
||||
CHANGELOG
|
||||
|
||||
## v3.0.2 - _October 18, 2018_
|
||||
|
||||
* Dependencies updated
|
||||
|
||||
## v3.0.1 - _October 4, 2018_
|
||||
|
||||
* Dependencies updated
|
||||
@ -38,7 +42,7 @@ CHANGELOG
|
||||
|
||||
* Dependencies updated
|
||||
|
||||
## v2.0.0-rc.1 - _August 13, 2018_
|
||||
## v2.0.0-rc.1 - _August 14, 2018_
|
||||
|
||||
* Added strict encoding/decoding checks for sendTransaction and call (#915)
|
||||
|
||||
|
@ -1,4 +1,13 @@
|
||||
[
|
||||
{
|
||||
"timestamp": 1539871071,
|
||||
"version": "3.0.2",
|
||||
"changes": [
|
||||
{
|
||||
"note": "Dependencies updated"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"version": "3.0.1",
|
||||
"changes": [
|
||||
|
@ -5,6 +5,10 @@ Edit the package's CHANGELOG.json file only.
|
||||
|
||||
CHANGELOG
|
||||
|
||||
## v3.0.2 - _October 18, 2018_
|
||||
|
||||
* Dependencies updated
|
||||
|
||||
## v3.0.1 - _October 4, 2018_
|
||||
|
||||
* Dependencies updated
|
||||
@ -42,7 +46,7 @@ CHANGELOG
|
||||
* Updated for SRA v2 (#974)
|
||||
* Stopped exporting `Order` type (#924)
|
||||
|
||||
## v1.0.5 - _August 13, 2018_
|
||||
## v1.0.5 - _August 14, 2018_
|
||||
|
||||
* Dependencies updated
|
||||
|
||||
|
@ -6,7 +6,8 @@
|
||||
"pr": 1105,
|
||||
"note": "Initial release"
|
||||
}
|
||||
]
|
||||
],
|
||||
"timestamp": 1539871071
|
||||
},
|
||||
{
|
||||
"version": "1.0.0",
|
||||
|
14
packages/contract-addresses/CHANGELOG.md
Normal file
14
packages/contract-addresses/CHANGELOG.md
Normal file
@ -0,0 +1,14 @@
|
||||
<!--
|
||||
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.1 - _October 18, 2018_
|
||||
|
||||
* Initial release (#1105)
|
||||
|
||||
## v1.0.0 - _Invalid date_
|
||||
|
||||
* Unpublished Package
|
@ -6,7 +6,8 @@
|
||||
"pr": 1105,
|
||||
"note": "Initial release"
|
||||
}
|
||||
]
|
||||
],
|
||||
"timestamp": 1539871071
|
||||
},
|
||||
{
|
||||
"version": "1.0.0",
|
||||
|
14
packages/contract-artifacts/CHANGELOG.md
Normal file
14
packages/contract-artifacts/CHANGELOG.md
Normal file
@ -0,0 +1,14 @@
|
||||
<!--
|
||||
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.1 - _October 18, 2018_
|
||||
|
||||
* Initial release (#1105)
|
||||
|
||||
## v1.0.0 - _Invalid date_
|
||||
|
||||
* Unpublished Package
|
@ -38,7 +38,8 @@
|
||||
"Removed ContractNotFound errors. Checking for this error was somewhat ineffecient. Relevant methods/functions now return the default error from web3-wrapper, which we feel provides enough information.",
|
||||
"pr": 1105
|
||||
}
|
||||
]
|
||||
],
|
||||
"timestamp": 1539871071
|
||||
},
|
||||
{
|
||||
"version": "2.0.2",
|
||||
|
@ -5,6 +5,17 @@ Edit the package's CHANGELOG.json file only.
|
||||
|
||||
CHANGELOG
|
||||
|
||||
## v3.0.0 - _October 18, 2018_
|
||||
|
||||
* Add optional validation to the forwarder wrapper methods
|
||||
* Updated to use new modularized artifacts. (#1105)
|
||||
* Top-level `ContractWrappers` class has a new optional `contractAddresses` parameter. (#1105)
|
||||
* Default contract addresses are no longer stored in artifacts and are instead loaded from the `@0xproject/contract-addresses` package. (#1105)
|
||||
* Most contract addresses are now defined at instantiation time and are available as properties (e.g., `exchangeWrapper.address`) instead of methods (e.g., `exchangeWrapper.getContractAddress()`). (#1105)
|
||||
* Removed `setProvider` method in top-level `ContractWrapper` class and added new `unsubscribeAll` method. (#1105)
|
||||
* Some properties and methods have been renamed. For example, some methods that previously could throw no longer can, and so their names have been updated accordingly. (#1105)
|
||||
* Removed ContractNotFound errors. Checking for this error was somewhat ineffecient. Relevant methods/functions now return the default error from web3-wrapper, which we feel provides enough information. (#1105)
|
||||
|
||||
## v2.0.2 - _October 4, 2018_
|
||||
|
||||
* Dependencies updated
|
||||
@ -51,7 +62,7 @@ CHANGELOG
|
||||
* Remove superfluous exported types: `ContractEvent`, `Token`, `OrderFillRequest`, `ContractEventArgs`, `LogEvent`, `OnOrderStateChangeCallback`, `ECSignature`, `OrderStateValid`, `OrderStateInvalid`, `OrderState`, `FilterObject`, `TransactionReceipt` & `TransactionReceiptWithDecodedLogs` (#924)
|
||||
* Added Transaction Encoder for use with 0x Exchange executeTransaction (#975)
|
||||
|
||||
## v1.0.1-rc.3 - _August 13, 2018_
|
||||
## v1.0.1-rc.3 - _August 14, 2018_
|
||||
|
||||
* Added strict encoding/decoding checks for sendTransaction and call (#915)
|
||||
* Add ForwarderWrapper (#934)
|
||||
|
@ -6,7 +6,8 @@
|
||||
"note": "Make web3-provider-engine types a 'dependency' so it's available to users of the library",
|
||||
"pr": 1105
|
||||
}
|
||||
]
|
||||
],
|
||||
"timestamp": 1539871071
|
||||
},
|
||||
{
|
||||
"version": "1.0.12",
|
||||
|
@ -5,6 +5,10 @@ Edit the package's CHANGELOG.json file only.
|
||||
|
||||
CHANGELOG
|
||||
|
||||
## v1.0.13 - _October 18, 2018_
|
||||
|
||||
* Make web3-provider-engine types a 'dependency' so it's available to users of the library (#1105)
|
||||
|
||||
## v1.0.12 - _October 4, 2018_
|
||||
|
||||
* Dependencies updated
|
||||
@ -37,7 +41,7 @@ CHANGELOG
|
||||
|
||||
* Dependencies updated
|
||||
|
||||
## v1.0.4 - _August 13, 2018_
|
||||
## v1.0.4 - _August 14, 2018_
|
||||
|
||||
* Dependencies updated
|
||||
|
||||
|
@ -6,7 +6,8 @@
|
||||
"note": "Add `JSONRPCResponseError` and error field on `JSONRPCResponsePayload`.",
|
||||
"pr": 1102
|
||||
}
|
||||
]
|
||||
],
|
||||
"timestamp": 1539871071
|
||||
},
|
||||
{
|
||||
"version": "1.1.0",
|
||||
|
@ -5,6 +5,14 @@ Edit the package's CHANGELOG.json file only.
|
||||
|
||||
CHANGELOG
|
||||
|
||||
## v1.1.1 - _October 18, 2018_
|
||||
|
||||
* Add `JSONRPCResponseError` and error field on `JSONRPCResponsePayload`. (#1102)
|
||||
|
||||
## v1.1.0 - _Invalid date_
|
||||
|
||||
* Unpublished package.
|
||||
|
||||
## v1.0.11 - _October 4, 2018_
|
||||
|
||||
* Dependencies updated
|
||||
@ -33,7 +41,7 @@ CHANGELOG
|
||||
|
||||
* Dependencies updated
|
||||
|
||||
## v1.0.4 - _August 13, 2018_
|
||||
## v1.0.4 - _August 14, 2018_
|
||||
|
||||
* Dependencies updated
|
||||
|
||||
@ -55,6 +63,6 @@ CHANGELOG
|
||||
* Add `TransactionReceiptStatus` type (#812)
|
||||
* Add Artifact types: `CompilerSettings`, `CompilerOptions`, `OutputField` (#924)
|
||||
|
||||
## v0.0.2 - _May 31, 2018_
|
||||
## v0.0.2 - _June 1, 2018_
|
||||
|
||||
* Initial publish (#642)
|
||||
|
@ -6,7 +6,8 @@
|
||||
"note": "Updated to use new @0xproject/contract-artifacts and @0xproject/abi-gen-wrappers packages",
|
||||
"pr": 1105
|
||||
}
|
||||
]
|
||||
],
|
||||
"timestamp": 1539871071
|
||||
},
|
||||
{
|
||||
"version": "1.0.7",
|
||||
|
@ -5,6 +5,10 @@ Edit the package's CHANGELOG.json file only.
|
||||
|
||||
CHANGELOG
|
||||
|
||||
## v1.0.8 - _October 18, 2018_
|
||||
|
||||
* Updated to use new @0xproject/contract-artifacts and @0xproject/abi-gen-wrappers packages (#1105)
|
||||
|
||||
## v1.0.7 - _October 4, 2018_
|
||||
|
||||
* Dependencies updated
|
||||
@ -41,7 +45,7 @@ CHANGELOG
|
||||
|
||||
* Dependencies updated
|
||||
|
||||
## v1.0.1-rc.3 - _August 13, 2018_
|
||||
## v1.0.1-rc.3 - _August 14, 2018_
|
||||
|
||||
* Updated to use latest orderFactory interface, fixed `feeRecipient` spelling error in public interface (#936)
|
||||
* Dependencies updated
|
||||
|
@ -7,7 +7,8 @@
|
||||
"Convert all schemas to JSON files so that they can be used with `json-schema` implemenations in other programming languages.",
|
||||
"pr": 1145
|
||||
}
|
||||
]
|
||||
],
|
||||
"timestamp": 1539871071
|
||||
},
|
||||
{
|
||||
"timestamp": 1538693146,
|
||||
|
@ -5,6 +5,10 @@ Edit the package's CHANGELOG.json file only.
|
||||
|
||||
CHANGELOG
|
||||
|
||||
## v2.0.0 - _October 18, 2018_
|
||||
|
||||
* Convert all schemas to JSON files so that they can be used with `json-schema` implemenations in other programming languages. (#1145)
|
||||
|
||||
## v1.0.7 - _October 4, 2018_
|
||||
|
||||
* Dependencies updated
|
||||
@ -41,7 +45,7 @@ CHANGELOG
|
||||
|
||||
* Update incorrect relayer api fee recipients response schema (#974)
|
||||
|
||||
## v1.0.1-rc.4 - _August 13, 2018_
|
||||
## v1.0.1-rc.4 - _August 14, 2018_
|
||||
|
||||
* Allow for additional properties in txData schema (#938)
|
||||
* Change hexSchema to match `0x` (#937)
|
||||
|
@ -7,7 +7,8 @@
|
||||
"Contract artifacts have been moved to the new @0xproject/contract-artifacts package. v1 migrations have been removed. `runMigrationsAsync` returns the addresses of the contracts that were deployed.",
|
||||
"pr": 1105
|
||||
}
|
||||
]
|
||||
],
|
||||
"timestamp": 1539871071
|
||||
},
|
||||
{
|
||||
"version": "1.0.14",
|
||||
|
@ -5,6 +5,10 @@ Edit the package's CHANGELOG.json file only.
|
||||
|
||||
CHANGELOG
|
||||
|
||||
## v2.0.0 - _October 18, 2018_
|
||||
|
||||
* Contract artifacts have been moved to the new @0xproject/contract-artifacts package. v1 migrations have been removed. `runMigrationsAsync` returns the addresses of the contracts that were deployed. (#1105)
|
||||
|
||||
## v1.0.14 - _October 4, 2018_
|
||||
|
||||
* Dependencies updated
|
||||
@ -45,7 +49,7 @@ CHANGELOG
|
||||
|
||||
* Dependencies updated
|
||||
|
||||
## v1.0.4 - _August 13, 2018_
|
||||
## v1.0.4 - _August 14, 2018_
|
||||
|
||||
* Dependencies updated
|
||||
|
||||
|
@ -19,7 +19,8 @@
|
||||
"note": "Use `AssetData` union type for function return values.",
|
||||
"pr": 1131
|
||||
}
|
||||
]
|
||||
],
|
||||
"timestamp": 1539871071
|
||||
},
|
||||
{
|
||||
"version": "1.0.7",
|
||||
|
@ -5,6 +5,13 @@ Edit the package's CHANGELOG.json file only.
|
||||
|
||||
CHANGELOG
|
||||
|
||||
## v2.0.0 - _October 18, 2018_
|
||||
|
||||
* Added `ecSignOrderAsync` to first sign an order using `eth_signTypedData` and fallback to `eth_sign`. (#1102)
|
||||
* Added `ecSignTypedDataOrderAsync` to sign an order exclusively using `eth_signTypedData`. (#1102)
|
||||
* Rename `ecSignOrderHashAsync` to `ecSignHashAsync` removing `SignerType` parameter. (#1102)
|
||||
* Use `AssetData` union type for function return values. (#1131)
|
||||
|
||||
## v1.0.7 - _October 4, 2018_
|
||||
|
||||
* Dependencies updated
|
||||
@ -52,7 +59,7 @@ CHANGELOG
|
||||
* Make `sortFeeOrdersByFeeAdjustedRate` in `sortingUtils` generic (#997)
|
||||
* Update `findFeeOrdersThatCoverFeesForTargetOrders` to round the the nearest integer when calculating required fees (#997)
|
||||
|
||||
## v1.0.1-rc.3 - _August 13, 2018_
|
||||
## v1.0.1-rc.3 - _August 14, 2018_
|
||||
|
||||
* Update ecSignOrderHashAsync to return signature string with signature type byte. Removes messagePrefixOpts. (#914)
|
||||
* Added a synchronous `createOrder` method in `orderFactory`, updated public interfaces to support some optional parameters (#936)
|
||||
|
@ -11,7 +11,8 @@
|
||||
"Updated to use new modularized artifacts and the latest version of @0xproject/contract-wrappers. Constructor has a new optional `contractAddresses` parameter.",
|
||||
"pr": 1105
|
||||
}
|
||||
]
|
||||
],
|
||||
"timestamp": 1539871071
|
||||
},
|
||||
{
|
||||
"version": "2.1.1",
|
||||
|
@ -5,6 +5,11 @@ Edit the package's CHANGELOG.json file only.
|
||||
|
||||
CHANGELOG
|
||||
|
||||
## v2.2.0 - _October 18, 2018_
|
||||
|
||||
* Added getStats function and returns a Stats object (#1118)
|
||||
* Updated to use new modularized artifacts and the latest version of @0xproject/contract-wrappers. Constructor has a new optional `contractAddresses` parameter. (#1105)
|
||||
|
||||
## v2.1.1 - _October 4, 2018_
|
||||
|
||||
* Dependencies updated
|
||||
@ -48,7 +53,7 @@ CHANGELOG
|
||||
* Export types: `ExchangeContractErrs`, `OrderRelevantState`, `JSONRPCRequestPayload`, `JSONRPCErrorCallback` and `JSONRPCResponsePayload` (#924)
|
||||
* Remove exporting types: `BlockParamLiteral`, `BlockParam`, `Order` (#924)
|
||||
|
||||
## v1.0.1-rc.3 - _August 13, 2018_
|
||||
## v1.0.1-rc.3 - _August 14, 2018_
|
||||
|
||||
* Dependencies updated
|
||||
|
||||
|
@ -1,4 +1,13 @@
|
||||
[
|
||||
{
|
||||
"timestamp": 1539871071,
|
||||
"version": "1.0.14",
|
||||
"changes": [
|
||||
{
|
||||
"note": "Dependencies updated"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"version": "1.0.13",
|
||||
"changes": [
|
||||
|
@ -5,6 +5,10 @@ Edit the package's CHANGELOG.json file only.
|
||||
|
||||
CHANGELOG
|
||||
|
||||
## v1.0.14 - _October 18, 2018_
|
||||
|
||||
* Dependencies updated
|
||||
|
||||
## v1.0.13 - _October 4, 2018_
|
||||
|
||||
* Dependencies updated
|
||||
@ -37,7 +41,7 @@ CHANGELOG
|
||||
|
||||
* Dependencies updated
|
||||
|
||||
## v1.0.5 - _August 13, 2018_
|
||||
## v1.0.5 - _August 14, 2018_
|
||||
|
||||
* Dependencies updated
|
||||
|
||||
|
@ -5,7 +5,8 @@
|
||||
{
|
||||
"note": "Dependencies updated"
|
||||
}
|
||||
]
|
||||
],
|
||||
"timestamp": 1539871071
|
||||
},
|
||||
{
|
||||
"timestamp": 1538693146,
|
||||
|
@ -5,10 +5,14 @@ Edit the package's CHANGELOG.json file only.
|
||||
|
||||
CHANGELOG
|
||||
|
||||
## v1.0.15 - _October 4, 2018_
|
||||
## v1.0.17 - _October 18, 2018_
|
||||
|
||||
* Dependencies updated
|
||||
|
||||
## v1.0.16 - _October 4, 2018_
|
||||
|
||||
* Unpublished package
|
||||
|
||||
## v1.0.14 - _October 2, 2018_
|
||||
|
||||
* Dependencies updated
|
||||
@ -41,7 +45,7 @@ CHANGELOG
|
||||
|
||||
* Dependencies updated
|
||||
|
||||
## v1.0.6 - _August 13, 2018_
|
||||
## v1.0.6 - _August 14, 2018_
|
||||
|
||||
* Dependencies updated
|
||||
|
||||
|
@ -1,4 +1,13 @@
|
||||
[
|
||||
{
|
||||
"timestamp": 1539871071,
|
||||
"version": "1.1.8",
|
||||
"changes": [
|
||||
{
|
||||
"note": "Dependencies updated"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"version": "1.1.7",
|
||||
"changes": [
|
||||
|
@ -5,6 +5,10 @@ Edit the package's CHANGELOG.json file only.
|
||||
|
||||
CHANGELOG
|
||||
|
||||
## v1.1.8 - _October 18, 2018_
|
||||
|
||||
* Dependencies updated
|
||||
|
||||
## v1.1.7 - _October 4, 2018_
|
||||
|
||||
* Dependencies updated
|
||||
@ -39,7 +43,7 @@ CHANGELOG
|
||||
* Stop exporting types: `ContractArtifact`, `ContractNetworks` (#924)
|
||||
* Export types: `CompilerSettings`, `OutputField` (#924)
|
||||
|
||||
## v1.0.5 - _August 13, 2018_
|
||||
## v1.0.5 - _August 14, 2018_
|
||||
|
||||
* Dependencies updated
|
||||
|
||||
|
@ -6,7 +6,8 @@
|
||||
"note": "Make @types/solidity-parser-antlr a 'dependency' so it's available to users of the library",
|
||||
"pr": 1105
|
||||
}
|
||||
]
|
||||
],
|
||||
"timestamp": 1539871071
|
||||
},
|
||||
{
|
||||
"version": "2.1.7",
|
||||
|
@ -5,6 +5,10 @@ Edit the package's CHANGELOG.json file only.
|
||||
|
||||
CHANGELOG
|
||||
|
||||
## v2.1.8 - _October 18, 2018_
|
||||
|
||||
* Make @types/solidity-parser-antlr a 'dependency' so it's available to users of the library (#1105)
|
||||
|
||||
## v2.1.7 - _October 4, 2018_
|
||||
|
||||
* Dependencies updated
|
||||
@ -37,7 +41,7 @@ CHANGELOG
|
||||
|
||||
* Export types: `JSONRPCRequestPayload`, `Provider`, `JSONRPCErrorCallback`, `JSONRPCResponsePayload`, `JSONRPCRequestPayloadWithMethod`, `NextCallback`, `ErrorCallback`, `OnNextCompleted` and `Callback` (#924)
|
||||
|
||||
## v2.0.0 - _August 13, 2018_
|
||||
## v2.0.0 - _August 14, 2018_
|
||||
|
||||
* Fix a bug when eth_call coverage was not computed because of silent schema validation failures (#938)
|
||||
* Make `TruffleArtifactAdapter` read the `truffle.js` config for `solc` settings (#938)
|
||||
|
@ -1,4 +1,13 @@
|
||||
[
|
||||
{
|
||||
"timestamp": 1539871071,
|
||||
"version": "1.0.3",
|
||||
"changes": [
|
||||
{
|
||||
"note": "Dependencies updated"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"version": "1.0.2",
|
||||
"changes": [
|
||||
|
@ -5,6 +5,10 @@ Edit the package's CHANGELOG.json file only.
|
||||
|
||||
CHANGELOG
|
||||
|
||||
## v1.0.3 - _October 18, 2018_
|
||||
|
||||
* Dependencies updated
|
||||
|
||||
## v1.0.2 - _October 4, 2018_
|
||||
|
||||
* Dependencies updated
|
||||
|
@ -1,4 +1,13 @@
|
||||
[
|
||||
{
|
||||
"timestamp": 1539871071,
|
||||
"version": "1.0.15",
|
||||
"changes": [
|
||||
{
|
||||
"note": "Dependencies updated"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"timestamp": 1538693146,
|
||||
"version": "1.0.14",
|
||||
|
@ -5,6 +5,10 @@ Edit the package's CHANGELOG.json file only.
|
||||
|
||||
CHANGELOG
|
||||
|
||||
## v1.0.15 - _October 18, 2018_
|
||||
|
||||
* Dependencies updated
|
||||
|
||||
## v1.0.14 - _October 4, 2018_
|
||||
|
||||
* Dependencies updated
|
||||
@ -41,7 +45,7 @@ CHANGELOG
|
||||
|
||||
* Dependencies updated
|
||||
|
||||
## v1.0.5 - _August 13, 2018_
|
||||
## v1.0.5 - _August 14, 2018_
|
||||
|
||||
* Fix a bug where RelativeFSResolver would crash when trying to read a directory (#909)
|
||||
* Fix a bug where NpmResolver would crash when trying to read a directory (#961)
|
||||
|
@ -6,7 +6,8 @@
|
||||
"note": "Make @loopback/openapi-v3-types a 'dependency' so it's available to users of the library",
|
||||
"pr": 1105
|
||||
}
|
||||
]
|
||||
],
|
||||
"timestamp": 1539871071
|
||||
},
|
||||
{
|
||||
"version": "1.0.6",
|
||||
|
@ -5,6 +5,10 @@ Edit the package's CHANGELOG.json file only.
|
||||
|
||||
CHANGELOG
|
||||
|
||||
## v1.0.7 - _October 18, 2018_
|
||||
|
||||
* Make @loopback/openapi-v3-types a 'dependency' so it's available to users of the library (#1105)
|
||||
|
||||
## v1.0.6 - _October 4, 2018_
|
||||
|
||||
* Dependencies updated
|
||||
@ -38,6 +42,6 @@ CHANGELOG
|
||||
|
||||
* Add takerAddress to /orders parameters (#974)
|
||||
|
||||
## v1.0.1-rc.4 - _August 13, 2018_
|
||||
## v1.0.1-rc.4 - _August 14, 2018_
|
||||
|
||||
* Add inital spec for SRA v2 (#916)
|
||||
|
@ -14,7 +14,8 @@
|
||||
"note": "Make web3-provider-engine types a 'dependency' so it's available to users of the library",
|
||||
"pr": 1105
|
||||
}
|
||||
]
|
||||
],
|
||||
"timestamp": 1539871071
|
||||
},
|
||||
{
|
||||
"version": "2.0.7",
|
||||
|
@ -5,6 +5,12 @@ Edit the package's CHANGELOG.json file only.
|
||||
|
||||
CHANGELOG
|
||||
|
||||
## v2.1.0 - _October 18, 2018_
|
||||
|
||||
* Add `MetamaskSubprovider` to handle inconsistent JSON RPC behaviour (#1102)
|
||||
* Add support for `eth_signTypedData` in wallets Mnemonic, Private and EthLightWallet (#1102)
|
||||
* Make web3-provider-engine types a 'dependency' so it's available to users of the library (#1105)
|
||||
|
||||
## v2.0.7 - _October 4, 2018_
|
||||
|
||||
* Dependencies updated
|
||||
@ -37,7 +43,7 @@ CHANGELOG
|
||||
|
||||
* Export types: `PartialTxParams`, `JSONRPCRequestPayloadWithMethod`, `ECSignatureString`, `AccountFetchingConfigs`, `LedgerEthereumClientFactoryAsync`, `OnNextCompleted`, `MnemonicWalletSubproviderConfigs`, LedgerGetAddressResult, `JSONRPCRequestPayload`, `Provider`, `JSONRPCResponsePayload` and `JSONRPCErrorCallback` (#924)
|
||||
|
||||
## v1.0.5 - _August 13, 2018_
|
||||
## v1.0.5 - _August 14, 2018_
|
||||
|
||||
* Dependencies updated
|
||||
|
||||
|
@ -1,4 +1,13 @@
|
||||
[
|
||||
{
|
||||
"timestamp": 1539871071,
|
||||
"version": "1.0.9",
|
||||
"changes": [
|
||||
{
|
||||
"note": "Dependencies updated"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"timestamp": 1538693146,
|
||||
"version": "1.0.8",
|
||||
|
@ -5,6 +5,10 @@ Edit the package's CHANGELOG.json file only.
|
||||
|
||||
CHANGELOG
|
||||
|
||||
## v1.0.9 - _October 18, 2018_
|
||||
|
||||
* Dependencies updated
|
||||
|
||||
## v1.0.8 - _October 4, 2018_
|
||||
|
||||
* Dependencies updated
|
||||
@ -17,7 +21,7 @@ CHANGELOG
|
||||
|
||||
* Dependencies updated
|
||||
|
||||
## v1.0.5 - _August 13, 2018_
|
||||
## v1.0.5 - _August 14, 2018_
|
||||
|
||||
* Dependencies updated
|
||||
|
||||
|
@ -14,7 +14,8 @@
|
||||
"note": "Add `AssetData` union type (`type AssetData = ERC20AssetData | ERC721AssetData`)",
|
||||
"pr": 1131
|
||||
}
|
||||
]
|
||||
],
|
||||
"timestamp": 1539871071
|
||||
},
|
||||
{
|
||||
"timestamp": 1538693146,
|
||||
|
@ -5,6 +5,12 @@ Edit the package's CHANGELOG.json file only.
|
||||
|
||||
CHANGELOG
|
||||
|
||||
## v1.2.0 - _October 18, 2018_
|
||||
|
||||
* Added `EIP712Parameter` `EIP712Types` `EIP712TypedData` for EIP712 signing (#1102)
|
||||
* Added `ZeroExTransaction` type for Exchange executeTransaction (#1102)
|
||||
* Add `AssetData` union type (`type AssetData = ERC20AssetData | ERC721AssetData`) (#1131)
|
||||
|
||||
## v1.1.4 - _October 4, 2018_
|
||||
|
||||
* Dependencies updated
|
||||
@ -44,7 +50,7 @@ CHANGELOG
|
||||
|
||||
* Add revert reasons for ERC721Token (#933)
|
||||
|
||||
## v1.0.1-rc.4 - _August 13, 2018_
|
||||
## v1.0.1-rc.4 - _August 14, 2018_
|
||||
|
||||
* Added SignerType to handle different signing prefix scenarios (#914)
|
||||
|
||||
|
@ -1,4 +1,13 @@
|
||||
[
|
||||
{
|
||||
"timestamp": 1539871071,
|
||||
"version": "3.0.3",
|
||||
"changes": [
|
||||
{
|
||||
"note": "Dependencies updated"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"timestamp": 1538693146,
|
||||
"version": "3.0.2",
|
||||
|
@ -5,6 +5,10 @@ Edit the package's CHANGELOG.json file only.
|
||||
|
||||
CHANGELOG
|
||||
|
||||
## v3.0.3 - _October 18, 2018_
|
||||
|
||||
* Dependencies updated
|
||||
|
||||
## v3.0.2 - _October 4, 2018_
|
||||
|
||||
* Dependencies updated
|
||||
@ -33,7 +37,7 @@ CHANGELOG
|
||||
|
||||
* Dependencies updated
|
||||
|
||||
## v1.0.4 - _August 13, 2018_
|
||||
## v1.0.4 - _August 14, 2018_
|
||||
|
||||
* Dependencies updated
|
||||
|
||||
|
@ -1,4 +1,13 @@
|
||||
[
|
||||
{
|
||||
"timestamp": 1539871071,
|
||||
"version": "2.0.3",
|
||||
"changes": [
|
||||
{
|
||||
"note": "Dependencies updated"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"timestamp": 1538693146,
|
||||
"version": "2.0.2",
|
||||
|
@ -5,6 +5,10 @@ Edit the package's CHANGELOG.json file only.
|
||||
|
||||
CHANGELOG
|
||||
|
||||
## v2.0.3 - _October 18, 2018_
|
||||
|
||||
* Dependencies updated
|
||||
|
||||
## v2.0.2 - _October 4, 2018_
|
||||
|
||||
* Dependencies updated
|
||||
@ -41,7 +45,7 @@ CHANGELOG
|
||||
|
||||
* Dependencies updated
|
||||
|
||||
## v1.0.5 - _August 13, 2018_
|
||||
## v1.0.5 - _August 14, 2018_
|
||||
|
||||
* Increased BigNumber decimal precision from 20 to 78 (#807)
|
||||
* Store different ABIs for events with same function signature and different amount of indexed arguments (#933)
|
||||
|
@ -11,7 +11,8 @@
|
||||
"Web3Wrapper now throws when an RPC request contains an error field in the response. Previously errors could be swallowed and undefined returned.",
|
||||
"pr": 1102
|
||||
}
|
||||
]
|
||||
],
|
||||
"timestamp": 1539871071
|
||||
},
|
||||
{
|
||||
"version": "3.0.3",
|
||||
|
@ -5,6 +5,11 @@ Edit the package's CHANGELOG.json file only.
|
||||
|
||||
CHANGELOG
|
||||
|
||||
## v3.1.0 - _October 18, 2018_
|
||||
|
||||
* Add `signTypedData` to perform EIP712 `eth_signTypedData`. (#1102)
|
||||
* Web3Wrapper now throws when an RPC request contains an error field in the response. Previously errors could be swallowed and undefined returned. (#1102)
|
||||
|
||||
## v3.0.3 - _October 4, 2018_
|
||||
|
||||
* Dependencies updated
|
||||
@ -40,7 +45,7 @@ CHANGELOG
|
||||
* Stop exporting types: `CallTxDataBaseRPC` and `AbstractBlockRPC` (#924)
|
||||
* Export `AbiDecoder` class (#924)
|
||||
|
||||
## v1.2.0 - _August 13, 2018_
|
||||
## v1.2.0 - _August 14, 2018_
|
||||
|
||||
* Export marshaller to convert between RPC and user-space data formats (#938)
|
||||
* Export RPC types (#938)
|
||||
@ -80,7 +85,7 @@ CHANGELOG
|
||||
|
||||
* Dependencies updated
|
||||
|
||||
## v0.7.0 - _June 3, 2018_
|
||||
## v0.7.0 - _June 4, 2018_
|
||||
|
||||
* Add `web3Wrapper.getContractCodeAsync` (#675)
|
||||
* Add `web3Wrapper.getTransactionTraceAsync` (#675)
|
||||
|
Loading…
x
Reference in New Issue
Block a user