Skip to content

Commit 588ac92

Browse files
authored
Merge pull request #8052 from NomicFoundation/changeset-release/main
Version Packages (v3)
2 parents b633cb4 + 72ac31c commit 588ac92

File tree

19 files changed

+77
-75
lines changed

19 files changed

+77
-75
lines changed

.changeset/brown-pandas-film.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

.changeset/purple-carrots-clean.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

.changeset/warm-buckets-lose.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.peer-bumps.json

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,5 @@
66
"v-next/hardhat/templates",
77
"v-next/config"
88
],
9-
"bumps": [
10-
{
11-
"package": "@nomicfoundation/hardhat-mocha",
12-
"peer": "hardhat",
13-
"reason": "Now imports and uses the new TestRunResult type from hardhat/types/test"
14-
},
15-
{
16-
"package": "@nomicfoundation/hardhat-node-test-runner",
17-
"peer": "hardhat",
18-
"reason": "Now imports and uses the new TestRunResult type from hardhat/types/test"
19-
}
20-
]
9+
"bumps": []
2110
}

pnpm-lock.yaml

Lines changed: 18 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

v-next/example-project/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,18 +22,18 @@
2222
"test": "hardhat test nodejs && hardhat test mocha"
2323
},
2424
"devDependencies": {
25-
"hardhat": "workspace:^3.1.11",
25+
"hardhat": "workspace:^3.1.12",
2626
"@nomicfoundation/hardhat-ethers-chai-matchers": "workspace:^3.0.3",
27-
"@nomicfoundation/hardhat-errors": "workspace:^3.0.7",
27+
"@nomicfoundation/hardhat-errors": "workspace:^3.0.8",
2828
"@nomicfoundation/hardhat-ethers": "workspace:^4.0.6",
2929
"@nomicfoundation/hardhat-ignition": "workspace:^3.0.9",
3030
"@nomicfoundation/ignition-core": "workspace:^3.0.9",
3131
"@nomicfoundation/hardhat-ignition-viem": "workspace:^3.0.9",
3232
"@nomicfoundation/hardhat-keystore": "workspace:^3.0.5",
3333
"@nomicfoundation/hardhat-ledger": "workspace:^3.0.3",
34-
"@nomicfoundation/hardhat-mocha": "workspace:^3.0.12",
34+
"@nomicfoundation/hardhat-mocha": "workspace:^3.0.13",
3535
"@nomicfoundation/hardhat-network-helpers": "workspace:^3.0.4",
36-
"@nomicfoundation/hardhat-node-test-runner": "workspace:^3.0.10",
36+
"@nomicfoundation/hardhat-node-test-runner": "workspace:^3.0.11",
3737
"@nomicfoundation/hardhat-typechain": "workspace:^3.0.4",
3838
"@nomicfoundation/hardhat-verify": "workspace:^3.0.12",
3939
"@nomicfoundation/hardhat-viem": "workspace:^3.0.4",

v-next/hardhat-errors/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @nomicfoundation/hardhat-errors
22

3+
## 3.0.8
4+
5+
### Patch Changes
6+
7+
- 01b41ee: Added support for function gas snapshots and snapshot cheatcodes in Solidity tests with `--snapshot` and `--snapshot-check` flags ([#7769](https://github.com/NomicFoundation/hardhat/issues/7769))
8+
39
## 3.0.7
410

511
### Patch Changes

v-next/hardhat-errors/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nomicfoundation/hardhat-errors",
3-
"version": "3.0.7",
3+
"version": "3.0.8",
44
"description": "The different errors that Hardhat can throw",
55
"homepage": "https://github.com/nomicfoundation/hardhat/tree/v-next/v-next/hardhat-errors",
66
"repository": {
@@ -54,6 +54,6 @@
5454
"typescript": "~5.8.0"
5555
},
5656
"dependencies": {
57-
"@nomicfoundation/hardhat-utils": "workspace:^4.0.0"
57+
"@nomicfoundation/hardhat-utils": "workspace:^4.0.1"
5858
}
5959
}

v-next/hardhat-mocha/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @nomicfoundation/hardhat-mocha
22

3+
## 3.0.13
4+
5+
### Patch Changes
6+
7+
- e37f96c: Add `TestRunResult` type that wraps `TestSummary`, allowing plugins to extend test results with additional data
8+
39
## 3.0.12
410

511
### Patch Changes

v-next/hardhat-mocha/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nomicfoundation/hardhat-mocha",
3-
"version": "3.0.12",
3+
"version": "3.0.13",
44
"description": "A mocha test runner",
55
"homepage": "https://github.com/nomicfoundation/hardhat/tree/v-next/v-next/hardhat-mocha",
66
"repository": {
@@ -53,20 +53,20 @@
5353
"prettier": "3.2.5",
5454
"rimraf": "^5.0.5",
5555
"typescript": "~5.8.0",
56-
"hardhat": "workspace:^3.1.11",
56+
"hardhat": "workspace:^3.1.12",
5757
"mocha": "^11.0.0"
5858
},
5959
"dependencies": {
60-
"@nomicfoundation/hardhat-errors": "workspace:^3.0.7",
61-
"@nomicfoundation/hardhat-utils": "workspace:^4.0.0",
60+
"@nomicfoundation/hardhat-errors": "workspace:^3.0.8",
61+
"@nomicfoundation/hardhat-utils": "workspace:^4.0.1",
6262
"@nomicfoundation/hardhat-zod-utils": "workspace:^3.0.3",
6363
"chalk": "^5.3.0",
6464
"debug": "^4.3.2",
6565
"tsx": "^4.19.3",
6666
"zod": "^3.23.8"
6767
},
6868
"peerDependencies": {
69-
"hardhat": "workspace:^3.1.11",
69+
"hardhat": "workspace:^3.1.12",
7070
"mocha": "^11.0.0"
7171
}
7272
}

0 commit comments

Comments
 (0)