Skip to content

Commit 2c59a8f

Browse files
Merge pull request #2616 from contentstack/fix/DX-9334
Upgraded Node version to 22 for plugins and Readme Update
2 parents 3991fdb + 0a01bee commit 2c59a8f

8 files changed

Lines changed: 142 additions & 1393 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"pnpm": "^10.28.0"
77
},
88
"engines": {
9-
"node": ">=18.0.0"
9+
"node": ">=22.0.0"
1010
},
1111
"private": true,
1212
"scripts": {

packages/contentstack-auth/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
It is Contentstack’s CLI plugin to perform authentication-related activities. To get started with authentication, refer to the [CLI’s Authentication documentation](https://www.contentstack.com/docs/developers/cli/authentication)
44

5-
[![License](https://img.shields.io/npm/l/@contentstack/cli)](https://github.com/contentstack/cli/blob/main/LICENSE)
5+
[![License](https://img.shields.io/npm/l/@contentstack/cli-auth)](https://github.com/contentstack/cli/blob/main/LICENSE)
66

77
<!-- toc -->
88
* [@contentstack/cli-auth](#contentstackcli-auth)
@@ -18,7 +18,7 @@ $ npm install -g @contentstack/cli-auth
1818
$ csdx COMMAND
1919
running command...
2020
$ csdx (--version)
21-
@contentstack/cli-auth/1.8.2 darwin-arm64 node-v24.14.0
21+
@contentstack/cli-auth/1.8.4 darwin-arm64 node-v22.21.1
2222
$ csdx --help [COMMAND]
2323
USAGE
2424
$ csdx COMMAND

packages/contentstack-auth/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@contentstack/cli-auth",
33
"description": "Contentstack CLI plugin for authentication activities",
4-
"version": "1.8.3",
4+
"version": "1.8.4",
55
"author": "Contentstack",
66
"bugs": "https://github.com/contentstack/cli/issues",
77
"scripts": {
@@ -15,7 +15,7 @@
1515
"lint": "eslint src/**/*.ts"
1616
},
1717
"dependencies": {
18-
"@contentstack/cli-command": "~1.8.3",
18+
"@contentstack/cli-command": "~1.8.4",
1919
"@contentstack/cli-utilities": "~1.18.4",
2020
"@oclif/core": "^4.11.4",
2121
"otplib": "^12.0.1"
@@ -45,7 +45,7 @@
4545
"typescript": "^4.9.5"
4646
},
4747
"engines": {
48-
"node": ">=14.0.0"
48+
"node": ">=22.0.0"
4949
},
5050
"files": [
5151
"/lib",

packages/contentstack-command/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@contentstack/cli-command",
33
"description": "Contentstack CLI plugin for configuration",
4-
"version": "1.8.3",
4+
"version": "1.8.4",
55
"author": "Contentstack",
66
"main": "lib/index.js",
77
"types": "lib/index.d.ts",
@@ -36,7 +36,7 @@
3636
"typescript": "^4.9.5"
3737
},
3838
"engines": {
39-
"node": ">=14.0.0"
39+
"node": ">=22.0.0"
4040
},
4141
"files": [
4242
"/types",

packages/contentstack-config/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
The config namespace contains all the commands that you will need to configure the CLI as per your requirements. Contentstack currently supports four regions: North America, Europe, Azure North America and Azure Europe. [Configure the CLI documentation](https://www.contentstack.com/docs/developers/cli/configure-the-cli)
44

5-
[![License](https://img.shields.io/npm/l/@contentstack/cli)](https://github.com/contentstack/cli/blob/main/LICENSE)
5+
[![License](https://img.shields.io/npm/l/@contentstack/cli-config)](https://github.com/contentstack/cli/blob/main/LICENSE)
66

77
<!-- toc -->
88
* [@contentstack/cli-config](#contentstackcli-config)
@@ -18,7 +18,7 @@ $ npm install -g @contentstack/cli-config
1818
$ csdx COMMAND
1919
running command...
2020
$ csdx (--version)
21-
@contentstack/cli-config/1.20.3 darwin-arm64 node-v24.14.0
21+
@contentstack/cli-config/1.20.5 darwin-arm64 node-v22.21.1
2222
$ csdx --help [COMMAND]
2323
USAGE
2424
$ csdx COMMAND

packages/contentstack-config/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@contentstack/cli-config",
33
"description": "Contentstack CLI plugin for configuration",
4-
"version": "1.20.4",
4+
"version": "1.20.5",
55
"author": "Contentstack",
66
"scripts": {
77
"build": "pnpm compile && oclif manifest && oclif readme",
@@ -14,7 +14,7 @@
1414
"lint": "eslint src/**/*.ts"
1515
},
1616
"dependencies": {
17-
"@contentstack/cli-command": "~1.8.3",
17+
"@contentstack/cli-command": "~1.8.4",
1818
"@contentstack/cli-utilities": "~1.18.4",
1919
"@contentstack/utils": "~1.9.1",
2020
"@oclif/core": "^4.11.4"
@@ -42,7 +42,7 @@
4242
"typescript": "^4.9.5"
4343
},
4444
"engines": {
45-
"node": ">=14.0.0"
45+
"node": ">=22.0.0"
4646
},
4747
"files": [
4848
"/lib",

packages/contentstack/README.md

Lines changed: 113 additions & 1364 deletions
Large diffs are not rendered by default.

packages/contentstack/package.json

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -20,21 +20,21 @@
2020
},
2121
"dependencies": {
2222
"@contentstack/cli-audit": "~1.19.4",
23-
"@contentstack/cli-cm-export": "~1.25.1",
24-
"@contentstack/cli-cm-import": "~1.33.3",
25-
"@contentstack/cli-auth": "~1.8.3",
26-
"@contentstack/cli-cm-bootstrap": "~1.19.6",
27-
"@contentstack/cli-cm-branches": "~1.8.2",
28-
"@contentstack/cli-cm-bulk-publish": "~1.12.0",
29-
"@contentstack/cli-cm-clone": "~1.21.7",
30-
"@contentstack/cli-cm-export-to-csv": "~1.12.3",
31-
"@contentstack/cli-cm-import-setup": "~1.8.4",
32-
"@contentstack/cli-cm-migrate-rte": "~1.7.0",
33-
"@contentstack/cli-cm-seed": "~1.15.6",
34-
"@contentstack/cli-command": "~1.8.3",
35-
"@contentstack/cli-config": "~1.20.4",
36-
"@contentstack/cli-launch": "^1.11.0",
37-
"@contentstack/cli-migration": "~1.12.3",
23+
"@contentstack/cli-cm-export": "~1.25.2",
24+
"@contentstack/cli-cm-import": "~1.33.4",
25+
"@contentstack/cli-auth": "~1.8.4",
26+
"@contentstack/cli-cm-bootstrap": "~1.19.7",
27+
"@contentstack/cli-cm-branches": "~1.8.3",
28+
"@contentstack/cli-cm-bulk-publish": "~1.12.1",
29+
"@contentstack/cli-cm-clone": "~1.21.8",
30+
"@contentstack/cli-cm-export-to-csv": "~1.12.5",
31+
"@contentstack/cli-cm-import-setup": "~1.8.5",
32+
"@contentstack/cli-cm-migrate-rte": "~1.7.1",
33+
"@contentstack/cli-cm-seed": "~1.15.7",
34+
"@contentstack/cli-command": "~1.8.4",
35+
"@contentstack/cli-config": "~1.20.5",
36+
"@contentstack/cli-launch": "^1.11.1",
37+
"@contentstack/cli-migration": "~1.12.4",
3838
"@contentstack/cli-utilities": "~1.18.4",
3939
"@contentstack/cli-variants": "~1.5.1",
4040
"@oclif/core": "^4.11.4",
@@ -75,7 +75,7 @@
7575
"typescript": "^4.9.5"
7676
},
7777
"engines": {
78-
"node": ">=14.0.0"
78+
"node": ">=22.0.0"
7979
},
8080
"files": [
8181
"/bin",

0 commit comments

Comments
 (0)