@strapi/strapi 4.1.2 → 4.1.3
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.
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
const
|
|
4
|
-
const { yup } = require('@strapi/utils');
|
|
3
|
+
const _ = require('lodash');
|
|
4
|
+
const { yup, toRegressedEnumValue, startsWithANumber } = require('@strapi/utils');
|
|
5
5
|
|
|
6
6
|
const LIFECYCLES = [
|
|
7
7
|
'beforeCreate',
|
|
@@ -24,7 +24,7 @@ const LIFECYCLES = [
|
|
|
24
24
|
'afterDeleteMany',
|
|
25
25
|
];
|
|
26
26
|
|
|
27
|
-
const lifecyclesShape = mapValues(keyBy(LIFECYCLES), () =>
|
|
27
|
+
const lifecyclesShape = _.mapValues(_.keyBy(LIFECYCLES), () =>
|
|
28
28
|
yup
|
|
29
29
|
.mixed()
|
|
30
30
|
.nullable()
|
|
@@ -47,6 +47,40 @@ const contentTypeSchemaValidator = yup.object().shape({
|
|
|
47
47
|
.required(),
|
|
48
48
|
})
|
|
49
49
|
.required(),
|
|
50
|
+
attributes: yup.object().test({
|
|
51
|
+
name: 'valuesCollide',
|
|
52
|
+
message: 'Some values collide when normalized',
|
|
53
|
+
test(attributes) {
|
|
54
|
+
for (const attrName in attributes) {
|
|
55
|
+
const attr = attributes[attrName];
|
|
56
|
+
if (attr.type === 'enumeration') {
|
|
57
|
+
// should not start by a number
|
|
58
|
+
if (attr.enum.some(startsWithANumber)) {
|
|
59
|
+
const message = `Enum values should not start with a number. Please modify your enumeration '${attrName}'.`;
|
|
60
|
+
|
|
61
|
+
return this.createError({ message });
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
// should not collide
|
|
65
|
+
const duplicates = _.uniq(
|
|
66
|
+
attr.enum
|
|
67
|
+
.map(toRegressedEnumValue)
|
|
68
|
+
.filter((value, index, values) => values.indexOf(value) !== index)
|
|
69
|
+
);
|
|
70
|
+
|
|
71
|
+
if (duplicates.length) {
|
|
72
|
+
const message = `Some enum values of the field '${attrName}' collide when normalized: ${duplicates.join(
|
|
73
|
+
', '
|
|
74
|
+
)}. Please modify your enumeration.`;
|
|
75
|
+
|
|
76
|
+
return this.createError({ message });
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
return true;
|
|
82
|
+
},
|
|
83
|
+
}),
|
|
50
84
|
}),
|
|
51
85
|
actions: yup.object().onlyContainsFunctions(),
|
|
52
86
|
lifecycles: yup
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@strapi/strapi",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.3",
|
|
4
4
|
"description": "An open source headless CMS solution to create and manage your own API. It provides a powerful dashboard and features to make your life easier. Databases supported: MySQL, MariaDB, PostgreSQL, SQLite",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"strapi",
|
|
@@ -80,16 +80,16 @@
|
|
|
80
80
|
"dependencies": {
|
|
81
81
|
"@koa/cors": "3.1.0",
|
|
82
82
|
"@koa/router": "10.1.1",
|
|
83
|
-
"@strapi/admin": "4.1.
|
|
84
|
-
"@strapi/database": "4.1.
|
|
85
|
-
"@strapi/generate-new": "4.1.
|
|
86
|
-
"@strapi/generators": "4.1.
|
|
87
|
-
"@strapi/logger": "4.1.
|
|
88
|
-
"@strapi/plugin-content-manager": "4.1.
|
|
89
|
-
"@strapi/plugin-content-type-builder": "4.1.
|
|
90
|
-
"@strapi/plugin-email": "4.1.
|
|
91
|
-
"@strapi/plugin-upload": "4.1.
|
|
92
|
-
"@strapi/utils": "4.1.
|
|
83
|
+
"@strapi/admin": "4.1.3",
|
|
84
|
+
"@strapi/database": "4.1.3",
|
|
85
|
+
"@strapi/generate-new": "4.1.3",
|
|
86
|
+
"@strapi/generators": "4.1.3",
|
|
87
|
+
"@strapi/logger": "4.1.3",
|
|
88
|
+
"@strapi/plugin-content-manager": "4.1.3",
|
|
89
|
+
"@strapi/plugin-content-type-builder": "4.1.3",
|
|
90
|
+
"@strapi/plugin-email": "4.1.3",
|
|
91
|
+
"@strapi/plugin-upload": "4.1.3",
|
|
92
|
+
"@strapi/utils": "4.1.3",
|
|
93
93
|
"bcryptjs": "2.4.3",
|
|
94
94
|
"boxen": "5.1.2",
|
|
95
95
|
"chalk": "4.1.2",
|
|
@@ -136,5 +136,5 @@
|
|
|
136
136
|
"node": ">=12.22.0 <=16.x.x",
|
|
137
137
|
"npm": ">=6.0.0"
|
|
138
138
|
},
|
|
139
|
-
"gitHead": "
|
|
139
|
+
"gitHead": "8549f5aca34f2a72bb477a1b305260f39f271f4e"
|
|
140
140
|
}
|