Skip to content

Commit eb7a223

Browse files
Merge branch 'main' into feature/AST-14824
2 parents ef89efc + b23df43 commit eb7a223

21 files changed

+200
-75
lines changed

.github/workflows/ast-cli-team-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
env:
3030
GH_TOKEN: ${{ secrets.AST_CLI_GH_TOKEN }}
3131
run: |
32-
gh api orgs/CheckmarxDev/teams/ast-sypher-team/members --jq '.[].login' > team_members.txt
32+
gh api orgs/Checkmarx/teams/ast-sypher-team/members --jq '.[].login' > team_members.txt
3333
echo "✅ Team members:"
3434
cat team_members.txt
3535

.github/workflows/delete-packages-and-releases.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ jobs:
3030
3131
echo "Deleting all npm packages whose name ends with '-${{inputs.tag}}.0'"
3232
33-
VERSION_IDS=($(curl -L -H "Accept: application/vnd.github+json" -H "Authorization: Bearer ${{ secrets.PERSONAL_ACCESS_TOKEN }}" -H "X-GitHub-Api-Version: 2022-11-28" https://api.github.com/orgs/CheckmarxDev/packages/npm/ast-cli-javascript-wrapper/versions | jq '.[]|select(.name | contains("-${{inputs.tag}}.0"))|.id'))
33+
VERSION_IDS=($(curl -L -H "Accept: application/vnd.github+json" -H "Authorization: Bearer ${{ secrets.PERSONAL_ACCESS_TOKEN }}" -H "X-GitHub-Api-Version: 2022-11-28" https://api.github.com/orgs/Checkmarx/packages/npm/ast-cli-javascript-wrapper/versions | jq '.[]|select(.name | contains("-${{inputs.tag}}.0"))|.id'))
3434
3535
for versionId in "${VERSION_IDS[@]}"
3636
do
3737
echo "Deleting version $versionId..."
38-
curl -L -X DELETE -H "Accept: application/vnd.github+json" -H "Authorization: Bearer ${{ secrets.PERSONAL_ACCESS_TOKEN }}" -H "X-GitHub-Api-Version: 2022-11-28" "https://api.github.com/orgs/CheckmarxDev/packages/npm/ast-cli-javascript-wrapper/versions/$versionId"
38+
curl -L -X DELETE -H "Accept: application/vnd.github+json" -H "Authorization: Bearer ${{ secrets.PERSONAL_ACCESS_TOKEN }}" -H "X-GitHub-Api-Version: 2022-11-28" "https://api.github.com/orgs/Checkmarx/packages/npm/ast-cli-javascript-wrapper/versions/$versionId"
3939
echo "Version $versionId deleted successfully!"
4040
done
4141

.github/workflows/nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ on:
1212

1313
jobs:
1414
nightly:
15-
uses: CheckmarxDev/ast-cli-javascript-wrapper/.github/workflows/release.yml@main
15+
uses: Checkmarx/ast-cli-javascript-wrapper/.github/workflows/release.yml@main
1616
secrets: inherit

.github/workflows/release.yml

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

4242
jobs:
4343
delete:
44-
uses: CheckmarxDev/ast-cli-javascript-wrapper/.github/workflows/delete-packages-and-releases.yml@main
44+
uses: Checkmarx/ast-cli-javascript-wrapper/.github/workflows/delete-packages-and-releases.yml@main
4545
with:
4646
tag: ${{ inputs.jsTag }}
4747
secrets: inherit
@@ -174,7 +174,7 @@ jobs:
174174
release_version: ${{ needs.release.outputs.TAG_NAME }}
175175
cli_release_version: ${{ needs.release.outputs.CLI_VERSION }}
176176
release_author: "Phoenix Team"
177-
release_url: https://github.com/CheckmarxDev/ast-cli-javascript-wrapper/releases/tag/${{ needs.release.outputs.TAG_NAME }}
177+
release_url: https://github.com/Checkmarx/ast-cli-javascript-wrapper/releases/tag/${{ needs.release.outputs.TAG_NAME }}
178178
jira_product_name: JAVASCRIPT_WRAPPER
179179
secrets: inherit
180180

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Add the following dependency:
4040

4141
```
4242
"dependencies": {
43-
"@checkmarxdev/ast-cli-javascript-wrapper": "{version}"
43+
"@checkmarx/ast-cli-javascript-wrapper": "{version}"
4444
}
4545
```
4646

@@ -86,7 +86,7 @@ setx PATH_TO_EXECUTABLE {value}
8686

8787
Checkmarx - AST Integrations Team
8888

89-
CxProject Link: [https://github.com/CheckmarxDev/ast-cli-javascript-wrapper](https://github.com/CheckmarxDev/ast-cli-javascript-wrapper)
89+
CxProject Link: [https://github.com/Checkmarx/ast-cli-javascript-wrapper](https://github.com/Checkmarx/ast-cli-javascript-wrapper)
9090

9191

9292
© 2021 Checkmarx Ltd. All Rights Reserved.

checkmarx-ast-cli.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.3.40
1+
2.3.41

package-lock.json

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

package.json

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "@CheckmarxDev/ast-cli-javascript-wrapper",
3-
"version": "0.0.146",
2+
"name": "@Checkmarx/ast-cli-javascript-wrapper",
3+
"version": "0.0.148",
44
"description": "AST CLI Javascript wrapper",
55
"main": "dist/main/wrapper/CxWrapper.js",
66
"typings": "dist/main/wrapper/CxWrapper.d.ts",
@@ -18,13 +18,13 @@
1818
"lint-and-fix": "eslint . --ext .ts --fix",
1919
"test": "copyfiles -u 1 src/tests/data/* dist/; tsc && jest"
2020
},
21-
"repository": "https://github.com/CheckmarxDev/ast-cli-javascript-wrapper.git",
21+
"repository": "https://github.com/Checkmarx/ast-cli-javascript-wrapper.git",
2222
"author": "Jay Nanduri",
2323
"license": "ISC",
2424
"bugs": {
25-
"url": "https://github.com/CheckmarxDev/ast-cli-javascript-wrapper/issues"
25+
"url": "https://github.com/Checkmarx/ast-cli-javascript-wrapper/issues"
2626
},
27-
"homepage": "https://github.com/CheckmarxDev/ast-cli-javascript-wrapper#readme",
27+
"homepage": "https://github.com/Checkmarx/ast-cli-javascript-wrapper#readme",
2828
"devDependencies": {
2929
"@types/jest": "^27.5.0",
3030
"@types/node": "^22.9.0",
@@ -39,7 +39,8 @@
3939
"typescript": "^5.6.3"
4040
},
4141
"overrides": {
42-
"bluebird": "3.7.2"
42+
"bluebird": "3.7.2",
43+
"debug": "^4.4.0"
4344
},
4445
"publishConfig": {
4546
"registry": "https://npm.pkg.github.com"

src/main/wrapper/CxConfig.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,5 @@ export class CxConfig {
77
apiKey: string;
88
tenant: string;
99
additionalParameters:string;
10+
agentName: string;
1011
}

src/main/wrapper/CxConstants.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,8 @@ export enum CxConstants {
117117
CMD_LEARN_MORE = "learn-more",
118118
IDE_SCANS_KEY = "scan.config.plugins.ideScans",
119119
AI_GUIDED_REMEDIATION_KEY = "scan.config.plugins.aiGuidedRemediation",
120+
STANDALONE_KEY = "scan.config.plugins.cxdevassist",
121+
ASSIST_KEY = "scan.config.plugins.cxoneassist",
120122
AI_MCP_SERVER_KEY = "scan.config.plugins.aiMcpServer",
121123
TELEMETRY = "telemetry",
122124
SUB_CMD_TELEMETRY_AI = "ai",

0 commit comments

Comments
 (0)