@nocobase/resourcer 1.9.32 → 1.9.33
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/lib/utils.js +3 -1
- package/package.json +3 -3
package/lib/utils.js
CHANGED
|
@@ -208,7 +208,9 @@ __name(parseRequest, "parseRequest");
|
|
|
208
208
|
function parseQuery(input) {
|
|
209
209
|
const query = import_qs.default.parse(input, {
|
|
210
210
|
// 原始 query string 中如果一个键连等号“=”都没有可以被认为是 null 类型
|
|
211
|
-
strictNullHandling: true
|
|
211
|
+
strictNullHandling: true,
|
|
212
|
+
// 允许更大的数组长度,避免像 appends[] 这种参数在超过默认 20 个时被转换成对象
|
|
213
|
+
arrayLimit: 100
|
|
212
214
|
// 逗号分隔转换为数组
|
|
213
215
|
// comma: true,
|
|
214
216
|
});
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nocobase/resourcer",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.33",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"types": "./lib/index.d.ts",
|
|
7
7
|
"license": "AGPL-3.0",
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@nocobase/utils": "1.9.
|
|
9
|
+
"@nocobase/utils": "1.9.33",
|
|
10
10
|
"deepmerge": "^4.2.2",
|
|
11
11
|
"koa-compose": "^4.1.0",
|
|
12
12
|
"lodash": "^4.17.21",
|
|
@@ -18,5 +18,5 @@
|
|
|
18
18
|
"url": "git+https://github.com/nocobase/nocobase.git",
|
|
19
19
|
"directory": "packages/resourcer"
|
|
20
20
|
},
|
|
21
|
-
"gitHead": "
|
|
21
|
+
"gitHead": "705580251f0deffaf2a8c7c85006c770741941d3"
|
|
22
22
|
}
|