Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
05b6a97
Moving legacy org reads to use BaseOrg but projected as the legacy fo…
jdalphond-mitre Aug 17, 2026
65fd1d4
Updating tests to cover moving to the compatibility layer. Also split…
jdalphond-mitre Aug 18, 2026
b2e49c4
Making test output readable
jdalphond-mitre Aug 18, 2026
8db4ab7
Moving user reads to BaseUser but projected as the legacy format
jdalphond-mitre Aug 18, 2026
61419dc
Move CVE-ID reads to BaseOrg and BaseUser
jdalphond-mitre Aug 18, 2026
fe40dbc
Move legacy Org create and update writes to BaseOrg ONLY
jdalphond-mitre Aug 18, 2026
ba7c82b
Move registry org writes and CNA authorization to BaseOrg.
jdalphond-mitre Aug 18, 2026
5805084
Use BaseOrg for CVE-ID updates and reservations
jdalphond-mitre Aug 18, 2026
6b953b1
Move onlyAdps, cnaMustOwnID, and CVE controller org lookups and autho…
jdalphond-mitre Aug 18, 2026
aefd529
Move CVE-ID reservation locking and quota checks to BaseOrg
jdalphond-mitre Aug 18, 2026
fdaaf73
Aggregate CVE-ID PUT responses from BaseOrg and BaseUser.Remove the o…
jdalphond-mitre Aug 18, 2026
cee8ec5
Removing stray console.logs
jdalphond-mitre Aug 19, 2026
c90916e
Fixing fragile cve-id in reserved state test.
jdalphond-mitre Aug 19, 2026
f48568c
Add legacy user write contract integration coverage
jdalphond-mitre Aug 19, 2026
ebcaab5
Remove legacy UserRepository dependency from BaseUser flows
jdalphond-mitre Aug 19, 2026
52c46e7
Drop ADMIN only when a registry user changes organization
jdalphond-mitre Aug 19, 2026
7ec65eb
Move CVE and CVE-ID audit lookups to BaseUser
jdalphond-mitre Aug 19, 2026
bbb30c0
Remove legacy User dual-writes from BaseOrg admin role updates
jdalphond-mitre Aug 19, 2026
1c9f6e3
Remove retired UserRepository factory support
jdalphond-mitre Aug 19, 2026
e3df28f
Remove legacy Org/User population and migration path
jdalphond-mitre Aug 19, 2026
079dd5c
Remove unused legacy org and user repositories
jdalphond-mitre Aug 31, 2026
ee37539
lint tests
jdalphond-mitre Aug 31, 2026
6416d94
Require active BaseUser status for authenticated requests
jdalphond-mitre Sep 8, 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
2 changes: 1 addition & 1 deletion .github/workflows/test-http.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Sleep
run: bash -c "while ! docker compose --file docker/docker-compose.yml logs --tail=10 cveawg | grep -q 'Serving on port'; do sleep 1; done"
- name: Load Data into MongoDb
run: docker compose -f docker/docker-compose.yml exec -T cveawg npm run populate:dev y; docker compose -f docker/docker-compose.yml exec -T cveawg npm run migrate:test-black-box
run: docker compose -f docker/docker-compose.yml exec -T cveawg npm run populate:dev y
- name: Run Black Box Tests
run: |
docker compose --file test-http/docker/docker-compose.yml exec -T demon pytest src/ | tee test-http/src/testOutput.txt
Expand Down
Loading
Loading