From 844e281c2d11b79c4330ba3b4231267af9efebb2 Mon Sep 17 00:00:00 2001 From: Ben Smith Date: Fri, 5 Jan 2024 10:29:46 -0500 Subject: [PATCH] Upgrade the CouchDB used to v3.3.3 as per CVE-2023-45725. Tracked by https://github.com/hyperledger/fabric/issues/4594 Signed-off-by: Ben Smith --- Makefile | 2 +- integration/nwo/runner/couchdb.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index b9170e7e48c..c82094440c5 100644 --- a/Makefile +++ b/Makefile @@ -51,7 +51,7 @@ FABRIC_VER ?= 3.0.0 # 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 # Disable implicit rules .SUFFIXES: diff --git a/integration/nwo/runner/couchdb.go b/integration/nwo/runner/couchdb.go index e03c613adcf..9aee18c4f97 100644 --- a/integration/nwo/runner/couchdb.go +++ b/integration/nwo/runner/couchdb.go @@ -24,7 +24,7 @@ import ( ) const ( - CouchDBDefaultImage = "couchdb:3.3.2" + CouchDBDefaultImage = "couchdb:3.3.3" CouchDBUsername = "admin" CouchDBPassword = "adminpw" )