Skip to content

File tree

65 files changed

+242
-274
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+242
-274
lines changed
 

‎CHANGELOG.adoc

+6-49
Original file line numberDiff line numberDiff line change
@@ -15,63 +15,20 @@
1515
limitations under the License.
1616
////
1717
18-
:log4j-changelog-ref: https://github.com/apache/logging-log4j-tools/tree/master/log4j-changelog[log4j-changelog]
18+
:log4j-changelog-uri: https://github.com/apache/logging-log4j-tools/tree/master/log4j-changelog
19+
:log4j-changelog-ref: {log4j-changelog-uri}[log4j-changelog]
1920
2021
== Where are changelogs stored?
2122
2223
Changelogs are stored in xref:src/changelog[`src/changelog`] directory.
2324
24-
{log4j-changelog-ref} is used to generate AsciiDoc-formatted changelog files during Maven `pre-site` phase and export them to xref:target/generated-sources/site/asciidoc/changelog[`target/generated-sources/site/asciidoc/changelog`] directory.
25+
{log4j-changelog-ref} is used to generate AsciiDoc-formatted release notes during Maven `pre-site` phase and export them to xref:target/generated-sources/site/asciidoc/changelog[`target/generated-sources/site/asciidoc/changelog`] directory.
2526
These exported AsciiDoc files are not committed, since they are only relevant for the website, and they cause merge-conflicts between feature branches.
2627
`./mvnw site` command can be used to manually generate these files.
2728
2829
See {log4j-changelog-ref} project for further details; how to use this changelog system, what steps are needed while making a new release, etc.
2930
30-
== I am about to deploy a new release. What shall I do?
31+
== How can I create a changelog entry?
3132
32-
Just before a release, three things need to happen in the changelog sources:
33-
34-
. *changelog entry files needs to be moved* from the _upcoming_ release changelog directory `src/changelog/.<releaseVersionMajor>.x.x` to the _new_ release changelog directory `src/changelog/<releaseVersion>`
35-
. *`.changelog.adoc.ftl` needs to be copied* from the _upcoming_ release changelog directory to the _new_ release changelog directory, unless it already exists in the target
36-
. *`.release.xml` needs to be created* in the _new_ release changelog directory
37-
38-
Due to the nature of release candidates, above steps might need to be repeated multiple times.
39-
40-
[TIP]
41-
====
42-
Log4j _releases_ and _release candidates_ all get deployed to the same https://repository.apache.org/#stagingRepositories[_staging repository_].
43-
Their `pom.xml` files all contain the same release version, e.g., `2.19.0`.
44-
There are no `-rc1`, `-rc2`, etc. suffixes in the version of a release candidate.
45-
Once a release candidate voting reaches to a consensus for release, associated artifacts simply get promoted from the _staging_ to the _public_ repository.
46-
Hence, there are no differences between releases and release candidates.
47-
====
48-
49-
How to carry out aforementioned changes are explained below in steps:
50-
51-
. Populate the `src/changelog/<releaseVersion>` directory (e.g., `src/changelog/2.19.0`) from the upcoming release changelog directory (e.g., `src/changelog/.2.x.x`):
52-
+
53-
[source,bash]
54-
----
55-
./mvnw -N -P changelog-releaser
56-
----
57-
+
58-
[IMPORTANT]
59-
====
60-
`changelog-releaser` Maven profile obtains the new release version from `Log4jReleaseVersion` property.
61-
If needed, you can override it to point to another release version:
62-
63-
[source,bash]
64-
----
65-
./mvnw -N -P changelog-releaser -DLog4jReleaseVersion=6.6.6
66-
----
67-
====
68-
. Verify that all changelog entry files are moved from `src/changelog/.<releaseVersionMajor>.x.x` directory (e.g., `src/changelog/.2.x.x`)
69-
. Verify that `src/changelog/<releaseVersion>` directory (e.g., `src/changelog/2.19.0`) is created, and it contains `.changelog.adoc.ftl`, `.release.xml`, and changelog entry files
70-
+
71-
[IMPORTANT]
72-
====
73-
If `src/changelog/<releaseVersion>` directory (e.g., `src/changelog/2.19.0`) already exists with certain content, `changelog-releaser` profile will only move new changelog entry files and override `.release.xml`; `.changelog.adoc.ftl` will not be touched, if it already exists.
74-
This allows one to run `changelog-releaser` profile multiple times, e.g., to incorporate changes added to a release candidate.
75-
====
76-
. Edit the populated `.changelog.adoc.ftl`
77-
. `git add` the changes in `src/changelog` and commit them
33+
For the impatient, simply copy one of the existing `<issueId>_<summary>.xml` files in xref:src/changelog/.2.x.x[`src/changelog/.2.x.x`] directory and adapt to your needs.
34+
See {log4j-changelog-uri}/README.adoc#changelog-entry-file[the official documentation] for details.

‎pom.xml

+12-1
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@
360360
<docker-maven-plugin.version>0.40.2</docker-maven-plugin.version>
361361
<exam-maven-plugin.version>4.13.5</exam-maven-plugin.version>
362362
<findsecbugs-plugin.version>1.12.0</findsecbugs-plugin.version>
363-
<log4j-tools.version>0.2.0</log4j-tools.version>
363+
<log4j-tools.version>0.3.0</log4j-tools.version>
364364
<maven-artifact-plugin.version>3.4.0</maven-artifact-plugin.version>
365365
<maven-bundle-plugin.version>5.1.8</maven-bundle-plugin.version>
366366
<maven-checkstyle-plugin.version>3.2.0</maven-checkstyle-plugin.version>
@@ -1768,6 +1768,17 @@
17681768
<inherited>false</inherited>
17691769
<configuration>
17701770
<outputDirectory>${project.build.directory}/generated-sources/site/asciidoc/release-notes</outputDirectory>
1771+
<indexTemplates>
1772+
<template>
1773+
<source>.index.adoc.ftl</source>
1774+
</template>
1775+
</indexTemplates>
1776+
<changelogTemplates>
1777+
<template>
1778+
<source>.release-notes.adoc.ftl</source>
1779+
<target>%v.adoc</target>
1780+
</template>
1781+
</changelogTemplates>
17711782
</configuration>
17721783
<executions>
17731784
<execution>

0 commit comments

Comments
 (0)
Please sign in to comment.