Skip to content

Commit

Permalink
Another round of link fixing
Browse files Browse the repository at this point in the history
  • Loading branch information
ppkarwasz committed Jul 18, 2024
1 parent f0e67d7 commit a1badbe
Show file tree
Hide file tree
Showing 53 changed files with 109 additions and 78 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ public String remove(final String key) {
}

/**
* Formats the Structured data as described in <a href="https://tools.ietf.org/html/rfc5424">RFC 5424</a>.
* Formats the Structured data as described in <a href="https://datatracker.ietf.org/doc/html/rfc5424">RFC 5424</a>.
*
* @return The formatted String.
*/
Expand All @@ -250,7 +250,7 @@ public String asString() {
}

/**
* Formats the Structured data as described in <a href="https://tools.ietf.org/html/rfc5424">RFC 5424</a>.
* Formats the Structured data as described in <a href="https://datatracker.ietf.org/doc/html/rfc5424">RFC 5424</a>.
*
* @param format The format identifier.
* @return The formatted String.
Expand Down Expand Up @@ -316,7 +316,7 @@ public <CV, S> void forEach(final TriConsumer<String, ? super CV, S> action, fin
}

/**
* Formats the Structured data as described in <a href="https://tools.ietf.org/html/rfc5424">RFC 5424</a>.
* Formats the Structured data as described in <a href="https://datatracker.ietf.org/doc/html/rfc5424">RFC 5424</a>.
*
* @param format The format identifier.
* @return The formatted String.
Expand Down Expand Up @@ -380,8 +380,9 @@ public String getFormattedMessage() {
* @param formats
* An array of Strings that provide extra information about how to format the message. MapMessage uses
* the first format specifier it recognizes. The supported formats are XML, JSON, and JAVA. The default
* format is key1="value1" key2="value2" as required by <a href="https://tools.ietf.org/html/rfc5424">RFC
* 5424</a> messages.
* format is key1="value1" key2="value2" as required by
* <a href="https://datatracker.ietf.org/doc/html/rfc5424">RFC 5424</a>
* messages.
*
* @return The formatted message.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* values.
* </p>
*
* @see <a href="https://tools.ietf.org/html/rfc5424">RFC 5424</a>
* @see <a href="https://datatracker.ietf.org/doc/html/rfc5424">RFC 5424</a>
*/
@AsynchronouslyFormattable
public class StructuredDataMessage extends MapMessage<StructuredDataMessage, String> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
* http://www.codeproject.com/Tips/683614/Things-to-Know-about-Memory-Mapped-File-in-Java</a>
* @see <a href="https://bugs.openjdk.org/browse/JDK-6893654">JDK-6893654</a>
* @see <a href="https://bugs.openjdk.org/browse/JDK-4724038">JDK-4724038</a>
* @see <a href="https://stackoverflow.com/q/9261316/11748454">Memory-Mapped MappedByteBuffer or Direct ByteBuffer for DB Implementation?</a>
* @see <a href="https://stackoverflow.com/questions/9261316/memory-mapped-mappedbytebuffer-or-direct-bytebuffer-for-db-implementation">Memory-Mapped MappedByteBuffer or Direct ByteBuffer for DB Implementation?</a>
*
* @since 2.1
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
/**
* Wraps messages that are formatted according to RFC 5425.
*
* @see <a href="https://tools.ietf.org/html/rfc5425">RFC 5425</a>
* @see <a href="https://datatracker.ietf.org/doc/html/rfc5425">RFC 5425</a>
*/
public class TlsSyslogFrame {
private final String message;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
package org.apache.logging.log4j.core.net;

/**
* Enumerates the <a href="https://tools.ietf.org/html/rfc1349">RFC 1349</a> TOS field.
* Enumerates the <a href="https://datatracker.ietf.org/doc/html/rfc1349">RFC 1349</a> TOS field.
*
* <ul>
* <li><code>IPTOS_LOWCOST (0x02)</code></li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* Models a point in time, suitable for event timestamps.
* <p>
* Provides methods for obtaining high precision time information similar to the
* <a href="https://docs.oracle.com/javase/9/docs/api/java/time/Instant.html">Instant</a> class introduced in Java 8,
* <a href="https://docs.oracle.com/javase/8/docs/api/java/time/Instant.html">Instant</a> class introduced in Java 8,
* while also supporting the legacy millisecond precision API.
* </p><p>
* Depending on the platform, time sources ({@link Clock} implementations) may produce high precision or millisecond
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

/**
* An instantaneous point on the time line, used for high-precision log event timestamps.
* Modeled on <a href="https://docs.oracle.com/javase/9/docs/api/index.html?java/time/class-use/Instant.html">java.time.Instant</a>,
* Modeled on <a href="https://docs.oracle.com/javase/8/docs/api/java/time/Instant.html">java.time.Instant</a>,
* except that this version is mutable to prevent allocating temporary objects that need to be garbage-collected later.
* <p>
* Instances of this class are <em>not</em> thread-safe and should not be shared between threads.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

/**
* Utility class for working with Java {@link Type}s and derivatives. This class is adapted heavily from the
* <a href="https://spring.io/projects/spring-framework">Spring Framework</a>, specifically the
* <a href="https://spring.io/projects/spring-framework/">Spring Framework</a>, specifically the
* <a href="https://docs.spring.io/spring-framework/docs/current/javadoc-api/org/springframework/util/TypeUtils.html">TypeUtils</a>
* class.
*
Expand Down
2 changes: 1 addition & 1 deletion src/changelog/.2.x.x/2703_log4j_debug.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
xmlns="https://logging.apache.org/xml/ns"
xsi:schemaLocation="https://logging.apache.org/xml/ns https://logging.apache.org/xml/ns/log4j-changelog-0.xsd"
type="fixed">
<issue id="2703" link="https://github.com/apache/logging-log4j2/issue/2703"/>
<issue id="2703" link="https://github.com/apache/logging-log4j2/issues/2703"/>
<description format="asciidoc">Fix handling of `log4j2.debug`.</description>
</entry>
5 changes: 4 additions & 1 deletion src/changelog/2.21.0/.release-notes.adoc.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@
<#if release.date?has_content>Release date:: ${release.date}</#if>

This release primarily focuses on enhancements to our OSGi and JPMS support and contains several bug fixes.
It will be the first release built and signed by the CI using the https://keyserver.ubuntu.com/pks/lookup?search=077E8893A6DCC33DD4A4D5B256E73BA9A0B592D0&op=index[ASF Logging Services Release Manager GPG key], which is shared in https://www.apache.org/dist/logging/KEYS[KEYS].
It will be the first release built and signed by the CI using the
https://keyserver.ubuntu.com/pks/lookup?search=077E8893A6DCC33DD4A4D5B256E73BA9A0B592D0&op=index[ASF Logging Services Release Manager GPG key],
which is shared in
https://downloads.apache.org/logging/KEYS[KEYS].

The Log4j 2.21.0 API, as well as the other artifacts, maintains binary compatibility with the previous release.

Expand Down
2 changes: 1 addition & 1 deletion src/changelog/2.21.0/1312_add_environment_arbiter.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
xmlns="https://logging.apache.org/xml/ns"
xsi:schemaLocation="https://logging.apache.org/xml/ns https://logging.apache.org/xml/ns/log4j-changelog-0.xsd"
type="fixed">
<issue id="1312" link="https://github.com/apache/logging-log4j2/issues/1312"/>
<issue id="1312" link="https://github.com/apache/logging-log4j2/pull/1312"/>
<description format="asciidoc">
Added environment variable arbiter
</description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
xmlns="https://logging.apache.org/xml/ns"
xsi:schemaLocation="https://logging.apache.org/xml/ns https://logging.apache.org/xml/ns/log4j-changelog-0.xsd"
type="changed">
<issue id="1369" link="https://github.com/apache/logging-log4j2/issues/1369"/>
<issue id="1369" link="https://github.com/apache/logging-log4j2/pull/1369"/>
<description format="asciidoc">
Bumped the minimum Java version required for the build to JDK 11. Runtime requirements remain unchanged.
</description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
xmlns="https://logging.apache.org/xml/ns"
xsi:schemaLocation="https://logging.apache.org/xml/ns https://logging.apache.org/xml/ns/log4j-changelog-0.xsd"
type="fixed">
<issue id="1485" link="https://github.com/apache/logging-log4j2/issues/1485"/>
<issue id="1485" link="https://github.com/apache/logging-log4j2/pull/1485"/>
<description format="asciidoc">Fixed concurrent date-time formatting issue in `PatternLayout`</description>
</entry>
2 changes: 1 addition & 1 deletion src/changelog/2.21.0/1681_fix_and_improve_lookup_docs.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
xmlns="https://logging.apache.org/xml/ns"
xsi:schemaLocation="https://logging.apache.org/xml/ns https://logging.apache.org/xml/ns/log4j-changelog-0.xsd"
type="fixed">
<issue id="1681" link="https://github.com/apache/logging-log4j2/issues/1681"/>
<issue id="1681" link="https://github.com/apache/logging-log4j2/pull/1681"/>
<issue id="LOG4J2-3504" link="https://issues.apache.org/jira/browse/LOG4J2-3504"/>
<description format="asciidoc">
Removed incorrect mention of `base64` lookup and improve the rest of the lookup manual
Expand Down
2 changes: 1 addition & 1 deletion src/changelog/2.21.0/update-1runtime-angus-activation.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
xmlns="https://logging.apache.org/xml/ns"
xsi:schemaLocation="https://logging.apache.org/xml/ns https://logging.apache.org/xml/ns/log4j-changelog-0.xsd"
type="updated">
<issue id="1591" link="https://github.com/apache/logging-log4j2/issues/1591"/>
<issue id="1591" link="https://github.com/apache/logging-log4j2/pull/1591"/>
<description format="asciidoc">
Update Eclipse Angus Activation to version https://github.com/eclipse-ee4j/angus-activation/releases/tag/2.0.1[2.0.1]
</description>
Expand Down
2 changes: 1 addition & 1 deletion src/changelog/2.21.0/update-1runtime-angus-mail.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
xmlns="https://logging.apache.org/xml/ns"
xsi:schemaLocation="https://logging.apache.org/xml/ns https://logging.apache.org/xml/ns/log4j-changelog-0.xsd"
type="updated">
<issue id="1591" link="https://github.com/apache/logging-log4j2/issues/1591"/>
<issue id="1591" link="https://github.com/apache/logging-log4j2/pull/1591"/>
<description format="asciidoc">
Update Eclipse Angus Mail to version https://github.com/eclipse-ee4j/angus-mail/releases/tag/2.0.2[2.0.2]
</description>
Expand Down
2 changes: 1 addition & 1 deletion src/changelog/2.21.0/update-1runtime-cassandra-driver.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
xmlns="https://logging.apache.org/xml/ns"
xsi:schemaLocation="https://logging.apache.org/xml/ns https://logging.apache.org/xml/ns/log4j-changelog-0.xsd"
type="updated">
<issue id="1591" link="https://github.com/apache/logging-log4j2/issues/1591"/>
<issue id="1591" link="https://github.com/apache/logging-log4j2/pull/1591"/>
<description format="asciidoc">
Update `com.datastax.cassandra:cassandra-driver-core` to version `3.11.5`
</description>
Expand Down
2 changes: 1 addition & 1 deletion src/changelog/2.21.0/update-1runtime-cassandra.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
xmlns="https://logging.apache.org/xml/ns"
xsi:schemaLocation="https://logging.apache.org/xml/ns https://logging.apache.org/xml/ns/log4j-changelog-0.xsd"
type="updated">
<issue id="1591" link="https://github.com/apache/logging-log4j2/issues/1591"/>
<issue id="1591" link="https://github.com/apache/logging-log4j2/pull/1591"/>
<description format="asciidoc">
Update Apache Cassandra to version https://github.com/apache/cassandra/blob/cassandra-3.11/CHANGES.txt[3.11.16]
</description>
Expand Down
2 changes: 1 addition & 1 deletion src/changelog/2.21.0/update-1runtime-commons-compress.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
xmlns="https://logging.apache.org/xml/ns"
xsi:schemaLocation="https://logging.apache.org/xml/ns https://logging.apache.org/xml/ns/log4j-changelog-0.xsd"
type="updated">
<issue id="1591" link="https://github.com/apache/logging-log4j2/issues/1591"/>
<issue id="1591" link="https://github.com/apache/logging-log4j2/pull/1591"/>
<description format="asciidoc">
Update Apache Commons Compress to version https://commons.apache.org/proper/commons-compress/changes-report.html#a1.24.0[1.24.0]
</description>
Expand Down
2 changes: 1 addition & 1 deletion src/changelog/2.21.0/update-1runtime-commons-csv.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
xmlns="https://logging.apache.org/xml/ns"
xsi:schemaLocation="https://logging.apache.org/xml/ns https://logging.apache.org/xml/ns/log4j-changelog-0.xsd"
type="updated">
<issue id="1591" link="https://github.com/apache/logging-log4j2/issues/1591"/>
<issue id="1591" link="https://github.com/apache/logging-log4j2/pull/1591"/>
<description format="asciidoc">
Update Apache Commons CSV to version https://commons.apache.org/proper/commons-csv/changes-report.html#a1.10.0[1.10.0]
</description>
Expand Down
2 changes: 1 addition & 1 deletion src/changelog/2.21.0/update-1runtime-jackson.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
xmlns="https://logging.apache.org/xml/ns"
xsi:schemaLocation="https://logging.apache.org/xml/ns https://logging.apache.org/xml/ns/log4j-changelog-0.xsd"
type="updated">
<issue id="1591" link="https://github.com/apache/logging-log4j2/issues/1591"/>
<issue id="1591" link="https://github.com/apache/logging-log4j2/pull/1591"/>
<description format="asciidoc">
Update Jackson to version https://github.com/FasterXML/jackson/wiki/Jackson-Release-2.15.2[2.15.2]
</description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
xmlns="https://logging.apache.org/xml/ns"
xsi:schemaLocation="https://logging.apache.org/xml/ns https://logging.apache.org/xml/ns/log4j-changelog-0.xsd"
type="updated">
<issue id="1591" link="https://github.com/apache/logging-log4j2/issues/1591"/>
<issue id="1591" link="https://github.com/apache/logging-log4j2/pull/1591"/>
<description format="asciidoc">
Update Jakarta Activation API to version https://jakarta.ee/specifications/activation/2.1/changelog/[2.1.2]
</description>
Expand Down
2 changes: 1 addition & 1 deletion src/changelog/2.21.0/update-1runtime-jakarta-mail.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
xmlns="https://logging.apache.org/xml/ns"
xsi:schemaLocation="https://logging.apache.org/xml/ns https://logging.apache.org/xml/ns/log4j-changelog-0.xsd"
type="updated">
<issue id="1591" link="https://github.com/apache/logging-log4j2/issues/1591"/>
<issue id="1591" link="https://github.com/apache/logging-log4j2/pull/1591"/>
<description format="asciidoc">
Update Jakarta Mail API to version https://jakarta.ee/specifications/mail/2.1/changelog/[2.1.2]
</description>
Expand Down
2 changes: 1 addition & 1 deletion src/changelog/2.21.0/update-1runtime-jctools.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
xmlns="https://logging.apache.org/xml/ns"
xsi:schemaLocation="https://logging.apache.org/xml/ns https://logging.apache.org/xml/ns/log4j-changelog-0.xsd"
type="updated">
<issue id="1591" link="https://github.com/apache/logging-log4j2/issues/1591"/>
<issue id="1591" link="https://github.com/apache/logging-log4j2/pull/1591"/>
<description format="asciidoc">
Update JCTools to version https://github.com/JCTools/JCTools/blob/master/RELEASE-NOTES.md[4.0.1]
</description>
Expand Down
2 changes: 1 addition & 1 deletion src/changelog/2.21.0/update-1runtime-kafka.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
xmlns="https://logging.apache.org/xml/ns"
xsi:schemaLocation="https://logging.apache.org/xml/ns https://logging.apache.org/xml/ns/log4j-changelog-0.xsd"
type="updated">
<issue id="1591" link="https://github.com/apache/logging-log4j2/issues/1591"/>
<issue id="1591" link="https://github.com/apache/logging-log4j2/pull/1591"/>
<description format="asciidoc">
Update Apache Kafka to version https://archive.apache.org/dist/kafka/3.4.0/RELEASE_NOTES.html[3.4.0]
</description>
Expand Down
2 changes: 1 addition & 1 deletion src/changelog/2.21.0/update-1runtime-kubernetes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
xmlns="https://logging.apache.org/xml/ns"
xsi:schemaLocation="https://logging.apache.org/xml/ns https://logging.apache.org/xml/ns/log4j-changelog-0.xsd"
type="updated">
<issue id="1591" link="https://github.com/apache/logging-log4j2/issues/1591"/>
<issue id="1591" link="https://github.com/apache/logging-log4j2/pull/1591"/>
<description format="asciidoc">
Update Kubernetes client to version https://github.com/fabric8io/kubernetes-client/releases?q=5.12.4[5.12.4]
</description>
Expand Down
2 changes: 1 addition & 1 deletion src/changelog/2.21.0/update-1runtime-mongodb.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
xmlns="https://logging.apache.org/xml/ns"
xsi:schemaLocation="https://logging.apache.org/xml/ns https://logging.apache.org/xml/ns/log4j-changelog-0.xsd"
type="updated">
<issue id="1591" link="https://github.com/apache/logging-log4j2/issues/1591"/>
<issue id="1591" link="https://github.com/apache/logging-log4j2/pull/1591"/>
<description format="asciidoc">
Update `org.mongodb:mongodb-driver-core` to version `4.10.2`
</description>
Expand Down
2 changes: 1 addition & 1 deletion src/changelog/2.21.0/update-1runtime-netty.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
xmlns="https://logging.apache.org/xml/ns"
xsi:schemaLocation="https://logging.apache.org/xml/ns https://logging.apache.org/xml/ns/log4j-changelog-0.xsd"
type="updated">
<issue id="1591" link="https://github.com/apache/logging-log4j2/issues/1591"/>
<issue id="1591" link="https://github.com/apache/logging-log4j2/pull/1591"/>
<description format="asciidoc">
Update `io.netty:netty-bom` to version `4.1.97`
</description>
Expand Down
2 changes: 1 addition & 1 deletion src/changelog/2.21.0/update-1runtime-spring-boot.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
xmlns="https://logging.apache.org/xml/ns"
xsi:schemaLocation="https://logging.apache.org/xml/ns https://logging.apache.org/xml/ns/log4j-changelog-0.xsd"
type="updated">
<issue id="1591" link="https://github.com/apache/logging-log4j2/issues/1591"/>
<issue id="1591" link="https://github.com/apache/logging-log4j2/pull/1591"/>
<description format="asciidoc">
Update Spring Boot to version https://github.com/spring-projects/spring-boot/releases/tag/v2.7.15[2.7.15]
</description>
Expand Down
2 changes: 1 addition & 1 deletion src/changelog/2.21.0/update-1runtime-spring-framework.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
xmlns="https://logging.apache.org/xml/ns"
xsi:schemaLocation="https://logging.apache.org/xml/ns https://logging.apache.org/xml/ns/log4j-changelog-0.xsd"
type="updated">
<issue id="1591" link="https://github.com/apache/logging-log4j2/issues/1591"/>
<issue id="1591" link="https://github.com/apache/logging-log4j2/pull/1591"/>
<description format="asciidoc">
Update Spring Framework to version https://github.com/spring-projects/spring-framework/releases/tag/v5.3.29[5.3.29]
</description>
Expand Down
2 changes: 1 addition & 1 deletion src/changelog/2.21.0/update-1runtime-tomcat-juli.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
xmlns="https://logging.apache.org/xml/ns"
xsi:schemaLocation="https://logging.apache.org/xml/ns https://logging.apache.org/xml/ns/log4j-changelog-0.xsd"
type="updated">
<issue id="1591" link="https://github.com/apache/logging-log4j2/issues/1591"/>
<issue id="1591" link="https://github.com/apache/logging-log4j2/pull/1591"/>
<description format="asciidoc">
Update Tomcat JULI to version `10.0.27`
</description>
Expand Down
2 changes: 1 addition & 1 deletion src/changelog/2.21.0/update-1runtime-woodstox.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
xmlns="https://logging.apache.org/xml/ns"
xsi:schemaLocation="https://logging.apache.org/xml/ns https://logging.apache.org/xml/ns/log4j-changelog-0.xsd"
type="updated">
<issue id="1591" link="https://github.com/apache/logging-log4j2/issues/1591"/>
<issue id="1591" link="https://github.com/apache/logging-log4j2/pull/1591"/>
<description format="asciidoc">
Update Woodstox to version https://github.com/FasterXML/woodstox/blob/master/release-notes/VERSION[6.5.1]
</description>
Expand Down
4 changes: 3 additions & 1 deletion src/changelog/2.22.0/.release-notes.adoc.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ Generated SBOMs are attached as artifacts with `cyclonedx` classifier and XML ex
They contain `vulnerability-assertion` references to a {cyclonedx-vdr-link} that Apache Logging Services uses for all projects it maintains.
This VDR is accessible through the following URL: https://logging.apache.org/cyclonedx/vdr.xml[]

SBOM generation is streamlined by `logging-parent`, see https://logging.apache.org/logging-parent/latest/#cyclonedx-sbom[its website] for details.
SBOM generation is streamlined by `logging-parent`, see
https://logging.apache.org/logging-parent/features.html#cyclonedx-sbom[its website]
for details.

<#include "../.changelog.adoc.ftl">
2 changes: 1 addition & 1 deletion src/changelog/2.22.0/change_basic_auth_encoding.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
xmlns="https://logging.apache.org/xml/ns"
xsi:schemaLocation="https://logging.apache.org/xml/ns https://logging.apache.org/xml/ns/log4j-changelog-0.xsd"
type="changed">
<issue id="1970" link="https://github.com/apache/logging-log4j2/issues/1970"/>
<issue id="1970" link="https://github.com/apache/logging-log4j2/pull/1970"/>
<description format="asciidoc">
Change default encoding of HTTP Basic Authentication to UTF-8 and add `log4j2.configurationAuthorizationEncoding` property to overwrite it.
</description>
Expand Down
2 changes: 1 addition & 1 deletion src/changelog/2.22.1/java_17.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
xmlns="https://logging.apache.org/xml/ns"
xsi:schemaLocation="https://logging.apache.org/xml/ns https://logging.apache.org/xml/ns/log4j-changelog-0.xsd"
type="updated">
<issue id="2021" link="https://github.com/apache/logging-log4j2/issues/2021"/>
<issue id="2021" link="https://github.com/apache/logging-log4j2/pull/2021"/>
<description format="asciidoc">
Bumped the minimum Java version required for the build to Java 17. Runtime requirements remain unchanged.
</description>
Expand Down
2 changes: 1 addition & 1 deletion src/changelog/2.23.0/2282_fix_1_2_set_level.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
xmlns="https://logging.apache.org/xml/ns"
xsi:schemaLocation="https://logging.apache.org/xml/ns https://logging.apache.org/xml/ns/log4j-changelog-0.xsd"
type="fixed">
<issue id="2282" link="https://github.com/apache/logging-log4j2/issues/2282"/>
<issue id="2282" link="https://github.com/apache/logging-log4j2/pull/2282"/>
<description format="asciidoc">
Fix the behavior of `Logger#setLevel` and `Logger#getLevel` in the Log4j 1.2 bridge.
</description>
Expand Down
Loading

0 comments on commit a1badbe

Please sign in to comment.