Skip to content

chore: GA version bumps — promote all packages from beta to stable and update third-party deps - #338

Merged
cs-raj merged 9 commits into
v2-devfrom
chore/ga-version-bumps
Aug 7, 2026
Merged

chore: GA version bumps — promote all packages from beta to stable and update third-party deps#338
cs-raj merged 9 commits into
v2-devfrom
chore/ga-version-bumps

Conversation

@cs-raj

@cs-rajcs-raj commented Aug 5, 2026

Copy link
Copy Markdown
Contributor

Overview

This PR prepares all packages in the `cli-plugins` monorepo for the General Availability (GA) release of CLI v2. It does two things:

  1. Promotes every `@contentstack/*` package version from `-beta.X` to its stable GA version (all cross-repo internal dependency references updated to match).
  2. Bumps third-party devDependencies to their latest minor/patch versions (no major version jumps; strictly minor and patch).

Package Version Promotions (self-versions)

PackageOld VersionNew Version
`@contentstack/apps-cli``2.0.0-beta.5``2.0.0`
`@contentstack/cli-asset-management``1.0.0-beta.8``1.0.0`
`@contentstack/cli-audit``2.0.0-beta.16``2.0.0`
`@contentstack/cli-cm-bootstrap``2.0.0-beta.25``2.0.0`
`@contentstack/cli-cm-branches``2.0.0-beta.11``2.0.0`
`@contentstack/cli-bulk-operations``2.0.0-beta.5``2.0.0`
`@contentstack/cli-cm-regex-validate``2.0.0-beta.4``2.0.0`
`contentstack-cli-tsgen``5.0.0-beta.4``5.0.0`
`@contentstack/cli-cm-clone``2.0.0-beta.26``2.0.0`
`contentstack-cli-content-type``2.0.0-beta.3``2.0.0`
`@contentstack/cli-cm-export-to-csv``2.0.0-beta.12``2.0.0`
`@contentstack/cli-cm-export``2.0.0-beta.25``2.0.0`
`@contentstack/cli-external-migrate``2.0.0-beta.4``2.0.0`
`@contentstack/cli-cm-import-setup``2.0.0-beta.19``2.0.0`
`@contentstack/cli-cm-import``2.0.0-beta.25``2.0.0`
`@contentstack/cli-cm-migrate-rte``2.0.0-beta.10``2.0.0`
`@contentstack/cli-migration``2.0.0-beta.17``2.0.0`
`@contentstack/cli-cm-export-query``2.0.0-beta.9``2.0.0`
`@contentstack/cli-cm-seed``2.0.0-beta.25``2.0.0`
`@contentstack/cli-variants``2.0.0-beta.20``2.0.0`

Internal `@contentstack/*` Dependency Updates

All cross-package `@contentstack/*` dependency references have been updated from their individual beta pins to stable GA versions:

DependencyOldNew
`@contentstack/cli-asset-management``~1.0.0-beta.8` / `1.0.0-beta.8``~1.0.0` / `1.0.0`
`@contentstack/cli-audit``~2.0.0-beta.16``~2.0.0`
`@contentstack/cli-auth``~2.0.0-beta.17``~2.0.0`
`@contentstack/cli-cm-export``~2.0.0-beta.25``~2.0.0`
`@contentstack/cli-cm-import``~2.0.0-beta.25``~2.0.0`
`@contentstack/cli-cm-seed``~2.0.0-beta.25``~2.0.0`
`@contentstack/cli-command``~2.0.0-beta.11``~2.0.0`
`@contentstack/cli-config``~2.0.0-beta.15``~2.0.0`
`@contentstack/cli-utilities``~2.0.0-beta.12``~2.0.0`
`@contentstack/cli-variants``~2.0.0-beta.20``~2.0.0`

Third-Party Dependency Bumps (minor/patch only)

`@oclif/*` ecosystem

PackageOldNew
`@oclif/core``^4.8.0` – `^4.11.4``^4.11.14`
`@oclif/plugin-help``^6.2.49``^6.2.53`
`@oclif/test``^4.1.18``^4.1.20`
`oclif` (CLI tool)`^4.8.0` – `^4.23.21``^4.23.27`

ESLint ecosystem

