spotless-changelog
spotless-changelog copied to clipboard
The changelog is cast, let the versions fall where they may.
It would be really handy if we were somehow compatible with GitHub merge queue - https://github.blog/changelog/2023-02-08-pull-request-merge-queue-public-beta/ It's quite a headache in Spotless atm.
Currently it is not clear how we should pass credentials (or what is the strategy) to configure push to remote git repository, could you please update documentation to clarify that...
You can apply spotless-changelog multiple times in a multi-project build ([example](https://github.com/diffplug/spotless/blob/58e53b64ee312a8f013afbdbc2bbbd1c23eae77e/gradle/changelog.gradle#L1-L22)), but each instance needs to have a distinct changelog file, as well as a distinct `tagPrefix`, otherwise you will...
Hello, In my project instead of using a simple `[1.0.0] - 2021-04-06` we use `[1.0.0](#100---2021-04-06) - 2021-04-06` (to quickly focus on the paragraph version and to be more pretty). But...
Spotless Changelog can handle the case where a single git repository has multiple changelogs for its various components. However, it can be easy to miss when a changelog which is...
Solves the git conflict problem. https://docs.gitlab.com/ee/development/changelog.html Advertise here: `https://github.com/olivierlacan/keep-a-changelog/issues/301` when ready.
It would be useful to turn [GitHub releases](https://help.github.com/en/github/administering-a-repository/managing-releases-in-a-repository) into a changelog, and vice-versa. Our [`Changelog.java`](https://github.com/diffplug/spotless-changelog/blob/master/spotless-changelog-lib/src/main/java/com/diffplug/spotless/changelog/Changelog.java) would be helpful for this. In pseudocode: ```java import com.diffplug.spotless.changelog.Changelog; import com.diffplug.spotless.changelog.Changelog.VersionEntry; // this won't...
We publish the `plugin` and `lib` at the exact same time, and I can't figure out how to get the plugin javadoc to correctly point to the `lib` javadoc. e.g....
For 1.0, we scaled back our ambitions in this commit: ba6fa6bf63ae83ee24407cad4c5dbbfa3f5d79ce Here is what we had been planning: ```gradle spotlessChangelog { types ['Added', 'Changed', 'Deprecated', 'Removed', 'Fixed', 'Security'] typesBumpMinor ['Added']...
As [Keep a Changelog](https://keepachangelog.com/) described, a good changelog should look like: ```md ## [Unreleased] ## [1.1.1] ### Added - 1 - 2 ### Fixed - 3 - 4 ### Changed...