From fdb32557bcdc15367a61a1103c454278e5f041df Mon Sep 17 00:00:00 2001 From: David Enyeart Date: Tue, 9 Jan 2024 09:17:20 -0500 Subject: [PATCH] Upgrade the CouchDB used to v3.3.3 (release-2.2) Move to CouchDB v3.3.3. Signed-off-by: David Enyeart --- Makefile | 2 +- integration/runner/couchdb.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index bc5a93996ef..136e6f1ee60 100644 --- a/Makefile +++ b/Makefile @@ -49,7 +49,7 @@ BASE_VERSION = 2.2.14 # 3rd party image version # These versions are also set in the runners in ./integration/runners/ -COUCHDB_VER ?= 3.3.2 +COUCHDB_VER ?= 3.3.3 KAFKA_VER ?= 5.3.1 ZOOKEEPER_VER ?= 5.3.1 diff --git a/integration/runner/couchdb.go b/integration/runner/couchdb.go index 6fc7824fe49..346110c193a 100644 --- a/integration/runner/couchdb.go +++ b/integration/runner/couchdb.go @@ -23,7 +23,7 @@ import ( "github.com/tedsuo/ifrit" ) -const CouchDBDefaultImage = "couchdb:3.3.2" +const CouchDBDefaultImage = "couchdb:3.3.3" const CouchDBUsername = "admin" const CouchDBPassword = "adminpw"