Skip to content

Commit

Permalink
Release commit for v1.5.3
Browse files Browse the repository at this point in the history
Release commit for v1.5.3.

Signed-off-by: David Enyeart <enyeart@us.ibm.com>
  • Loading branch information
denyeart committed Apr 7, 2022
1 parent 8651918 commit 2061c8d
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ PROJECT_NAME = fabric-ca
ALPINE_VER ?= 3.14
DEBIAN_VER ?= stretch
BASE_VERSION = 1.5.3
IS_RELEASE = false
IS_RELEASE = true

ARCH=$(shell go env GOARCH)
MARCH=$(shell go env GOOS)-$(shell go env GOARCH)
Expand Down
43 changes: 43 additions & 0 deletions release_notes/v1.5.3.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
v1.5.3 Release Notes - April 7, 2022
====================================

Release v1.5.3 updates Fabric CA to be compatible with Go 1.17.8.

Additionally, packages that shifted from exported to unexported in v1.5.0 are now exported again.

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

Fabric CA v1.5.3 has been tested with the following dependencies:
- Go 1.17.8
- Alpine 3.14 (for Docker images)


Changes, Known Issues, and Workarounds
--------------------------------------
None.

Known Vulnerabilities
---------------------
- FABC-174 Commands can be manipulated to delete identities or affiliations

This vulnerability can be resolved in one of two ways:

1) Use HTTPS (TLS) so that the authorization header is not in clear text.

2) The token generation/authentication mechanism was improved to optionally prevent
token reuse. As of v1.4 a more secure token can be used by setting environment variable:

FABRIC_CA_SERVER_COMPATIBILITY_MODE_V1_3=false

However, it cannot be set to false until all clients have
been updated to generate the more secure token and tolerate
FABRIC_CA_SERVER_COMPATIBILITY_MODE_V1_3=false.
The Fabric CA client has been updated in v1.4 to generate the more secure token.
The Fabric SDKs will be updated by v2.0 timeframe to generate the more secure token,
at which time the default for Fabric CA server will change to:
FABRIC_CA_SERVER_COMPATIBILITY_MODE_V1_3=false

Resolved Vulnerabilities
------------------------
None.

0 comments on commit 2061c8d

Please sign in to comment.