-
Notifications
You must be signed in to change notification settings - Fork 0
feat: complete Phase 2 - API server, Dashboard, and CVE sync #5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 11 commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
4b94c20
feat: implement CVE synchronization module, database schema, and enha…
chojuninengu 13a8c80
feat: implement scan history page, enable settings navigation, and ad…
chojuninengu f549a1b
feat: add manual refresh and error handling to scan history UI, incre…
chojuninengu ccdb699
feat: implement dynamic AI model fetching and configuration in the se…
chojuninengu b0a5718
feat: implement document scanning integration, add configurable API U…
chojuninengu df0f513
feat: add Zenvra sidebar webview for scanner interface and command ma…
chojuninengu 090bd2d
feat: add settings navigation command and update extension activation…
chojuninengu a754524
chore: bump version to v0.1.1-rc.2 with SSE real-time streaming
chojuninengu 9ea9fee
feat: add success notification and active configuration badge to AI s…
chojuninengu fe140bf
refactor: implement shared AI configuration store and add SSE replay …
chojuninengu 9f9ce16
feat: implement OSV sync service, add dynamic API base URL configurat…
chojuninengu 7253d4d
style: apply consistent code formatting and cleanup across multiple c…
chojuninengu 0c20bdc
refactor: improve error handling type safety and add keyed each block…
chojuninengu 37b85bb
refactor: update eslint config for svelte files and improve type safe…
chojuninengu 5acb8c7
fix: resolve lint errors, improve OSV sync, and finalize CI/CD
chojuninengu 31932d2
fix(vscode): resolve lint errors and packaging issues
chojuninengu 0b7c343
fix: resolve final lint errors in web and vscode
chojuninengu c9ecbb2
refactor: improve error handling, add JSON validation for NVD sync, u…
chojuninengu 2f34dee
feat: implement workspace scanning with real-time SSE updates and add…
chojuninengu 4fad9e9
chore: add env config guide and verify SAST engine end-to-end
chojuninengu fc003d0
fix: resolve security audit failures and update dependencies
chojuninengu 1f73707
fix: update dependencies to resolve npm audit vulnerabilities
chojuninengu 33d87a3
Changes before error encountered
Copilot dd8e5e8
feat: Phase 3 polish - live dashboard, explanation persistence, works…
Copilot 5ca0757
refactor: extract none_if_empty helper and RESULTS_CACHE_TTL_SECS con…
Copilot 08d77ca
Merge pull request #6 from Cameroon-Developer-Network/copilot/verify-…
chojuninengu File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -32,3 +32,4 @@ coverage | |
| .idea | ||
| *.swp | ||
| *.swo | ||
| deploy-ghcr.sh | ||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Potential
:latesttag conflict with release.yml.Both this deploy job and the
docker-publishjob inrelease.ymlpush:latesttags to the same image names (ghcr.io/${{ github.repository }}-api:latestand-web:latest). When a release tag is pushed tomain, both workflows may run concurrently, causing race conditions on the:latesttag.Consider one of these approaches:
:mainor:edge) to distinguish CI builds from releases:latesttag push from one of the workflowsOption 1: Use distinct tag for CI builds
- name: Build and push API (latest) uses: docker/build-push-action@v5 with: context: . file: crates/server/Dockerfile push: true - tags: ghcr.io/${{ github.repository }}-api:latest + tags: ghcr.io/${{ github.repository }}-api:edge cache-from: type=gha cache-to: type=gha,mode=max - name: Build and push Web (latest) uses: docker/build-push-action@v5 with: context: ./apps/web push: true - tags: ghcr.io/${{ github.repository }}-web:latest + tags: ghcr.io/${{ github.repository }}-web:edge cache-from: type=gha cache-to: type=gha,mode=max🤖 Prompt for AI Agents