Skip to content

Draft: Add Go Modules lock file class

Leaminn Ma requested to merge add-go-modules-lock-file-class into master

What does this MR do and why?

Background

The Repository X-Ray is a tool that searches for dependency manager configuration files (aka "lock files") and then extracts a list of libraries from the content.

In #474306 (comment 2025085630), we decided to migrate the Repository X-Ray functionality into the GitLab Rails monolith. This gives us two main benefits: (i) it will eventually allow us to run the service outside of the CI pipeline, and (ii) we can maintain the parsing logic centrally so that other domains can utilize it.

Last MR

In !162313 (merged), we introduced the LockFiles::Base class where the intention is for each lock file type to be represented by a child class. The child class is to contain the parsing logic to extract a list of libraries and their versions from the file content.

This MR

In this MR, we introduce the GoModules lock file class that parses go.mod.

Resolves part of #476177.

MR acceptance checklist

Please evaluate this MR against the MR acceptance checklist. It helps you analyze changes to reduce risks in quality, performance, reliability, security, and maintainability.

Related to #476177

Edited by Leaminn Ma

Merge request reports