@strapi/strapi 4.6.0-beta.2 → 4.6.1
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/README.md +6 -6
- package/bin/strapi.js +87 -55
- package/ee/ee-store.js +18 -0
- package/ee/index.js +173 -0
- package/ee/license.js +102 -0
- package/{lib/utils → ee}/resources/key.pub +0 -0
- package/lib/Strapi.js +14 -4
- package/lib/commands/builders/admin.js +1 -1
- package/lib/commands/transfer/export.js +12 -8
- package/lib/commands/transfer/import.js +12 -22
- package/lib/commands/transfer/transfer.js +4 -2
- package/lib/commands/transfer/utils.js +59 -10
- package/lib/commands/utils/commander.js +1 -1
- package/lib/core/loaders/plugins/index.js +9 -1
- package/lib/services/entity-service/components.js +44 -24
- package/lib/services/entity-service/index.js +1 -0
- package/lib/services/metrics/index.js +3 -54
- package/lib/services/metrics/sender.js +13 -3
- package/lib/types/core/attributes/common.d.ts +4 -1
- package/lib/utils/cron.js +56 -0
- package/lib/utils/ee.js +1 -121
- package/lib/utils/startup-logger.js +2 -4
- package/package.json +19 -18
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@strapi/strapi",
|
|
3
|
-
"version": "4.6.
|
|
3
|
+
"version": "4.6.1",
|
|
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",
|
|
@@ -71,7 +71,8 @@
|
|
|
71
71
|
},
|
|
72
72
|
"directories": {
|
|
73
73
|
"lib": "./lib",
|
|
74
|
-
"bin": "./bin"
|
|
74
|
+
"bin": "./bin",
|
|
75
|
+
"ee": "./ee"
|
|
75
76
|
},
|
|
76
77
|
"scripts": {
|
|
77
78
|
"postinstall": "node lib/utils/success.js",
|
|
@@ -80,26 +81,26 @@
|
|
|
80
81
|
"dependencies": {
|
|
81
82
|
"@koa/cors": "3.4.3",
|
|
82
83
|
"@koa/router": "10.1.1",
|
|
83
|
-
"@strapi/admin": "4.6.
|
|
84
|
-
"@strapi/data-transfer": "4.6.
|
|
85
|
-
"@strapi/database": "4.6.
|
|
86
|
-
"@strapi/generate-new": "4.6.
|
|
87
|
-
"@strapi/generators": "4.6.
|
|
88
|
-
"@strapi/logger": "4.6.
|
|
89
|
-
"@strapi/permissions": "4.6.
|
|
90
|
-
"@strapi/plugin-content-manager": "4.6.
|
|
91
|
-
"@strapi/plugin-content-type-builder": "4.6.
|
|
92
|
-
"@strapi/plugin-email": "4.6.
|
|
93
|
-
"@strapi/plugin-upload": "4.6.
|
|
94
|
-
"@strapi/typescript-utils": "4.6.
|
|
95
|
-
"@strapi/utils": "4.6.
|
|
84
|
+
"@strapi/admin": "4.6.1",
|
|
85
|
+
"@strapi/data-transfer": "4.6.1",
|
|
86
|
+
"@strapi/database": "4.6.1",
|
|
87
|
+
"@strapi/generate-new": "4.6.1",
|
|
88
|
+
"@strapi/generators": "4.6.1",
|
|
89
|
+
"@strapi/logger": "4.6.1",
|
|
90
|
+
"@strapi/permissions": "4.6.1",
|
|
91
|
+
"@strapi/plugin-content-manager": "4.6.1",
|
|
92
|
+
"@strapi/plugin-content-type-builder": "4.6.1",
|
|
93
|
+
"@strapi/plugin-email": "4.6.1",
|
|
94
|
+
"@strapi/plugin-upload": "4.6.1",
|
|
95
|
+
"@strapi/typescript-utils": "4.6.1",
|
|
96
|
+
"@strapi/utils": "4.6.1",
|
|
96
97
|
"bcryptjs": "2.4.3",
|
|
97
98
|
"boxen": "5.1.2",
|
|
98
99
|
"chalk": "4.1.2",
|
|
99
100
|
"chokidar": "3.5.2",
|
|
100
101
|
"ci-info": "3.5.0",
|
|
101
102
|
"cli-table3": "0.6.2",
|
|
102
|
-
"commander": "8.
|
|
103
|
+
"commander": "8.3.0",
|
|
103
104
|
"configstore": "5.0.1",
|
|
104
105
|
"debug": "4.3.4",
|
|
105
106
|
"delegates": "1.0.0",
|
|
@@ -108,7 +109,7 @@
|
|
|
108
109
|
"fs-extra": "10.0.0",
|
|
109
110
|
"glob": "7.2.0",
|
|
110
111
|
"http-errors": "1.8.1",
|
|
111
|
-
"inquirer": "8.2.
|
|
112
|
+
"inquirer": "8.2.5",
|
|
112
113
|
"is-docker": "2.2.1",
|
|
113
114
|
"koa": "2.13.4",
|
|
114
115
|
"koa-body": "4.2.0",
|
|
@@ -141,5 +142,5 @@
|
|
|
141
142
|
"node": ">=14.19.1 <=18.x.x",
|
|
142
143
|
"npm": ">=6.0.0"
|
|
143
144
|
},
|
|
144
|
-
"gitHead": "
|
|
145
|
+
"gitHead": "17a7845e3d453ea2e7911bda6ec25ed196dd5f16"
|
|
145
146
|
}
|