Go Datasource¶
Table of values¶
Name | Value | Notes |
---|---|---|
Identifier | go |
|
Default versioning | semver |
|
Custom registry support | No | |
Release timestamp support | Yes | If the release timestamp is not returned from the respective datasoure used to fetch the releases, then Renovate uses the Time field in the results instead. |
Source URL support | Yes | The source URL is determined from the packageName and registryUrl . |
Description¶
The best way to lookup Go Modules is using Go proxies.
GOPROXY settings¶
This datasource will use default GOPROXY
settings of https://proxy.golang.org,direct
if the environment variable is unset.
To override this default and use a different proxy in self-hosted environments, configure GOPROXY
to an alternative setting in env.
To override this default and stop using any proxy at all, set GOPROXY
to the value direct
.
Pseudo versions¶
Go proxies return an empty list of versions when queried (@v/list
) for a package which uses pseudo versions, but return the latest pseudo-version when queried for @latest
.
If the @latest
endpoint returns a pseudo-version, and the release list is empty, then this datasource will return the latest pseudo-version as the only release/version for the package.
Checking for new major releases¶
When a Go proxy is queried for @v/list
it returns only versions for v0 or v1 of a package.
Therefore Renovate will also query @v2/list
just in case there also exists a v2 of the package.
Similarly, if the dependency is already on a higher version such as v5
, Renovate will check in case higher major versions exist.
You do not need to be worried about any 404 responses which result from such checks - they are the only way for Renovate to know if newer major releases exist.
Fallback to direct lookups¶
If no result is found from Go proxy lookups then Renovate will fall back to direct lookups.
Default configuration¶
{
"commitMessageTopic": "module {{depName}}"
}
Open items¶
The below list of features and bugs were current when this page was generated on November 17, 2024.
Feature requests¶
- Support GOINSECURE #28513
- Feature Request: gomod support for deprecated modules #27478
- Ignore retracted versions of go dependencies #13012