Skip to content

Commit 74b5eb1

Browse files
authored
bump version 0.14.1 (#39)
* bump version 0.14.1 * updated fields * fix * fix test * typo * second typo
1 parent 683a0b1 commit 74b5eb1

File tree

4 files changed

+13
-2
lines changed

4 files changed

+13
-2
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.14.0
1+
0.14.1

charts/wallet-gateway/tests/all_test.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ tests:
5959
"allowedOrigins": "*",
6060
"dappPath": "/api/v0/dapp",
6161
"port": 3030,
62+
"requestSizeLimit": "5mb",
6263
"userPath": "/api/v0/user"
6364
},
6465
"signingStore": {

charts/wallet-gateway/values.schema.json

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@
3333
"port": {
3434
"type": "integer"
3535
},
36+
"requestSizeLimit": {
37+
"type": "string"
38+
},
3639
"userPath": {
3740
"type": "string"
3841
}
@@ -157,7 +160,8 @@
157160
"port",
158161
"dappPath",
159162
"userPath",
160-
"allowedOrigins"
163+
"allowedOrigins",
164+
"requestSizeLimit"
161165
],
162166
"properties": {
163167
"allowedOrigins": {
@@ -189,6 +193,11 @@
189193
"default": 3030,
190194
"type": "number"
191195
},
196+
"requestSizeLimit": {
197+
"description": "The maximum size of incoming requests. Defaults to 1mb.",
198+
"default": "1mb",
199+
"type": "string"
200+
},
192201
"tls": {
193202
"description": "Deprecated, this option no longer has any effect. Will be removed in a future release.",
194203
"type": "boolean"

charts/wallet-gateway/values.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ config:
1212
dappPath: "/api/v0/dapp"
1313
userPath: "/api/v0/user"
1414
allowedOrigins: "*"
15+
requestSizeLimit: '5mb'
1516
store:
1617
connection:
1718
type: sqlite

0 commit comments

Comments
 (0)