-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/develop' into llo_fixes
- Loading branch information
Showing
400 changed files
with
11,716 additions
and
9,004 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"chainlink": patch | ||
--- | ||
|
||
Upgrade go-ethereum to v1.14.11 #internal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"chainlink": patch | ||
--- | ||
|
||
Fix HeadTracker tests caused by simulated client update #internal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"chainlink": patch | ||
--- | ||
|
||
#updated Operator UI to support StreamSpec job definition |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"chainlink": minor | ||
--- | ||
|
||
Add CSA authentication support to Beholder #added |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"chainlink": patch | ||
--- | ||
|
||
Enable AutoPurge feature on all affected chains #nops |
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
name: Cleanup Caches | ||
|
||
# See: | ||
# https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/caching-dependencies-to-speed-up-workflows#force-deleting-cache-entries | ||
|
||
on: | ||
pull_request: | ||
types: | ||
- closed | ||
|
||
jobs: | ||
cleanup-branch-caches: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
# `actions:write` permission is required to delete caches | ||
# See also: https://docs.github.com/en/rest/actions/cache?apiVersion=2022-11-28#delete-a-github-actions-cache-for-a-repository-using-a-cache-id | ||
actions: write | ||
contents: read | ||
steps: | ||
- name: Check out code | ||
uses: actions/[email protected] | ||
|
||
- name: Cleanup Branch Caches | ||
run: | | ||
gh extension install actions/gh-actions-cache | ||
REPO=${{ github.repository }} | ||
BRANCH=refs/pull/${{ github.event.pull_request.number }}/merge | ||
echo "Fetching list of cache key" | ||
cacheKeysForPR=$(gh actions-cache list -R $REPO -B $BRANCH | cut -f 1 ) | ||
## Setting this to not fail the workflow while deleting cache keys. | ||
set +e | ||
echo "Deleting caches..." | ||
for cacheKey in $cacheKeysForPR | ||
do | ||
gh actions-cache delete $cacheKey -R $REPO -B $BRANCH --confirm | ||
done | ||
echo "Done" | ||
env: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,4 @@ postgres 15.1 | |
helm 3.10.3 | ||
golangci-lint 1.61.0 | ||
protoc 25.1 | ||
python 3.10.5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -178,6 +178,7 @@ golangci-lint: ## Run golangci-lint for all issues. | |
|
||
.PHONY: modgraph | ||
modgraph: | ||
go install github.com/jmank88/[email protected] | ||
./tools/bin/modgraph > go.md | ||
|
||
.PHONY: test-short | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,3 +22,7 @@ BlockHistorySize = 12 | |
|
||
[HeadTracker] | ||
HistoryDepth = 2000 | ||
|
||
[Transactions.AutoPurge] | ||
Enabled = true | ||
MinAttempts = 3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,3 +23,7 @@ BlockHistorySize = 12 | |
|
||
[HeadTracker] | ||
HistoryDepth = 2000 | ||
|
||
[Transactions.AutoPurge] | ||
Enabled = true | ||
MinAttempts = 3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,3 +23,7 @@ BlockHistorySize = 12 | |
|
||
[HeadTracker] | ||
HistoryDepth = 2000 | ||
|
||
[Transactions.AutoPurge] | ||
Enabled = true | ||
MinAttempts = 3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
ChainID = '48900' | ||
ChainType = 'optimismBedrock' | ||
FinalityTagEnabled = true | ||
FinalityDepth = 1000 | ||
LinkContractAddress = '0x5D6d033B4FbD2190D99D930719fAbAcB64d2439a' | ||
LogPollInterval = "2s" | ||
NoNewHeadsThreshold = "40s" | ||
NoNewFinalizedHeadsThreshold = "15m" | ||
|
||
[GasEstimator] | ||
EIP1559DynamicFees = true | ||
PriceMin = '1 wei' | ||
BumpMin = '100 wei' | ||
|
||
[GasEstimator.BlockHistory] | ||
BlockHistorySize = 24 | ||
|
||
[Transactions] | ||
ResendAfterThreshold = '30s' | ||
|
||
[HeadTracker] | ||
HistoryDepth = 2000 | ||
|
||
[NodePool] | ||
SyncThreshold = 10 | ||
|
||
[OCR] | ||
ContractConfirmations = 1 | ||
|
||
[OCR2.Automation] | ||
GasLimit = 6500000 | ||
|
||
[Transactions.AutoPurge] | ||
Enabled = true | ||
Threshold = 90 # 90 blocks at 2s block time ~3 minutes | ||
MinAttempts = 3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
ChainID = '48899' | ||
ChainType = 'optimismBedrock' | ||
FinalityTagEnabled = true | ||
FinalityDepth = 1000 | ||
LinkContractAddress = '0xDEE94506570cA186BC1e3516fCf4fd719C312cCD' | ||
LogPollInterval = "2s" | ||
NoNewHeadsThreshold = "40s" | ||
NoNewFinalizedHeadsThreshold = "15m" | ||
|
||
[GasEstimator] | ||
EIP1559DynamicFees = true | ||
PriceMin = '1 wei' | ||
BumpMin = '100 wei' | ||
|
||
[GasEstimator.BlockHistory] | ||
BlockHistorySize = 60 | ||
|
||
[Transactions] | ||
ResendAfterThreshold = '30s' | ||
|
||
[HeadTracker] | ||
HistoryDepth = 2000 | ||
|
||
[NodePool] | ||
SyncThreshold = 10 | ||
|
||
[OCR] | ||
ContractConfirmations = 1 | ||
|
||
[OCR2.Automation] | ||
GasLimit = 6500000 | ||
|
||
[Transactions.AutoPurge] | ||
Enabled = true | ||
Threshold = 90 # 90 blocks at 2s block time ~3 minutes | ||
MinAttempts = 3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
'@chainlink/contracts': minor | ||
--- | ||
|
||
#internal CCIP test restructuring | ||
|
||
PR issue: CCIP-4116 | ||
|
||
Solidity Review issue: CCIP-3966 |
Oops, something went wrong.