You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by gi...@apache.org on 2022/03/15 10:15:47 UTC

[logging-log4j2] branch dependabot/maven/org.apache.maven.plugins-maven-project-info-reports-plugin-3.2.2 updated (1c8b196 -> 3f5eb1f)

This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch dependabot/maven/org.apache.maven.plugins-maven-project-info-reports-plugin-3.2.2
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git.


 discard 1c8b196  Bump maven-project-info-reports-plugin from 2.9 to 3.2.2
     add 1a364cc  [LOG4J2-3419] Adds support for custom Log4j 1.x levels (#789)
     add 1f17804  Update changelog
     add a4edd2f  Bump slf4jVersion from 1.7.35 to 1.7.36 (#776)
     add 7b9c413  Fix code typo in customconfig.xml (#781)
     add 3a146ee  Catch all FileAppenderTest asynchronous errors
     add 4e571f3  FileAppenderTest: increase thread pool termination timeout
     add 10460ec  Switches Cassandra to random port
     add 28b1ae6  Bump logbackVersion from 1.2.3 to 1.2.11 (#793)
     add c73c804  Changes Cassandra's port to an ephemeral one
     add e9b6bd0  Bump maven-pdf-plugin from 1.2 to 1.5.1 (#796)
     add bad6726  Bump maven-pmd-plugin from 3.10.0 to 3.16.0 (#795)
     add 65496a5  Bump maven-scm-plugin from 1.9.5 to 1.12.2 (#778)
     add 3f5eb1f  Bump maven-project-info-reports-plugin from 2.9 to 3.2.2

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (1c8b196)
            \
             N -- N -- N   refs/heads/dependabot/maven/org.apache.maven.plugins-maven-project-info-reports-plugin-3.2.2 (3f5eb1f)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 log4j-1.2-api/pom.xml                              |   4 +
 .../src/main/java/org/apache/log4j/Category.java   |  12 +-
 .../src/main/java/org/apache/log4j/Hierarchy.java  |   3 +-
 .../src/main/java/org/apache/log4j/Level.java      |  26 ++-
 .../src/main/java/org/apache/log4j/Priority.java   |   9 +
 .../org/apache/log4j/PropertyConfigurator.java     |   3 +-
 .../org/apache/log4j/bridge/LogEventAdapter.java   |  21 +-
 .../builders/filter/LevelMatchFilterBuilder.java   |   3 +-
 .../builders/filter/LevelRangeFilterBuilder.java   |   5 +-
 .../apache/log4j/config/Log4j1Configuration.java   |   7 +
 .../org/apache/log4j/config/PropertySetter.java    |   2 +-
 .../org/apache/log4j/helpers/OptionConverter.java  | 244 +++++++++++++++------
 .../org/apache/log4j/helpers/UtilLoggingLevel.java |   2 +-
 .../org/apache/log4j/xml/XmlConfiguration.java     |  19 +-
 .../log4j/helpers/OptionConverterLevelTest.java    | 123 +++++++++++
 .../apache/log4j/helpers/UtilLoggingLevelTest.java |  36 ++-
 .../logging/log4j/cassandra/CassandraRule.java     |  49 ++++-
 .../src/test/resources/CassandraAppenderTest.xml   |   2 +-
 .../log4j/core/appender/FileAppenderTest.java      |  29 ++-
 pom.xml                                            |  10 +-
 src/changes/changes.xml                            |   3 +
 src/site/xdoc/manual/customconfig.xml              |   2 +-
 22 files changed, 459 insertions(+), 155 deletions(-)
 create mode 100644 log4j-1.2-api/src/test/java/org/apache/log4j/helpers/OptionConverterLevelTest.java