-
Notifications
You must be signed in to change notification settings - Fork 1.9k
chore: merge release/2.28.0 back into develop (post-GA hygiene) #19326
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
Conversation
|
👋 HashWrangler, thanks for creating this pull request! To help reviewers, please consider creating future PRs as drafts first. This allows you to self-review and make any final changes before notifying the team. Once you're ready, you can mark it as "Ready for review" to request feedback. Thanks! |
781b742
…e changeset (#internal) Signed-off-by: HashWrangler <jd@smartcontract.com>
Signed-off-by: HashWrangler <jd@smartcontract.com>
7647f27 to
fe12ddd
Compare
- Update deployment/go.mod to use v2.27.3-0.20250908153844-03478edcd69f (from develop) - Update core/scripts/go.mod to use v2.27.3-0.20250908153844-03478edcd69f (from develop) - Update deployment version in core/scripts to v0.0.0-20250906212935-a1521d24f47f This ensures we keep the newer versions from develop rather than downgrading to older versions from release/2.28.0 during the hygiene merge.
- Update integration-tests/go.mod to use v2.27.3-0.20250908153844-03478edcd69f - Update integration-tests/load/go.mod to use v2.27.3-0.20250908153844-03478edcd69f - Update system-tests/lib/go.mod to use v2.27.3-0.20250908153844-03478edcd69f - Update system-tests/tests/go.mod to use v2.27.3-0.20250908153844-03478edcd69f This ensures all submodules use the correct newer version from develop instead of the older version from release/2.28.0, which should resolve CI failures related to version inconsistencies.
core/scripts/go.mod
Outdated
| github.com/smartcontractkit/chainlink/core/scripts/cre/environment/examples/workflows/v1/proof-of-reserve/cron-based v0.0.0-20250826151008-ae5ec0ee6f2c | ||
| github.com/smartcontractkit/chainlink/core/scripts/cre/environment/examples/workflows/v1/proof-of-reserve/web-trigger-based v0.0.0-20250826151008-ae5ec0ee6f2c | ||
| github.com/smartcontractkit/chainlink/system-tests/lib v0.0.0-20250908212658-66264730d63f | ||
| github.com/smartcontractkit/chainlink/system-tests/lib v0.0.0-20250826151008-ae5ec0ee6f2c |
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.
This seems to be downgrading the dep's version here as well.
- Newer: 66264730d63f
- Older: ae5ec0ee6f2c
system-tests/lib/go.mod
Outdated
| github.com/smartcontractkit/chainlink-testing-framework/lib v1.54.4 | ||
| github.com/smartcontractkit/chainlink-testing-framework/seth v1.51.2 | ||
| github.com/smartcontractkit/chainlink/deployment v0.0.0-20250906212935-a1521d24f47f | ||
| github.com/smartcontractkit/chainlink/deployment v0.0.0-20250826151008-ae5ec0ee6f2c |
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.
(older)
…upgrade This commit fixes critical version downgrades that were introduced during the merge: CRITICAL FIXES: - Restored all go.mod files from develop to prevent version downgrades - Applied only the chain-selectors upgrade (v1.0.67 → v1.0.70) from release/2.28.0 - Prevented Kubernetes package downgrades (k8s.io/api, apimachinery, client-go) - Prevented other package downgrades (rs/xid, sigs.k8s.io packages) VERSION CONSISTENCY: - All chainlink/v2 references: v2.27.3-0.20250908153844-03478edcd69f (from develop) - All chain-selectors references: v1.0.70 (from release/2.28.0) - All go.sum files updated via 'go mod tidy' for consistency This ensures the PR is strictly hygiene-only with no functional regressions. All modules verified and consistent across submodules.
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.
Do we need to count this as a change?
|





This PR merges the release/2.28.0 branch back into develop to keep version history aligned and unblock Go module resolution. No new features, just hygiene after GA.