This is an automated email from the ASF dual-hosted git repository.
mattsicker pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git
from 945cb7fecb [LOG4J2-1362] Create a YAML layout (part)
add 5838921275 Remove legacy OSGi support
add ab6bd338db Clean up unused classpath-scanning things
add 68a57ce0de Use explicit Configuration in test
add 5237149e27 Access current thread group directly
add d0f7e533a3 Update changelog entry
add 295d5e460a Remove tests related to SecurityManager
add e15359668c Access system properties directly
add 79d21aee3a Remove SecurityManager checks from LoaderUtil
add 6e00230de9 Use system properties directly
add 3118f47997 Remove ServiceRegistry in favor of utility function
new e2d2ad13b9 Merge branch 'main' into the-great-deletion
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../log4j/test/junit/SecurityManagerTestRule.java | 93 ----
...EnvironmentPropertySourceSecurityManagerIT.java | 83 ----
...ropertyFilePropertySourceSecurityManagerIT.java | 89 ----
.../logging/log4j/util/ServiceLoaderUtilTest.java | 27 +-
.../logging/log4j/util/StackLocatorTestIT.java | 64 ---
.../logging/log4j/util/StackLocatorUtilTest.java | 11 +-
...mPropertiesPropertySourceSecurityManagerIT.java | 92 ----
log4j-api/pom.xml | 10 -
.../logging/log4j/message/ThreadDumpMessage.java | 16 +-
.../apache/logging/log4j/spi/LoggingSystem.java | 65 +--
.../org/apache/logging/log4j/util/Activator.java | 160 -------
.../org/apache/logging/log4j/util/LoaderUtil.java | 184 +++-----
.../logging/log4j/util/OsgiServiceLocator.java | 80 ----
.../util/PrivateSecurityManagerStackTraceUtil.java | 80 ----
.../apache/logging/log4j/util/PropertiesUtil.java | 41 +-
.../logging/log4j/util/ServiceLoaderUtil.java | 142 +-----
.../apache/logging/log4j/util/ServiceRegistry.java | 148 ------
.../apache/logging/log4j/util/StackLocator.java | 4 -
.../org/apache/logging/log4j/util/Strings.java | 3 +-
.../log4j/util/SystemPropertiesPropertySource.java | 37 +-
.../apache/logging/log4j/util/package-info.java | 2 +-
.../log4j/core/appender/FileAppenderTest.java | 46 +-
.../log4j/core/impl/ThrowableProxyTest.java | 78 ----
log4j-core/pom.xml | 12 -
.../log4j/core/config/AbstractConfiguration.java | 11 +-
.../config/builder/impl/BuiltConfiguration.java | 4 +-
.../config/composite/CompositeConfiguration.java | 6 +-
.../log4j/core/config/jason/JsonConfiguration.java | 5 +-
.../log4j/core/config/json/JsonConfiguration.java | 5 +-
.../log4j/core/config/xml/XmlConfiguration.java | 5 +-
.../log4j/core/impl/ThreadContextDataInjector.java | 24 +-
.../apache/logging/log4j/core/osgi/Activator.java | 47 --
.../log4j/core/osgi/BundleContextSelector.java | 172 -------
.../log4j/core/osgi/OsgiBundlePostProcessor.java | 72 ---
.../log4j/core/util/Log4jThreadFactory.java | 4 +-
.../logging/log4j/core/util/WatchManager.java | 12 +-
.../logging/log4j/smtp/appender/SmtpManager.java | 3 +-
.../logging/log4j/osgi/tests/CoreOsgiTest.java | 13 -
.../log4j/perf/jmh/ReflectionBenchmark.java | 13 -
log4j-plugin-processor/pom.xml | 11 -
log4j-plugins-test/pom.xml | 11 -
.../util/ResolverUtilCustomProtocolTest.java | 172 -------
.../log4j/plugins/util/ResolverUtilTest.java | 216 ---------
log4j-plugins/pom.xml | 11 -
.../org/apache/logging/log4j/plugins/di/DI.java | 8 +-
.../log4j/plugins/model/PluginRegistry.java | 152 +------
.../logging/log4j/plugins/osgi/Activator.java | 187 --------
.../logging/log4j/plugins/util/ResolverUtil.java | 497 ---------------------
.../logging/log4j/smtp/appender/SmtpManager.java | 3 +-
...abase_h2.xml => remove_legacy_osgi_support.xml} | 6 +-
...bom.xml => remove_security_manager_support.xml} | 8 +-
51 files changed, 203 insertions(+), 3042 deletions(-)
delete mode 100644
log4j-api-test/src/main/java/org/apache/logging/log4j/test/junit/SecurityManagerTestRule.java
delete mode 100644
log4j-api-test/src/test/java/org/apache/logging/log4j/util/EnvironmentPropertySourceSecurityManagerIT.java
delete mode 100644
log4j-api-test/src/test/java/org/apache/logging/log4j/util/PropertyFilePropertySourceSecurityManagerIT.java
delete mode 100644
log4j-api-test/src/test/java/org/apache/logging/log4j/util/StackLocatorTestIT.java
delete mode 100644
log4j-api-test/src/test/java/org/apache/logging/log4j/util/SystemPropertiesPropertySourceSecurityManagerIT.java
delete mode 100644
log4j-api/src/main/java/org/apache/logging/log4j/util/Activator.java
delete mode 100644
log4j-api/src/main/java/org/apache/logging/log4j/util/OsgiServiceLocator.java
delete mode 100644
log4j-api/src/main/java/org/apache/logging/log4j/util/PrivateSecurityManagerStackTraceUtil.java
delete mode 100644
log4j-api/src/main/java/org/apache/logging/log4j/util/ServiceRegistry.java
delete mode 100644
log4j-core/src/main/java/org/apache/logging/log4j/core/osgi/Activator.java
delete mode 100644
log4j-core/src/main/java/org/apache/logging/log4j/core/osgi/BundleContextSelector.java
delete mode 100644
log4j-core/src/main/java/org/apache/logging/log4j/core/osgi/OsgiBundlePostProcessor.java
delete mode 100644
log4j-plugins-test/src/test/java/org/apache/logging/log4j/plugins/util/ResolverUtilCustomProtocolTest.java
delete mode 100644
log4j-plugins-test/src/test/java/org/apache/logging/log4j/plugins/util/ResolverUtilTest.java
delete mode 100644
log4j-plugins/src/main/java/org/apache/logging/log4j/plugins/osgi/Activator.java
delete mode 100644
log4j-plugins/src/main/java/org/apache/logging/log4j/plugins/util/ResolverUtil.java
copy src/changelog/.3.x.x/{update_com_h2database_h2.xml =>
remove_legacy_osgi_support.xml} (59%)
copy src/changelog/.3.x.x/{update_io_netty_netty_bom.xml =>
remove_security_manager_support.xml} (58%)