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

Build(deps): Bump maven-git-versioning-extension from 6.5.0 to 7.1.1 #225

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 27, 2021

Bumps maven-git-versioning-extension from 6.5.0 to 7.1.1.

Release notes

Sourced from maven-git-versioning-extension's releases.

7.1.0

Features
  • New Placeholder ${commit.timestamp.year.2digit}

7.0.0

Features
  • Add GitHub Actions, GitLab CI and Jenkins environment variable support

    • GitHub Actions: if $GITHUB_ACTIONS == true, GITHUB_REF is considered
    • GitLab CI: if $GITLAB_CI == true, CI_COMMIT_BRANCH and CI_COMMIT_TAG are considered
    • Circle CI: if $CIRCLECI == true, CIRCLE_BRANCH and CIRCLE_TAG are considered
    • Jenkins: if JENKINS_HOME is set, BRANCH_NAME and TAG_NAME are considered
  • Simplify xml configuration (also see BREAKING CHANGES)

    Example: maven-git-versioning-extension.xml

    <configuration xmlns="https://github.com/qoomon/maven-git-versioning-extension" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="https://github.com/qoomon/maven-git-versioning-extension https://qoomon.github.io/maven-git-versioning-extension/configuration-7.0.0.xsd">
    &lt;refs&gt;
        &lt;ref type=&quot;branch&quot;&gt;
            &lt;pattern&gt;.+&lt;/pattern&gt;
            &lt;version&gt;${ref}-SNAPSHOT&lt;/version&gt;
            &lt;properties&gt;
                &lt;foo&gt;${ref}&lt;/foo&gt;
            &lt;/properties&gt;
        &lt;/ref&gt;
    &amp;lt;ref type=&amp;quot;tag&amp;quot;&amp;gt;
        &amp;lt;pattern&amp;gt;&amp;lt;![CDATA[v(?&amp;lt;version&amp;gt;.*)]]&amp;gt;&amp;lt;/pattern&amp;gt;
        &amp;lt;version&amp;gt;${ref.version}&amp;lt;/version&amp;gt;
    &amp;lt;/ref&amp;gt;
    
    &lt;/refs&gt;
    &lt;!-- optional fallback configuration in case of no matching ref configuration--&gt;
    &lt;rev&gt;
    &lt;version&gt;${commit}&lt;/version&gt;
    &lt;/rev&gt;
    
    </configuration>

  • New option to consider tag configs on branches (attached HEAD), enabled by <refs considerTagsOnBranches="true">

    • If enabled, first matching branch or tag config will be used for versioning
  • prevent unnecessary updates of pom.xml to prevent unwanted rebuilds (#129 kudos to @​ls-urs-keller)

BREAKING CHANGES
  • There is no default config anymore, if no <ref> configuration is matching current git situation and no <rev> configuration has been defined a warning message will be logged and extension will be skipped.
  • Placeholder Changes (old -> new)
    • ${branch} -> ${ref}
    • ${tag} -> ${ref}

... (truncated)

Changelog

Sourced from maven-git-versioning-extension's changelog.

7.1.1

Fixes
  • if a tag is provided (and no branch) the extension behaves like in detached head state
  • if a branch is provided (and no tag) the extension behaves like in attached head state with no tags pointing to head

7.1.0

Features
  • New Placeholder ${commit.timestamp.year.2digit}

7.0.0

Features
  • Add GitHub Actions, GitLab CI and Jenkins environment variable support

    • GitHub Actions: if $GITHUB_ACTIONS == true, GITHUB_REF is considered
    • GitLab CI: if $GITLAB_CI == true, CI_COMMIT_BRANCH and CI_COMMIT_TAG are considered
    • Circle CI: if $CIRCLECI == true, CIRCLE_BRANCH and CIRCLE_TAG are considered
    • Jenkins: if JENKINS_HOME is set, BRANCH_NAME and TAG_NAME are considered
  • Simplify xml configuration (also see BREAKING CHANGES)

    Example: maven-git-versioning-extension.xml

    <configuration xmlns="https://github.com/qoomon/maven-git-versioning-extension" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="https://github.com/qoomon/maven-git-versioning-extension https://qoomon.github.io/maven-git-versioning-extension/configuration-7.0.0.xsd">
    &lt;refs&gt;
        &lt;ref type=&quot;branch&quot;&gt;
            &lt;pattern&gt;.+&lt;/pattern&gt;
            &lt;version&gt;${ref}-SNAPSHOT&lt;/version&gt;
            &lt;properties&gt;
                &lt;foo&gt;${ref}&lt;/foo&gt;
            &lt;/properties&gt;
        &lt;/ref&gt;
    &amp;lt;ref type=&amp;quot;tag&amp;quot;&amp;gt;
        &amp;lt;pattern&amp;gt;&amp;lt;![CDATA[v(?&amp;lt;version&amp;gt;.*)]]&amp;gt;&amp;lt;/pattern&amp;gt;
        &amp;lt;version&amp;gt;${ref.version}&amp;lt;/version&amp;gt;
    &amp;lt;/ref&amp;gt;
    
    &lt;/refs&gt;
    &lt;!-- optional fallback configuration in case of no matching ref configuration--&gt;
    &lt;rev&gt;
    &lt;version&gt;${commit}&lt;/version&gt;
    &lt;/rev&gt;
    
    </configuration>

  • New option to consider tag configs on branches (attached HEAD), enabled by <refs considerTagsOnBranches="true">

... (truncated)

Commits

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

@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Sep 27, 2021
@kokorin
Copy link
Owner

kokorin commented Oct 16, 2021

@dependabot rebase

Bumps [maven-git-versioning-extension](https://github.com/qoomon/maven-git-versioning-extension) from 6.5.0 to 7.1.1.
- [Release notes](https://github.com/qoomon/maven-git-versioning-extension/releases)
- [Changelog](https://github.com/qoomon/maven-git-versioning-extension/blob/master/CHANGELOG.md)
- [Commits](https://github.com/qoomon/maven-git-versioning-extension/commits)

---
updated-dependencies:
- dependency-name: me.qoomon:maven-git-versioning-extension
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/maven/develop/me.qoomon-maven-git-versioning-extension-7.1.1 branch from 1761664 to efddbd0 Compare October 16, 2021 05:53
@kokorin kokorin merged commit 752a018 into develop Oct 18, 2021
@kokorin kokorin deleted the dependabot/maven/develop/me.qoomon-maven-git-versioning-extension-7.1.1 branch October 18, 2021 05:20
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 java Pull requests that update Java code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant