From 395a6d5f485ca546cdf37c60bf1dedd49ca762a2 Mon Sep 17 00:00:00 2001 From: David Enyeart Date: Mon, 27 Jan 2025 15:18:34 -0500 Subject: [PATCH] Release commit for v1.5.14 Release commit for v1.5.14. Signed-off-by: David Enyeart --- Makefile | 2 +- lib/metadata/version.go | 2 +- release_notes/v1.5.14.md | 35 +++++++++++++++++++++++++++++++++++ 3 files changed, 37 insertions(+), 2 deletions(-) create mode 100644 release_notes/v1.5.14.md diff --git a/Makefile b/Makefile index 2ce23499..1660940e 100644 --- a/Makefile +++ b/Makefile @@ -32,7 +32,7 @@ PROJECT_NAME = fabric-ca GO_VER = 1.23.5 UBUNTU_VER ?= 20.04 DEBIAN_VER ?= stretch -BASE_VERSION ?= v1.5.13 +BASE_VERSION ?= v1.5.14 ARCH=$(shell go env GOARCH) PLATFORM=$(shell go env GOOS)-$(shell go env GOARCH) diff --git a/lib/metadata/version.go b/lib/metadata/version.go index 0e657791..7eb7f726 100644 --- a/lib/metadata/version.go +++ b/lib/metadata/version.go @@ -29,7 +29,7 @@ const ( // Version specifies fabric-ca-client/fabric-ca-server version // It is defined by the Makefile and passed in with ldflags -var Version = "1.5.13" +var Version = "1.5.14" // GetVersionInfo returns version information for the fabric-ca-client/fabric-ca-server func GetVersionInfo(prgName string) string { diff --git a/release_notes/v1.5.14.md b/release_notes/v1.5.14.md new file mode 100644 index 00000000..5627d319 --- /dev/null +++ b/release_notes/v1.5.14.md @@ -0,0 +1,35 @@ +v1.5.14 Release Notes - January 27, 2025 +======================================== + +v1.5.14 updates code dependencies. + + +Dependencies +------------ + +Fabric CA v1.5.14 has been tested with the following dependencies: +- Go 1.23.5 +- Ubuntu 20.04 (for Docker images) +- Databases + - PostgreSQL 13 + - MySQL 8.0 + + +Changes +------- + +In Fabric CA v1.4 a more secure mechanism was made available for authentication. +Most Fabric CA clients have been updated to utilize the new authentication header, +therefore Fabric CA v1.5.14 changes the default to utilize the more secure mechanism. +If you have an older Fabric CA client you can still utilize the prior mechanism by +setting the following environment variable on the Fabric CA server: + +`FABRIC_CA_SERVER_COMPATIBILITY_MODE_V1_3=true` + +Known Vulnerabilities +--------------------- +None. + +Resolved Vulnerabilities +------------------------ +None.