From 0127bc750183a00ed32c98c74103f0e87ae1519f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Bajto=C5=A1?= Date: Wed, 23 Apr 2025 13:44:28 +0200 Subject: [PATCH 1/3] deps: upgrade Zinnia to v0.22.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Release notes: https://github.com/CheckerNetwork/zinnia/releases/tag/v0.22.1 Signed-off-by: Miroslav Bajtoš --- lib/zinnia.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/zinnia.js b/lib/zinnia.js index 93d8576d..960385f2 100644 --- a/lib/zinnia.js +++ b/lib/zinnia.js @@ -7,7 +7,7 @@ import pRetry from 'p-retry' import timers from 'node:timers/promises' import { join } from 'node:path' -const ZINNIA_DIST_TAG = 'v0.20.3' +const ZINNIA_DIST_TAG = 'v0.22.1' const SUBNETS = [ { subnet: 'spark', From 37cce8315a5467ceb94ef8b7fe24ed0f61e618da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Bajto=C5=A1?= Date: Wed, 23 Apr 2025 16:02:55 +0200 Subject: [PATCH 2/3] test: check that Spark starts reporting retrievals MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Miroslav Bajtoš --- test/checker.js | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/test/checker.js b/test/checker.js index 8c2f2a67..e0ec520c 100644 --- a/test/checker.js +++ b/test/checker.js @@ -24,6 +24,16 @@ describe('Checker', () => { assert.strictEqual(ps.exitCode, null) stopChecker() }) + it('runs Spark Checker', async () => { + const ps = startChecker() + await Promise.race([ + once(ps, 'exit'), + streamMatch(ps.stdout, 'SPARK started reporting retrievals'), + ]) + // Assert that the process did not exit prematurely + assert.strictEqual(ps.exitCode, null) + stopChecker() + }) it('runs experimental subnets', () => { it('runs Arweave & Walrus', async () => { const ps = startChecker(['--experimental']) From 0e75b57eb34a2c7496985715e28f747ed60047df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Bajto=C5=A1?= Date: Thu, 24 Apr 2025 13:11:32 +0200 Subject: [PATCH 3/3] deps: upgrade Zinnia to v0.22.2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Release notes: https://github.com/CheckerNetwork/zinnia/releases/tag/v0.22.2 Signed-off-by: Miroslav Bajtoš --- lib/zinnia.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/zinnia.js b/lib/zinnia.js index 960385f2..07acb279 100644 --- a/lib/zinnia.js +++ b/lib/zinnia.js @@ -7,7 +7,7 @@ import pRetry from 'p-retry' import timers from 'node:timers/promises' import { join } from 'node:path' -const ZINNIA_DIST_TAG = 'v0.22.1' +const ZINNIA_DIST_TAG = 'v0.22.2' const SUBNETS = [ { subnet: 'spark',