Skip to content

Commit

Permalink
CORE-15641 Revise character limit on custom metadata values (#1195)
Browse files Browse the repository at this point in the history
Update registration context and group policy schemas to apply revised character limit on custom metadata values.
  • Loading branch information
YashNabar authored Aug 1, 2023
1 parent 27a1d59 commit 69502c8
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@
"^ext\\.[a-zA-Z0-9.]+$": {
"description": "Optional. User-specified additional properties, which must be prefixed with `ext.`.",
"type": "string",
"maxLength": 256
"maxLength": 800
}
},
"properties": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@
"type": "string"
},
"^ext\\.[a-zA-Z0-9.]+$": {
"description": "Optional. A user can specify additional properties, they must be prefixed with `ext.`.",
"description": "Optional. User-specified additional properties, which must be prefixed with `ext.`.",
"type": "string",
"maxLength": 256
"maxLength": 800
}
},
"properties": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"^ext\\.[a-zA-Z0-9.]+$": {
"description": "Optional. User-specified additional properties, which must be prefixed with `ext.`.",
"type": "string",
"maxLength": 256
"maxLength": 800
}
},
"properties": {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ cordaProductVersion = 5.1.0
# NOTE: update this each time this module contains a breaking change
## NOTE: currently this is a top level revision, so all API versions will line up, but this could be moved to
## a per module property in which case module versions can change independently.
cordaApiRevision = 10
cordaApiRevision = 11

# Main
kotlinVersion = 1.8.21
Expand Down

0 comments on commit 69502c8

Please sign in to comment.