Skip to content
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

refactor: vulnerability exposure tab #2064

Merged
merged 21 commits into from
Oct 1, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
d89d017
fix: force delete and cascade delete in case of helm apps and handle …
arunjaindev Sep 12, 2024
0d90ffc
feat: add comment for removing check 422
arunjaindev Sep 12, 2024
7420074
fix: sonarcloud issues
arunjaindev Sep 12, 2024
29e0f53
Merge branch 'develop' into fix/force-delete-helm
arunjaindev Sep 13, 2024
47fc942
feat: use search params in delete helm app api
arunjaindev Sep 17, 2024
b276b1e
Merge branch 'develop' of https://github.com/devtron-labs/dashboard i…
arunjaindev Sep 17, 2024
508b25a
fix: call delete api with updated url
arunjaindev Sep 17, 2024
34458a1
refactor: check cve policy
arunjaindev Sep 18, 2024
5b13dbf
feat: add types for payload and return type for cve list api
arunjaindev Sep 19, 2024
673dcbb
feat: add fallback in api service for cve exposure list
arunjaindev Sep 19, 2024
e8f7f4e
feat: extract cve list and filters from vulnerability exposure
arunjaindev Sep 20, 2024
198e488
Merge pull request #2072 from devtron-labs/feat/check-cve-list
arunjaindev Sep 20, 2024
41b5885
Merge branch 'develop' of https://github.com/devtron-labs/dashboard i…
arunjaindev Sep 25, 2024
05a650d
Merge branch 'develop' of https://github.com/devtron-labs/dashboard i…
arunjaindev Sep 25, 2024
22fcf1b
Merge branch 'refactor/vulnerability-exposure' of https://github.com/…
arunjaindev Sep 25, 2024
e7f2c07
chore: version bump
arunjaindev Sep 25, 2024
99bcb50
Merge branch 'develop' of https://github.com/devtron-labs/dashboard i…
arunjaindev Sep 30, 2024
d8e096b
fix: deployment app type is always set as helm in chart values view
arunjaindev Sep 30, 2024
f704d03
Merge branch 'develop' of https://github.com/devtron-labs/dashboard i…
arunjaindev Oct 1, 2024
b7a9660
Merge branch 'refactor/vulnerability-exposure' of https://github.com/…
arunjaindev Oct 1, 2024
4c667e2
Merge pull request #2049 from devtron-labs/fix/force-delete-helm
arunjaindev Oct 1, 2024
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
1 change: 0 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,6 @@ src/components/security/SecurityPolicyEdit.tsx
src/components/security/SecurityPolicyEnvironment.tsx
src/components/security/SecurityPolicyGlobal.tsx
src/components/security/UpdateSeverityModal.tsx
src/components/security/VulnerabilityExposure.tsx
src/components/security/security.service.ts
src/components/security/security.util.tsx
src/components/terminal/TerminalWrapper.tsx
Expand Down
2 changes: 1 addition & 1 deletion src/components/security/SecurityPoliciesTab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import { SecurityPolicyGlobal } from './SecurityPolicyGlobal'
import { SecurityPolicyCluster } from './SecurityPolicyCluster'
import { SecurityPolicyApp } from './SecurityPolicyApp'
import { SecurityPolicyEnvironment } from './SecurityPolicyEnvironment'
import { VulnerabilityExposure } from './VulnerabilityExposure'
import VulnerabilityExposure from './VulnerabilityExposure'

export class SecurityPoliciesTab extends Component<RouteComponentProps<{}>> {
renderRouter() {
Expand Down
Loading
Loading