You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

DRAFT

Context

The Sling Starter GitHub module is mainly a bill of materials, listing all dependencies that should be included in the final build. Updating these dependencies manually is tedious and time-consuming. With the CI checks we have in place, we are already able to validate most dependency updates without the need to manually verify the behaviour of the Sling Starter.

Dependencies in the Sling Starter are specified using the Sling/OSGi feature model, which are not currently supported by automatic dependency update tools

Scope

This document will propose:

  1. A tool that will be used to generate automatic dependency updates for the Sling Starter
  2. A policy for automatic updates that can be reused for projects similar to the Sling Starter

Tool selection

Two major dependency updates tools have been considered:

Dependabot is currently enabled for the apache  org on GitHub and generating updates. See also Dependabot . At this time ( )  the Dependabot project does not accept contributions for new ecosystems - https://github.com/dependabot/dependabot-core#contributing-to-dependabot . Since it does not support the OSGi feature model natively, it is not usable in the scope of this proposal.

Renovate is not enabled for the whole apache  github org, but at least one project is using it: Unable to render Jira issues macro, execution error. . In that setup, Renovate forks the repositories and only requires read permissions. There is an open pull request that adds OSGi feature model support to the renovate app: https://github.com/renovatebot/renovate/pull/19282 .

Proposal: use renovate.

Update policy

As discussed at large in Dependabot, not all automatic updates are welcome. Dependabot permits a more strict filtering of updates through the renovate.json  file. A sample policy for the Sling Starter is


{
  "$schema": "https://docs.renovatebot.com/renovate-schema.json",
  "extends": [
    "config:base"
  ],
  "enabledManagers": ["osgifeature", "regex", "maven"],
  "regexManagers": [
    {
      "fileMatch": ["pom.xml"],
      "matchStrings": ["<jackson.version>(?<currentValue>.*?)</jackson.version>\\n"],
      "depNameTemplate": "com.fasterxml.jackson.core:jackson-core",
      "datasourceTemplate": "maven"
    }
  ],
  "packageRules": [
    {
      "matchManagers": ["maven"],
      "matchDepTypes": ["provided"],
      "enabled": false
    }
  ]
}


  • No labels