PackageOldNewNote
`eslint``^10.5.0``^10.6.0`all packages
`eslint-config-oclif``^6.0.62` – `^6.0.165``^6.0.175`all packages (now unified)
`eslint-plugin-prettier``^5.5.5``^5.5.6`
`@eslint/eslintrc``^3.3.1``^3.3.5`

Runtime dependencies

PackageOldNewPackage
`uuid``^14.0.0``^14.0.1`various
`fs-extra``^11.3.0` – `^11.3.3``^11.3.6`various
`@inquirer/prompts``^7.0.0``^7.10.1`various

Type definitions & test utilities

PackageOldNewAffected packages
`@types/chai``^4.3.0` – `^4.3.11``^4.3.20`various
`@types/inquirer``^9.0.8``^9.0.10`various
`@types/sinon``^21.0.0``^21.0.1``cli-cm-regex-validate`, `cli-cm-clone`, `cli-external-migrate`, `cli-cm-import-setup`
`sinon``^21.0.1``^21.1.2``cli-cm-regex-validate`, `cli-cm-export-to-csv`, `cli-external-migrate`, `cli-cm-import-setup`
`fancy-test`(not declared)`^2.0.0``cli-audit`, `cli-cm-import`, `cli-cm-migrate-rte`

Note on `fancy-test`: These three packages import `fancy-test` in their test files but previously relied on it being hoisted transitively from `@contentstack/cli-dev-dependencies`. With that package removed (PR #336, now merged), the dependency is declared explicitly at `^2.0.0` to preserve the v2 stub API the tests are written against.

Build tooling

PackageOldNew
`@babel/preset-env``^7.29.5``^7.29.7`
`prettier``^3.8.3``^3.9.4`
`lint-staged``^17.0.2``^17.0.8`
`jsdom``^23.0.0``^23.2.0`

README Updates

READMEs are auto-generated by oclif (`oclif readme`). Changes across affected packages reflect:

  • Version string in usage examples updated from `2.0.0-beta.X` / `1.0.0-beta.X` → GA version
  • Node version in usage examples updated to `v22.21.1` (matching `engines.node: >=22.0.0`)

Affected: `cli-audit`, `cli-cm-export`, `cli-cm-import`, `cli-cm-bootstrap`, `cli-cm-branches`, `cli-cm-clone`, `cli-cm-import-setup`, `cli-cm-seed`, `cli-cm-regex-validate`, `cli-migration`, `cli-asset-management`, `contentstack-content-type`.


What Was NOT Changed

  • No major version jumps — all third-party bumps are strictly minor or patch.
  • `@contentstack/management` and `@contentstack/utils` (1.x) — left untouched per team convention.
  • `sinon` in `contentstack-export`, `contentstack-query-export`, `contentstack-asset-management` — those packages are on `^17.x`; bump to `^21.x` is a major version change and was intentionally skipped.
  • `recheck` / `recheck-linux-x64` — pinned at `~4.5.0` / `4.4.5` for GLIBC 2.31 compatibility on Linux x64 CI; not touched.
  • `@typescript-eslint/*` — alpha targets only; skipped.
  • `eslint-config-oclif` in `cli-auth` — currently at `^5.2.2`; upgrade to `^6.x` is a major change. Flagged as a follow-up.

Related PRs


Test Plan

  • `pnpm install` succeeds (lockfile up to date)
  • `pnpm build` succeeds across all 20 packages
  • `pnpm test` passes across all packages
  • `csdx --version` reports `2.0.0` (no beta suffix) after linking

🤖 Generated with Claude Code

…minor
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
@cs-raj
cs-raj requested a review from a team as a code ownerAugust 5, 2026 12:06
@snyk-io

snyk-ioBot commented Aug 5, 2026

Copy link
Copy Markdown

Snyk checks have passed. No issues have been found so far.

StatusScan Engine Critical High Medium LowTotal (0)
Open Source Security0000 0 issues
Licenses0000 0 issues
Code Security0000 0 issues

💻 Catch issues earlier using the plugins for VS Code, JetBrains IDEs, Visual Studio, and Eclipse.

@github-actions

Copy link
Copy Markdown

🔒 Security Scan Results

ℹ️ Note: Only vulnerabilities with available fixes (upgrades or patches) are counted toward thresholds.

Check TypeCount (with fixes)Without fixesThresholdResult
🔴 Critical Severity0010✅ Passed
🟠 High Severity0025✅ Passed
🟡 Medium Severity01500✅ Passed
🔵 Low Severity001000✅ Passed

⏱️ SLA Breach Summary

⚠️ Warning: The following vulnerabilities have exceeded their SLA thresholds (days since publication).

SeverityBreaches (with fixes)Breaches (no fixes)SLA Threshold (with/no fixes)Status
🔴 Critical0015 / 30 days✅ Passed
🟠 High0030 / 120 days✅ Passed
🟡 Medium0190 / 365 days⚠️ Warning
🔵 Low00180 / 365 days✅ Passed

ℹ️ Vulnerabilities Without Available Fixes (Informational Only)

The following vulnerabilities were detected but do not have fixes available (no upgrade or patch). These are excluded from failure thresholds:

  • Critical without fixes: 0
  • High without fixes: 0
  • Medium without fixes: 1
  • Low without fixes: 0

⚠️ BUILD PASSED WITH WARNINGS - SLA breaches detected for issues without available fixes

Consider reviewing these vulnerabilities when fixes become available.

CopilotAI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR prepares the cli-plugins monorepo for CLI v2 GA by promoting internal @contentstack/* packages from beta to stable versions and updating third-party dependencies/READMEs accordingly across multiple plugins.

Changes:

  • Promotes plugin package versions from *-beta.* to stable 1.0.0 / 2.0.0 / 5.0.0 and updates cross-plugin @contentstack/* dependency pins to stable ranges.
  • Bumps third-party dependencies/devDependencies (notably @oclif/*, eslint*, fs-extra, uuid, etc.) across packages.
  • Regenerates/updates several oclif READMEs and updates root pnpm tooling version.

Reviewed changes

Copilot reviewed 34 out of 35 changed files in this pull request and generated 3 comments.

Show a summary per file
FileDescription
packages/contentstack-variants/package.jsonPromotes @contentstack/cli-variants to 2.0.0 and updates core/internal deps to stable.
packages/contentstack-seed/README.mdUpdates generated command docs/usage for GA release.
packages/contentstack-seed/package.jsonPromotes @contentstack/cli-cm-seed to 2.0.0 and updates internal/third-party deps.
packages/contentstack-query-export/package.jsonPromotes @contentstack/cli-cm-export-query to 2.0.0 and updates internal/oclif deps.
packages/contentstack-migration/README.mdUpdates generated docs/version banner for GA and removes duplicated sections.
packages/contentstack-migration/package.jsonPromotes @contentstack/cli-migration to 2.0.0 and bumps lint/oclif tooling.
packages/contentstack-migrate-rte/package.jsonPromotes @contentstack/cli-cm-migrate-rte to 2.0.0 and bumps oclif/eslint deps.
packages/contentstack-import/README.mdUpdates generated version banner to GA.
packages/contentstack-import/package.jsonPromotes @contentstack/cli-cm-import to 2.0.0 and updates internal/third-party deps.
packages/contentstack-import-setup/README.mdUpdates generated version banner to GA.
packages/contentstack-import-setup/package.jsonPromotes @contentstack/cli-cm-import-setup to 2.0.0 and bumps tooling deps.
packages/contentstack-external-migrate/package.jsonPromotes @contentstack/cli-external-migrate to 2.0.0 and bumps runtime/dev deps.
packages/contentstack-export/README.mdUpdates generated version banner to GA.
packages/contentstack-export/package.jsonPromotes @contentstack/cli-cm-export to 2.0.0 and updates internal/tooling deps.
packages/contentstack-export-to-csv/package.jsonPromotes @contentstack/cli-cm-export-to-csv to 2.0.0 and bumps deps.
packages/contentstack-content-type/README.mdAdds/updates generated command documentation for GA.
packages/contentstack-content-type/package.jsonPromotes contentstack-cli-content-type to 2.0.0 and bumps tooling deps.
packages/contentstack-clone/README.mdUpdates generated version banner to GA.
packages/contentstack-clone/package.jsonPromotes @contentstack/cli-cm-clone to 2.0.0 and updates internal/tooling deps.
packages/contentstack-cli-tsgen/package.jsonPromotes contentstack-cli-tsgen to 5.0.0 and bumps deps for GA alignment.
packages/contentstack-cli-cm-regex-validate/README.mdExpands/updates generated command docs.
packages/contentstack-cli-cm-regex-validate/package.jsonPromotes @contentstack/cli-cm-regex-validate to 2.0.0 and bumps deps.
packages/contentstack-bulk-operations/README.mdUpdates generated bulk-operations docs and examples for GA.
packages/contentstack-bulk-operations/package.jsonPromotes @contentstack/cli-bulk-operations to 2.0.0 and bumps dev tooling deps.
packages/contentstack-branches/README.mdUpdates generated version banner to GA.
packages/contentstack-branches/package.jsonPromotes @contentstack/cli-cm-branches to 2.0.0 and bumps deps.
packages/contentstack-bootstrap/README.mdUpdates generated version banner to GA.
packages/contentstack-bootstrap/package.jsonPromotes @contentstack/cli-cm-bootstrap to 2.0.0 and bumps deps.
packages/contentstack-audit/README.mdUpdates generated version banner to GA.
packages/contentstack-audit/package.jsonPromotes @contentstack/cli-audit to 2.0.0 and bumps deps.
packages/contentstack-asset-management/README.mdMinor README formatting/line alignment update.
packages/contentstack-asset-management/package.jsonPromotes @contentstack/cli-asset-management to 1.0.0 and bumps deps.
packages/contentstack-apps-cli/package.jsonPromotes @contentstack/apps-cli to 2.0.0 and bumps tooling deps.
package.jsonUpdates root pnpm devDependency and packageManager pin.
.talismanrcAdds checksums for updated README files.
Suppressed comments (4)

packages/contentstack-content-type/README.md:172

  • This USAGE block has an extra | ([-k <value> | | -a <value>] split across lines), which makes the generated syntax invalid/unclear.
 $ csdx content-type:diagram --output <value> --direction portrait|landscape --type svg|dot [-k <value> | | -a
<value>]

packages/contentstack-content-type/README.md:204

  • The USAGE line contains a duplicated pipe ([-k <value> | | -a <value>]), which is malformed CLI syntax in the docs.
 $ csdx content-type:list [-k <value> | | -a <value>] [--order title|modified]

packages/contentstack-bulk-operations/README.md:202

  • The "See code" link URL is missing the packages/contentstack-bulk-operations/ path segment and points at blob/v2.0.0, which makes the link incorrect/brittle. Align it with the repo's standard blob/main/packages/... links.
_See code: [src/commands/cm/stacks/bulk-entries.ts](https://github.com/contentstack/cli-plugins/blob/v2.0.0/src/commands/cm/stacks/bulk-entries.ts)_

packages/contentstack-bulk-operations/README.md:266

  • The "See code" link URL is missing the packages/contentstack-bulk-operations/ path segment and points at blob/v2.0.0, which makes the link incorrect/brittle. Align it with the other READMEs.
_See code: [src/commands/cm/stacks/bulk-taxonomies.ts](https://github.com/contentstack/cli-plugins/blob/v2.0.0/src/commands/cm/stacks/bulk-taxonomies.ts)_

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment threadpackages/contentstack-content-type/README.md Outdated
Comment threadpackages/contentstack-content-type/README.md Outdated
Comment threadpackages/contentstack-bulk-operations/README.md Outdated
cs-rajand others added 2 commits August 5, 2026 19:23
GitHub Actions workflow pins pnpm@10.28.0 via action-setup; bumping
packageManager to 10.34.4 caused ERR_PNPM_BAD_PM_VERSION in CI.
Keep packageManager aligned with the workflow config.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
@github-actions

Copy link
Copy Markdown

🔒 Security Scan Results

ℹ️ Note: Only vulnerabilities with available fixes (upgrades or patches) are counted toward thresholds.

Check TypeCount (with fixes)Without fixesThresholdResult
🔴 Critical Severity0010✅ Passed
🟠 High Severity0025✅ Passed
🟡 Medium Severity01500✅ Passed
🔵 Low Severity001000✅ Passed

⏱️ SLA Breach Summary

⚠️ Warning: The following vulnerabilities have exceeded their SLA thresholds (days since publication).

SeverityBreaches (with fixes)Breaches (no fixes)SLA Threshold (with/no fixes)Status
🔴 Critical0015 / 30 days✅ Passed
🟠 High0030 / 120 days✅ Passed
🟡 Medium0190 / 365 days⚠️ Warning
🔵 Low00180 / 365 days✅ Passed

ℹ️ Vulnerabilities Without Available Fixes (Informational Only)

The following vulnerabilities were detected but do not have fixes available (no upgrade or patch). These are excluded from failure thresholds:

  • Critical without fixes: 0
  • High without fixes: 0
  • Medium without fixes: 1
  • Low without fixes: 0

⚠️ BUILD PASSED WITH WARNINGS - SLA breaches detected for issues without available fixes

Consider reviewing these vulnerabilities when fixes become available.

@aniket-shikhare-cstkaniket-shikhare-cstk left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewed against v2-dev. Version math is correct — all ~20 packages promoted beta → stable (2.0.0, with cli-asset-management1.0.0 and tsgen5.0.0), no broken internal/cross-repo dependency ranges, third-party bumps minor/patch only. A few things on top of Copilot's comments (all 4 of which are valid — please also fix those).

Blocking

  • pnpm-lock.yaml is out of sync → tsgen-integration-test will fail. The lockfile is unchanged from v2-dev (still 127 2.0.0-beta.* refs) while package.json specifiers moved to ~2.0.0 and updated third-party ranges. That workflow runs on every PR with pnpm install --frozen-lockfile (pnpm 10.28.0), which errors on the mismatch. Run pnpm install and commit the regenerated lock. (Side note: the .talismanrc checksum for pnpm-lock.yaml was bumped but doesn't match the committed lockfile — looks like the regen was done locally but the lock wasn't committed.)

Should fix

  • Inconsistent pin: cli-bulk-operations@contentstack/cli-asset-management@"1.0.0" (exact) while everything else uses ~1.0.0. Recommend ~1.0.0.

README nits not already covered by Copilot

  • contentstack-cli-cm-regex-validate/README.md: stale example …/1.2.1 … node-v20.8.0 (should be 2.0.0 / node-v22), and the License badge points at the old standalone repo.
  • contentstack-content-type/README.md: the diagram image (line 31) still links to the old contentstack-cli-content-type repo. (Copilot's pipe comments on lines 172/204 are separate and also worth fixing — a fresh oclif readme regen should clear both those and the bulk-operations link paths in one go.)

- Regenerate all plugin READMEs via oclif readme
- Fix bulk-operations: add repositoryPrefix to oclif config, bump cli-asset-management pin to ~1.0.0
- Fix content-type: remove phantom token-alias from exclusive flag arrays in audit/compare/details/diagram/list commands; fixes double-pipe in USAGE strings
- Fix content-type README: update diagram image link to monorepo path
- Fix regex-validate README: update static version example to 2.0.0/node-v22
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
@github-actions

Copy link
Copy Markdown

🔒 Security Scan Results

ℹ️ Note: Only vulnerabilities with available fixes (upgrades or patches) are counted toward thresholds.

Check TypeCount (with fixes)Without fixesThresholdResult
🔴 Critical Severity0010✅ Passed
🟠 High Severity0025✅ Passed
🟡 Medium Severity01500✅ Passed
🔵 Low Severity001000✅ Passed

⏱️ SLA Breach Summary

⚠️ Warning: The following vulnerabilities have exceeded their SLA thresholds (days since publication).

SeverityBreaches (with fixes)Breaches (no fixes)SLA Threshold (with/no fixes)Status
🔴 Critical0015 / 30 days✅ Passed
🟠 High0030 / 120 days✅ Passed
🟡 Medium0190 / 365 days⚠️ Warning
🔵 Low00180 / 365 days✅ Passed

ℹ️ Vulnerabilities Without Available Fixes (Informational Only)

The following vulnerabilities were detected but do not have fixes available (no upgrade or patch). These are excluded from failure thresholds:

  • Critical without fixes: 0
  • High without fixes: 0
  • Medium without fixes: 1
  • Low without fixes: 0

⚠️ BUILD PASSED WITH WARNINGS - SLA breaches detected for issues without available fixes

Consider reviewing these vulnerabilities when fixes become available.

@cs-raj

Copy link
Copy Markdown
ContributorAuthor

Hi @aniket-shikhare-cstk, thanks for the thorough review! Here's the status on each item. cc @netrajpatel

All "should fix" and README nit items are resolved in the latest commit (9eed5dab):

  • cli-asset-management pin updated to ~1.0.0
  • regex-validate README: stale 1.2.1 / node-v20.8.0 example updated to 2.0.0 / node-v22
  • content-type README: diagram image link updated to monorepo path ✓
  • Copilot's double-pipe ([-k <value> | | -a <value>]) fixed at source — removed phantom token-alias references from exclusive arrays in all 5 content-type commands, recompiled, and regenerated manifest + README ✓
  • bulk-operations "See code" links fixed via repositoryPrefix in oclif config ✓

Lockfile blocker — this is currently unresolvable on our end. The cli-plugins packages depend on @contentstack/cli-command@~2.0.0, @contentstack/cli-utilities@~2.0.0, etc., but those GA versions are not yet published on npm (only 2.0.0-beta.* exists). Running pnpm install fails with ERR_PNPM_NO_MATCHING_VERSION. We'll regenerate the lockfile as soon as the GA packages from the cli repo are published.

- apps-cli: update usage example from 2.0.0-beta.2/node-v18 to 2.0.0/node-v22
- export-to-csv: update usage example from 2.0.0-beta.9 to 2.0.0
- cli-tsgen: remove @beta from install command, update migration note to 5.0.0
- regex-validate: fix License badge to point to monorepo path
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
@github-actions

Copy link
Copy Markdown

🔒 Security Scan Results

ℹ️ Note: Only vulnerabilities with available fixes (upgrades or patches) are counted toward thresholds.

Check TypeCount (with fixes)Without fixesThresholdResult
🔴 Critical Severity0010✅ Passed
🟠 High Severity0025✅ Passed
🟡 Medium Severity01500✅ Passed
🔵 Low Severity001000✅ Passed

⏱️ SLA Breach Summary

⚠️ Warning: The following vulnerabilities have exceeded their SLA thresholds (days since publication).

SeverityBreaches (with fixes)Breaches (no fixes)SLA Threshold (with/no fixes)Status
🔴 Critical0015 / 30 days✅ Passed
🟠 High0030 / 120 days✅ Passed
🟡 Medium0190 / 365 days⚠️ Warning
🔵 Low00180 / 365 days✅ Passed

ℹ️ Vulnerabilities Without Available Fixes (Informational Only)

The following vulnerabilities were detected but do not have fixes available (no upgrade or patch). These are excluded from failure thresholds:

  • Critical without fixes: 0
  • High without fixes: 0
  • Medium without fixes: 1
  • Low without fixes: 0

⚠️ BUILD PASSED WITH WARNINGS - SLA breaches detected for issues without available fixes

Consider reviewing these vulnerabilities when fixes become available.

@aniket-shikhare-cstk

Copy link
Copy Markdown
Contributor

Hi @aniket-shikhare-cstk, thanks for the thorough review! Here's the status on each item. cc @netrajpatel

All "should fix" and README nit items are resolved in the latest commit (9eed5dab):

  • cli-asset-management pin updated to ~1.0.0
  • regex-validate README: stale 1.2.1 / node-v20.8.0 example updated to 2.0.0 / node-v22
  • content-type README: diagram image link updated to monorepo path ✓
  • Copilot's double-pipe ([-k <value> | | -a <value>]) fixed at source — removed phantom token-alias references from exclusive arrays in all 5 content-type commands, recompiled, and regenerated manifest + README ✓
  • bulk-operations "See code" links fixed via repositoryPrefix in oclif config ✓

Lockfile blocker — this is currently unresolvable on our end. The cli-plugins packages depend on @contentstack/cli-command@~2.0.0, @contentstack/cli-utilities@~2.0.0, etc., but those GA versions are not yet published on npm (only 2.0.0-beta.* exists). Running pnpm install fails with ERR_PNPM_NO_MATCHING_VERSION. We'll regenerate the lockfile as soon as the GA packages from the cli repo are published.

Thanks @cs-raj — fixes all confirmed on my end, and agreed the lockfile is just publish-ordering. Your plan works for me.

aniket-shikhare-cstk
aniket-shikhare-cstk previously approved these changes Aug 5, 2026
harshitha-cstk
harshitha-cstk previously approved these changes Aug 6, 2026
@github-actions

Copy link
Copy Markdown

🔒 Security Scan Results

ℹ️ Note: Only vulnerabilities with available fixes (upgrades or patches) are counted toward thresholds.

Check TypeCount (with fixes)Without fixesThresholdResult
🔴 Critical Severity0010✅ Passed
🟠 High Severity0025✅ Passed
🟡 Medium Severity00500✅ Passed
🔵 Low Severity001000✅ Passed

⏱️ SLA Breach Summary

✅ No SLA breaches detected. All vulnerabilities are within acceptable time thresholds.

SeverityBreaches (with fixes)Breaches (no fixes)SLA Threshold (with/no fixes)Status
🔴 Critical0015 / 30 days✅ Passed
🟠 High0030 / 120 days✅ Passed
🟡 Medium0090 / 365 days✅ Passed
🔵 Low00180 / 365 days✅ Passed

✅ BUILD PASSED - All security checks passed

@github-actions

Copy link
Copy Markdown

🔒 Security Scan Results

ℹ️ Note: Only vulnerabilities with available fixes (upgrades or patches) are counted toward thresholds.

Check TypeCount (with fixes)Without fixesThresholdResult
🔴 Critical Severity0010✅ Passed
🟠 High Severity0025✅ Passed
🟡 Medium Severity00500✅ Passed
🔵 Low Severity001000✅ Passed

⏱️ SLA Breach Summary

✅ No SLA breaches detected. All vulnerabilities are within acceptable time thresholds.

SeverityBreaches (with fixes)Breaches (no fixes)SLA Threshold (with/no fixes)Status
🔴 Critical0015 / 30 days✅ Passed
🟠 High0030 / 120 days✅ Passed
🟡 Medium0090 / 365 days✅ Passed
🔵 Low00180 / 365 days✅ Passed

✅ BUILD PASSED - All security checks passed

@github-actions

Copy link
Copy Markdown

🔒 Security Scan Results

ℹ️ Note: Only vulnerabilities with available fixes (upgrades or patches) are counted toward thresholds.

Check TypeCount (with fixes)Without fixesThresholdResult
🔴 Critical Severity0010✅ Passed
🟠 High Severity0025✅ Passed
🟡 Medium Severity00500✅ Passed
🔵 Low Severity001000✅ Passed

⏱️ SLA Breach Summary

✅ No SLA breaches detected. All vulnerabilities are within acceptable time thresholds.

SeverityBreaches (with fixes)Breaches (no fixes)SLA Threshold (with/no fixes)Status
🔴 Critical0015 / 30 days✅ Passed
🟠 High0030 / 120 days✅ Passed
🟡 Medium0090 / 365 days✅ Passed
🔵 Low00180 / 365 days✅ Passed

✅ BUILD PASSED - All security checks passed

harshitha-cstk
harshitha-cstk previously approved these changes Aug 7, 2026
@github-actions

Copy link
Copy Markdown

🔒 Security Scan Results

ℹ️ Note: Only vulnerabilities with available fixes (upgrades or patches) are counted toward thresholds.

Check TypeCount (with fixes)Without fixesThresholdResult
🔴 Critical Severity0010✅ Passed
🟠 High Severity0025✅ Passed
🟡 Medium Severity00500✅ Passed
🔵 Low Severity001000✅ Passed

⏱️ SLA Breach Summary

✅ No SLA breaches detected. All vulnerabilities are within acceptable time thresholds.

SeverityBreaches (with fixes)Breaches (no fixes)SLA Threshold (with/no fixes)Status
🔴 Critical0015 / 30 days✅ Passed
🟠 High0030 / 120 days✅ Passed
🟡 Medium0090 / 365 days✅ Passed
🔵 Low00180 / 365 days✅ Passed

✅ BUILD PASSED - All security checks passed

@cs-raj
cs-raj merged commit 75ce4d2 into v2-devAug 7, 2026
8 of 11 checks passed
@cs-raj
cs-raj deleted the chore/ga-version-bumps branch August 7, 2026 05:38
naman-contentstack pushed a commit that referenced this pull request Aug 7, 2026
chore: GA version bumps — promote all packages from beta to stable and update third-party deps
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

6 participants

@cs-raj@aniket-shikhare-cstk@netrajpatel@naman-contentstack@harshitha-cstk