Skip to content

Commit 8caa9d2

Browse files
authored
Merge pull request #3447 from HHobeck/feature/2347_PromoteTagEvenIfNameIsEmpty
Implement when PreleaseLabel is empty, the PreleaseTag is generated correctly
2 parents 03271d6 + 25c17c8 commit 8caa9d2

File tree

56 files changed

+1830
-1009
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+1830
-1009
lines changed

BREAKING_CHANGES.md

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
* The process of increasing the version with bump message when `CommitMessageIncrementing` is enabled and increment strategy is `None` has been changed.
2828
* 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`).
2929
* 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.
30+
* 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.
3031
3132
## v5.0.0
3233

src/GitVersion.App.Tests/JsonOutputOnBuildServerTest.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public void BeingOnBuildServerWithOutputJsonDoesNotFail()
3434
var result = GitVersionHelper.ExecuteIn(fixture.LocalRepositoryFixture.RepositoryPath, arguments: " /output json /output buildserver", environments: env);
3535

3636
result.ExitCode.ShouldBe(0);
37-
const string expectedVersion = "0.0.1+5";
37+
const string expectedVersion = "0.0.1-5";
3838
result.Output.ShouldContain($"##teamcity[buildNumber '{expectedVersion}']");
3939
result.OutputVariables.ShouldNotBeNull();
4040
result.OutputVariables.FullSemVer.ShouldBeEquivalentTo(expectedVersion);
@@ -53,7 +53,7 @@ public void BeingOnBuildServerWithOutputJsonAndOutputFileDoesNotFail(string outp
5353
var result = GitVersionHelper.ExecuteIn(fixture.LocalRepositoryFixture.RepositoryPath, arguments: $" /output json /output buildserver /output file /outputfile {outputFile}", environments: env);
5454

5555
result.ExitCode.ShouldBe(0);
56-
const string expectedVersion = "0.0.1+5";
56+
const string expectedVersion = "0.0.1-5";
5757
result.Output.ShouldContain($"##teamcity[buildNumber '{expectedVersion}']");
5858
result.OutputVariables.ShouldNotBeNull();
5959
result.OutputVariables.FullSemVer.ShouldBeEquivalentTo(expectedVersion);

src/GitVersion.Core.Tests/Configuration/ConfigurationProviderTests.CanWriteOutEffectiveConfiguration.approved.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ update-build-number: true
1313
semantic-version-format: Strict
1414
branches:
1515
develop:
16-
mode: ContinuousDeployment
1716
label: alpha
1817
increment: Minor
1918
prevent-increment-of-merged-branch-version: false
@@ -40,6 +39,7 @@ branches:
4039
is-mainline: true
4140
pre-release-weight: 55000
4241
release:
42+
mode: ContinuousDelivery
4343
label: beta
4444
increment: None
4545
prevent-increment-of-merged-branch-version: true
@@ -70,7 +70,7 @@ branches:
7070
is-source-branch-for: []
7171
pre-release-weight: 30000
7272
pull-request:
73-
mode: ContinuousDelivery
73+
mode: ContinuousDeployment
7474
label: PullRequest
7575
increment: Inherit
7676
label-number-pattern: '[/-](?<number>\d+)'
@@ -126,7 +126,7 @@ branches:
126126
is-source-branch-for: []
127127
ignore:
128128
sha: []
129-
mode: ContinuousDelivery
129+
mode: ContinuousDeployment
130130
label: '{BranchName}'
131131
increment: Inherit
132132
prevent-increment-of-merged-branch-version: false

src/GitVersion.Core.Tests/Configuration/ConfigurationProviderTests.cs

+11-5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
using GitVersion.Extensions;
55
using GitVersion.Helpers;
66
using GitVersion.Logging;
7+
using GitVersion.VersionCalculation;
78
using Microsoft.Extensions.DependencyInjection;
89
using Microsoft.Extensions.Options;
910

@@ -33,21 +34,26 @@ public void Setup()
3334
[Test]
3435
public void OverwritesDefaultsWithProvidedConfig()
3536
{
36-
var defaultConfig = this.configurationProvider.ProvideForDirectory(this.repoPath);
37+
var defaultConfiguration = this.configurationProvider.ProvideForDirectory(this.repoPath);
3738
const string text = @"
3839
next-version: 2.0.0
3940
branches:
4041
develop:
41-
mode: ContinuousDeployment
42+
increment: Major
43+
mode: ContinuousDelivery
4244
label: dev";
4345
SetupConfigFileContent(text);
4446
var configuration = this.configurationProvider.ProvideForDirectory(this.repoPath);
4547

4648
configuration.NextVersion.ShouldBe("2.0.0");
4749
configuration.Branches.ShouldNotBeNull();
48-
configuration.Branches["develop"].Increment.ShouldBe(defaultConfig.Branches["develop"].Increment);
49-
configuration.Branches["develop"].VersioningMode.ShouldBe(defaultConfig.Branches["develop"].VersioningMode);
50-
configuration.Branches["develop"].Label.ShouldBe("dev");
50+
51+
var developConfiguration = configuration.Branches["develop"];
52+
developConfiguration.Increment.ShouldBe(IncrementStrategy.Major);
53+
developConfiguration.Increment.ShouldNotBe(defaultConfiguration.Branches["develop"].Increment);
54+
developConfiguration.VersioningMode.ShouldBe(VersioningMode.ContinuousDelivery);
55+
developConfiguration.VersioningMode.ShouldNotBe(defaultConfiguration.Branches["develop"].VersioningMode);
56+
developConfiguration.Label.ShouldBe("dev");
5157
}
5258

5359
[Test]

src/GitVersion.Core.Tests/Core/DynamicRepositoryTests.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ public void Cleanup()
4848

4949
// Note: use same name twice to see if changing commits works on same (cached) repository
5050
[NonParallelizable]
51-
[TestCase("GV_main", "https://github.com/GitTools/GitVersion", MainBranch, "efddf2f92c539a9c27f1904d952dcab8fb955f0e", "5.8.2+56")]
52-
[TestCase("GV_main", "https://github.com/GitTools/GitVersion", MainBranch, "2dc142a4a4df77db61a00d9fb7510b18b3c2c85a", "5.8.2+47")]
51+
[TestCase("GV_main", "https://github.com/GitTools/GitVersion", MainBranch, "efddf2f92c539a9c27f1904d952dcab8fb955f0e", "5.8.2-56")]
52+
[TestCase("GV_main", "https://github.com/GitTools/GitVersion", MainBranch, "2dc142a4a4df77db61a00d9fb7510b18b3c2c85a", "5.8.2-47")]
5353
public void FindsVersionInDynamicRepo(string name, string url, string targetBranch, string commitId, string expectedFullSemVer)
5454
{
5555
var root = PathHelper.Combine(this.workDirectory, name);

0 commit comments

Comments
 (0)