Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: update supportPolicy table #9680

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 5 additions & 5 deletions docs/usage/node.md
Expand Up @@ -30,18 +30,18 @@ When Renovate processes your project's repository it will look for the files lis

## Configuring Support Policy

Renovate supports a [`supportPolicy`](/configuration-options/#supportpolicy) option that can be passed the following values and associated versions (current as of Feb 2021):
Renovate supports a [`supportPolicy`](/configuration-options/#supportpolicy) option that can be passed the following values and associated versions (current as of April 2021):

**Default:** `lts`

| supportPolicy | versions | description |
| ------------- | -------------- | -------------------------------------------------------- |
| all | 10, 12, 14, 15 | All releases that have not passed their end date |
| lts | 10, 12, 14 | All releases classified as LTS, including in maintenance |
| active | 14, 15 | All releases not in maintenance |
| all | 12, 14, 15, 16 | All releases that have not passed their end date |
| lts | 12, 14 | All releases classified as LTS, including in maintenance |
| active | 14, 16 | All releases not in maintenance |
| lts_active | 14 | All releases both LTS and active |
| lts_latest | 14 | The latest LTS release |
| current | 15 | The latest release from "all" |
| current | 16 | The latest release from "all" |

The version numbers associated with each support policy will be updated as new versions of Node.js are released, moved to LTS or maintenance, etc.

Expand Down