Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump GitVersion.MsBuild from 5.12.0 to 6.0.3 #55

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 15, 2024

Bumps GitVersion.MsBuild from 5.12.0 to 6.0.3.

Release notes

Sourced from GitVersion.MsBuild's releases.

6.0.3

As part of this release we had 88 commits which resulted in 8 issues being closed.

Bug

Documentation

  • !4188 add link to docs version 5.12.0
  • !4220 Improve documentation around version strategies

Improvements

  • !4202 Move regex patterns to a common file
  • !4246 Move creation of Regex to a central location
  • !4259 Moved direct usages of IGitRepository to IRepositoryStore

SHA256 Hashes of the release artifacts

  • 156f12880e13beec58cac3a2b10c695c81bc608facc94e246914369a5ad07061 - gitversion-linux-arm64-6.0.3.tar.gz
  • dbe6e2d565056c2dd98bcee6ad03c286510fa2075394f0a298c50090d6b0b2f6 - gitversion-linux-musl-arm64-6.0.3.tar.gz
  • 18e7c587a75b4d0ef1e394626061c1af69d443c05a635b5ac72f602744571be6 - gitversion-linux-musl-x64-6.0.3.tar.gz
  • 3633b523db80c0412b65cded86eacd27b570f243febceb5a23c7c160242ce8f9 - gitversion-linux-x64-6.0.3.tar.gz
  • 2702d0f36bc471028f31384ab7440972bcd96ee16b7416acfecd8db7fb01e30e - gitversion-osx-arm64-6.0.3.tar.gz
  • f00c4650d6d64b9c218ef61f2c9a0185523bc6d6f593e2d9311d93f44e56cdd9 - gitversion-osx-x64-6.0.3.tar.gz
  • afefd0e9dfd84cd5eebe06c97f9950af4fda76f3247275d3a0aebbf0f13dbb2f - gitversion-win-arm64-6.0.3.zip
  • 0748656ffd0685e3879511c2f9abe193f65f85e2a42a2d342666f7ff4ccde5d2 - gitversion-win-x64-6.0.3.zip

6.0.2

As part of this release we had 8 commits which resulted in 5 issues being closed.

Bugs

Documentation

Improvements

  • !4147 Remove dependency on "git" executable

SHA256 Hashes of the release artifacts

  • 3ebe826cf258c70f17c5e6213a42c410dabe373f7aec7f6a3359e714d7733c70 - gitversion-linux-arm64-6.0.2.tar.gz

... (truncated)

Changelog

Sourced from GitVersion.MsBuild's changelog.

v6.0.0

Platforms

  • Drop support for .NET Framework 4.8, .NET Core 3.1 and .NET 5.0. Changed the project targets to .NET 6.0 or later.

Caching

  • Refactor caching system in GitVersion to use json files instead of yaml files. This change is not backwards compatible with the old caching system.

Configuration changes:

  • 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.

  • 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.

  • 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).

  • 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.

  • Instead of having a single effective configuration, we now have one effective configuration per branch where the increment strategy is not set to inherit.

  • 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.

    • 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:

      * 1f1cfb4 52 minutes ago  (HEAD -> feature/just-a-test)
      * 1f9654d 54 minutes ago  (release/1.1.0)
      * be72411 56 minutes ago  (develop)
      * 14800ff 58 minutes ago  (tag: 1.0.0, main)
      
  • 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.

  • 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.

    • The following example illustrates this behavior. The hotfix branch configuration overrides the main branch configuration and the result overrides the fallback branch configuration.

      * 1f1cfb4 52 minutes ago  (HEAD -> hotfix/just-a-test)
      * 14800ff 58 minutes ago  (tag: 1.0.0, main)
      
  • 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.

  • Following root configuration properties have been removed:

    • continuous-delivery-fallback-tag
  • 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.

  • 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.

... (truncated)

Commits
  • 4255a15 Merge pull request #4208 from david-driscoll/fix/slow-on-branch
  • 1200ae1 code cleanup
  • ec25813 attempt to fix performance issues with a cache
  • dad5d2c Merge pull request #4259 from arturcic/feature/git-repository
  • de1be55 moved direct usages of IGitRepository to IRepositoryStore
  • 2cb399b Merge pull request #4256 from GitTools/dependabot/nuget/new-cli/analyzers-7a6...
  • 0b30d55 (deps): Bump the analyzers group across 2 directories with 2 updates
  • 95b8f80 Merge pull request #4257 from GitTools/dependabot/nuget/src/JunitXml.TestLogg...
  • 5a1d52e (deps): Bump JunitXml.TestLogger from 4.0.254 to 4.1.0 in /src
  • 852a363 fix markdown
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [GitVersion.MsBuild](https://github.com/GitTools/GitVersion) from 5.12.0 to 6.0.3.
- [Release notes](https://github.com/GitTools/GitVersion/releases)
- [Changelog](https://github.com/GitTools/GitVersion/blob/main/BREAKING_CHANGES.md)
- [Commits](GitTools/GitVersion@5.12.0...6.0.3)

---
updated-dependencies:
- dependency-name: GitVersion.MsBuild
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Oct 15, 2024
Copy link

sonarcloud bot commented Oct 15, 2024

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants