Skip to content

Commit a84cb1a

Browse files
authored
Merge pull request #5272 from NomicFoundation/v-next-updated
Merge `main` into `v-next`
2 parents 577eef9 + 48aa0fa commit a84cb1a

File tree

14 files changed

+460
-5
lines changed

14 files changed

+460
-5
lines changed

.changeset/seven-tips-float.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"hardhat": patch
3+
---
4+
5+
Improved the validation of network and forking URLs (thanks @kshyun28!)

.changeset/wise-cheetahs-confess.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@nomicfoundation/hardhat-network-helpers": patch
3+
---
4+
5+
Improve an error message and add utility to clear all the existing snaphosts.

.github/workflows/e2e-tests.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ jobs:
1212
run-e2e:
1313
strategy:
1414
matrix:
15-
os: [ubuntu-latest, macos-latest, windows-latest]
15+
# Disabled windows because it's too slow
16+
# See: https://github.com/NomicFoundation/hardhat/issues/5247
17+
os: [ubuntu-latest, macos-latest]
1618
name: Run E2E tests on ${{ matrix.os }}
1719
runs-on: ${{ matrix.os }}
1820
env:
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
name: PR reviewed Slack notification
2+
on:
3+
pull_request_review:
4+
types: [submitted]
5+
jobs:
6+
reviewed:
7+
uses: NomicFoundation/github-actions-workflows/.github/workflows/review-submitted-slack-notification.yml@main
8+
secrets: inherit
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
name: PR review requested Slack notification
2+
on:
3+
pull_request_target:
4+
types: [review_requested]
5+
jobs:
6+
requested:
7+
uses: NomicFoundation/github-actions-workflows/.github/workflows/review-requested-slack-notification.yml@main
8+
secrets: inherit

docs/src/content/ignition/docs/advanced/_dirinfo.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ order:
55
- /deployment-artifacts
66
- /reconciliation
77
- /versioning
8+
- /migrating

0 commit comments

Comments
 (0)