chore(deps): update dependency io.github.git-commit-id:git-commit-id-maven-plugin to v9.0.1 - autoclosed #6

Closed
renovatebot wants to merge 1 commit from renovate/io.github.git-commit-id-git-commit-id-maven-plugin-9.x into main
Member

This PR contains the following updates:

Package Type Update Change
io.github.git-commit-id:git-commit-id-maven-plugin build patch 9.0.0 -> 9.0.1

Release Notes

git-commit-id/git-commit-id-maven-plugin (io.github.git-commit-id:git-commit-id-maven-plugin)

v9.0.1: Version 9.0.1

Compare Source

Version 9.0.1 is finally there and includes various bug-fixes and improvements :-)

New Features / Bug-Fixes:

The main key-aspects that have been improved or being worked on are the following:

  • #​754 / #​760: Fix an issue where empty git.properties had been generated in submodules when injectAllReactorProjects=true

  • bump several maven plugins

    • bump org.apache.maven.plugins:maven-checkstyle-plugin from 3.3.1 to 3.4.0
    • bump org.apache.maven.plugins:maven-release-plugin from 3.0.1 to 3.1.0
    • bump org.apache.maven.plugins:maven-surefire-plugin from 3.2.5 to 3.3.0
    • bump org.apache.maven.plugins:maven-clean-plugin from 3.3.2 to 3.4.0
    • bump org.apache.maven.plugins:maven-dependency-plugin from 3.6.1 to 3.7.1

Getting the latest release

The plugin is available from Maven Central (see here), so you don't have to configure any additional repositories to use this plugin. All you need to do is to configure it inside your project as dependency:

<dependency>
    <groupId>io.github.git-commit-id</groupId>
    <artifactId>git-commit-id-maven-plugin</artifactId>
    <version>9.0.1</version>
</dependency>

Getting the latest snapshot (build automatically)

If you can't wait for the next release, you can also get the latest snapshot version from sonatype, that is being deployed automatically by github actions:

<pluginRepositories>
    <pluginRepository>
        <id>sonatype-snapshots</id>
        <name>Sonatype Snapshots</name>
         <url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
    </pluginRepository>
</pluginRepositories>

Even though the github actions will only deploy a new snapshot once all tests have finished, it is recommended to rely on the released and more stable version.

Known Issues / Limitations:

Reporting Problems

