-
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 branch 'develop' into BCI-4097-Update-the-TXM-confirmation-logi…
…c-to-use-the-mined-nonce
- Loading branch information
Showing
451 changed files
with
15,215 additions
and
10,684 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": minor | ||
--- | ||
|
||
Updated Solana TXM's in-memory storage to track statuses across the Solana transaction lifecycle. Added a method to translate Solana transaction statuses into states expected by the ChainWriter interface. Made the duration transactions are retained in storage after finality or error configurable using `TxRetentionTimeout`. #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": minor | ||
--- | ||
|
||
#removed Remove unused deprecated key interfaces. |
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 | ||
--- | ||
|
||
#internal Update ccip contract reader cfg for ccip message sent to use output codec wrapper modifier |
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 don_id to Mercury Enhanced EA telemetry #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 | ||
--- | ||
|
||
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": 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 |
---|---|---|
@@ -1,10 +1,6 @@ | ||
name: CI lint for Golang | ||
description: Runs CI lint for Golang | ||
inputs: | ||
# general inputs | ||
name: | ||
description: Name of the lint action | ||
required: true | ||
go-directory: | ||
description: Go directory to run commands from | ||
default: "." | ||
|
@@ -25,10 +21,17 @@ inputs: | |
runs: | ||
using: composite | ||
steps: | ||
- uses: actions/[email protected] | ||
- name: Checkout repo (full) | ||
uses: actions/[email protected] | ||
# Only do a full checkout on merge_groups | ||
if: github.event_name == 'merge_group' | ||
with: | ||
# We only need a full clone on merge_group events for golangci-lint. | ||
fetch-depth: ${{ github.event_name == 'merge_group' && '0' || '1' }}" | ||
fetch-depth: 0 | ||
- name: Checkout repo | ||
uses: actions/[email protected] | ||
if: github.event_name != 'merge_group' | ||
with: | ||
fetch-depth: 1 | ||
- name: Setup Go | ||
uses: ./.github/actions/setup-go | ||
with: | ||
|
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 |
---|---|---|
|
@@ -24,7 +24,10 @@ on: | |
default: "false" | ||
|
||
env: | ||
GIT_REF: ${{ github.event.inputs.git_ref || github.ref }} | ||
# Use github.sha here otherwise a race condition exists if | ||
# a commit is pushed to develop before merge is run. | ||
CHECKOUT_REF: ${{ github.event.inputs.git_ref || github.sha }} | ||
|
||
|
||
jobs: | ||
merge: | ||
|
@@ -38,7 +41,7 @@ jobs: | |
- name: Checkout repository | ||
uses: actions/[email protected] | ||
with: | ||
ref: ${{ env.GIT_REF }} | ||
ref: ${{ env.CHECKOUT_REF }} | ||
|
||
- name: Configure aws credentials | ||
uses: aws-actions/configure-aws-credentials@e3dd6a429d7300a6a4c196c26e071d42e0343502 # v4.0.2 | ||
|
@@ -48,13 +51,13 @@ jobs: | |
mask-aws-account-id: true | ||
role-session-name: "merge" | ||
|
||
- uses: actions/cache/restore@v4 | ||
- uses: actions/cache/restore@v4.1.1 | ||
with: | ||
path: dist/linux_amd64_v1 | ||
key: chainlink-amd64-${{ github.sha }} | ||
fail-on-cache-miss: true | ||
|
||
- uses: actions/cache/restore@v4 | ||
- uses: actions/cache/restore@v4.1.1 | ||
with: | ||
path: dist/linux_arm64_v8.0 | ||
key: chainlink-arm64-${{ github.sha }} | ||
|
@@ -91,7 +94,7 @@ jobs: | |
- name: Checkout repository | ||
uses: actions/[email protected] | ||
with: | ||
ref: ${{ env.GIT_REF }} | ||
ref: ${{ env.CHECKOUT_REF }} | ||
fetch-depth: 0 | ||
|
||
- name: Configure aws credentials | ||
|
@@ -103,7 +106,7 @@ jobs: | |
role-session-name: "split-${{ matrix.goarch }}" | ||
|
||
- id: cache | ||
uses: actions/cache@v4 | ||
uses: actions/cache@v4.1.1 | ||
with: | ||
path: dist/${{ matrix.dist_name }} | ||
key: chainlink-${{ matrix.goarch }}-${{ github.sha }} | ||
|
@@ -125,9 +128,9 @@ jobs: | |
release-type: ${{ steps.get-image-tag.outputs.release-type }} | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
uses: actions/checkout@v4.2.1 | ||
with: | ||
ref: ${{ env.GIT_REF }} | ||
ref: ${{ env.CHECKOUT_REF }} | ||
|
||
- name: Get image tag | ||
id: get-image-tag | ||
|
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
Oops, something went wrong.