Skip to content

Commit 2e44699

Browse files
committed
chore: v-next version bump
1 parent f17150b commit 2e44699

File tree

11 files changed

+57
-19
lines changed

11 files changed

+57
-19
lines changed

.changeset/pre.json

+6
Original file line numberDiff line numberDiff line change
@@ -31,16 +31,22 @@
3131
"@nomicfoundation/example-project": "3.0.1"
3232
},
3333
"changesets": [
34+
"calm-clouds-work",
3435
"cool-waves-wonder",
3536
"early-wolves-move",
3637
"eighty-clouds-act",
38+
"giant-chairs-drop",
39+
"little-laws-shop",
40+
"long-toes-deny",
3741
"many-wombats-grin",
3842
"neat-frogs-punch",
3943
"olive-lobsters-carry",
44+
"polite-crabs-relax",
4045
"selfish-worms-remain",
4146
"short-beans-rest",
4247
"short-zoos-arrive",
4348
"slow-lobsters-watch",
49+
"small-buckets-ring",
4450
"strong-mugs-change"
4551
]
4652
}

pnpm-lock.yaml

+8-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

v-next/example-project/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"test": "hardhat test node && hardhat test mocha"
2424
},
2525
"devDependencies": {
26-
"hardhat": "workspace:^3.0.0-next.1",
26+
"hardhat": "workspace:^3.0.0-next.2",
2727
"@nomicfoundation/hardhat-ethers-chai-matchers": "workspace:^3.0.0-next.1",
2828
"@nomicfoundation/hardhat-errors": "workspace:^3.0.0-next.1",
2929
"@nomicfoundation/hardhat-ethers": "workspace:^4.0.0-next.1",
@@ -34,7 +34,7 @@
3434
"@nomicfoundation/hardhat-mocha": "workspace:^3.0.0-next.1",
3535
"@nomicfoundation/hardhat-network-helpers": "workspace:^3.0.0-next.1",
3636
"@nomicfoundation/hardhat-node-test-runner": "workspace:^3.0.0-next.1",
37-
"@nomicfoundation/hardhat-typechain": "workspace:^3.0.0-next.1",
37+
"@nomicfoundation/hardhat-typechain": "workspace:^3.0.0-next.2",
3838
"@nomicfoundation/hardhat-viem": "workspace:^3.0.0-next.1",
3939
"@openzeppelin/contracts": "5.1.0",
4040
"@types/chai": "^4.2.0",

v-next/hardhat-typechain/CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# @nomicfoundation/hardhat-typechain
22

3+
## 3.0.0-next.2
4+
5+
### Patch Changes
6+
7+
- 739f6b3: Replaced the hook for emitting compiled artifacts and updated its usage in the `hardhat-typechain` plugin.
8+
- 89f95f9: Added support for the `attach` method in `hardhat-typechain`.
9+
- Updated dependencies [739f6b3]
10+
- Updated dependencies [1e625dc]
11+
- Updated dependencies [7ea2483]
12+
- Updated dependencies [aab6d99]
13+
- Updated dependencies [c9d81f9]
14+
15+
- @nomicfoundation/hardhat-utils@3.0.0-next.2
16+
317
## 3.0.0-next.1
418

519
### Patch Changes

v-next/hardhat-typechain/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nomicfoundation/hardhat-typechain",
3-
"version": "3.0.0-next.1",
3+
"version": "3.0.0-next.2",
44
"description": "Hardhat plugin to support typechain",
55
"homepage": "https://github.com/nomicfoundation/hardhat/tree/v-next/v-next/hardhat-typechain",
66
"repository": {
@@ -67,15 +67,15 @@
6767
},
6868
"dependencies": {
6969
"@nomicfoundation/hardhat-errors": "workspace:^3.0.0-next.1",
70-
"@nomicfoundation/hardhat-utils": "workspace:^3.0.0-next.1",
70+
"@nomicfoundation/hardhat-utils": "workspace:^3.0.0-next.2",
7171
"@nomicfoundation/hardhat-zod-utils": "workspace:^3.0.0-next.1",
7272
"@typechain/ethers-v6": "^0.5.0",
7373
"debug": "^4.3.2",
7474
"typechain": "^8.3.1",
7575
"zod": "^3.23.8"
7676
},
7777
"peerDependencies": {
78-
"hardhat": "workspace:^3.0.0-next.1",
78+
"hardhat": "workspace:^3.0.0-next.2",
7979
"@nomicfoundation/hardhat-ethers": "workspace:^4.0.0-next.1",
8080
"ethers": "^6.13.4"
8181
}

v-next/hardhat-utils/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @nomicfoundation/hardhat-utils
22

3+
## 3.0.0-next.2
4+
5+
### Patch Changes
6+
7+
- c9d81f9: Added a mutex to synchronize compiler list downloads
8+
39
## 3.0.0-next.1
410

511
### Patch Changes

v-next/hardhat-utils/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nomicfoundation/hardhat-utils",
3-
"version": "3.0.0-next.1",
3+
"version": "3.0.0-next.2",
44
"description": "Utilities for Hardhat and its plugins",
55
"homepage": "https://github.com/nomicfoundation/hardhat/tree/v-next/v-next/hardhat-utils",
66
"repository": {

v-next/hardhat/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# hardhat
22

3+
## 3.0.0-next.2
4+
5+
### Patch Changes
6+
7+
- 739f6b3: Replaced the hook for emitting compiled artifacts and updated its usage in the `hardhat-typechain` plugin.
8+
- 1e625dc: fix: We generate stack traces for failing Solidity tests by re-executing them for performance reasons. This fix ensures that we don't generate stack traces if EVM execution is indeterministic. Indeterminism can be caused by forking from the latest block number or by using impure cheatcodes.
9+
- 7ea2483: Upgrade sentry from 5.x to 9.x
10+
- aab6d99: Use default value for rpcCachePath when running solidity tests
11+
- c9d81f9: Added a mutex to synchronize compiler list downloads
12+
- Updated dependencies [c9d81f9]
13+
- @nomicfoundation/hardhat-utils@3.0.0-next.2
14+
315
## 3.0.0-next.1
416

517
### Patch Changes

v-next/hardhat/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hardhat",
3-
"version": "3.0.0-next.1",
3+
"version": "3.0.0-next.2",
44
"description": "Hardhat is an extensible developer tool that helps smart contract developers increase productivity by reliably bringing together the tools they want.",
55
"homepage": "https://github.com/nomicfoundation/hardhat/tree/v-next/v-next/hardhat",
66
"repository": {
@@ -87,7 +87,7 @@
8787
"@ignored/edr": "0.10.0-alpha.1",
8888
"@ignored/edr-optimism": "0.6.5-alpha.3",
8989
"@nomicfoundation/hardhat-errors": "workspace:^3.0.0-next.1",
90-
"@nomicfoundation/hardhat-utils": "workspace:^3.0.0-next.1",
90+
"@nomicfoundation/hardhat-utils": "workspace:^3.0.0-next.2",
9191
"@nomicfoundation/hardhat-zod-utils": "workspace:^3.0.0-next.1",
9292
"@nomicfoundation/solidity-analyzer": "^0.1.1",
9393
"@sentry/core": "^9.4.0",

v-next/hardhat/templates/01-node-test-runner-viem/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"description": "A TypeScript Hardhat project using Node Test Runner and Viem",
66
"type": "module",
77
"devDependencies": {
8-
"hardhat": "workspace:^3.0.0-next.1",
8+
"hardhat": "workspace:^3.0.0-next.2",
99
"@nomicfoundation/hardhat-ignition": "workspace:^3.0.0-next.1",
1010
"@nomicfoundation/hardhat-ignition-viem": "workspace:^3.0.0-next.1",
1111
"@nomicfoundation/hardhat-keystore": "workspace:^3.0.0-next.1",

v-next/hardhat/templates/02-mocha-ethers/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55
"description": "A TypeScript Hardhat project using Mocha and Ethers.js",
66
"type": "module",
77
"devDependencies": {
8-
"hardhat": "workspace:^3.0.0-next.1",
8+
"hardhat": "workspace:^3.0.0-next.2",
99
"@nomicfoundation/hardhat-ethers-chai-matchers": "workspace:^3.0.0-next.1",
1010
"@nomicfoundation/hardhat-ethers": "workspace:^4.0.0-next.1",
1111
"@nomicfoundation/hardhat-ignition": "workspace:^3.0.0-next.1",
1212
"@nomicfoundation/hardhat-ignition-ethers": "workspace:^3.0.0-next.1",
1313
"@nomicfoundation/hardhat-keystore": "workspace:^3.0.0-next.1",
1414
"@nomicfoundation/hardhat-mocha": "workspace:^3.0.0-next.1",
1515
"@nomicfoundation/hardhat-network-helpers": "workspace:^3.0.0-next.1",
16-
"@nomicfoundation/hardhat-typechain": "workspace:^3.0.0-next.1",
16+
"@nomicfoundation/hardhat-typechain": "workspace:^3.0.0-next.2",
1717
"@types/chai": "^4.2.0",
1818
"@types/chai-as-promised": "^8.0.1",
1919
"@types/mocha": ">=10.0.10",

0 commit comments

Comments
 (0)