0
0
mirror of https://github.com/renovatebot/renovate.git synced 2024-09-07 22:52:14 +00:00
renovatebot_renovate/lib/data
2024-09-02 08:47:13 +00:00
..
changelog-urls.json refactor(lib/data): move metadata-manual to lib/data (#30260) 2024-07-30 13:04:32 +00:00
monorepo.json feat(monorepo): Add lerna-lite repository (#31150) 2024-09-02 08:47:13 +00:00
readme.md refactor(lib/data): move metadata-manual to lib/data (#30260) 2024-07-30 13:04:32 +00:00
replacements.json feat(replacements): add eslint-plugin-eslint-comments replacement (#31103) 2024-08-30 04:50:49 +00:00
source-urls.json refactor(lib/data): move metadata-manual to lib/data (#30260) 2024-07-30 13:04:32 +00:00

Introduction

The lib/data folder has all our crowdsourced data files. This readme explains what each file is used for.

Summary

File What is the file about?
monorepo.json Group related packages into a single PR.
replacements.json Rename old packages to new replacement.
changelog-urls.json Tell Renovate where to find changelogs.
source-urls.json Tell Renovate the source URL of packages.

The monorepo.json file has all the monorepo presets.

Monorepo presets group related packages, so they are updated with a single Renovate PR.

Ways to group packages

There are three ways to group packages:

Group packages Method
From the same source repository. repoGroups
From the same organization. orgGroups
Based on name patterns or prefixes. patternGroups

Rename old packages (replacements.json)

The replacements.json file has all the replacement presets.

When a package gets renamed, you need to tell Renovate:

  • the datasource of the package -> matchDatasources
  • the old package name -> matchPackageNames
  • the new package name -> replacementName
  • the last version available for the old package name -> matchCurrentVersion
  • the first version available for the new package name -> replacementVersion

Example:

{
  "matchCurrentVersion": ">=3.10.3",
  "matchDatasources": ["npm"],
  "matchPackageNames": [
    "apollo-server",
    "apollo-server-core",
    "apollo-server-express"
  ],
  "replacementName": "@apollo/server",
  "replacementVersion": "4.0.0"
}

Tell Renovate where to find changelogs (changelog-urls.json)

The changelog-urls.json has all the changelog information.

Renovate nearly always finds, and displays, the changelog for a package update automatically.

Usually, the API for the package to be updated gives Renovate the correct info. If this does not happen, for whatever reason, Renovate can not show the changelog.

You can use these config options to let Renovate find the correct changelog:

Read the Renovate docs, key concepts page for changelogs to learn more about how Renovate fetches and displays changelogs.

To locate the changelogs, Renovate requires:

  • the name of the package (packageName)
  • the datasource of the package
  • the URL to the changelog file (changelogUrl)

Example: For the zone.js package, the changelog URL is https://github.com/angular/angular/blob/master/packages/zone.js/CHANGELOG.md. This will be added to the npm group in the changelog-urls.json file since the package's datasource is npm.

Tell Renovate where to find source urls (source-urls.json)

The source-urls.json has the information on source URL of multiple packages.

Renovate nearly always finds, and displays, the source for a package update automatically. Usually, the API for the package to be updated gives Renovate the correct info. If this does not happen, for whatever reason, Renovate can not link to the source of the package and might not be able to lookup changelogs.

To check if Renovate can find the source URLs for your package:

  1. Find the datasource for your package.
  2. Read the Renovate docs for the datasource.
  3. Look for a table in the docs that shows if the datasource returns source URLs.

If Renovate does not find the right source URls automatically: use the sourceUrl config option.

To locate the source repository, Renovate requires:

  • the name of the package (packageName)
  • the datasource of the package
  • the URL to the source repository (sourceUrl)

Example: The source URL for the repository cypress-io/cypress is https://github.com/cypress-io/cypress. This will be added to the orb group in the source-urls.json file since the package's datasource is orb.