|
15 | 15 | limitations under the License.
|
16 | 16 | ////
|
17 | 17 |
|
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] |
19 | 20 |
|
20 | 21 | == Where are changelogs stored?
|
21 | 22 |
|
22 | 23 | Changelogs are stored in xref:src/changelog[`src/changelog`] directory.
|
23 | 24 |
|
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. |
25 | 26 | These exported AsciiDoc files are not committed, since they are only relevant for the website, and they cause merge-conflicts between feature branches.
|
26 | 27 | `./mvnw site` command can be used to manually generate these files.
|
27 | 28 |
|
28 | 29 | See {log4j-changelog-ref} project for further details; how to use this changelog system, what steps are needed while making a new release, etc.
|
29 | 30 |
|
30 |
| -== I am about to deploy a new release. What shall I do? |
| 31 | +== How can I create a changelog entry? |
31 | 32 |
|
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. |
0 commit comments