Conventional Commit type when upgrading a library dependency

66 views Asked by At

What is the best Conventional Commit type (fix, feat, build, chore, ci, docs, style, refactor, perf, test, ...) when upgrading a library dependency? For example:

  • build.gradle: implementation 'org.json:json:20230618'implementation 'org.json:json:20231013'
  • Cargo.toml: hyper = "1.0.0"hyper = "1.0.1"

Or does it vary depending on the reason? If it fixes something (like security vulnerability), should I choose fix? Or if it's just householding and keeping things updated, should I choose chore?

0

There are 0 answers