Skip to content

Commit 2866e2f

Browse files
committed
chore: v-next version bump
1 parent f13fc01 commit 2866e2f

File tree

43 files changed

+425
-127
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+425
-127
lines changed

.changeset/pre.json

+10
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,16 @@
3131
"@nomicfoundation/example-project": "3.0.1"
3232
},
3333
"changesets": [
34+
"cool-waves-wonder",
35+
"early-wolves-move",
36+
"eighty-clouds-act",
37+
"many-wombats-grin",
38+
"neat-frogs-punch",
39+
"olive-lobsters-carry",
40+
"selfish-worms-remain",
41+
"short-beans-rest",
42+
"short-zoos-arrive",
43+
"slow-lobsters-watch",
3444
"strong-mugs-change"
3545
]
3646
}

v-next/example-project/package.json

+13-13
Original file line numberDiff line numberDiff line change
@@ -23,19 +23,19 @@
2323
"test": "hardhat test node && hardhat test mocha"
2424
},
2525
"devDependencies": {
26-
"hardhat": "workspace:^3.0.0-next.0",
27-
"@nomicfoundation/hardhat-ethers-chai-matchers": "workspace:^3.0.0-next.0",
28-
"@nomicfoundation/hardhat-errors": "workspace:^3.0.0-next.0",
29-
"@nomicfoundation/hardhat-ethers": "workspace:^4.0.0-next.0",
30-
"@nomicfoundation/hardhat-ignition": "workspace:^3.0.0-next.0",
31-
"@nomicfoundation/ignition-core": "workspace:^3.0.0-next.0",
32-
"@nomicfoundation/hardhat-ignition-viem": "workspace:^3.0.0-next.0",
33-
"@nomicfoundation/hardhat-keystore": "workspace:^3.0.0-next.0",
34-
"@nomicfoundation/hardhat-mocha": "workspace:^3.0.0-next.0",
35-
"@nomicfoundation/hardhat-network-helpers": "workspace:^3.0.0-next.0",
36-
"@nomicfoundation/hardhat-node-test-runner": "workspace:^3.0.0-next.0",
37-
"@nomicfoundation/hardhat-typechain": "workspace:^3.0.0-next.0",
38-
"@nomicfoundation/hardhat-viem": "workspace:^3.0.0-next.0",
26+
"hardhat": "workspace:^3.0.0-next.1",
27+
"@nomicfoundation/hardhat-ethers-chai-matchers": "workspace:^3.0.0-next.1",
28+
"@nomicfoundation/hardhat-errors": "workspace:^3.0.0-next.1",
29+
"@nomicfoundation/hardhat-ethers": "workspace:^4.0.0-next.1",
30+
"@nomicfoundation/hardhat-ignition": "workspace:^3.0.0-next.1",
31+
"@nomicfoundation/ignition-core": "workspace:^3.0.0-next.1",
32+
"@nomicfoundation/hardhat-ignition-viem": "workspace:^3.0.0-next.1",
33+
"@nomicfoundation/hardhat-keystore": "workspace:^3.0.0-next.1",
34+
"@nomicfoundation/hardhat-mocha": "workspace:^3.0.0-next.1",
35+
"@nomicfoundation/hardhat-network-helpers": "workspace:^3.0.0-next.1",
36+
"@nomicfoundation/hardhat-node-test-runner": "workspace:^3.0.0-next.1",
37+
"@nomicfoundation/hardhat-typechain": "workspace:^3.0.0-next.1",
38+
"@nomicfoundation/hardhat-viem": "workspace:^3.0.0-next.1",
3939
"@openzeppelin/contracts": "5.1.0",
4040
"@types/chai": "^4.2.0",
4141
"@types/mocha": ">=10.0.10",

v-next/hardhat-errors/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# @nomicfoundation/hardhat-errors
2+
3+
## 3.0.0-next.1
4+
5+
### Patch Changes
6+
7+
- bfb708c: Improve error message when build profile is not found.
8+
- f13fc01: Small bug fix release of Hardhat 3 Alpha (2025-03-05)
9+
- e853ff8: Improve error message if a non-existing subtask is invoked ([#6375](https://github.com/NomicFoundation/hardhat/issues/6375))
10+
- 209ea79: Improve the keystore error message displayed when the password is incorrect or the encrypted file is corrupted.
11+
- Updated dependencies [f13fc01]
12+
- @nomicfoundation/hardhat-utils@3.0.0-next.1

v-next/hardhat-errors/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nomicfoundation/hardhat-errors",
3-
"version": "3.0.0-next.0",
3+
"version": "3.0.0-next.1",
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": {
@@ -41,7 +41,7 @@
4141
],
4242
"devDependencies": {
4343
"@eslint-community/eslint-plugin-eslint-comments": "^4.3.0",
44-
"@nomicfoundation/hardhat-node-test-reporter": "workspace:^3.0.0-next.0",
44+
"@nomicfoundation/hardhat-node-test-reporter": "workspace:^3.0.0-next.1",
4545
"@types/node": "^20.14.9",
4646
"@typescript-eslint/eslint-plugin": "^7.7.1",
4747
"@typescript-eslint/parser": "^7.7.1",
@@ -58,6 +58,6 @@
5858
"typescript-eslint": "7.7.1"
5959
},
6060
"dependencies": {
61-
"@nomicfoundation/hardhat-utils": "workspace:^3.0.0-next.0"
61+
"@nomicfoundation/hardhat-utils": "workspace:^3.0.0-next.1"
6262
}
6363
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# @nomicfoundation/hardhat-ethers-chai-matchers
2+
3+
## 3.0.0-next.1
4+
5+
### Patch Changes
6+
7+
- f13fc01: Small bug fix release of Hardhat 3 Alpha (2025-03-05)
8+
- Updated dependencies [e5d4453]
9+
- Updated dependencies [ee91628]
10+
- Updated dependencies [bfb708c]
11+
- Updated dependencies [f13fc01]
12+
- Updated dependencies [50d8fb5]
13+
- Updated dependencies [e853ff8]
14+
- Updated dependencies [209ea79]
15+
16+
- @nomicfoundation/hardhat-errors@3.0.0-next.1
17+
- @nomicfoundation/hardhat-ethers@4.0.0-next.1
18+
- @nomicfoundation/hardhat-utils@3.0.0-next.1

v-next/hardhat-ethers-chai-matchers/package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nomicfoundation/hardhat-ethers-chai-matchers",
3-
"version": "3.0.0-next.0",
3+
"version": "3.0.0-next.1",
44
"description": "Hardhat utils for testing",
55
"homepage": "https://github.com/nomicfoundation/hardhat/tree/v-next/v-next/hardhat-ethers-chai-matchers",
66
"repository": {
@@ -46,8 +46,8 @@
4646
],
4747
"devDependencies": {
4848
"@eslint-community/eslint-plugin-eslint-comments": "^4.3.0",
49-
"@nomicfoundation/hardhat-mocha": "workspace:^3.0.0-next.0",
50-
"@nomicfoundation/hardhat-node-test-reporter": "workspace:^3.0.0-next.0",
49+
"@nomicfoundation/hardhat-mocha": "workspace:^3.0.0-next.1",
50+
"@nomicfoundation/hardhat-node-test-reporter": "workspace:^3.0.0-next.1",
5151
"@nomicfoundation/hardhat-test-utils": "workspace:^",
5252
"@types/chai": "^4.2.0",
5353
"@types/debug": "^4.1.7",
@@ -71,15 +71,15 @@
7171
"typescript-eslint": "7.7.1"
7272
},
7373
"dependencies": {
74-
"@nomicfoundation/hardhat-errors": "workspace:^3.0.0-next.0",
75-
"@nomicfoundation/hardhat-utils": "workspace:^3.0.0-next.0",
74+
"@nomicfoundation/hardhat-errors": "workspace:^3.0.0-next.1",
75+
"@nomicfoundation/hardhat-utils": "workspace:^3.0.0-next.1",
7676
"@types/chai-as-promised": "^8.0.1",
7777
"chai-as-promised": "^8.0.0",
7878
"deep-eql": "^5.0.1"
7979
},
8080
"peerDependencies": {
81-
"hardhat": "workspace:^3.0.0-next.0",
82-
"@nomicfoundation/hardhat-ethers": "workspace:^4.0.0-next.0",
81+
"hardhat": "workspace:^3.0.0-next.1",
82+
"@nomicfoundation/hardhat-ethers": "workspace:^4.0.0-next.1",
8383
"chai": "^5.1.2",
8484
"ethers": "^6.13.4"
8585
}

v-next/hardhat-ethers/CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# @nomicfoundation/hardhat-ethers
2+
3+
## 4.0.0-next.1
4+
5+
### Patch Changes
6+
7+
- f13fc01: Small bug fix release of Hardhat 3 Alpha (2025-03-05)
8+
- Updated dependencies [e5d4453]
9+
- Updated dependencies [ee91628]
10+
- Updated dependencies [bfb708c]
11+
- Updated dependencies [f13fc01]
12+
- Updated dependencies [50d8fb5]
13+
- Updated dependencies [e853ff8]
14+
- Updated dependencies [209ea79]
15+
16+
- @nomicfoundation/hardhat-errors@3.0.0-next.1
17+
- @nomicfoundation/hardhat-utils@3.0.0-next.1

v-next/hardhat-ethers/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nomicfoundation/hardhat-ethers",
3-
"version": "4.0.0-next.0",
3+
"version": "4.0.0-next.1",
44
"description": "Hardhat plugin for ethers",
55
"homepage": "https://github.com/nomicfoundation/hardhat/tree/v-next/v-next/hardhat-ethers",
66
"repository": {
@@ -44,7 +44,7 @@
4444
],
4545
"devDependencies": {
4646
"@eslint-community/eslint-plugin-eslint-comments": "^4.3.0",
47-
"@nomicfoundation/hardhat-node-test-reporter": "workspace:^3.0.0-next.0",
47+
"@nomicfoundation/hardhat-node-test-reporter": "workspace:^3.0.0-next.1",
4848
"@nomicfoundation/hardhat-test-utils": "workspace:^",
4949
"@types/debug": "^4.1.7",
5050
"@types/node": "^20.14.9",
@@ -64,12 +64,12 @@
6464
"typescript-eslint": "7.7.1"
6565
},
6666
"dependencies": {
67-
"@nomicfoundation/hardhat-errors": "workspace:^3.0.0-next.0",
68-
"@nomicfoundation/hardhat-utils": "workspace:^3.0.0-next.0",
67+
"@nomicfoundation/hardhat-errors": "workspace:^3.0.0-next.1",
68+
"@nomicfoundation/hardhat-utils": "workspace:^3.0.0-next.1",
6969
"debug": "^4.3.2",
7070
"ethers": "^6.13.4"
7171
},
7272
"peerDependencies": {
73-
"hardhat": "workspace:^3.0.0-next.0"
73+
"hardhat": "workspace:^3.0.0-next.1"
7474
}
7575
}

v-next/hardhat-ignition-core/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 3.0.0-next.1
4+
5+
### Patch Changes
6+
7+
- f13fc01: Small bug fix release of Hardhat 3 Alpha (2025-03-05)
8+
- Updated dependencies [f13fc01]
9+
- @nomicfoundation/hardhat-utils@3.0.0-next.1
10+
311
All notable changes to this project will be documented in this file.
412

513
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

v-next/hardhat-ignition-core/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nomicfoundation/ignition-core",
3-
"version": "3.0.0-next.0",
3+
"version": "3.0.0-next.1",
44
"license": "MIT",
55
"author": "Nomic Foundation",
66
"homepage": "https://hardhat.org",
@@ -78,7 +78,7 @@
7878
},
7979
"dependencies": {
8080
"@ethersproject/address": "5.6.1",
81-
"@nomicfoundation/hardhat-utils": "workspace:^3.0.0-next.0",
81+
"@nomicfoundation/hardhat-utils": "workspace:^3.0.0-next.1",
8282
"@nomicfoundation/solidity-analyzer": "^0.1.1",
8383
"cbor2": "^1.9.0",
8484
"debug": "^4.3.2",

v-next/hardhat-ignition-ethers/CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# Changelog
22

3+
## 3.0.0-next.1
4+
5+
### Patch Changes
6+
7+
- f13fc01: Small bug fix release of Hardhat 3 Alpha (2025-03-05)
8+
- Updated dependencies [e5d4453]
9+
- Updated dependencies [ee91628]
10+
- Updated dependencies [bfb708c]
11+
- Updated dependencies [f13fc01]
12+
- Updated dependencies [726fe76]
13+
- Updated dependencies [50d8fb5]
14+
- Updated dependencies [e853ff8]
15+
- Updated dependencies [209ea79]
16+
17+
- @nomicfoundation/hardhat-errors@3.0.0-next.1
18+
- @nomicfoundation/hardhat-ethers@4.0.0-next.1
19+
- @nomicfoundation/hardhat-ignition@3.0.0-next.1
20+
- @nomicfoundation/ignition-core@3.0.0-next.1
21+
322
All notable changes to this project will be documented in this file.
423

524
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

v-next/hardhat-ignition-ethers/package.json

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nomicfoundation/hardhat-ignition-ethers",
3-
"version": "3.0.0-next.0",
3+
"version": "3.0.0-next.1",
44
"license": "MIT",
55
"author": "Nomic Foundation",
66
"homepage": "https://hardhat.org",
@@ -33,10 +33,10 @@
3333
},
3434
"devDependencies": {
3535
"@istanbuljs/nyc-config-typescript": "1.0.2",
36-
"hardhat": "workspace:^3.0.0-next.0",
37-
"@nomicfoundation/hardhat-ethers": "workspace:^4.0.0-next.0",
38-
"@nomicfoundation/hardhat-ignition": "workspace:^3.0.0-next.0",
39-
"@nomicfoundation/ignition-core": "workspace:^3.0.0-next.0",
36+
"hardhat": "workspace:^3.0.0-next.1",
37+
"@nomicfoundation/hardhat-ethers": "workspace:^4.0.0-next.1",
38+
"@nomicfoundation/hardhat-ignition": "workspace:^3.0.0-next.1",
39+
"@nomicfoundation/ignition-core": "workspace:^3.0.0-next.1",
4040
"@nomicfoundation/hardhat-test-utils": "workspace:^",
4141
"@types/chai": "^4.2.0",
4242
"@types/chai-as-promised": "^8.0.1",
@@ -65,13 +65,13 @@
6565
"typescript-eslint": "7.7.1"
6666
},
6767
"dependencies": {
68-
"@nomicfoundation/hardhat-errors": "workspace:^3.0.0-next.0"
68+
"@nomicfoundation/hardhat-errors": "workspace:^3.0.0-next.1"
6969
},
7070
"peerDependencies": {
71-
"hardhat": "workspace:^3.0.0-next.0",
72-
"@nomicfoundation/hardhat-ethers": "workspace:^4.0.0-next.0",
73-
"@nomicfoundation/hardhat-ignition": "workspace:^3.0.0-next.0",
74-
"@nomicfoundation/ignition-core": "workspace:^3.0.0-next.0",
71+
"hardhat": "workspace:^3.0.0-next.1",
72+
"@nomicfoundation/hardhat-ethers": "workspace:^4.0.0-next.1",
73+
"@nomicfoundation/hardhat-ignition": "workspace:^3.0.0-next.1",
74+
"@nomicfoundation/ignition-core": "workspace:^3.0.0-next.1",
7575
"ethers": "^6.13.4"
7676
}
7777
}

