-
I might not have understood everything correctly, but I recently activated dependabot on my github project, and I have had some of my packages update, only to then see |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Hi @benomatis, the version numbers we have in Save for If you find that you want a newer version of a package anyway, you can also consider overriding our recommendations (or write your own preset). You can find more details on how to do that here: https://microsoft.github.io/rnx-kit/docs/guides/dependency-management#customization |
Beta Was this translation helpful? Give feedback.
Hi @benomatis, the version numbers we have in
align-deps
are based on what we use internally, that we know works in combination, and also based on what library maintainers declare supported for. It's a best effort practice, but we're fairly confident in our profiles.Save for
react
, the version numbers are declared using caret (^) and should allow Dependabot some room to upgrade without affecting yourpackage.json
. If it's making changes to yourpackage.json
, you might want to consider addingversioning-strategy: "lockfile-only"
in yourdependabot.yml
.If you find that you want a newer version of a package anyway, you can also consider overriding our recommendations (or write your own pre…