From 79e6d1f037428a6fa851f1ace3b552d7c7ab3631 Mon Sep 17 00:00:00 2001 From: Victor Fusco <1221933+vfusco@users.noreply.github.com> Date: Sat, 6 Jun 2026 12:35:14 -0300 Subject: [PATCH 1/3] chore: update go version and package dependencies --- Dockerfile | 6 +- THIRD_PARTY_LICENSES.md | 174 ++++++++++++++++++----------------- dev/licenses.tpl | 3 +- go.mod | 85 +++++++++--------- go.sum | 195 ++++++++++++++++++++-------------------- 5 files changed, 237 insertions(+), 226 deletions(-) diff --git a/Dockerfile b/Dockerfile index d5efde90c..6445e3f59 100644 --- a/Dockerfile +++ b/Dockerfile @@ -49,10 +49,10 @@ FROM common-env AS go-installer RUN < Date: Thu, 11 Jun 2026 03:47:10 -0300 Subject: [PATCH 2/3] chore: bump PostgreSQL to v18 --- Makefile | 2 +- compose.individual-services.yaml | 2 +- compose.yaml | 2 +- test/compose/compose.integration.yaml | 2 +- test/compose/compose.test.yaml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 5a0a51281..09566be27 100644 --- a/Makefile +++ b/Makefile @@ -460,7 +460,7 @@ copy-devnet-files deployment.json: ## Copy the devnet files to the host (it must start-postgres: ## Run the PostgreSQL 16 docker container @echo "Starting portgres" - @docker run --rm --name postgres -p 5432:5432 -d -e POSTGRES_PASSWORD=password -e POSTGRES_DB=rollupsdb -v $(CURDIR)/test/postgres/init-test-db.sh:/docker-entrypoint-initdb.d/init-test-db.sh postgres:17-alpine + @docker run --rm --name postgres -p 5432:5432 -d -e POSTGRES_PASSWORD=password -e POSTGRES_DB=rollupsdb -v $(CURDIR)/test/postgres/init-test-db.sh:/docker-entrypoint-initdb.d/init-test-db.sh postgres:18-alpine @$(MAKE) migrate start: start-postgres start-devnet ## Start the anvil devnet and PostgreSQL 16 docker containers diff --git a/compose.individual-services.yaml b/compose.individual-services.yaml index daa8f2a35..f70b25611 100644 --- a/compose.individual-services.yaml +++ b/compose.individual-services.yaml @@ -22,7 +22,7 @@ services: - 8545:8545 database: - image: postgres:17-alpine + image: postgres:18-alpine shm_size: 128mb networks: - devnet diff --git a/compose.yaml b/compose.yaml index 5ebdfe4db..4cedca5f9 100644 --- a/compose.yaml +++ b/compose.yaml @@ -22,7 +22,7 @@ services: - 8545:8545 database: - image: postgres:17-alpine + image: postgres:18-alpine shm_size: 128mb networks: - devnet diff --git a/test/compose/compose.integration.yaml b/test/compose/compose.integration.yaml index 0e21a3ccf..7e8ef715d 100644 --- a/test/compose/compose.integration.yaml +++ b/test/compose/compose.integration.yaml @@ -30,7 +30,7 @@ services: retries: 10 database: - image: postgres:17-alpine + image: postgres:18-alpine shm_size: 128mb networks: - devnet diff --git a/test/compose/compose.test.yaml b/test/compose/compose.test.yaml index 63046f00b..b7fa3b3b2 100644 --- a/test/compose/compose.test.yaml +++ b/test/compose/compose.test.yaml @@ -23,7 +23,7 @@ services: - 8545:8545 database: - image: postgres:17-alpine + image: postgres:18-alpine shm_size: 128mb networks: - devnet From 9fe9ce30ddbc95c22b4e92d1d2e89abeb6f76675 Mon Sep 17 00:00:00 2001 From: Victor Fusco <1221933+vfusco@users.noreply.github.com> Date: Thu, 11 Jun 2026 04:07:28 -0300 Subject: [PATCH 3/3] chore: bump version to 2.0.0-alpha.12 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 09566be27..9055df7b9 100644 --- a/Makefile +++ b/Makefile @@ -17,7 +17,7 @@ TARGET_OS?=$(shell uname) export TARGET_OS -ROLLUPS_NODE_VERSION := 2.0.0-alpha.11 +ROLLUPS_NODE_VERSION := 2.0.0-alpha.12 ROLLUPS_CONTRACTS_VERSION := 3.0.0-alpha.6 ROLLUPS_CONTRACTS_URL:=https://github.com/cartesi/rollups-contracts/releases/download/ ROLLUPS_CONTRACTS_ARTIFACT:=rollups-contracts-$(ROLLUPS_CONTRACTS_VERSION)-artifacts.tar.gz