You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: BREAKING_CHANGES.md
+41-12
Original file line number
Diff line number
Diff line change
@@ -11,64 +11,91 @@
11
11
### Configuration changes:
12
12
13
13
* The configuration properties `continuous-delivery-fallback-tag`, `tag-number-pattern`, and `tag` were renamed to `continuous-delivery-fallback-label`, `label-number-pattern`, and `label` respectively. `tag-pre-release-weight` and `tag-prefix` remained as they were as they are referring to a Git tag.
14
+
14
15
* When using a commit message that matches **both**`*-version-bump-message` and `no-bump-message`, there is no increment for that commit. In other words, `no-bump-message` now takes precedence over `*-version-bump-message`.
16
+
15
17
* The fallback version strategy now returns `0.0.0` and is flagged with `ShouldIncrement` equal to `true`. This yields the version `0.1.0` on the `develop` branch (`IncrementStrategy.Minor` by default) and `0.0.1` on the `main` branch (`IncremetnStrategy.Patch` by default).
18
+
16
19
* The current branch (child) inherits its configuration from the source (parent) branch if the `increment` strategy is set to `Inherit`. This makes branch configuration recursive, simpler, more intuitive, more flexible, and more robust.
20
+
17
21
* Instead of having a single effective configuration, we now have one effective configuration per branch where the increment strategy is not set to `inherit`.
22
+
18
23
* The new implementation of the branch configuration inheritance affects per default only the pull-requests, hotfix and feature branches. In this case the next version will be generated like the child branch is not existing and the commits have been made on the source branch.
19
24
* The following example illustrates this behavior. On the feature branch the semantic version `1.1.0-just-a-test.1+2` will now be generated instead of version `1.0.0-just-a-test.1+3` previously:
20
25
21
-
```log
26
+
```log
22
27
* 1f1cfb4 52 minutes ago (HEAD -> feature/just-a-test)
23
28
* 1f9654d 54 minutes ago (release/1.1.0)
24
29
* be72411 56 minutes ago (develop)
25
30
* 14800ff 58 minutes ago (tag: 1.0.0, main)
26
31
```
27
32
28
33
* A new `unknown` branch magic string has been introduced to give the user the possibility to specify the branch configuration for a branch which is not known. A branch is not known if only the regular expression of the branch configuration with the name `unknown` is matching. Please notice that this branch configuration behaves like any other branch configurations.
34
+
29
35
* Additional `fallback` branch configuration properties have been introduced at the root to define base properties which will be inherit to the branch configurations. That means if no other branch configuration in the inheritance line defines the given property the fallback property applies. Notice that the inheritance tree can be controlled using the increment strategy property in the branch configuration section.
30
36
* The following example illustrates this behavior. The hotfix branch configuration overrides the main branch configuration and the result overrides the fallback branch configuration.
31
37
32
-
```log
38
+
```log
33
39
* 1f1cfb4 52 minutes ago (HEAD -> hotfix/just-a-test)
34
40
* 14800ff 58 minutes ago (tag: 1.0.0, main)
35
41
```
36
42
37
43
* When overriding the configuration with e.g. GitVersion.yaml the software distinguishes between properties who are not existent and properties who are `null`. This is especially important if the user wants to define branch related configuration which are marked with `increment` strategy `Inherit`.
44
+
38
45
* Following root configuration properties have been removed:
39
46
* continuous-delivery-fallback-tag
47
+
40
48
* A new branch related property with name `track-merge-message` has been introduced. Consider we have a `main` branch and a `release/1.0.0` branch and merge changes from `release/1.0.0` to the main branch. In this scenario the merge message will be interpreted as a next version `1.0.0` when `track-merge-message` is set to `true` otherwise `0.0.1`.
49
+
41
50
* The pre-release tags are only considered when they are matching with the label name of the branch. This has an effect on the way how the `CommitCountSource` will be determined.
51
+
42
52
* The process of increasing the version with bump message when `CommitMessageIncrementing` is enabled and increment strategy is `None` has been changed.
53
+
43
54
* A new configuration property with name `version-in-branch-pattern` has been introduced. This setting only applies on branches where the option `is-release-branch` is set to `true`. Please notice that the branch name needs to be defined after the version number by default (instead of `support/lts-2.0.0` please name the branch like `support/2.0.0-lts`).
55
+
44
56
* The `is-release-branch` property of the `hotfix` branch setting has been changed from `false` to `true`. If present the hotfix number will be considered now by default.
57
+
45
58
* In the GitHub and the Git Flow workflows the `label` property is by default set to an empty string on the `main` branch. This yields to a pre-release version on `main` with an empty tag. Instead of for instance `1.0.1+46` GitVersion generates the full semantic version `1.0.1-46` instead. This behavior can be changed to generate only stable versions (no pre-release version) with setting the label to `null` (Please keep in mind that the `label` property on root needs to be set to `null` as well, otherwise the fallback applies). This change is caused by issue #2347.
59
+
46
60
* The `useBranchName` magic string has been removed. Instead use `{BranchName}` for `label`.
61
+
47
62
* The `BranchPrefixToTrim` configuration property has been removed. `RegularExpression` is now used to capture named groups instead.
48
63
* Default `RegularExpression` for feature branches is changed from `^features?[/-]` to `^features?[/-](?<BranchName>.+)` to support using `{BranchName}` out-of-the-box
49
64
* Default `RegularExpression` for unknown branches is changed from `.*` to `(?<BranchName>.+)` to support using `{BranchName}` out-of-the-box
65
+
50
66
* The `Mainline` mode and the related implementation has been removed completely. The new `Mainline` version strategy should be used instead.
67
+
51
68
* The `Mainline` version strategy doesn't support downgrading the increment for calculating the next version. This is the case if e.g. a bump messages has been defined which is lower than the branch increment.
69
+
52
70
* The branch related property `is-mainline` in the configuration system has been renamed to `is-main-branch`
71
+
53
72
* The versioning mode has been renamed to deployment mode and consists of following values:
* At the configuration root level, a new array called `strategies` has been introduced, which can consist of on or more following values:
58
78
* ConfiguredNextVersion
59
79
* MergeMessage
60
80
* TaggedCommit
61
81
* TrackReleaseBranches
62
82
* VersionInBranchName
63
83
* Mainline
84
+
64
85
* The initialization wizard has been removed.
86
+
65
87
* On the `develop`, `release` and `hotfix` branch the introduced branch related property `prevent-increment.when-current-commit-tagged` has been set to `false` to get the incremented instead of the tagged semantic version.
88
+
66
89
* When setting the "ignore commits before" parameter to a future value, an exception will occur if no commits are found on the current branch. This behavior mimics that of an empty repository.
90
+
67
91
* On the `GitFlow` workflow the increment property has been changed:
68
92
* in branch `release` from `None` to `Minor` and
69
93
* in branch `hotfix` from `None` to `Patch`
94
+
70
95
* On the `GitHubFlow` workflow the increment property has been changed in branch `release` from `None` to `Patch`.
96
+
71
97
* When creating a branch with name `hotfix/next` (by using the `GitFlow` workflow) or `release/next` (by the `GitHubFlow` workflow) the resulting version will yield to a patched version per default.
98
+
72
99
* If you have a tag `1.0.0` on `main` and branch from `main` to `release/1.0.1` then the next version number will be `1.1.0` when using the `GitFlow` workflow. This behavior is expected (but different compared to the `GitHubFlow` workflow) because on the `GitFlow` workflow you have an addition branch configuration with name hotfix where `is-release-branch` is set to `true`. That means if you want `1.0.1` as a next version you need to branch to `hotfix/1.0.1` or `hotfix/next`. On the other hand if you use the `GitHubFlow` workflow the next version number will be `1.0.1` because the increment on the `release` branch is set to `Patch`.
73
100
74
101
### Legacy Output Variables
@@ -87,9 +114,9 @@ The following legacy output variables have been removed in this version:
87
114
## v5.0.0
88
115
89
116
* Version numbers in branches other than `release` branches are no longer
90
-
considered as a version source by default. Implemented in [#1541][pr-1541].
117
+
considered as a version source by default. Implemented in [#1541][pr-1541].
91
118
* [#1581][pr-1581] folds `GitTools.Core` back into GitVersion to make
92
-
maintaining GitVersion easier.
119
+
maintaining GitVersion easier.
93
120
94
121
## v4.0.0
95
122
@@ -107,27 +134,29 @@ work for you
107
134
* `GitVersionConfig.yaml` is deprecated in favor of `GitVersion.yml`.
108
135
* Regular expressions are no longer used as keys in branch config
109
136
* We have named branches, and introduced a `regex` config which you can
110
-
override.
137
+
override.
111
138
* The default keys are: `master`, `develop`, `feature`, `release`, `pull-request`,
112
-
`hotfix` and `support`
139
+
`hotfix` and `support`
113
140
* Just run `GitVersion.exe` in your project directory and it will tell you
114
-
what to change your config keys to
141
+
what to change your config keys to
115
142
* For example, `dev(elop)?(ment)?$` is now just `develop`, we suggest not
116
-
overring regular expressions unless you really want to use a different convention.
143
+
overring regular expressions unless you really want to use a different convention.
117
144
* `source-branches` added as a configuration option for branches, it helps
118
-
GitVersion pick the correct source branch
145
+
GitVersion pick the correct source branch
119
146
120
147
## v3.0.0
121
148
122
149
* NextVersion.txt has been deprecated, only `GitVersionConfig.yaml` is supported
0 commit comments