Skip to content

Commit 07d4459

Browse files
github-actions[bot]schaable
authored andcommitted
Version Packages
1 parent 0694c6d commit 07d4459

26 files changed

+50
-76
lines changed

.changeset/clever-hairs-happen.md

-5
This file was deleted.

.changeset/clever-peaches-obey.md

-5
This file was deleted.

.changeset/cyan-cheetahs-add.md

-5
This file was deleted.

.changeset/dry-flowers-help.md

-5
This file was deleted.

.changeset/dry-jobs-fail.md

-5
This file was deleted.

.changeset/dull-spies-hope.md

-5
This file was deleted.

.changeset/happy-mails-impress.md

-5
This file was deleted.

.changeset/little-bananas-thank.md

-5
This file was deleted.

.changeset/many-baboons-refuse.md

-5
This file was deleted.

.changeset/new-books-marry.md

-5
This file was deleted.

.changeset/pink-goats-jam.md

-5
This file was deleted.

.changeset/smart-hotels-fold.md

-5
This file was deleted.

.changeset/wicked-mugs-itch.md

-5
This file was deleted.

.changeset/wicked-walls-itch.md

-5
This file was deleted.

packages/hardhat-core/CHANGELOG.md

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

3+
## 2.22.4
4+
5+
### Patch Changes
6+
7+
- 22bcbf5: Added BigInt task argument type
8+
- 2c533f0: Bumped EDR dependency to 0.3.7
9+
- 3203639: Fixed an issue in the solidity source map decoding module
10+
- 5d7a604: Fixed an issue with solc version selection
11+
- 3c6de8f: Now solcjs is run in a subprocess, which leads to better error reporting and allows it to run multiple compilation jobs at the same time
12+
- 6447e80: Improved performance by reducing back-and-forth with EDR when it's not necessary
13+
314
## 2.22.3
415

516
### Patch Changes

packages/hardhat-core/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hardhat",
3-
"version": "2.22.3",
3+
"version": "2.22.4",
44
"author": "Nomic Labs LLC",
55
"license": "MIT",
66
"homepage": "https://hardhat.org",

packages/hardhat-ethers/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @nomiclabs/hardhat-ethers
22

3+
## 3.0.6
4+
5+
### Patch Changes
6+
7+
- 55924a7: Fixed a race condition in our ethers provider
8+
- 1d43aba: Updated the max fee per gas calculation to use `eth_maxPriorityFeePerGas` when available
9+
310
## 3.0.5
411

512
### Patch Changes

packages/hardhat-ethers/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nomicfoundation/hardhat-ethers",
3-
"version": "3.0.5",
3+
"version": "3.0.6",
44
"description": "Hardhat plugin for ethers",
55
"homepage": "https://github.com/nomicfoundation/hardhat/tree/main/packages/hardhat-ethers",
66
"repository": "github:nomicfoundation/hardhat",

packages/hardhat-foundry/CHANGELOG.md

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

3+
## 1.1.2
4+
5+
### Patch Changes
6+
7+
- a93e240: Fixed an issue where paths were set as relative instead of absolute when overriding sources
8+
39
## 1.1.1
410

511
### Patch Changes

packages/hardhat-foundry/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nomicfoundation/hardhat-foundry",
3-
"version": "1.1.1",
3+
"version": "1.1.2",
44
"description": "Hardhat plugin that adds Hardhat support to Foundry projects",
55
"repository": "github:nomicfoundation/hardhat",
66
"homepage": "https://github.com/nomicfoundation/hardhat/tree/main/packages/hardhat-foundry",

packages/hardhat-solhint/CHANGELOG.md

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

3+
## 3.1.0
4+
5+
### Minor Changes
6+
7+
- bcb688f: Added support for `.solhintignore` files (thanks @yhuard!)
8+
39
## 3.0.1
410

511
### Patch Changes

packages/hardhat-solhint/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nomiclabs/hardhat-solhint",
3-
"version": "3.0.1",
3+
"version": "3.1.0",
44
"description": "Hardhat plugin for solhint",
55
"repository": "github:nomiclabs/hardhat",
66
"homepage": "https://github.com/nomiclabs/hardhat/tree/main/packages/hardhat-solhint",

packages/hardhat-verify/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @nomicfoundation/hardhat-verify
22

3+
## 2.0.7
4+
5+
### Patch Changes
6+
7+
- f186e1a: Improved error handling and messaging for errors from the block explorer
8+
- e7b12df: Added Polygon Amoy testnet (thanks @FournyP!)
9+
- b9aada0: Added `--force` flag to allow verification of partially verified contracts (thanks @rimrakhimov!)
10+
311
## 2.0.6
412

513
### Patch Changes

packages/hardhat-verify/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nomicfoundation/hardhat-verify",
3-
"version": "2.0.6",
3+
"version": "2.0.7",
44
"description": "Hardhat plugin for verifying contracts",
55
"keywords": [
66
"ethereum",

packages/hardhat-viem/CHANGELOG.md

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

3+
## 2.0.2
4+
5+
### Patch Changes
6+
7+
- ccb0ace: Added support for library linking (thanks @Chlebamaticon!)
8+
39
## 2.0.1
410

511
### Patch Changes

packages/hardhat-viem/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nomicfoundation/hardhat-viem",
3-
"version": "2.0.1",
3+
"version": "2.0.2",
44
"description": "Hardhat plugin for viem",
55
"homepage": "https://github.com/nomicfoundation/hardhat/tree/main/packages/hardhat-viem",
66
"repository": "github:nomicfoundation/hardhat",

0 commit comments

Comments
 (0)