From fb0067ffd6da70bdddf9006945fbdee6e7c8231e Mon Sep 17 00:00:00 2001 From: mrz1836 Date: Thu, 14 May 2026 19:28:55 -0400 Subject: [PATCH 1/3] sync: update mage-x to v1.21.0 and dist paths --- .dockerignore | 3 +-- .github/env/10-mage-x.env | 4 ++-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.dockerignore b/.dockerignore index 836b811..3d6870a 100644 --- a/.dockerignore +++ b/.dockerignore @@ -21,8 +21,7 @@ vendor/ # Binaries for programs and plugins dist/ -!dist/linux-amd64/ -!dist/linux-arm64/ +!dist/linux/ gin-bin *.exe *.exe~ diff --git a/.github/env/10-mage-x.env b/.github/env/10-mage-x.env index 2c49222..aff6aa9 100644 --- a/.github/env/10-mage-x.env +++ b/.github/env/10-mage-x.env @@ -36,7 +36,7 @@ # ================================================================================================ # MAGE-X version -MAGE_X_VERSION=v1.20.16 +MAGE_X_VERSION=v1.21.0 # For mage-x development, set to 'true' to use local version instead of downloading from releases MAGE_X_USE_LOCAL=false @@ -71,7 +71,7 @@ MAGE_X_NANCY_VERSION=v1.2.0 MAGE_X_STATICCHECK_VERSION=2026.1 MAGE_X_SWAG_VERSION=v1.16.6 MAGE_X_YAMLFMT_VERSION=v0.21.0 -MAGE_X_BENCHSTAT_VERSION=v0.0.0-20260409210113-8e83ce0f7b1c +MAGE_X_BENCHSTAT_VERSION=v0.0.0-20260512194132-3cf34090a3db MAGE_X_MAGE_VERSION=v1.17.2 # ================================================================================================ From 3ea0101535d5d3ecb885872048537ab83615925a Mon Sep 17 00:00:00 2001 From: "Mr. Z" Date: Thu, 14 May 2026 21:13:54 -0400 Subject: [PATCH 2/3] style(store): simplify return type signature syntax Combine prevs and mined return type declarations using Go's multiple return value syntax. This reduces redundancy without changing behavior. --- store/store.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/store/store.go b/store/store.go index 03f28f5..667723c 100644 --- a/store/store.go +++ b/store/store.go @@ -197,7 +197,7 @@ type Store interface { // slice exists so callers can observe the // arcade_status_transition_age_seconds{from=*,to=MINED} metric without an // extra round-trip. - SetMinedByTxIDs(ctx context.Context, blockHash string, blockHeight uint64, txids []string) (prevs []*models.TransactionStatus, mined []*models.TransactionStatus, err error) + SetMinedByTxIDs(ctx context.Context, blockHash string, blockHeight uint64, txids []string) (prevs, mined []*models.TransactionStatus, err error) // InsertSubmission creates a new submission record InsertSubmission(ctx context.Context, sub *models.Submission) error From bf5d567738514c85bcec05b6abd33d3668daf245 Mon Sep 17 00:00:00 2001 From: "Mr. Z" Date: Thu, 14 May 2026 21:14:08 -0400 Subject: [PATCH 3/3] docs(readme): replace sponsor badge with deepwiki link Replace GitHub sponsors badge with DeepWiki link to redirect users to documentation and community Q&A resources. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e294edb..a25b1b8 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ Contributors - Sponsor + Ask DeepWiki