aboutsummaryrefslogtreecommitdiffstats
path: root/packages/sol-cov
diff options
context:
space:
mode:
authorfragosti <francesco.agosti93@gmail.com>2018-07-26 01:33:13 +0800
committerfragosti <francesco.agosti93@gmail.com>2018-07-26 01:33:13 +0800
commitda4b70fcae1da2c35905a30b79707b3f27b9fa3a (patch)
tree65dbdb8f75c8e93cd788149610522f5bf5ada643 /packages/sol-cov
parentad4c2b95e4722e6d227c26f436bedf7b06f5356a (diff)
parent05b35c0fdcbca7980d4195e96ec791c1c2d13398 (diff)
downloaddexon-sol-tools-da4b70fcae1da2c35905a30b79707b3f27b9fa3a.tar
dexon-sol-tools-da4b70fcae1da2c35905a30b79707b3f27b9fa3a.tar.gz
dexon-sol-tools-da4b70fcae1da2c35905a30b79707b3f27b9fa3a.tar.bz2
dexon-sol-tools-da4b70fcae1da2c35905a30b79707b3f27b9fa3a.tar.lz
dexon-sol-tools-da4b70fcae1da2c35905a30b79707b3f27b9fa3a.tar.xz
dexon-sol-tools-da4b70fcae1da2c35905a30b79707b3f27b9fa3a.tar.zst
dexon-sol-tools-da4b70fcae1da2c35905a30b79707b3f27b9fa3a.zip
Merge branch 'v2-prototype' of https://github.com/0xProject/0x-monorepo into feature/web3-wrapper/unexport-marshaller
Diffstat (limited to 'packages/sol-cov')
-rw-r--r--packages/sol-cov/CHANGELOG.json10
-rw-r--r--packages/sol-cov/CHANGELOG.md27
-rw-r--r--packages/sol-cov/package.json23
3 files changed, 48 insertions, 12 deletions
diff --git a/packages/sol-cov/CHANGELOG.json b/packages/sol-cov/CHANGELOG.json
index 7308bffb6..051730441 100644
--- a/packages/sol-cov/CHANGELOG.json
+++ b/packages/sol-cov/CHANGELOG.json
@@ -1,5 +1,15 @@
[
{
+ "timestamp": 1532357734,
+ "version": "1.0.1",
+ "changes": [
+ {
+ "note": "Dependencies updated"
+ }
+ ]
+ },
+ {
+ "timestamp": 1532043000,
"version": "1.0.0",
"changes": [
{
diff --git a/packages/sol-cov/CHANGELOG.md b/packages/sol-cov/CHANGELOG.md
index d7621c23d..5689639b1 100644
--- a/packages/sol-cov/CHANGELOG.md
+++ b/packages/sol-cov/CHANGELOG.md
@@ -1,10 +1,35 @@
<!--
-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.1 - _July 23, 2018_
+
+ * Dependencies updated
+
+## v1.0.0 - _July 20, 2018_
+
+ * Add artifact adapter as a parameter for `CoverageSubprovider`. Export `AbstractArtifactAdapter` (#589)
+ * Implement `SolCompilerArtifactAdapter` and `TruffleArtifactAdapter` (#589)
+ * Properly parse multi-level traces (#589)
+ * Add support for solidity libraries (#589)
+ * Fixed a bug causing `RegExp` to crash if contract code is longer that 32767 characters (#675)
+ * Fixed a bug caused by Geth debug trace depth being 1indexed (#675)
+ * Fixed a bug when the tool crashed on empty traces (#675)
+ * Use `BlockchainLifecycle` to support reverts on Geth (#675)
+ * Add `ProfilerSubprovider` as a hacky way to profile code using coverage tools (#675)
+ * Collect traces from `estimate_gas` calls (#675)
+ * Fix a race condition caused by not awaiting the transaction before getting a trace (#675)
+ * Add `start`/`stop` functionality to `CoverageSubprovider` and `ProfilerSubprovider` (#675)
+ * Skip interface artifacts with a warning instead of failing (#675)
+ * Fix `solcVersion` regex in parameter validation (#690)
+ * Fix a bug when in `TruffleArtifactsAdapter` causing it to throw if `compiler.json` is not there (#690)
+ * HUGE perf improvements (#690)
+ * Create `RevertTraceSubprovider` which prints a stack trace when a `REVERT` is detected (#705)
+ * Add source code snippets to stack traces printed by `RevertTraceSubprovider` (#725)
+
## v0.1.3 - _July 18, 2018_
* Dependencies updated
diff --git a/packages/sol-cov/package.json b/packages/sol-cov/package.json
index 86808bfc1..08f57a6ea 100644
--- a/packages/sol-cov/package.json
+++ b/packages/sol-cov/package.json
@@ -1,6 +1,6 @@
{
"name": "@0xproject/sol-cov",
- "version": "1.0.0",
+ "version": "1.0.1",
"engines": {
"node": ">=6.12"
},
@@ -50,13 +50,14 @@
},
"homepage": "https://github.com/0xProject/0x.js/packages/sol-cov/README.md",
"dependencies": {
- "@0xproject/sol-compiler": "^1.0.0",
- "@0xproject/subproviders": "^1.0.0",
- "@0xproject/typescript-typings": "^1.0.0",
- "@0xproject/utils": "^1.0.0",
- "@0xproject/web3-wrapper": "^1.0.0",
- "@0xproject/dev-utils": "^1.0.0",
- "ethereum-types": "^1.0.0",
+ "@0xproject/dev-utils": "^1.0.1",
+ "@0xproject/sol-compiler": "^1.0.1",
+ "@0xproject/subproviders": "^1.0.1",
+ "@0xproject/typescript-typings": "^1.0.1",
+ "@0xproject/utils": "^1.0.1",
+ "@0xproject/web3-wrapper": "^1.0.1",
+ "@types/solidity-parser-antlr": "^0.2.1",
+ "ethereum-types": "^1.0.1",
"ethereumjs-util": "^5.1.1",
"glob": "^7.1.2",
"istanbul": "^0.4.5",
@@ -68,15 +69,15 @@
"solidity-parser-antlr": "^0.2.12"
},
"devDependencies": {
- "@0xproject/monorepo-scripts": "^1.0.0",
- "@0xproject/tslint-config": "^1.0.0",
+ "@0xproject/monorepo-scripts": "^1.0.1",
+ "@0xproject/tslint-config": "^1.0.1",
"@types/istanbul": "^0.4.30",
"@types/loglevel": "^1.5.3",
"@types/mkdirp": "^0.5.1",
- "@types/solidity-parser-antlr": "^0.2.1",
"@types/mocha": "^2.2.42",
"@types/node": "^8.0.53",
"@types/rimraf": "^2.0.2",
+ "@types/solidity-parser-antlr": "^0.2.1",
"chai": "^4.0.1",
"copyfiles": "^1.2.0",
"dirty-chai": "^2.0.1",