-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
2.15 merge #1401
Merged
Merged
2.15 merge #1401
Changes from all commits
Commits
Show all changes
35 commits
Select commit
Hold shift + click to select a range
2207a38
[AUTO-11176] fix automation chaos test (#13904)
anirudhwarrier 5b668c1
Remove the old log buffer (#13821)
ferglor 4565fef
run tests also if CL image build was skipped (tag), fix notification …
Tofel 518350d
Ukflake TestFunctionsConnectorHandler (#13916)
bolekk 2b09956
fail explicitly if base_ref is empty in PR/MQ (#13910)
Tofel 780d304
Notify slack on new (pre)release tags (#13914)
chainchad c5224df
add startonce protection to syncer (#13917)
ettec d777fd8
[KS-370] Pass config from onchain registry to execute calls (#13750)
cedric-cordenier 3ecb954
@chainlink.contracts release v1.2.0 (#13895)
chainchad e7552f8
Small fixes (#13926)
cedric-cordenier d6ebada
keystone end to end integration tests (#13838)
ettec 683a12e
FUN-1527 Add updateFromPrevious method to Functions ToS (#13795)
KuphJr 27d9c71
KS-391: Capabilities Registry Fixes (#13937)
cds95 ca6e1c2
check for nils in log processor call (#13940)
Tofel d150bc6
bump deps (#13901)
jmank88 9f850e3
Bump version and update CHANGELOG for core v2.14.0 (#13752)
snehaagni 9bd5793
Bump version and update CHANGELOG fore core v2.15.0
chainchad e9d23b9
Fix syntax error in workflow (#13952)
chainchad e12146a
Fix syntax error in workflow (#13952)
chainchad b028bf5
Bump slack-notify-git-ref action for fixes
chainchad f5b81f6
Bump slack-notify-git-ref action for fixes
chainchad 136e074
Cleanup old CRIB file
chainchad d7a70b2
Cleanup accidental CRIB remnant
chainchad 69cccdf
Use changeset github changelog generator
chainchad 96e7bc1
Merge pull request #13991 from smartcontractkit/chore/release/2.15.0-…
chainchad c919da6
Fix version
chainchad 606cb3f
Fix version
chainchad 883c9f9
Finalize date on changelog for 2.15.0 (#14144)
chainchad 43f261e
Merge tag 'v2.15.0' into 2.15-merge
mateusz-sekara f105b1b
Post merge fixes
mateusz-sekara 084cfec
Merge f105b1b56a0f3cb312200fe48eba5486ddca95c1 into a793f34cdd1e87b31…
mateusz-sekara 66f42c9
Update gethwrappers
app-token-issuer-infra-releng[bot] 10ecf42
Adding missing prom reporter. Post merge fixes
mateusz-sekara a9b8f33
Merge branch 'ccip-develop' into 2.15-merge
mateusz-sekara 554f7c7
Removing .swp file, probably accidentally committed
mateusz-sekara File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -8,6 +8,10 @@ on: | |
branches: | ||
- "release/**" | ||
|
||
env: | ||
ECR_HOSTNAME: public.ecr.aws | ||
ECR_IMAGE_NAME: chainlink/chainlink | ||
|
||
jobs: | ||
checks: | ||
name: "Checks" | ||
|
@@ -30,17 +34,23 @@ jobs: | |
permissions: | ||
id-token: write | ||
contents: read | ||
outputs: | ||
docker-image-tag: ${{ steps.build-sign-publish.outputs.docker-image-tag }} | ||
docker-image-digest: ${{ steps.build-sign-publish.outputs.docker-image-digest }} | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 | ||
|
||
- name: Build, sign and publish chainlink image | ||
id: build-sign-publish | ||
uses: ./.github/actions/build-sign-publish-chainlink | ||
with: | ||
publish: true | ||
aws-role-to-assume: ${{ secrets.AWS_OIDC_IAM_ROLE_ARN }} | ||
aws-role-duration-seconds: ${{ secrets.AWS_ROLE_DURATION_SECONDS }} | ||
aws-region: ${{ secrets.AWS_REGION }} | ||
ecr-hostname: ${{ env.ECR_HOSTNAME }} | ||
ecr-image-name: ${{ env.ECR_IMAGE_NAME }} | ||
sign-images: true | ||
sign-method: "keypair" | ||
cosign-private-key: ${{ secrets.COSIGN_PRIVATE_KEY }} | ||
|
@@ -60,3 +70,44 @@ jobs: | |
hostname: ${{ secrets.GRAFANA_INTERNAL_HOST }} | ||
this-job-name: build-sign-publish-chainlink | ||
continue-on-error: true | ||
|
||
# Notify Slack channel for new git tags. | ||
slack-notify: | ||
if: github.ref_type == 'tag' | ||
needs: [build-sign-publish-chainlink] | ||
runs-on: ubuntu-24.04 | ||
environment: build-publish | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 | ||
- name: Notify Slack | ||
uses: smartcontractkit/.github/actions/slack-notify-git-ref@31e00facdd8f57a2bc7868b5e4c8591bf2aa3727 # [email protected] | ||
with: | ||
slack-channel-id: ${{ secrets.SLACK_CHANNEL_RELEASE_NOTIFICATIONS }} | ||
slack-bot-token: ${{ secrets.SLACK_BOT_TOKEN_RELENG }} # Releng Bot | ||
git-ref: ${{ github.ref_name }} | ||
git-ref-type: ${{ github.ref_type }} | ||
changelog-url: >- | ||
${{ | ||
github.ref_type == 'tag' && | ||
format( | ||
'https://github.com/{0}/blob/{1}/CHANGELOG.md', | ||
github.repository, | ||
github.ref_name | ||
) || '' | ||
}} | ||
docker-image-name: >- | ||
${{ | ||
github.ref_type == 'tag' && | ||
format( | ||
'{0}/{1}:{2}', | ||
env.ECR_HOSTNAME, | ||
env.ECR_IMAGE_NAME, | ||
needs.build-sign-publish-chainlink.outputs.docker-image-tag | ||
) || '' | ||
}} | ||
docker-image-digest: >- | ||
${{ | ||
github.ref_type == 'tag' && | ||
needs.build-sign-publish-chainlink.outputs.docker-image-digest || '' | ||
}} |
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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not familiar with prom or headreporter. What's the reason for removing headreporter completely like this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's the state of the repo on v2.15.0. It seems that promreporter replaced headreporter