@strapi/strapi 4.1.1 → 4.1.2
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/commands/develop.js
CHANGED
|
@@ -120,7 +120,7 @@ function watchFileChanges({ dir, strapiInstance, watchIgnoreFiles, polling }) {
|
|
|
120
120
|
/(^|[/\\])\../, // dot files
|
|
121
121
|
/tmp/,
|
|
122
122
|
'**/src/admin/**',
|
|
123
|
-
'**/src/plugins/**/admin
|
|
123
|
+
'**/src/plugins/**/admin/**',
|
|
124
124
|
'**/documentation',
|
|
125
125
|
'**/documentation/**',
|
|
126
126
|
'**/node_modules',
|
|
@@ -17,7 +17,7 @@ const pickSelectionParams = pick(['fields', 'populate']);
|
|
|
17
17
|
|
|
18
18
|
const transformParamsToQuery = (uid, params) => {
|
|
19
19
|
// NOTE: can be a CT, a Compo or nothing in the case of polymorphism (DZ & morph relations)
|
|
20
|
-
const
|
|
20
|
+
const schema = strapi.getModel(uid);
|
|
21
21
|
|
|
22
22
|
const query = {};
|
|
23
23
|
|
|
@@ -32,7 +32,7 @@ const transformParamsToQuery = (uid, params) => {
|
|
|
32
32
|
}
|
|
33
33
|
|
|
34
34
|
if (!isNil(filters)) {
|
|
35
|
-
query.where = convertFiltersQueryParams(filters,
|
|
35
|
+
query.where = convertFiltersQueryParams(filters, schema);
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
if (!isNil(fields)) {
|
|
@@ -40,7 +40,7 @@ const transformParamsToQuery = (uid, params) => {
|
|
|
40
40
|
}
|
|
41
41
|
|
|
42
42
|
if (!isNil(populate)) {
|
|
43
|
-
query.populate = convertPopulateQueryParams(populate);
|
|
43
|
+
query.populate = convertPopulateQueryParams(populate, schema);
|
|
44
44
|
}
|
|
45
45
|
|
|
46
46
|
const isPagePagination = !isNil(page) || !isNil(pageSize);
|
|
@@ -84,7 +84,7 @@ const transformParamsToQuery = (uid, params) => {
|
|
|
84
84
|
query.limit = convertLimitQueryParams(limit);
|
|
85
85
|
}
|
|
86
86
|
|
|
87
|
-
convertPublicationStateParams(
|
|
87
|
+
convertPublicationStateParams(schema, params, query);
|
|
88
88
|
|
|
89
89
|
return query;
|
|
90
90
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@strapi/strapi",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.2",
|
|
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.2",
|
|
84
|
+
"@strapi/database": "4.1.2",
|
|
85
|
+
"@strapi/generate-new": "4.1.2",
|
|
86
|
+
"@strapi/generators": "4.1.2",
|
|
87
|
+
"@strapi/logger": "4.1.2",
|
|
88
|
+
"@strapi/plugin-content-manager": "4.1.2",
|
|
89
|
+
"@strapi/plugin-content-type-builder": "4.1.2",
|
|
90
|
+
"@strapi/plugin-email": "4.1.2",
|
|
91
|
+
"@strapi/plugin-upload": "4.1.2",
|
|
92
|
+
"@strapi/utils": "4.1.2",
|
|
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": "6f72c3805232bc6c4b229aecfb19909b9f68d98d"
|
|
140
140
|
}
|