From d397bd0b9ec188fccaed26e24f075efcd4d00552 Mon Sep 17 00:00:00 2001 From: Elias Rad <146735585+nnsW3@users.noreply.github.com> Date: Wed, 28 Aug 2024 16:39:42 +0300 Subject: [PATCH 1/4] Update api.md --- docs/api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api.md b/docs/api.md index 5d9b17d6..c6456624 100644 --- a/docs/api.md +++ b/docs/api.md @@ -9,7 +9,7 @@ table below shows how its core methods relate to the stages of a test run: |---------------|--------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | compilation | `instrument` | A **pre-compilation** step: Rewrites contracts and generates an instrumentation data map. | | client launch | `attachToHardhatVM` | A **pre-test** step: Enables coverage collection enabled in a HardhatEVM client. As the client runs it will mark line/branch hits on the instrumentation data map. | -| test | `report` | A **post-test** step: Generates a coverage report from the data collected by the VM after tests complete. | +| test | `report` | A **post-test** step: Generates a coverage report from the data collected by the VM after tests are complete. | [3]: https://github.com/gotwarlost/istanbul From 20de2a7e01f3f9906773f6ff74f551293ca2ebe1 Mon Sep 17 00:00:00 2001 From: Elias Rad <146735585+nnsW3@users.noreply.github.com> Date: Wed, 28 Aug 2024 16:41:18 +0300 Subject: [PATCH 2/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7fe9bab3..284fa570 100644 --- a/README.md +++ b/README.md @@ -115,7 +115,7 @@ module.exports = { | onIstanbulComplete[*][14] | *Function* | | Hook run *after* the Istanbul reports are generated, *before* the coverage task completes. Useful if you need to clean resources up. [More...][23]| | **:warning: DEPRECATED** | | | | | configureYulOptimizer | *Boolean* | false | **(Deprecated since 0.8.7)** Setting to `true` should resolve "stack too deep" compiler errors in large projects using ABIEncoderV2 | -| solcOptimizerDetails | *Object* | `undefined` |**(Deprecated since 0.8.7))** Must be used in combination with `configureYulOptimizer`. Allows you configure solc's [optimizer details][1001]. Useful if the default remedy for stack-too-deep errors doesn't work in your case (See [FAQ: Running out of stack][1002] ). | +| solcOptimizerDetails | *Object* | `undefined` |**(Deprecated since 0.8.7))** Must be used in combination with `configureYulOptimizer`. Allows you to configure solc's [optimizer details][1001]. Useful if the default remedy for stack-too-deep errors doesn't work in your case (See [FAQ: Running out of stack][1002] ). | [* Advanced use][14] From a535b0b7ade58ba2b4a2e3c055a3308e7158f39a Mon Sep 17 00:00:00 2001 From: Elias Rad <146735585+nnsW3@users.noreply.github.com> Date: Wed, 28 Aug 2024 16:42:33 +0300 Subject: [PATCH 3/4] Update CHANGELOG.md --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f26b787..9393b641 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -63,7 +63,7 @@ * Update contributor list (https://github.com/sc-forks/solidity-coverage/issues/812) * Add dependabot config (https://github.com/sc-forks/solidity-coverage/issues/759) * Add a package description to package.json (https://github.com/sc-forks/solidity-coverage/issues/775) - * change .solcoverjs occurencies to .solcover.js (https://github.com/sc-forks/solidity-coverage/issues/777) + * change .solcoverjs occurrences to .solcover.js (https://github.com/sc-forks/solidity-coverage/issues/777) * Remove all mentions to buidler (https://github.com/sc-forks/solidity-coverage/issues/778) * Update HH dev dep & fix Zeppelin E2E test (https://github.com/sc-forks/solidity-coverage/issues/811) * Update mocha version to 10.2.0, fix deprecated debug package (https://github.com/sc-forks/solidity-coverage/issues/810) @@ -353,7 +353,7 @@ 0.4.0 / 2017-11-08 (Compatible with testrpc >= 6.0 / pragma 0.4.18 and above) ================== - * Bug fix to accomodate strict enforcement of constant and view modifiers in pragma 0.4.18 + * Bug fix to accommodate strict enforcement of constant and view modifiers in pragma 0.4.18 0.3.5 / 2017-11-07 (Compatible with testrpc >= 6.0 / pragma 0.4.17 and below) ================== From 601989ed2ca3df5a1eb62db0b1dfbf5fc3d99293 Mon Sep 17 00:00:00 2001 From: Elias Rad <146735585+nnsW3@users.noreply.github.com> Date: Thu, 29 Aug 2024 00:36:40 +0300 Subject: [PATCH 4/4] Update api.md --- docs/api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api.md b/docs/api.md index c6456624..5d9b17d6 100644 --- a/docs/api.md +++ b/docs/api.md @@ -9,7 +9,7 @@ table below shows how its core methods relate to the stages of a test run: |---------------|--------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | compilation | `instrument` | A **pre-compilation** step: Rewrites contracts and generates an instrumentation data map. | | client launch | `attachToHardhatVM` | A **pre-test** step: Enables coverage collection enabled in a HardhatEVM client. As the client runs it will mark line/branch hits on the instrumentation data map. | -| test | `report` | A **post-test** step: Generates a coverage report from the data collected by the VM after tests are complete. | +| test | `report` | A **post-test** step: Generates a coverage report from the data collected by the VM after tests complete. | [3]: https://github.com/gotwarlost/istanbul