renovate/lib/modules/datasource
2022-05-23 10:30:43 +00:00
..
__snapshots__ refactor: lib/modules (#14488) 2022-03-04 09:04:02 +01:00
adoptium-java refactor: rename lookupName -> packageName (#14494) 2022-03-04 09:04:02 +01:00
artifactory refactor: rename lookupName -> packageName (#14494) 2022-03-04 09:04:02 +01:00
aws-machine-image test: enforce lint style rules (#15085) 2022-04-12 14:49:49 +00:00
bitbucket-tags test: enforce lint style rules (#15085) 2022-04-12 14:49:49 +00:00
cdnjs test: enforce lint style rules (#15085) 2022-04-12 14:49:49 +00:00
clojure feat(clojure): Enhanced support for deps.edn files (#15530) 2022-05-10 16:52:22 +02:00
conan fix(conan): lower case accept header for github (#15644) 2022-05-19 06:25:34 +02:00
conda refactor: rename lookupName -> packageName (#14494) 2022-03-04 09:04:02 +01:00
crate feat(datasource/crate): fetch crate metadata from crates.io (#15214) 2022-04-21 09:12:16 +00:00
dart test: enforce lint style rules (#15085) 2022-04-12 14:49:49 +00:00
docker fix(datasource:docker): use json request for auth check (#15693) 2022-05-23 10:30:43 +00:00
flutter-version test: enforce lint style rules (#15085) 2022-04-12 14:49:49 +00:00
galaxy refactor: more strict null checks (#15140) 2022-04-16 06:32:17 +00:00
galaxy-collection refactor: more strict null checks (#15140) 2022-04-16 06:32:17 +00:00
git-refs refactor(datasource): Make GitDatasource class abstract (#15629) 2022-05-18 11:56:59 +02:00
git-tags refactor(datasource): Make GitDatasource class abstract (#15629) 2022-05-18 11:56:59 +02:00
github-releases refactor: more strict null checks (#15140) 2022-04-16 06:32:17 +00:00
github-tags refactor: more strict null checks (#15140) 2022-04-16 06:32:17 +00:00
gitlab-packages refactor: more strict null checks (#15141) 2022-04-16 09:38:07 +02:00
gitlab-releases refactor: more strict null checks (#15141) 2022-04-16 09:38:07 +02:00
gitlab-tags refactor: more strict null checks (#15141) 2022-04-16 09:38:07 +02:00
go fix(datasource/go): fix parsing go-source and go-import without quotation (#15402) 2022-05-10 05:55:25 +00:00
golang-version refactor: more strict null checks (#15141) 2022-04-16 09:38:07 +02:00
gradle-version refactor: more strict null checks (#15141) 2022-04-16 09:38:07 +02:00
helm test: enforce lint style rules (#15085) 2022-04-12 14:49:49 +00:00
hex test: enforce lint style rules (#15085) 2022-04-12 14:49:49 +00:00
jenkins-plugins refactor: rename lookupName -> packageName (#14494) 2022-03-04 09:04:02 +01:00
maven fix(maven): Use correct snapshot URL in getDependencyInfo (#15380) 2022-05-13 18:29:35 +02:00
node refactor: lib/modules (#14488) 2022-03-04 09:04:02 +01:00
npm fix(npm): don't overwrite cached tags (#15500) 2022-05-07 18:19:53 +02:00
nuget test: deprecate old loads fixtures functions (#15539) 2022-05-11 07:19:34 +00:00
orb test: enforce lint style rules (#15085) 2022-04-12 14:49:49 +00:00
packagist refactor(datasources): strict null checks done (#15144) 2022-04-16 12:57:12 +01:00
pod fix(pod): Massage only registry URLs that matched the GitHub regex 2022-04-20 14:49:08 +02:00
pypi test: deprecate old loads fixtures functions (#15539) 2022-05-11 07:19:34 +00:00
repology refactor(datasources): strict null checks done (#15144) 2022-04-16 12:57:12 +01:00
ruby-version refactor(datasources): strict null checks done (#15144) 2022-04-16 12:57:12 +01:00
rubygems include original error message when raising new error while connecting to rubygems (#15154) 2022-04-26 10:37:09 +00:00
sbt-package refactor: rename lookupName -> packageName (#14494) 2022-03-04 09:04:02 +01:00
sbt-plugin test: enforce lint style rules (#15085) 2022-04-12 14:49:49 +00:00
terraform-module feat(datasource:terraform): use official api for custom registries (#15175) 2022-05-16 19:31:02 +00:00
terraform-provider feat(datasource:terraform): use official api for custom registries (#15175) 2022-05-16 19:31:02 +00:00
api.ts feat: add flutter-version datasource (#14743) 2022-03-29 04:09:16 +00:00
common.ts refactor: lib/modules (#14488) 2022-03-04 09:04:02 +01:00
datasource.spec.ts refactor: lib/modules (#14488) 2022-03-04 09:04:02 +01:00
datasource.ts refactor: lib/modules (#14488) 2022-03-04 09:04:02 +01:00
index.spec.ts refactor: lib/modules (#14488) 2022-03-04 09:04:02 +01:00
index.ts refactor(datasources): strict null checks done (#15144) 2022-04-16 12:57:12 +01:00
metadata-manual.ts fix: new Sharp package changelog location (#15406) 2022-05-02 20:20:20 +02:00
metadata.spec.ts test: enforce lint style rules (#15085) 2022-04-12 14:49:49 +00:00
metadata.ts refactor: rename lookupName -> packageName (#14494) 2022-03-04 09:04:02 +01:00
readme.md docs: replace encounter with find (#14694) 2022-03-16 14:54:45 +01:00
types.ts refactor(datasources): strict null checks done (#15144) 2022-04-16 12:57:12 +01:00

Datasources

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

Follow the class-based programming style

New datasources must follow the class-based programming style. Use the adoptium-java datasource as a reference.

Add the datasource to the API in api.ts so that the new datasource is usable. If you find Pending mocks! errors in the Jest tests and your mocked URLs are correct, ensure the datasource is correctly registered.

getReleases

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

The config has:

  • packageName: the package's full name including scope if present (e.g. @foo/bar)
  • registryUrls: an array of registry Urls to try

getReleases should return an object having:

  • 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, has the same fields as getReleases
  • 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.