Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ PROJECT_NAME = fabric-ca
GO_VER ?= 1.25.7
UBUNTU_VER ?= 22.04
DEBIAN_VER ?= stretch
BASE_VERSION ?= v1.5.16
BASE_VERSION ?= v1.5.17

ARCH=$(shell go env GOARCH)
PLATFORM=$(shell go env GOOS)-$(shell go env GOARCH)
Expand Down Expand Up @@ -210,8 +210,8 @@ release/%/bin/fabric-ca-server: $(GO_SOURCE)
# to the test target you are running i.e. (unit-tests, int-tests, all-tests).
.PHONY: docker-thirdparty
docker-thirdparty:
docker pull postgres:13.13
docker pull mysql:8.0
docker pull postgres:$(PG_VER)
docker pull mariadb:11

.PHONY: dist
dist: dist-clean release
Expand Down
22 changes: 22 additions & 0 deletions release_notes/v1.5.17.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
v1.5.17 Release Notes - February 6, 2026
========================================

v1.5.17 updates dependencies to address the following security vulnerabilities:

- CVE-2025-68121
- CVE-2025-61730
- CVE-2025-61726

This release also allows CA URLs to include path components. For example,
`https://my-fabric-ca/ca`. Previously only `https://my-fabric-ca` would be
accepted.

Dependencies
------------

Fabric CA v1.5.17 has been tested with the following dependencies:
- Go 1.25.7
- Ubuntu 22.04 (for Docker images)
- Databases
- PostgreSQL 17
- MariaDB 11
Loading