I'm using Renovate bot on my personal blog project. There are many dependencies in both package.json
files (see one of them here). Renovate updates some of the dependencies, like Next.js, but is missing many others. When I run yarn upgrade-interactive
today (Jan 30th 2023) I get the following (see screenshot):
Why has renovate not picked up on this? It has been quite some time since many of these packages were updated, while other packages with recent releases have been updated, so renovate obviously has done some scanning. I couldn't find anything in the documentation about this, so I though I'd ask here.
This is my renovate.json
:
{
"extends": ["config:base"],
"packageRules": [
{
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
"automerge": true
},
{
"matchDepTypes": ["devDependencies"],
"automerge": true
}
],
"platformAutomerge": true
}
Also see renovate dashboard.
Hope everything is clear. Thanks in advance.
I have looked at the FAQ and searched Stack overflow.