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
08a7c60
Moving legacy org reads to use BaseOrg but projected as the legacy fo…
jdalphond-mitre Aug 17, 2026
73c31a7
Updating tests to cover moving to the compatibility layer. Also split…
jdalphond-mitre Aug 18, 2026
a6cedb7
Making test output readable
jdalphond-mitre Aug 18, 2026
ffbb5d9
Moving user reads to BaseUser but projected as the legacy format
jdalphond-mitre Aug 18, 2026
9f3b4b3
Move CVE-ID reads to BaseOrg and BaseUser
jdalphond-mitre Aug 18, 2026
8b83f32
Move legacy Org create and update writes to BaseOrg ONLY
jdalphond-mitre Aug 18, 2026
c1f1fd1
Move registry org writes and CNA authorization to BaseOrg.
jdalphond-mitre Aug 18, 2026
a144f58
Use BaseOrg for CVE-ID updates and reservations
jdalphond-mitre Aug 18, 2026
935264b
Move onlyAdps, cnaMustOwnID, and CVE controller org lookups and autho…
jdalphond-mitre Aug 18, 2026
f79e4af
Move CVE-ID reservation locking and quota checks to BaseOrg
jdalphond-mitre Aug 18, 2026
131fdb2
Aggregate CVE-ID PUT responses from BaseOrg and BaseUser.Remove the o…
jdalphond-mitre Aug 18, 2026
997df47
Removing stray console.logs
jdalphond-mitre Aug 19, 2026
748b671
Fixing fragile cve-id in reserved state test.
jdalphond-mitre Aug 19, 2026
0ea14e5
Add legacy user write contract integration coverage
jdalphond-mitre Aug 19, 2026
83b2966
Remove legacy UserRepository dependency from BaseUser flows
jdalphond-mitre Aug 19, 2026
c14b834
Drop ADMIN only when a registry user changes organization
jdalphond-mitre Aug 19, 2026
e9dc70e
Move CVE and CVE-ID audit lookups to BaseUser
jdalphond-mitre Aug 19, 2026
11a7547
Remove legacy User dual-writes from BaseOrg admin role updates
jdalphond-mitre Aug 19, 2026
cae7f15
Remove retired UserRepository factory support
jdalphond-mitre Aug 19, 2026
f0f5ff6
Remove legacy Org/User population and migration path
jdalphond-mitre Aug 19, 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