Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
9e104f5
feat: add Gradle parser feature branch
cx-anurag-dalke Apr 7, 2026
e346282
feat: update Gradle parser and add implementation plan
cx-anurag-dalke Apr 7, 2026
08862c0
updated gradle-parser
cx-anurag-dalke Apr 10, 2026
6ac456b
added support for gradle libs.versions.toml
cx-anurag-dalke Apr 11, 2026
bd0e3a8
Add CLAUDE.md with architecture and contract notes
cx-anurag-dalke Apr 20, 2026
1783146
updated readme file
cx-anurag-dalke Apr 20, 2026
99900f9
Merge feature/AST-148815: bring in CLAUDE.md, keep gradle README
cx-atish-jadhav May 11, 2026
70eb4a5
docs: expand CLAUDE.md to meet JIRA epic template requirements
cx-atish-jadhav May 11, 2026
65f9b14
Add SBT (Scala Build Tool) manifest parser support
cx-anurag-dalke Apr 13, 2026
e69e27a
Fix gradle 0-based line contract and harden parsers for downstream ID…
cx-atish-jadhav May 15, 2026
fedb146
Merge Python parsers and fix Windows CRLF EndIndex bug
cx-atish-jadhav Jun 1, 2026
badc164
gradle and sbt wildcard support
cx-atish-jadhav Jun 8, 2026
aafaf4c
adding sha for checkout actions
cx-atish-jadhav Jun 8, 2026
6b5ebcc
Using correct sha for cehckout actions in release.yml
cx-atish-jadhav Jun 8, 2026
a264fda
log removal and minor fixes
cx-atish-jadhav Jun 11, 2026
9e71353
Support Android flavor/buildtype dependency configurations in Gradle …
cx-atish-jadhav Jun 25, 2026
17cc092
Changes test data location for pypi-parser tests
cx-atish-jadhav Jun 26, 2026
90ad9f5
review comments implemented
cx-atish-jadhav Jun 26, 2026
08a2201
Merge branch 'main' into feature/parser-expansion
cx-atish-jadhav Jun 26, 2026
766e394
replaced action with gh command
cx-atish-jadhav Jun 26, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ jobs:
runs-on: cx-public-ubuntu-x64
steps:
- name: Checkout the repository
uses: actions/checkout@1e31de5234b9f8995739874a8ce0492dc87873e2 #v4.0.0
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Set up Go version
uses: actions/setup-go@4d34df0c2316fe8122ab82dc22947d607c0c91f9 #v4
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
with:
go-version-file: go.mod
- run: go version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cxone-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ jobs:
cx_tenant: ${{ secrets.AST_RND_SCANS_TENANT }}
cx_client_id: ${{ secrets.AST_RND_SCANS_CLIENT_ID }}
cx_client_secret: ${{ secrets.AST_RND_SCANS_CLIENT_SECRET }}
additional_params: --tags phoenix --threshold "sca-critical=1;sca-high=1;sca-medium=1;sca-low=1;sast-critical=1;sast-high=1;sast-medium=1;sast-low=1;iac-security-critical=1;iac-security-high=1;iac-security-medium=1;iac-security-low=1"
additional_params: --tags sypher --threshold "sca-critical=1;sca-high=1;sca-medium=1;sca-low=1;sast-critical=1;sast-high=1;sast-medium=1;sast-low=1;iac-security-critical=1;iac-security-high=1;iac-security-medium=1;iac-security-low=1"
18 changes: 10 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,17 +58,19 @@ jobs:

- name: Create and push Git tag
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git config user.name "${{ github.actor }}"
git config user.email "${{ github.actor_id }}+${{ github.actor }}@users.noreply.github.com"
git tag "${{ env.new_version }}" -m "Release ${{ env.new_version }}"
git push origin "${{ env.new_version }}"

- name: Create GitHub Release
uses: actions/create-release@0cb9c9b65d5d1901c1f53e5e66eaf4afd303e70e # v1.1.4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ env.new_version }}
release_name: Release ${{ env.new_version }}
draft: false
prerelease: ${{ github.event.inputs.prerelease }}
run: |
prerelease_flag=""
if [ "${{ github.event.inputs.prerelease }}" = "true" ]; then
prerelease_flag="--prerelease"
fi
gh release create "${{ env.new_version }}" \
--title "Release ${{ env.new_version }}" \
$prerelease_flag
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ vendor/
# IDEs and editors
.idea/
.vscode/
.claude/
*.swp

# OS files
Expand Down
262 changes: 262 additions & 0 deletions CLAUDE.md

Large diffs are not rendered by default.

Loading
Loading