npm min release age#3907
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Updates dependency/tooling configuration to delay very new releases and to move the repository’s Node.js/npm baseline forward for local development and CI.
Changes:
- Add Renovate
minimumReleaseAgeto delay updates until releases are at least 2 days old. - Raise the required npm version in
package.jsonand enforceengine-strictvia.npmrc. - Bump GitHub Actions workflows to run on Node.js
24.x.
Reviewed changes
Copilot reviewed 10 out of 10 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| renovate.json | Adds a global Renovate minimum release age; keeps an npm version constraint. |
| package.json | Updates engines.npm requirement to >=11.0.0. |
| .npmrc | Enforces engine strictness and adds a min-release-age setting. |
| .github/workflows/tests.yml | Updates CI jobs to use Node 24.x. |
| .github/workflows/release.yml | Updates release workflows to use Node 24.x. |
| .github/workflows/pages.yml | Updates Pages workflow to use Node 24.x. |
| .github/workflows/pages-deploy.yml | Updates Pages deploy workflow to use Node 24.x. |
| .github/workflows/descriptions.yml | Updates descriptions workflow to use Node 24.x. |
| .github/workflows/deployDev.yml | Updates dev deploy workflow to use Node 24.x. |
| .github/workflows/autoUrls.yml | Updates autoUrls workflows to use Node 24.x. |
Comments suppressed due to low confidence (1)
renovate.json:24
- Renovate is forced to run with npm 10.x (
force.constraints.npm), but this PR raises the repo’s npm engine requirement to >=11 and.npmrcenablesengine-strict=true. That combination will likely cause Renovate lockfile updates (and potentially CI on Renovate branches) to fail due to an unsupported npm version. Align these by updating the Renovate npm constraint to 11.x (or removing the constraint) or by relaxing engine-strict for Renovate runs.
"minimumReleaseAge": "2 days",
"force": {
"constraints": {
"npm": "10.x"
}
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
17
to
21
| "npm": { | ||
| "rangeStrategy": "update-lockfile" | ||
| }, | ||
| "minimumReleaseAge": "2 days", | ||
| "force": { |
| @@ -1 +1,2 @@ | ||
| engine-strict=true | ||
| min-release-age=2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.