Skip to content

Commit a17eb90

Browse files
committed
[FAB-7571] allow '+' char in chaincode version
Change-Id: Idfffcdd3ccfcd2656db9f81f5c30a49d0b82f8d1 Signed-off-by: Matthew Sykes <sykesmat@us.ibm.com>
1 parent f6bb64b commit a17eb90

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

core/scc/lscc/errors.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ func (f EmptyChaincodeNameErr) Error() string {
7575
type InvalidVersionErr string
7676

7777
func (f InvalidVersionErr) Error() string {
78-
return fmt.Sprintf("invalid chaincode version '%s'. Versions can only consist of alphanumerics, '_', '-', and '.'", string(f))
78+
return fmt.Sprintf("invalid chaincode version '%s'. Versions can only consist of alphanumerics, '_', '-', '+', and '.'", string(f))
7979
}
8080

8181
//ChaincodeMismatchErr chaincode name from two places don't match

core/scc/lscc/lscc.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ const (
7676
GETINSTALLEDCHAINCODES = "getinstalledchaincodes"
7777

7878
allowedCharsChaincodeName = "[A-Za-z0-9_-]+"
79-
allowedCharsVersion = "[A-Za-z0-9_.-]+"
79+
allowedCharsVersion = "[A-Za-z0-9_.+-]+"
8080

8181
// Collecion-specific constants
8282

@@ -350,7 +350,7 @@ func (lscc *lifeCycleSysCC) isValidChaincodeName(chaincodeName string) error {
350350

351351
// isValidChaincodeVersion checks the validity of chaincode version. Versions
352352
// should never be blank and should only consist of alphanumerics, '_', '-',
353-
// and '.'
353+
// '+', and '.'
354354
func (lscc *lifeCycleSysCC) isValidChaincodeVersion(chaincodeName string, version string) error {
355355
if version == "" {
356356
return EmptyVersionErr(chaincodeName)

core/scc/lscc/lscc_test.go

+2
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,8 @@ func TestInstall(t *testing.T) {
106106
testInstall(t, "", "0", path, EmptyChaincodeNameErr("").Error(), "Alice", scc, stub)
107107
testInstall(t, "example02", "1{}0", path, InvalidVersionErr("1{}0").Error(), "Alice", scc, stub)
108108
testInstall(t, "example02", "0", path, "Authorization for INSTALL has been denied", "Bob", scc, stub)
109+
testInstall(t, "example02-2", "1.0-alpha+001", path, "", "Alice", scc, stub)
110+
testInstall(t, "example02-2", "1.0+sha.c0ffee", path, "", "Alice", scc, stub)
109111

110112
scc.support.(*lscc.MockSupport).PutChaincodeToLocalStorageErr = errors.New("barf")
111113

0 commit comments

Comments
 (0)