Using prerelease tag in git tag is removed from version numbers #3663
-
Describe the bug Expected BehaviorTagging a commit with fx. 10.2.3-preview.4 should propagate the preview.4 tag all the way to fx. NuGetVersion. Actual BehaviorThe preview.4 tag is trimmed so the version becomes 10.2.3. Possible FixSteps to Reproduce
ContextAlthough we're using trunk-based development (or GitHub flow) we don't want to release every commit as a NuGet package for our customers to consume. Therefore we only release commits when tagged with a version. However, we would like to be able to release previews/betas between real releases in order to get new features out there and get some feedback. Your EnvironmentMacbook M2 pro |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 12 replies
-
Hi there. Please use the actual pre-released version of git-version (6.0.0-beta.3) and ensure that your issue is not already fixed. Please see the following integration test: [Test]
public void GivenARepositoryWithSingleCommitIncludingPrelease1()
{
var configuration = GitFlowConfigurationBuilder.New.Build();
using var fixture = new EmptyRepositoryFixture("main");
const string taggedVersion = "1.2.3-preview.4";
fixture.Repository.MakeATaggedCommit(taggedVersion);
fixture.Checkout(taggedVersion);
// ✅ succeeds as expected
fixture.AssertFullSemver("1.2.3-1", configuration);
}
[Test]
public void GivenARepositoryWithSingleCommitIncludingPrelease2()
{
var configuration = GitFlowConfigurationBuilder.New.Build();
using var fixture = new EmptyRepositoryFixture("main");
const string taggedVersion = "1.2.3-4";
fixture.Repository.MakeATaggedCommit(taggedVersion);
fixture.Checkout(taggedVersion);
// ✅ succeeds as expected
fixture.AssertFullSemver("1.2.3-4", configuration);
} Please notice if you are using a pre-release tag on a branch with differnt label (on main it is an empty label per default) then the pre-release tag will not be considered as a base to increment the pre-release number. |
Beta Was this translation helpful? Give feedback.
-
Perhaps it can clarify things if I explain the flow we would like to use. We have to support multiple major versions of our product. Each major has an expected lifetime of 2+ years (depending on how often we make breaking changes that warrants a new major release). To reduce cognitive load on developers we have chosen a scheme as follows (I will call it multiple-trunks-based development):
It's entirely possible that using this strategy is complete nonsense, but we have had a lot of discussions internally and this is in our opinion the best way to handle things (we want to avoid GitFlow). |
Beta Was this translation helpful? Give feedback.
Maybe the documentation is not precise enough. But this behavior is not a new behavior and makes really sense. If you think about it from the release management perspective:
If you want that the tag
1.2.3-preview.4
to be considered why you are not specifying on the mai…