Skip to content

Commit 07ab0ce

Browse files
committed
Release changelog
1 parent d48454c commit 07ab0ce

21 files changed

+99
-32
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
////
2+
Licensed to the Apache Software Foundation (ASF) under one or more
3+
contributor license agreements. See the NOTICE file distributed with
4+
this work for additional information regarding copyright ownership.
5+
The ASF licenses this file to You under the Apache License, Version 2.0
6+
(the "License"); you may not use this file except in compliance with
7+
the License. You may obtain a copy of the License at
8+
9+
https://www.apache.org/licenses/LICENSE-2.0
10+
11+
Unless required by applicable law or agreed to in writing, software
12+
distributed under the License is distributed on an "AS IS" BASIS,
13+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
See the License for the specific language governing permissions and
15+
limitations under the License.
16+
////
17+
18+
[#release-notes-${release.version?replace("[^a-zA-Z0-9]", "-", "r")}]
19+
== ${release.version}
20+
21+
<#if release.date?has_content>Release date:: ${release.date}</#if>
22+
23+
This releases contains ...
24+
25+
<#include "../.changelog.adoc.ftl">

src/changelog/2.23.1/.release.xml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
~ Licensed to the Apache Software Foundation (ASF) under one or more
4+
~ contributor license agreements. See the NOTICE file distributed with
5+
~ this work for additional information regarding copyright ownership.
6+
~ The ASF licenses this file to you under the Apache License, Version 2.0
7+
~ (the "License"); you may not use this file except in compliance with
8+
~ the License. You may obtain a copy of the License at
9+
~
10+
~ http://www.apache.org/licenses/LICENSE-2.0
11+
~
12+
~ Unless required by applicable law or agreed to in writing, software
13+
~ distributed under the License is distributed on an "AS IS" BASIS,
14+
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
~ See the License for the specific language governing permissions and
16+
~ limitations under the License.
17+
-->
18+
<release xmlns="http://logging.apache.org/log4j/changelog"
19+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20+
xsi:schemaLocation="http://logging.apache.org/log4j/changelog https://logging.apache.org/log4j/changelog-0.1.3.xsd"
21+
date="2024-03-06" version="2.23.1"/>

src/site/_constants.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
////
3535
3636
:project-github-url: https://github.com/apache/logging-log4j2
37-
:project-version: 2.23.1-SNAPSHOT
37+
:project-version: 2.23.1
3838
:project-name: Log4j
3939
:project-id: log4j
4040
:java-target-version: 8

src/site/_release-notes.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
[#release-notes]
3737
= Release Notes
3838
39-
include::_release-notes/_2.x.x.adoc[]
39+
include::_release-notes/_2.23.1.adoc[]
4040
include::_release-notes/_2.23.0.adoc[]
4141
include::_release-notes/_2.22.1.adoc[]
4242
include::_release-notes/_2.22.0.adoc[]

src/site/_release-notes/_2.23.1.adoc

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
////
2+
Licensed to the Apache Software Foundation (ASF) under one or more
3+
contributor license agreements. See the NOTICE file distributed with
4+
this work for additional information regarding copyright ownership.
5+
The ASF licenses this file to You under the Apache License, Version 2.0
6+
(the "License"); you may not use this file except in compliance with
7+
the License. You may obtain a copy of the License at
8+
9+
https://www.apache.org/licenses/LICENSE-2.0
10+
11+
Unless required by applicable law or agreed to in writing, software
12+
distributed under the License is distributed on an "AS IS" BASIS,
13+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
See the License for the specific language governing permissions and
15+
limitations under the License.
16+
////
17+
18+
[#release-notes-2-23-1]
19+
== 2.23.1
20+
21+
Release date:: 2024-03-06
22+
23+
This releases contains ...
24+
25+
26+
[#release-notes-2-23-1-changed]
27+
=== Changed
28+
29+
* Fix handling of `LoggerContextAware` lookups (https://github.com/apache/logging-log4j2/pull/2309[2309])
30+
* Fix NPE in `PatternProcessor` for a `UNIX_MILLIS` pattern (https://github.com/apache/logging-log4j2/pull/2346[2346])
31+
* Improve performance of `CloseableThreadContext#closeMap()` (https://github.com/apache/logging-log4j2/pull/2296[2296])
32+
33+
[#release-notes-2-23-1-fixed]
34+
=== Fixed
35+
36+
* Fix that parameterized message formatting doesn't throw an exception when there are insufficient number of parameters (https://github.com/apache/logging-log4j2/pull/2343[2343])
37+
* Fix `StatusLogger` log level filtering when debug mode is enabled (https://github.com/apache/logging-log4j2/issues/2337[2337])
38+
* Add `log4j2.StatusLogger.dateFormatZone` system property to set the time-zone `StatusLogger` uses to format `java.time.Instant`. Without this, formatting patterns accessing to time-zone-specific fields (e.g., year-of-era) cause failures. (https://github.com/apache/logging-log4j2/pull/2322[2322])
39+
* Fix `StatusLogger` to correctly read `log4j2.StatusLogger.properties` resource (https://github.com/apache/logging-log4j2/pull/2354[2354])
40+
* Fix stack overflow in `StatusLogger` (https://github.com/apache/logging-log4j2/pull/2322[2322])
41+
42+
[#release-notes-2-23-1-updated]
43+
=== Updated
44+
45+
* Update `jakarta.activation:jakarta.activation-api` to version `2.1.3` (https://github.com/apache/logging-log4j2/pull/2335[2335])
46+
* Update `jakarta.mail:jakarta.mail-api` to version `2.1.3` (https://github.com/apache/logging-log4j2/pull/2348[2348])
47+
* Update `org.apache.commons:commons-compress` to version `1.26.0` (https://github.com/apache/logging-log4j2/pull/2304[2304])
48+
* Update `org.apache.commons:commons-dbcp2` to version `2.12.0` (https://github.com/apache/logging-log4j2/pull/2344[2344])
49+
* Update `org.apache.kafka:kafka-clients` to version `3.7.0` (https://github.com/apache/logging-log4j2/pull/2326[2326])
50+
* Update `org.eclipse.angus:angus-activation` to version `2.0.2` (https://github.com/apache/logging-log4j2/pull/2336[2336])
51+
* Update `org.eclipse.angus:jakarta.mail` to version `2.0.3` (https://github.com/apache/logging-log4j2/pull/2349[2349])

src/site/_release-notes/_2.x.x.adoc

Lines changed: 0 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -22,33 +22,3 @@
2222
2323
This releases contains ...
2424
25-
26-
[#release-notes-2-x-x-changed]
27-
=== Changed
28-
29-
* Fix handling of `LoggerContextAware` lookups. (https://github.com/apache/logging-log4j2/pull/2309[2309])
30-
* Improve performance of `CloseableThreadContext#closeMap()` (https://github.com/apache/logging-log4j2/pull/2296[2296])
31-
32-
[#release-notes-2-x-x-fixed]
33-
=== Fixed
34-
35-
* Fix `StatusLogger` log level filtering when debug mode is enabled (https://github.com/apache/logging-log4j2/issues/2337[2337])
36-
* Add `log4j2.StatusLogger.DateFormatZone` system property to set the time-zone `StatusLogger` uses to format `java.time.Instant`. Without this formatting patterns accessing to time-zone-specific fields (e.g., year-of-era) cause failures. (https://github.com/apache/logging-log4j2/pull/2322[2322])
37-
* Fix stack overflow in `StatusLogger` (https://github.com/apache/logging-log4j2/pull/2322[2322])
38-
39-
[#release-notes-2-x-x-updated]
40-
=== Updated
41-
42-
* Update `co.elastic.clients:elasticsearch-java` to version `8.12.2` (https://github.com/apache/logging-log4j2/pull/2315[2315])
43-
* Update `co.elastic.logging:log4j2-ecs-layout` to version `1.6.0` (https://github.com/apache/logging-log4j2/pull/2301[2301])
44-
* Update `com.github.tomakehurst:wiremock-jre8` to version `2.35.2` (https://github.com/apache/logging-log4j2/pull/2306[2306])
45-
* Update `github/codeql-action` to version `3.24.6` (https://github.com/apache/logging-log4j2/pull/2332[2332])
46-
* Update `io.fabric8:docker-maven-plugin` to version `0.44.0` (https://github.com/apache/logging-log4j2/pull/2299[2299])
47-
* Update `jakarta.activation:jakarta.activation-api` to version `2.1.3` (https://github.com/apache/logging-log4j2/pull/2335[2335])
48-
* Update `jakarta.mail:jakarta.mail-api` to version `2.1.3` (https://github.com/apache/logging-log4j2/pull/2348[2348])
49-
* Update `org.apache.commons:commons-compress` to version `1.26.0` (https://github.com/apache/logging-log4j2/pull/2304[2304])
50-
* Update `org.apache.commons:commons-dbcp2` to version `2.12.0` (https://github.com/apache/logging-log4j2/pull/2344[2344])
51-
* Update `org.apache.kafka:kafka-clients` to version `3.7.0` (https://github.com/apache/logging-log4j2/pull/2326[2326])
52-
* Update `org.codehaus.groovy:groovy-bom` to version `3.0.21` (https://github.com/apache/logging-log4j2/pull/2345[2345])
53-
* Update `org.eclipse.angus:angus-activation` to version `2.0.2` (https://github.com/apache/logging-log4j2/pull/2336[2336])
54-
* Update `org.eclipse.angus:jakarta.mail` to version `2.0.3` (https://github.com/apache/logging-log4j2/pull/2349[2349])

0 commit comments

Comments
 (0)