API enhancements

  • Added ability to sort projects (api/projects) by the createdAt field.

  • Added the ability to filter to the api/projects endpoint for projects created before/after a date.

  • Added the API for displaying vulnerability matches as part of the Vulnerability Impact Analysis feature.

    GET /api/projects/{projectId}/versions/{projectVersionId}/vulnerabilities/{vulnerabilityId}/vulnerability-matches

  • Added the following BOM endpoints:
    • Get BOM status summary:

      GET /api/projects/{projectId}/versions/{projectVersionId}/bom-status

    • List a BOM's events:

      GET /api/projects/{projectId}/versions/{projectVersionId}/bom-events

    • Delete a failed BOM event:

      DELETE /api/projects/{projectId}/versions/{projectVersionId}/bom-events/{bomEventId}

    • Delete all failed events from a BOM:

      DELETE /api/projects/{projectId}/versions/{projectVersionId}/bom-events

  • New password settings endpoints:
    • Get password settings:

      GET /api/password/security/settings

    • Get system password settings:

      GET /api/password/management/settings

    • Update system password settings:

      PUT /api/password/management/settings

    • Validate password:

      POST /api/password/security/validate

  • The /api/catalog-risk-profile-dashboard API now returns HTTP 404 (Not Found).