Skip to content

Commit ca04e58

Browse files
authored
Merge pull request #1886 from contentstack/fix/DX-2410
fix: Handle empty object in payload causing 400 Bad Request in GCP region
2 parents 18cb5d5 + 9aab944 commit ca04e58

File tree

17 files changed

+520
-514
lines changed

17 files changed

+520
-514
lines changed

package-lock.json

Lines changed: 20 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/contentstack-audit/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ $ npm install -g @contentstack/cli-audit
1919
$ csdx COMMAND
2020
running command...
2121
$ csdx (--version|-v)
22-
@contentstack/cli-audit/1.12.0 darwin-arm64 node-v22.14.0
22+
@contentstack/cli-audit/1.12.1 darwin-arm64 node-v22.14.0
2323
$ csdx --help [COMMAND]
2424
USAGE
2525
$ csdx COMMAND

packages/contentstack-branches/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ $ npm install -g @contentstack/cli-cm-branches
3737
$ csdx COMMAND
3838
running command...
3939
$ csdx (--version)
40-
@contentstack/cli-cm-branches/1.4.0 darwin-arm64 node-v22.14.0
40+
@contentstack/cli-cm-branches/1.4.1 darwin-arm64 node-v22.14.0
4141
$ csdx --help [COMMAND]
4242
USAGE
4343
$ csdx COMMAND

packages/contentstack-clone/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"dependencies": {
88
"@colors/colors": "^1.6.0",
99
"@contentstack/cli-cm-export": "~1.16.0",
10-
"@contentstack/cli-cm-import": "~1.21.2",
10+
"@contentstack/cli-cm-import": "~1.21.3",
1111
"@contentstack/cli-command": "~1.5.0",
1212
"@contentstack/cli-utilities": "~1.11.0",
1313
"chalk": "^4.1.2",

packages/contentstack-export/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"bugs": "https://github.com/contentstack/cli/issues",
77
"dependencies": {
88
"@contentstack/cli-command": "~1.5.0",
9-
"@contentstack/cli-variants": "~1.2.0",
9+
"@contentstack/cli-variants": "~1.2.1",
1010
"@oclif/core": "^4.2.7",
1111
"@contentstack/cli-utilities": "~1.11.0",
1212
"async": "^3.2.6",

packages/contentstack-import/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ $ npm install -g @contentstack/cli-cm-import
4747
$ csdx COMMAND
4848
running command...
4949
$ csdx (--version)
50-
@contentstack/cli-cm-import/1.21.2 darwin-arm64 node-v22.14.0
50+
@contentstack/cli-cm-import/1.21.3 darwin-arm64 node-v22.14.0
5151
$ csdx --help [COMMAND]
5252
USAGE
5353
$ csdx COMMAND

packages/contentstack-import/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"name": "@contentstack/cli-cm-import",
33
"description": "Contentstack CLI plugin to import content into stack",
4-
"version": "1.21.2",
4+
"version": "1.21.3",
55
"author": "Contentstack",
66
"bugs": "https://github.com/contentstack/cli/issues",
77
"dependencies": {
88
"@contentstack/cli-audit": "~1.12.1",
99
"@contentstack/cli-command": "~1.5.0",
1010
"@contentstack/cli-utilities": "~1.11.0",
1111
"@contentstack/management": "~1.20.2",
12-
"@contentstack/cli-variants": "~1.2.0",
12+
"@contentstack/cli-variants": "~1.2.1",
1313
"@oclif/core": "^4.2.7",
1414
"big-json": "^3.2.0",
1515
"bluebird": "^3.7.2",

packages/contentstack-import/src/config/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ const config: DefaultConfig = {
429429
getEncryptionKeyMaxRetry: 3,
430430
// useBackedupDir: '',
431431
// backupConcurrency: 10,
432-
onlyTSModules: ['taxonomies', 'personalize'],
432+
onlyTSModules: ['taxonomies', 'personalize', 'variant-entries'],
433433
auditConfig: {
434434
noLog: false, // Skip logs printing on terminal
435435
skipConfirm: true, // Skip confirmation if any

packages/contentstack-migration/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
"@oclif/test": "^4.1.6",
1919
"chai": "^4.5.0",
2020
"eslint": "^8.57.1",
21+
"eslint-config-oclif": "^6.0.46",
2122
"jsdoc-to-markdown": "^8.0.3",
2223
"nock": "^13.5.6",
2324
"nyc": "^15.1.0",

packages/contentstack-seed/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"author": "Contentstack",
66
"bugs": "https://github.com/contentstack/cli/issues",
77
"dependencies": {
8-
"@contentstack/cli-cm-import": "~1.21.2",
8+
"@contentstack/cli-cm-import": "~1.21.3",
99
"@contentstack/cli-command": "~1.5.0",
1010
"@contentstack/cli-utilities": "~1.11.0",
1111
"@contentstack/management": "~1.20.2",

0 commit comments

Comments
 (0)