renovate/lib/datasource
2019-02-08 16:03:26 +01:00
..
cargo feat: replace purl with datasource (#3154) 2019-02-04 09:41:22 +01:00
docker refactor(docker): include dockerRegistry, dockerRepository in results 2019-02-08 16:03:26 +01:00
github feat: replace purl with datasource (#3154) 2019-02-04 09:41:22 +01:00
gitlab tests: fix gitlab datasource test coverage 2019-01-04 09:36:48 +01:00
go fix(golang): handle github names with version in path 2019-02-06 17:06:59 +01:00
gradle-version feat: got wrapper (#3159) 2019-02-03 19:53:44 +01:00
hex feat: add "hex" datasource (Elixir/Erlang) (#3167) 2019-02-08 14:13:36 +01:00
maven refactor(maven): unify depName between Maven and Gradle (#3179) 2019-02-06 17:40:29 +01:00
npm feat: replace purl with datasource (#3154) 2019-02-04 09:41:22 +01:00
nuget feat: replace purl with datasource (#3154) 2019-02-04 09:41:22 +01:00
orb feat: replace purl with datasource (#3154) 2019-02-04 09:41:22 +01:00
packagist feat: replace purl with datasource (#3154) 2019-02-04 09:41:22 +01:00
pypi feat(python): add simple endpoint support (#3125) 2019-02-07 08:56:02 +01:00
ruby-version feat: got wrapper (#3159) 2019-02-03 19:53:44 +01:00
rubygems feat: replace purl with datasource (#3154) 2019-02-04 09:41:22 +01:00
terraform feat: replace purl with datasource (#3154) 2019-02-04 09:41:22 +01:00
index.js feat: add "hex" datasource (Elixir/Erlang) (#3167) 2019-02-08 14:13:36 +01:00
metadata.js fix: trim urls from getPkgReleases 2019-02-04 21:49:49 +01:00
readme.md feat: replace purl with datasource (#3154) 2019-02-04 09:41:22 +01:00

Datasources

Datasources are used in Renovate primarily to fetch released versions of packages.

getPkgReleases

The minimum exported interface for a datasource is a function called getPkgReleases that takes a lookup config as input.

The config contains:

  • lookupName: the package's full name including scope if present (e.g. @foo/bar)
  • lookupType: used only when there is a need to specify different types of lookups within the same datasource
  • registryUrls: an array of registry Urls to try

getPkgReleases should return an object containing:

  • releases: an array of strings of matched versions. This is the only mandatory field.
  • deprecationMessage: a string description of the package's deprecation notice, if applicable
  • sourceUrl: a HTTP URL pointing to the source code (e.g. on GitHub)
  • homepage: a HTTP URL for the package's homepage. Ideally should be empty if the homepage and sourceUrl are the same
  • changelogUrl: a URL pointing to the package's Changelog (could be a markdown file, for example). If not present then Renovate will search the sourceUrl for a changelog file.
  • tags: an object mapping tag -> version, e.g. tags: { latest: '3.0.0' }. This is only used by the followTags function.

getDigest

Datasources that support the concept of digests (e.g. docker digests and git commit hashes) also can export a getDigest function.

The getDigest function has two inputs:

  • config: the Renovate config for the package being updated, contains same fields as getPkgReleases
  • newValue: the version or value to retrieve the digest for

The getDigest function returns a string output representing the digest value. If none is found then a return value of null should be returned.

getPreset

This function is supported by npm, github and gitlab for retrieving a Renovate preset.