-
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
Open
chojuninengu
wants to merge
19
commits into
main
Choose a base branch
from
feat/cve-sync-and-config
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
19 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 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