datatruck 0.29.1 → 0.30.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/config.schema.json +34 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# datatruck
|
|
2
2
|
|
|
3
|
+
## 0.30.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`2f63e67`](https://github.com/swordev/datatruck/commit/2f63e67ee532892fda3a9d06e46336a42834e5ed), [`e28b12d`](https://github.com/swordev/datatruck/commit/e28b12d08c36844317e506552443825ab3333139), [`258e933`](https://github.com/swordev/datatruck/commit/258e93385d9b6f93a435a28a2b26e53ea1763755), [`82b4c67`](https://github.com/swordev/datatruck/commit/82b4c67c55eee4f40753b48eb91345e6d6789f72)]:
|
|
8
|
+
- @datatruck/cli@0.30.0
|
|
9
|
+
|
|
3
10
|
## 0.29.1
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
package/config.schema.json
CHANGED
|
@@ -1051,6 +1051,9 @@
|
|
|
1051
1051
|
"path": {
|
|
1052
1052
|
"type": "string"
|
|
1053
1053
|
},
|
|
1054
|
+
"log": {
|
|
1055
|
+
"type": "boolean"
|
|
1056
|
+
},
|
|
1054
1057
|
"users": {
|
|
1055
1058
|
"type": "array",
|
|
1056
1059
|
"items": {
|
|
@@ -1077,6 +1080,37 @@
|
|
|
1077
1080
|
"type": "string"
|
|
1078
1081
|
}
|
|
1079
1082
|
}
|
|
1083
|
+
},
|
|
1084
|
+
"trustProxy": {
|
|
1085
|
+
"anyOf": [
|
|
1086
|
+
{
|
|
1087
|
+
"type": "boolean"
|
|
1088
|
+
},
|
|
1089
|
+
{
|
|
1090
|
+
"type": "object",
|
|
1091
|
+
"additionalProperties": false,
|
|
1092
|
+
"required": [
|
|
1093
|
+
"remoteAddressHeader"
|
|
1094
|
+
],
|
|
1095
|
+
"properties": {
|
|
1096
|
+
"remoteAddressHeader": {
|
|
1097
|
+
"type": "string"
|
|
1098
|
+
}
|
|
1099
|
+
}
|
|
1100
|
+
}
|
|
1101
|
+
]
|
|
1102
|
+
},
|
|
1103
|
+
"allowlist": {
|
|
1104
|
+
"type": "object",
|
|
1105
|
+
"additionalProperties": false,
|
|
1106
|
+
"properties": {
|
|
1107
|
+
"enabled": {
|
|
1108
|
+
"type": "boolean"
|
|
1109
|
+
},
|
|
1110
|
+
"remoteAddreses": {
|
|
1111
|
+
"$ref": "#/definitions/stringlist-util"
|
|
1112
|
+
}
|
|
1113
|
+
}
|
|
1080
1114
|
}
|
|
1081
1115
|
}
|
|
1082
1116
|
},
|