fix(plugins): bump capabilities plugins off orphaned libs revision#22711
fix(plugins): bump capabilities plugins off orphaned libs revision#22711nadahalli wants to merge 1 commit into
Conversation
The capabilities plugins were pinned at 9dd7b288 (#22686), whose chain_capabilities/* and other modules require github.com/smartcontractkit/capabilities/libs@...c4b42d8c0edf. That libs revision was force-pushed out of the capabilities repo and no longer exists, so `make install-plugins-*` fails for every fresh chainlink image build with "unknown revision c4b42d8c0edf". Builds that ran before the force-push are stale-green. Bump all capabilities module gitRefs to 3fad562d (current capabilities main), whose transitive libs/common references resolve to existing commits.
There was a problem hiding this comment.
Pull request overview
Bumps all nine capability plugin gitRefs from the orphaned 9dd7b288 commit to 3fad562d (current capabilities main) so that make install-plugins-* can resolve the transitive capabilities/libs dependency and unblock chainlink image builds.
Changes:
- Update gitRef across all nine capability plugin entries (cron, readcontract, consensus, workflowevent, httpaction, httptrigger, evm, solana, aptos) to
3fad562d65996bf447372023b5123c0c6e8850c7.
|
✅ No conflicts with other open PRs targeting |
|
|
Closing as superseded. develop has since bumped the capabilities plugins off the orphaned 9dd7b288 / libs@c4b42d8c0edf pin (plugins.private.yaml now references 3fad562d and other current capabilities commits, and 9dd7b288 is gone), so this one-commit fix is no longer needed. The broader prevention (a check that intra-repo capabilities pins are reachable from the default branch) is proposed separately in smartcontractkit/capabilities#630. |





The capabilities plugins were pinned at 9dd7b288 (#22686). Its
chain_capabilities/* (and cron/consensus/http_*/readcontract/
workflowevent) modules require
github.com/smartcontractkit/capabilities/libs@...c4b42d8c0edf, a revision
that was force-pushed out of the capabilities repo and no longer exists.
So
make install-plugins-*fails on every fresh chainlink image buildwith "unknown revision c4b42d8c0edf".
Builds that ran before the force-push are stale-green (e.g. #22687's
image build completed 2026-05-29, merged June 1), so develop currently
has no passing image build despite the recent merges.
Bump all nine capabilities module gitRefs from 9dd7b288 to 3fad562d
(current capabilities main), whose transitive libs/common references
resolve to existing commits (verified for evm/solana/consensus/http_trigger/cron).
Unblocks the chainlink image build (and the ETH Smoke / Integration /
CCIP smoke jobs that gate on it) for all PRs.