From 11dc9ac407c2530d5b8a6cb74283ae2c08f88dd6 Mon Sep 17 00:00:00 2001 From: Jon C Date: Wed, 22 Jul 2026 08:32:01 -0400 Subject: [PATCH] dependabot: Don't update wincode / solana SDK #### Problem The SDK has been updated to wincode v0.6, which is incompatible with v0.5. If we update the SPL deps to use the newest SDK or wincode versions, then they won't be able to use Agave v4.2 when those are released, since they're still on wincode v0.5, and the bump to wincode v0.6 will only happen for Agave v4.3. #### Summary of changes Ignore solana-* and wincode deps for dependabot for now. --- .github/dependabot.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index b89d315..a959185 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -12,6 +12,11 @@ updates: time: "08:00" timezone: UTC open-pull-requests-limit: 6 + ignore: + # Ignore Solana dependencies and wincode for now, to avoid introducing + # incompatibilities in libraries used by Agave + - dependency-name: "solana-*" + - dependency-name: "wincode" - package-ecosystem: npm directories: - "/"