@strapi/upgrade 5.0.1 → 5.0.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/README.md +1 -1
- package/dist/cli.js +1 -1
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -39,7 +39,7 @@ Data migrations are not handled by the upgrade tool.
|
|
|
39
39
|
|
|
40
40
|
For Strapi v4, no data migrations will be allowed and no support is planned (except in extenuating circumstances eg, a critical security issue somehow relating to the database shape)
|
|
41
41
|
|
|
42
|
-
For Strapi v5, automated data migrations can be added in the `packages/core/database` package of the `
|
|
42
|
+
For Strapi v5, automated data migrations can be added in the `packages/core/database` package of the `develop` branch of this repo.
|
|
43
43
|
|
|
44
44
|
## Usage
|
|
45
45
|
|
package/dist/cli.js
CHANGED
|
@@ -1477,7 +1477,7 @@ When executed on a Strapi plugin project, it shows every codemods.
|
|
|
1477
1477
|
return listCodemods(options);
|
|
1478
1478
|
});
|
|
1479
1479
|
};
|
|
1480
|
-
const version = "5.0.
|
|
1480
|
+
const version = "5.0.2";
|
|
1481
1481
|
register$1(commander.program);
|
|
1482
1482
|
register(commander.program);
|
|
1483
1483
|
commander.program.usage("<command> [options]").on("command:*", ([invalidCmd]) => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@strapi/upgrade",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.2",
|
|
4
4
|
"description": "CLI to upgrade Strapi applications effortless",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"strapi",
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
"watch": "pack-up watch"
|
|
60
60
|
},
|
|
61
61
|
"dependencies": {
|
|
62
|
-
"@strapi/utils": "5.0.
|
|
62
|
+
"@strapi/utils": "5.0.2",
|
|
63
63
|
"chalk": "4.1.2",
|
|
64
64
|
"cli-table3": "0.6.2",
|
|
65
65
|
"commander": "8.3.0",
|
|
@@ -76,15 +76,15 @@
|
|
|
76
76
|
},
|
|
77
77
|
"devDependencies": {
|
|
78
78
|
"@strapi/pack-up": "5.0.0",
|
|
79
|
-
"@strapi/types": "5.0.
|
|
79
|
+
"@strapi/types": "5.0.2",
|
|
80
80
|
"@types/fs-extra": "11.0.4",
|
|
81
81
|
"@types/jscodeshift": "0.11.10",
|
|
82
|
-
"eslint-config-custom": "5.0.
|
|
82
|
+
"eslint-config-custom": "5.0.2",
|
|
83
83
|
"rimraf": "5.0.5"
|
|
84
84
|
},
|
|
85
85
|
"engines": {
|
|
86
86
|
"node": ">=18.0.0 <=20.x.x",
|
|
87
87
|
"npm": ">=6.0.0"
|
|
88
88
|
},
|
|
89
|
-
"gitHead": "
|
|
89
|
+
"gitHead": "8c4b6f27a0fb2da36a8eaa661ecdaf2eef25b72d"
|
|
90
90
|
}
|