v-next/hardhat-ignition-ui/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 3.0.0-next.1
4+
5+
### Patch Changes
6+
7+
- f13fc01: Small bug fix release of Hardhat 3 Alpha (2025-03-05)
8+
- 726fe76: update mermaid version and re-enable visualize task (v3)
9+
- af5eb2b: Fix for mermaid diagram centering in visalization report [#6409](https://github.com/NomicFoundation/hardhat/issues/6409).
10+
311
All notable changes to this project will be documented in this file.
412

513
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

v-next/hardhat-ignition-ui/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nomicfoundation/ignition-ui",
3-
"version": "3.0.0-next.0",
3+
"version": "3.0.0-next.1",
44
"type": "module",
55
"scripts": {
66
"predev": "pnpm regenerate-deployment-example",
@@ -20,7 +20,7 @@
2020
"devDependencies": {
2121
"@eslint-community/eslint-plugin-eslint-comments": "^4.3.0",
2222
"@fontsource/roboto": "^5.0.8",
23-
"@nomicfoundation/ignition-core": "workspace:^3.0.0-next.0",
23+
"@nomicfoundation/ignition-core": "workspace:^3.0.0-next.1",
2424
"@types/chai": "^4.2.0",
2525
"@types/chai-as-promised": "^8.0.1",
2626
"@types/mocha": ">=10.0.10",

v-next/hardhat-ignition-viem/CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# Changelog
22

3+
## 3.0.0-next.1
4+
5+
### Patch Changes
6+
7+
- f13fc01: Small bug fix release of Hardhat 3 Alpha (2025-03-05)
8+
- Updated dependencies [e5d4453]
9+
- Updated dependencies [ee91628]
10+
- Updated dependencies [bfb708c]
11+
- Updated dependencies [f13fc01]
12+
- Updated dependencies [726fe76]
13+
- Updated dependencies [50d8fb5]
14+
- Updated dependencies [e853ff8]
15+
- Updated dependencies [209ea79]
16+
17+
- @nomicfoundation/hardhat-errors@3.0.0-next.1
18+
- @nomicfoundation/hardhat-ignition@3.0.0-next.1
19+
- @nomicfoundation/ignition-core@3.0.0-next.1
20+
- @nomicfoundation/hardhat-viem@3.0.0-next.1
21+
322
All notable changes to this project will be documented in this file.
423

524
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

v-next/hardhat-ignition-viem/package.json

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nomicfoundation/hardhat-ignition-viem",
3-
"version": "3.0.0-next.0",
3+
"version": "3.0.0-next.1",
44
"license": "MIT",
55
"author": "Nomic Foundation",
66
"homepage": "https://hardhat.org",
@@ -34,10 +34,10 @@
3434
},
3535
"devDependencies": {
3636
"@istanbuljs/nyc-config-typescript": "1.0.2",
37-
"hardhat": "workspace:^3.0.0-next.0",
38-
"@nomicfoundation/hardhat-ignition": "workspace:^3.0.0-next.0",
39-
"@nomicfoundation/ignition-core": "workspace:^3.0.0-next.0",
40-
"@nomicfoundation/hardhat-viem": "workspace:^3.0.0-next.0",
37+
"hardhat": "workspace:^3.0.0-next.1",
38+
"@nomicfoundation/hardhat-ignition": "workspace:^3.0.0-next.1",
39+
"@nomicfoundation/ignition-core": "workspace:^3.0.0-next.1",
40+
"@nomicfoundation/hardhat-viem": "workspace:^3.0.0-next.1",
4141
"@nomicfoundation/hardhat-test-utils": "workspace:^",
4242
"@types/chai": "^4.2.0",
4343
"@types/chai-as-promised": "^8.0.1",
@@ -66,13 +66,13 @@
6666
"viem": "^2.21.42"
6767
},
6868
"dependencies": {
69-
"@nomicfoundation/hardhat-errors": "workspace:^3.0.0-next.0"
69+
"@nomicfoundation/hardhat-errors": "workspace:^3.0.0-next.1"
7070
},
7171
"peerDependencies": {
72-
"hardhat": "workspace:^3.0.0-next.0",
73-
"@nomicfoundation/hardhat-ignition": "workspace:^3.0.0-next.0",
74-
"@nomicfoundation/ignition-core": "workspace:^3.0.0-next.0",
75-
"@nomicfoundation/hardhat-viem": "workspace:^3.0.0-next.0",
72+
"hardhat": "workspace:^3.0.0-next.1",
73+
"@nomicfoundation/hardhat-ignition": "workspace:^3.0.0-next.1",
74+
"@nomicfoundation/ignition-core": "workspace:^3.0.0-next.1",
75+
"@nomicfoundation/hardhat-viem": "workspace:^3.0.0-next.1",
7676
"viem": "^2.21.42"
7777
}
7878
}

0 commit comments

Comments
 (0)