mirror of
https://github.com/semver/semver.git
synced 2026-07-11 06:53:03 -05:00
[GH-ISSUE #476] minor or patch change for a configuration change? #1216
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @jruts on GitHub (Nov 15, 2018).
Original GitHub issue: https://github.com/semver/semver/issues/476
If we change a piece of configuration in the code, would we then increase the patch version or the minor version?
Do note that this is in a Terraform project so the change is technically a code change (since Terraform is infrastructure as code).
I ask this question because it specifically says that the path version is for bux fixes and this causes confusion.
Kind regards.
@klehelley commented on GitHub (Nov 15, 2018):
In a way, with Infrastructure as Code I would consider the resulting infrastructure to be the final "artifact" that external agents (API clients, etc. -- basically all the end-users of the features provided by the infrastructure being described) must interact with. With that point of view, knowing which version number to bump in not too hard to determine:
Do note that in thinking this way, what I call external agents are not necessarily the ones concerned by the version you will provide (they may however be interested by the version of the endpoints they use, but that should be managed separately provided the infrastructure includes several independent endpoints). It is the person in charge of applying the Terraform plan to a given environment (and may have to intervene were any issue to happen within it) that will be interested in knowing how impactful an upgrade might be, and act accordingly.
@jwdonahue commented on GitHub (Nov 25, 2018):
@jruts, unless you have further questions or comments, please close this issue at your earliest possible convenience.
@jruts commented on GitHub (Nov 26, 2018):
Thanks for the reply!