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
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.14.0
0.14.1
1 change: 1 addition & 0 deletions charts/wallet-gateway/tests/all_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ tests:
"allowedOrigins": "*",
"dappPath": "/api/v0/dapp",
"port": 3030,
"requestSizeLimit": "5mb",
"userPath": "/api/v0/user"
},
"signingStore": {
Expand Down
11 changes: 10 additions & 1 deletion charts/wallet-gateway/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@
"port": {
"type": "integer"
},
"requestSizeLimit": {
"type": "string"
},
"userPath": {
"type": "string"
}
Expand Down Expand Up @@ -157,7 +160,8 @@
"port",
"dappPath",
"userPath",
"allowedOrigins"
"allowedOrigins",
"requestSizeLimit"
],
"properties": {
"allowedOrigins": {
Expand Down Expand Up @@ -189,6 +193,11 @@
"default": 3030,
"type": "number"
},
"requestSizeLimit": {
"description": "The maximum size of incoming requests. Defaults to 1mb.",
"default": "1mb",
"type": "string"
},
"tls": {
"description": "Deprecated, this option no longer has any effect. Will be removed in a future release.",
"type": "boolean"
Expand Down
1 change: 1 addition & 0 deletions charts/wallet-gateway/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ config:
dappPath: "/api/v0/dapp"
userPath: "/api/v0/user"
allowedOrigins: "*"
requestSizeLimit: '5mb'
store:
connection:
type: sqlite
Expand Down