If you find any problem with this plugin, feel free to report it here


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [io.github.git-commit-id:git-commit-id-maven-plugin](https://github.com/git-commit-id/git-commit-id-maven-plugin) | build | patch | `9.0.0` -> `9.0.1` | --- ### Release Notes <details> <summary>git-commit-id/git-commit-id-maven-plugin (io.github.git-commit-id:git-commit-id-maven-plugin)</summary> ### [`v9.0.1`](https://github.com/git-commit-id/git-commit-id-maven-plugin/releases/tag/v9.0.1): Version 9.0.1 [Compare Source](https://github.com/git-commit-id/git-commit-id-maven-plugin/compare/v9.0.0...v9.0.1) Version 9.0.1 is finally there and includes various [bug-fixes and improvements](https://github.com/git-commit-id/git-commit-id-maven-plugin/issues?q=milestone%3A9.0.1\&closed=1) :-) #### New Features / Bug-Fixes: The main key-aspects that have been improved or being worked on are the following: - [#&#8203;754](https://github.com/git-commit-id/git-commit-id-maven-plugin/issues/754) / [#&#8203;760](https://github.com/git-commit-id/git-commit-id-maven-plugin/issues/760): Fix an issue where empty git.properties had been generated in submodules when `injectAllReactorProjects=true` - bump several maven plugins - bump ` org.apache.maven.plugins:maven-checkstyle-plugin ` from `3.3.1` to `3.4.0` - bump `org.apache.maven.plugins:maven-release-plugin` from `3.0.1` to `3.1.0` - bump `org.apache.maven.plugins:maven-surefire-plugin` from `3.2.5` to `3.3.0` - bump `org.apache.maven.plugins:maven-clean-plugin` from `3.3.2` to `3.4.0` - bump `org.apache.maven.plugins:maven-dependency-plugin` from `3.6.1` to `3.7.1` #### Getting the latest release The plugin is available from Maven Central ([see here](https://search.maven.org/search?q=g:io.github.git-commit-id%20AND%20a:git-commit-id-maven-plugin)), so you don't have to configure any additional repositories to use this plugin. All you need to do is to configure it inside your project as dependency: ```xml <dependency> <groupId>io.github.git-commit-id</groupId> <artifactId>git-commit-id-maven-plugin</artifactId> <version>9.0.1</version> </dependency> ``` #### Getting the latest snapshot (build automatically) If you can't wait for the next release, you can also get the latest snapshot version from sonatype, that is being deployed automatically by github actions: ```xml <pluginRepositories> <pluginRepository> <id>sonatype-snapshots</id> <name>Sonatype Snapshots</name> <url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url> </pluginRepository> </pluginRepositories> ``` Even though the github actions will only deploy a new snapshot once all tests have finished, it is recommended to rely on the released and more stable version. #### Known Issues / Limitations: - This plugin is unfortunately not working with Heroku which is due to the fact how Heroku works. In summary Heroku does not copy over the .git-repository but in order to determine the git properties this plugin relies on the fact that it has access to the git-repository. A somewhat *workaround* to get some information is outlined in https://github.com/ktoso/maven-git-commit-id-plugin/issues/279#issuecomment-301284022 - Using maven's plugin prefix resolution (e.g. `mvn com.test.plugins:myPlugin:myMojo`) might result in unresolved properties even with `<injectAllReactorProjects>true</injectAllReactorProjects>`. Please refer to https://github.com/git-commit-id/maven-git-commit-id-plugin/issues/287 or https://github.com/git-commit-id/maven-git-commit-id-plugin/issues/413#issuecomment-487952607 for details and potential workarounds #### Reporting Problems If you find any problem with this plugin, feel free to report it [here](https://github.com/git-commit-id/git-commit-id-maven-plugin/issues) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS45NS4wIiwidXBkYXRlZEluVmVyIjoiMzkuOTUuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsicmVub3ZhdGUiXX0=-->
oliver was assigned by renovatebot 2025-01-08 16:04:20 +01:00
requested review from oliver 2025-01-08 16:04:20 +01:00
Owner

This PR contains the following updates:

Package Type Update Change io.github.git-commit-id:git-commit-id-maven-plugin ( https://github.com/git-commit-id/git-commit-id-maven-plugin ) build patch 9.0.0 -> 9.0.1

Release Notes

This PR contains the following updates: Package Type Update Change io.github.git-commit-id:git-commit-id-maven-plugin ( https://github.com/git-commit-id/git-commit-id-maven-plugin ) build patch 9.0.0 -> 9.0.1 Release Notes
oliver force-pushed renovate/io.github.git-commit-id-git-commit-id-maven-plugin-9.x from 5f154bfaf7 to af7dc85da5 2025-01-08 16:07:43 +01:00 Compare
renovatebot changed title from chore(deps): update dependency io.github.git-commit-id:git-commit-id-maven-plugin to v9.0.1 to chore(deps): update dependency io.github.git-commit-id:git-commit-id-maven-plugin to v9.0.1 - autoclosed 2025-01-08 16:26:09 +01:00
renovatebot closed this pull request 2025-01-08 16:26:09 +01:00
Owner

@renovatebot hat #6 geschlossen.


Auf Forgejo: Beyond coding. We Forge. ansehen ( #6 ) oder antworte direkt auf diese E-Mail.

*@renovatebot* hat #6 geschlossen. --- Auf Forgejo: Beyond coding. We Forge. ansehen ( https://w9r.dev/pom/spring-boot-starter/pulls/6 ) oder antworte direkt auf diese E-Mail.
All checks were successful
SonarQube Scan / SonarQube Trigger (pull_request) Successful in 1m28s

Pull request closed

Sign in to join this conversation.
No reviewers
No labels
released
No milestone
No project
No assignees
3 participants
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: pom/spring-boot-starter#6
No description provided.