From a054877d192c02a6053e3cedceb3a207cde65b8d Mon Sep 17 00:00:00 2001 From: tac0turtle Date: Tue, 14 Apr 2026 15:30:55 +0200 Subject: [PATCH] deps: upgrade celestia-app to v8.0.1-mocha and celestia-node to v0.30.2-mocha Updates testing configuration to use newer versions as requested in #3243. Co-Authored-By: Claude Sonnet 4.6 --- docs/.vitepress/constants/constants.js | 2 +- test/docker-e2e/docker_test.go | 4 ++-- test/e2e/da_client_integration_test.go | 4 ++-- test/e2e/da_posting_integration_test.go | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/.vitepress/constants/constants.js b/docs/.vitepress/constants/constants.js index 9a1ca5790c..40b7174ace 100644 --- a/docs/.vitepress/constants/constants.js +++ b/docs/.vitepress/constants/constants.js @@ -9,7 +9,7 @@ const constants = Object.freeze({ celestiaNodeArabicaTag: "v0.23.4-arabica", celestiaNodeArabicaEvolveTag: "v1.0.0-beta.1", - celestiaNodeMochaTag: "v0.23.4-mocha", + celestiaNodeMochaTag: "v0.30.2-mocha", celestiaNodeMochaEvolveTag: "v1.0.0-beta.1", celestiaNodeMainnetTag: "v0.22.3", celestiaNodeMainnetEvolveTag: "v1.0.0-beta.1", diff --git a/test/docker-e2e/docker_test.go b/test/docker-e2e/docker_test.go index 42f3cec8e9..5e5a2e7f8d 100644 --- a/test/docker-e2e/docker_test.go +++ b/test/docker-e2e/docker_test.go @@ -37,7 +37,7 @@ const ( // it must be the string "test" as it is handled explicitly in app/node. celestiaChainID = "test" // celestiaAppVersion specifies the tag of the celestia-app image to deploy in tests. - celestiaAppVersion = "v5.0.2" + celestiaAppVersion = "v8.0.1-mocha" // EVM test constants shared across EVM-related tests. evmTestChainID = "1234" @@ -151,7 +151,7 @@ func (s *DockerTestSuite) CreateDANetwork() *da.Network { daNetwork, err := da.NewNetworkBuilder(t). WithDockerClient(s.dockerClient). WithDockerNetworkID(s.dockerNetworkID). - WithImage(container.NewImage("ghcr.io/celestiaorg/celestia-node", "v0.25.3", "10001:10001")). + WithImage(container.NewImage("ghcr.io/celestiaorg/celestia-node", "v0.30.2-mocha", "10001:10001")). WithNode(bridgeNodeConfig). Build(ctx) s.Require().NoError(err) diff --git a/test/e2e/da_client_integration_test.go b/test/e2e/da_client_integration_test.go index dae67fa66e..25841f7f30 100644 --- a/test/e2e/da_client_integration_test.go +++ b/test/e2e/da_client_integration_test.go @@ -58,7 +58,7 @@ func TestClient_SubmitAndGetBlobAgainstRealNode(t *testing.T) { chainImage := container.Image{ Repository: "ghcr.io/celestiaorg/celestia-app", - Version: "v5.0.10", + Version: "v8.0.1-mocha", UIDGID: "10001:10001", } @@ -93,7 +93,7 @@ func TestClient_SubmitAndGetBlobAgainstRealNode(t *testing.T) { daImage := container.Image{ Repository: "ghcr.io/celestiaorg/celestia-node", - Version: "v0.26.4", + Version: "v0.30.2-mocha", UIDGID: "10001:10001", } diff --git a/test/e2e/da_posting_integration_test.go b/test/e2e/da_posting_integration_test.go index a410f4ef19..e2816abc07 100644 --- a/test/e2e/da_posting_integration_test.go +++ b/test/e2e/da_posting_integration_test.go @@ -60,7 +60,7 @@ func TestEvNode_PostsToDA(t *testing.T) { // 1) Start celestia-app chain chainImage := container.Image{ Repository: "ghcr.io/celestiaorg/celestia-app", - Version: "v5.0.10", + Version: "v8.0.1-mocha", UIDGID: "10001:10001", } @@ -95,7 +95,7 @@ func TestEvNode_PostsToDA(t *testing.T) { // 2) Start celestia-node (bridge) daImage := container.Image{ Repository: "ghcr.io/celestiaorg/celestia-node", - Version: "v0.28.4-mocha", + Version: "v0.30.2-mocha", UIDGID: "10001:10001", }