Skip to content

Commit 93babb7

Browse files
committed
fix: export clearProgressModuleSetting function from utilities index
1 parent e510cdc commit 93babb7

File tree

25 files changed

+242
-101
lines changed

25 files changed

+242
-101
lines changed

.github/workflows/release-beta.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -365,4 +365,12 @@ jobs:
365365
env:
366366
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
367367
VERSION: ${{ steps.publish-core.outputs.version }}
368-
run: gh release create v"$VERSION" --title "Beta Release $VERSION" --generate-notes --prerelease
368+
run: |
369+
# Get the previous beta release for comparison
370+
PREVIOUS_BETA=$(gh release list --limit 10 | grep 'beta' | head -1 | cut -f1)
371+
372+
if [ -n "$PREVIOUS_BETA" ]; then
373+
gh release create v"$VERSION" --title "Beta Release $VERSION" --notes-from-tag "$PREVIOUS_BETA" --prerelease
374+
else
375+
gh release create v"$VERSION" --title "Beta Release $VERSION" --generate-notes --prerelease
376+
fi

package-lock.json

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

packages/contentstack-audit/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
],
2020
"dependencies": {
2121
"@contentstack/cli-command": "~1.6.1",
22-
"@contentstack/cli-utilities": "~1.14.3",
22+
"@contentstack/cli-utilities": "~1.15.0",
2323
"@oclif/core": "^4.3.0",
2424
"@oclif/plugin-help": "^6.2.28",
2525
"@oclif/plugin-plugins": "^5.4.38",

packages/contentstack-auth/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
},
2424
"dependencies": {
2525
"@contentstack/cli-command": "~1.6.1",
26-
"@contentstack/cli-utilities": "~1.14.3",
26+
"@contentstack/cli-utilities": "~1.15.0",
2727
"@oclif/core": "^4.3.0",
2828
"@oclif/plugin-help": "^6.2.28",
2929
"otplib": "^12.0.1"

packages/contentstack-bootstrap/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ $ npm install -g @contentstack/cli-cm-bootstrap
1515
$ csdx COMMAND
1616
running command...
1717
$ csdx (--version)
18-
@contentstack/cli-cm-bootstrap/2.0.1-beta darwin-arm64 node-v22.14.0
18+
@contentstack/cli-cm-bootstrap/2.0.0-beta.1 darwin-arm64 node-v22.14.0
1919
$ csdx --help [COMMAND]
2020
USAGE
2121
$ csdx COMMAND

packages/contentstack-bootstrap/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-cm-bootstrap",
33
"description": "Bootstrap contentstack apps",
4-
"version": "2.0.1-beta",
4+
"version": "2.0.0-beta.1",
55
"author": "Contentstack",
66
"bugs": "https://github.com/contentstack/cli/issues",
77
"scripts": {
@@ -16,9 +16,9 @@
1616
"test:report": "nyc --reporter=lcov mocha \"test/**/*.test.js\""
1717
},
1818
"dependencies": {
19-
"@contentstack/cli-cm-seed": "~2.0.1-beta",
19+
"@contentstack/cli-cm-seed": "~2.0.0-beta.1",
2020
"@contentstack/cli-command": "~1.6.1",
21-
"@contentstack/cli-utilities": "~1.14.3",
21+
"@contentstack/cli-utilities": "~1.15.0",
2222
"@oclif/core": "^4.3.0",
2323
"@oclif/plugin-help": "^6.2.28",
2424
"inquirer": "8.2.6",

packages/contentstack-branches/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"@contentstack/cli-command": "~1.6.1",
99
"@oclif/core": "^4.3.0",
1010
"@oclif/plugin-help": "^6.2.28",
11-
"@contentstack/cli-utilities": "~1.14.3",
11+
"@contentstack/cli-utilities": "~1.15.0",
1212
"chalk": "^4.1.2",
1313
"just-diff": "^6.0.2",
1414
"lodash": "^4.17.21"

0 commit comments

Comments
 (0)