[logging-log4cxx] branch master updated: Allow thread information to be included in JSON formatted output (#272)

2023-10-16 Thread swebb2066
This is an automated email from the ASF dual-hosted git repository.

swebb2066 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/logging-log4cxx.git


The following commit(s) were added to refs/heads/master by this push:
 new 09fb1c26 Allow thread information to be included in JSON formatted 
output (#272)
09fb1c26 is described below

commit 09fb1c267373b6f83f1fe4a4fccd561032669c67
Author: Stephen Webb 
AuthorDate: Tue Oct 17 13:14:09 2023 +1100

Allow thread information to be included in JSON formatted output (#272)
---
 src/main/cpp/jsonlayout.cpp   | 38 ---
 src/main/include/log4cxx/jsonlayout.h | 12 +++
 2 files changed, 47 insertions(+), 3 deletions(-)

diff --git a/src/main/cpp/jsonlayout.cpp b/src/main/cpp/jsonlayout.cpp
index d8676122..2a48224f 100644
--- a/src/main/cpp/jsonlayout.cpp
+++ b/src/main/cpp/jsonlayout.cpp
@@ -40,7 +40,8 @@ struct JSONLayout::JSONLayoutPrivate
dateFormat(),
ppIndentL1(LOG4CXX_STR("  ")),
ppIndentL2(LOG4CXX_STR("")),
-   expectedPatternLength(100) {}
+   expectedPatternLength(100),
+   threadInfo(false) {}
 
// Print no location info by default
bool locationInfo; //= false
@@ -53,6 +54,9 @@ struct JSONLayout::JSONLayoutPrivate
 
// Expected length of a formatted event excluding the message text
size_t expectedPatternLength;
+
+   // Thread info is not included by default
+   bool threadInfo; //= false
 };
 
 JSONLayout::JSONLayout() :
@@ -82,6 +86,16 @@ bool JSONLayout::getPrettyPrint() const
return m_priv->prettyPrint;
 }
 
+void JSONLayout::setThreadInfo(bool newValue)
+{
+   m_priv->threadInfo = newValue;
+}
+
+bool JSONLayout::getThreadInfo() const
+{
+   return m_priv->threadInfo;
+}
+
 LogString JSONLayout::getContentType() const
 {
return LOG4CXX_STR("application/json");
@@ -99,13 +113,18 @@ void JSONLayout::setOption(const LogString& option, const 
LogString& value)
{
setLocationInfo(OptionConverter::toBoolean(value, false));
}
-
-   if (StringHelper::equalsIgnoreCase(option,
+   else if (StringHelper::equalsIgnoreCase(option,
+   LOG4CXX_STR("THREADINFO"), LOG4CXX_STR("threadinfo")))
+   {
+   setThreadInfo(OptionConverter::toBoolean(value, false));
+   }
+   else if (StringHelper::equalsIgnoreCase(option,
LOG4CXX_STR("PRETTYPRINT"), LOG4CXX_STR("prettyprint")))
{
setPrettyPrint(OptionConverter::toBoolean(value, false));
}
 }
+
 void JSONLayout::format(LogString& output,
const spi::LoggingEventPtr& event,
Pool& p) const
@@ -127,6 +146,19 @@ void JSONLayout::format(LogString& output,
output.append(LOG4CXX_STR(","));
output.append(m_priv->prettyPrint ? LOG4CXX_EOL : LOG4CXX_STR(" "));
 
+   if (m_priv->threadInfo)
+   {
+   if (m_priv->prettyPrint)
+   {
+   output.append(m_priv->ppIndentL1);
+   }
+   appendQuotedEscapedString(output, LOG4CXX_STR("thread"));
+   output.append(LOG4CXX_STR(": "));
+   appendQuotedEscapedString(output, event->getThreadName());
+   output.append(LOG4CXX_STR(","));
+   output.append(m_priv->prettyPrint ? LOG4CXX_EOL : LOG4CXX_STR(" 
"));
+   }
+
if (m_priv->prettyPrint)
{
output.append(m_priv->ppIndentL1);
diff --git a/src/main/include/log4cxx/jsonlayout.h 
b/src/main/include/log4cxx/jsonlayout.h
index a3aa3cf5..3f4a2a1c 100644
--- a/src/main/include/log4cxx/jsonlayout.h
+++ b/src/main/include/log4cxx/jsonlayout.h
@@ -83,6 +83,17 @@ class LOG4CXX_EXPORT JSONLayout : public Layout
*/
bool getPrettyPrint() const;
 
+   /**
+   Set thread info output mode to \c newValue.
+
+   @param newValue true to include a thread 
identifier.
+   */
+   void setThreadInfo(bool newValue);
+
+   /**
+   Is a thread identifier included in the output?
+   */
+   bool getThreadInfo() const;
 
/**
Returns the content type output by this layout, i.e 
"application/json".
@@ -102,6 +113,7 @@ class LOG4CXX_EXPORT JSONLayout : public Layout
Supported options | Supported values | Default value
-- |  | ---
LocationInfo | True,False | false
+   ThreadInfo | True,False | false
PrettyPrint | True,False | false
*/
void setOption(const LogString& option, const LogString& value) 
override;



svn commit: r64565 - in /release/logging/log4j/2.21.0: apache-log4j-2.21.0-email-announce.txt apache-log4j-2.21.0-email-vote.txt

2023-10-16 Thread grobmeier
Author: grobmeier
Date: Mon Oct 16 19:43:45 2023
New Revision: 64565

Log:
removed unnecessary text files from release

Removed:
release/logging/log4j/2.21.0/apache-log4j-2.21.0-email-announce.txt
release/logging/log4j/2.21.0/apache-log4j-2.21.0-email-vote.txt



svn commit: r64566 - /dev/logging/log4j/

2023-10-16 Thread grobmeier
Author: grobmeier
Date: Mon Oct 16 19:44:49 2023
New Revision: 64566

Log:
removed released files

Removed:
dev/logging/log4j/apache-log4j-2.21.0-bin.zip
dev/logging/log4j/apache-log4j-2.21.0-bin.zip.asc
dev/logging/log4j/apache-log4j-2.21.0-bin.zip.sha512
dev/logging/log4j/apache-log4j-2.21.0-email-announce.txt
dev/logging/log4j/apache-log4j-2.21.0-email-vote.txt
dev/logging/log4j/apache-log4j-2.21.0-site.zip
dev/logging/log4j/apache-log4j-2.21.0-src.zip
dev/logging/log4j/apache-log4j-2.21.0-src.zip.asc
dev/logging/log4j/apache-log4j-2.21.0-src.zip.sha512



svn commit: r64564 - /release/logging/log4j/2.21.0/

2023-10-16 Thread grobmeier
Author: grobmeier
Date: Mon Oct 16 19:40:43 2023
New Revision: 64564

Log:
added log4j 2.21.0

Added:
release/logging/log4j/2.21.0/
release/logging/log4j/2.21.0/apache-log4j-2.21.0-bin.zip   (with props)
release/logging/log4j/2.21.0/apache-log4j-2.21.0-bin.zip.asc
release/logging/log4j/2.21.0/apache-log4j-2.21.0-bin.zip.sha512
release/logging/log4j/2.21.0/apache-log4j-2.21.0-email-announce.txt   (with 
props)
release/logging/log4j/2.21.0/apache-log4j-2.21.0-email-vote.txt   (with 
props)
release/logging/log4j/2.21.0/apache-log4j-2.21.0-site.zip   (with props)
release/logging/log4j/2.21.0/apache-log4j-2.21.0-src.zip   (with props)
release/logging/log4j/2.21.0/apache-log4j-2.21.0-src.zip.asc
release/logging/log4j/2.21.0/apache-log4j-2.21.0-src.zip.sha512

Added: release/logging/log4j/2.21.0/apache-log4j-2.21.0-bin.zip
==
Binary file - no diff available.

Propchange: release/logging/log4j/2.21.0/apache-log4j-2.21.0-bin.zip
--
svn:mime-type = application/octet-stream

Added: release/logging/log4j/2.21.0/apache-log4j-2.21.0-bin.zip.asc
==
--- release/logging/log4j/2.21.0/apache-log4j-2.21.0-bin.zip.asc (added)
+++ release/logging/log4j/2.21.0/apache-log4j-2.21.0-bin.zip.asc Mon Oct 16 
19:40:43 2023
@@ -0,0 +1,16 @@
+-BEGIN PGP SIGNATURE-
+
+iQIzBAABCgAdFiEEB36Ik6bcwz3UpNWyVuc7qaC1ktAFAmUoEugACgkQVuc7qaC1
+ktAzOg/5AdVvhZSnZcOJmY5EqjAXUC4e34QSaX3nef3cm2e3tyzIFEWd2UXyHhRr
+cpVcJP5IMuDDIrZum5SJXz2yDYdVe9+lPWq5EMnP3yy7zo60XRNw8SXFtnDdoaQc
+vL09FXqUghi5PuV4ZxLBLV2XfwwWZGt2T/F+mTfM7eSn7UxAasRytc9Oa/AYjyxq
+PavMIMaj6bZFCavWsgEqcwk7/iACIxfMCwSkjsJxhptScXO65iLVW2GepTF34NUq
+QG/i6Q8PGKIeyPQJELEyU8vg7WawQBjJ+8fjGpqjzBaqUfbBdLgeYQAYUwat7o87
+bY3v4tubrKyQUubKeU5R9hszGl1LiF4jkZF4roPJitElOSVUVlocdhLBgY39xKPd
+FbLv9ZiRA+AYnOzd3Fzfr5nygfHKuTPLaS8aOEnBsSbYgjWBWq8/gzq8vi6Ytth3
+0f1N20M5ZVIhFKZqjcoSzhu/bkDONbrdELApAoQgLUG7OErHZV7wI7dZNoJXynlT
+Jyd+FoDGZ90GXxWQqmyznKPYimGNbzQx7t7Bke3h+NQTe4P+fhEbSO9rIu6cSQdw
+pCIvlIvg0YsJDsH2NICqYsqpGx6evtsrnFDZyvMLh2FXgPlrm1ZxWh/zyorMVzZz
+NJcPXhXbkx8Oftr5NSTOcv+USThZ8Dn1uyyWS6mHZ434flgTHFo=
+=fIfG
+-END PGP SIGNATURE-

Added: release/logging/log4j/2.21.0/apache-log4j-2.21.0-bin.zip.sha512
==
--- release/logging/log4j/2.21.0/apache-log4j-2.21.0-bin.zip.sha512 (added)
+++ release/logging/log4j/2.21.0/apache-log4j-2.21.0-bin.zip.sha512 Mon Oct 16 
19:40:43 2023
@@ -0,0 +1 @@
+c54430afce249aa6a08b74f87c201890a0e84c36a7cc2710e69457913ee161e3b7d794b8554935f7cff507213a3ebb45445565f84f6ab3f2f9ca777236a8
  apache-log4j-2.21.0-bin.zip

Added: release/logging/log4j/2.21.0/apache-log4j-2.21.0-email-announce.txt
==
--- release/logging/log4j/2.21.0/apache-log4j-2.21.0-email-announce.txt (added)
+++ release/logging/log4j/2.21.0/apache-log4j-2.21.0-email-announce.txt Mon Oct 
16 19:40:43 2023
@@ -0,0 +1,116 @@
+To: log4j-u...@logging.apache.org, d...@logging.apache.org
+Title: [ANNOUNCE] Apache Log4j 2.21.0 released
+
+Apache Log4j team is pleased to announce the 2.21.0
+release. Apache Log4j is a versatile, industrial-strength
+Java logging framework composed of an API, its implementation,
+and components to assist the deployment for various use cases.
+For further information (support, download, etc.) see the project
+website[1].
+
+[1] https://logging.apache.org/log4j
+
+== Release Notes
+
+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=index[ASF
 Logging Services Release Manager GPG key], which is shared in 
https://www.apache.org/dist/logging/KEYS[KEYS].
+
+The Log4j 2.21.0 API, as well as the other artifacts, maintains binary 
compatibility with the previous release.
+
+Apache Log4j 2.21.0 requires Java 8 to run.
+The build requires JDK 11 and generates reproducible binaries.
+
+For complete information on Apache Log4j 2, including instructions on how to 
submit bug reports, patches, get support, or suggestions for improvement, see 
http://logging.apache.org/log4j/2.x/[the Apache Log4j 2 website].
+
+=== OSGi changes
+
+All the published artifacts are OSGi bundles or fragments.
+
+This release introduces a change in the bundle symbolic names to allow them to 
function as JPMS module name: all hyphens `-` present in the bundle names of 
previous releases were replaced by dots `.`.
+
+=== JPMS changes
+
+All the published artifacts have been migrated from automatic modules to named 
JPMS modules.
+All packages marked as private in the Javadoc are not 

[logging-log4j-transform] branch dependabot/maven/org.jacoco-jacoco-maven-plugin-0.8.11 created (now 1dc8312)

2023-10-16 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/org.jacoco-jacoco-maven-plugin-0.8.11
in repository https://gitbox.apache.org/repos/asf/logging-log4j-transform.git


  at 1dc8312  Bump org.jacoco:jacoco-maven-plugin from 0.8.10 to 0.8.11

No new revisions were added by this update.



[logging-log4j2] branch release/2.21.0 deleted (was 3333493d9a)

2023-10-16 Thread grobmeier
This is an automated email from the ASF dual-hosted git repository.

grobmeier pushed a change to branch release/2.21.0
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


 was 493d9a added linebreak

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



[logging-log4j2] branch 2.x updated (51cead192a -> 0e1ee448b2)

2023-10-16 Thread grobmeier
This is an automated email from the ASF dual-hosted git repository.

grobmeier pushed a change to branch 2.x
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


from 51cead192a Clean-up `log4j-bom` properties
 add 37ba9d8f62 Set version to `2.21.0`
 add 2b8a27f87a Release changelog for version `2.21.0`
 add 493d9a added linebreak
 new 0e1ee448b2 Merge tag 'rel/2.21.0' into 2.x

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:
 pom.xml|  2 +-
 .../{.2.x.x => 2.21.0}/.release-notes.adoc.ftl |  0
 src/changelog/{2.20.0 => 2.21.0}/.release.xml  |  4 +-
 .../1231_validation_path_condition.xml |  0
 .../1232_log4j-to-sfl4j-2-OSGiMetadata.xml |  0
 .../{.2.x.x => 2.21.0}/1275_fix-javadoc.xml|  0
 .../1281_remove_locale-dependent_toLowerCase.xml   |  0
 .../1284_redirect_old_javadoc_urls.xml |  0
 .../1312_add_environment_arbiter.xml   |  0
 .../{.2.x.x => 2.21.0}/1365_open-FileExtension.xml |  0
 .../{.2.x.x => 2.21.0}/1366_fix_java_sql_date.xml  |  0
 ...1367_Missing-Bundle-Activation-OSGiMetadata.xml |  0
 .../1369_bump_build_requirement_jdk_11.xml |  0
 ...tringResolver_uses_instance_after_recycling.xml |  0
 .../1381_support_parents_in_MarkerResolver.xml |  0
 ..._connectionStringSource_in_MongoDb4Provider.xml |  0
 .../1391_fix_NPE_in_PluginElementVisitor.xml   |  0
 .../1405_column_mapping_rename_type_attribute.xml  |  0
 .../1414_restore_SLF4J_Log4jMarker_visibility.xml  |  0
 ..._fix_ArrayOutOfBound_in_Log4jFixedFormatter.xml |  0
 .../1445_1549_fix_sync_roll_action_propagation.xml |  0
 .../1445_fix_synchronous_rolling_file_manager.xml  |  0
 .../1484_fix_StackLocator_stdout.xml   |  0
 ...5_fix_DatePatternConverter_when_TL_disabled.xml |  0
 .../1503_change_defaults_for_LevelRangeFilter.xml  |  0
 .../{.2.x.x => 2.21.0}/1508_fix-javadoc.xml|  0
 ...1530_fix_runtime-dependencies_documentation.xml |  0
 .../1533_set_fqcn_eventbuilder.xml |  0
 ...e_of_incorrect_syntax_of_highlighting_style.xml |  0
 .../1550_multiple_filter_invocations.xml   |  0
 .../{.2.x.x => 2.21.0}/1589_mongodb_tests.xml  |  0
 .../1626_parameter_format_rewrite.xml  |  0
 .../1640_java_9_stack_trace_element.xml|  0
 .../{.2.x.x => 2.21.0}/1646_unsafe_cleaner.xml |  0
 .../1650_fix_rollover_strategy_log4j1.xml  |  0
 .../1681_fix_and_improve_lookup_docs.xml   |  0
 .../1692_make_JTL_LocationAware.xml|  0
 .../1747_mongodb4-long-collection-size-conifg.xml  |  0
 ...a_version_specific_warnings_in_StackLocator.xml |  0
 ...w_multiple_servletcontextlistener_instances.xml |  0
 .../1783_spring_arbiter_without_environment.xml|  0
 .../1786_fix_async_context_data_loss.xml   |  0
 .../1805_fix_NPE_in_JTL_LevelResolver.xml  |  0
 .../LOG4J2-170_Improve_XML_schema.xml  |  0
 .../LOG4J2-3217_fix_NPE_in_ContextSelector.xml |  0
 .../LOG4J2-3657_fix_TL_usage_in_AbstractLogger.xml |  0
 ...ix_notEmpty_converter_for_empty_collections.xml |  0
 ...4J2-3663_fix_file_descriptor_leak_on_Tomcat.xml |  0
 .../{.2.x.x => 2.21.0}/OsgiServiceLocator_npe.xml  |  0
 .../{.2.x.x => 2.21.0}/PreventResourceLeak.xml |  0
 .../{.2.x.x => 2.21.0}/new-release-process.xml |  0
 .../{.2.x.x => 2.21.0}/remove-jmx-gui.xml  |  0
 .../update-1runtime-angus-activation.xml   |  0
 .../update-1runtime-angus-mail.xml |  0
 .../update-1runtime-cassandra-driver.xml   |  0
 .../update-1runtime-cassandra.xml  |  0
 .../update-1runtime-commons-compress.xml   |  0
 .../update-1runtime-commons-csv.xml|  0
 .../{.2.x.x => 2.21.0}/update-1runtime-jackson.xml |  0
 .../update-1runtime-jakarta-activation.xml |  0
 .../update-1runtime-jakarta-mail.xml   |  0
 .../{.2.x.x => 2.21.0}/update-1runtime-jctools.xml |  0
 .../{.2.x.x => 2.21.0}/update-1runtime-kafka.xml   |  0
 .../update-1runtime-kubernetes.xml |  0
 .../{.2.x.x => 2.21.0}/update-1runtime-mongodb.xml |  0
 .../{.2.x.x => 2.21.0}/update-1runtime-netty.xml   |  0
 .../update-1runtime-spring-boot.xml|  0
 .../update-1runtime-spring-framework.xml   |  0
 .../update-1runtime-tomcat-juli.xml|  0
 .../update-1runtime-woodstox.xml   |  0
 src/site/_constants.adoc   |  2 +-
 src/site/_release-notes.adoc   |  2 +-
 .../_release-notes/{_2.x.x.adoc => _2.21.0.adoc}   |  6 +-
 src/site/_release-notes/_2.x.x.adoc| 79 --
 74 files changed, 8 insertions(+), 87 deletions(-)
 copy 

[logging-log4j2] 01/01: Merge tag 'rel/2.21.0' into 2.x

2023-10-16 Thread grobmeier
This is an automated email from the ASF dual-hosted git repository.

grobmeier pushed a commit to branch 2.x
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git

commit 0e1ee448b257d6c6b3dc66b7c36cd9ef83f3dfe7
Merge: 51cead192a 493d9a
Author: Christian Grobmeier 
AuthorDate: Mon Oct 16 20:59:59 2023 +0200

Merge tag 'rel/2.21.0' into 2.x

2.21.0

 pom.xml|  2 +-
 src/changelog/2.21.0/.release-notes.adoc.ftl   | 46 +
 .../.release.xml}  | 12 ++--
 .../1231_validation_path_condition.xml |  0
 .../1232_log4j-to-sfl4j-2-OSGiMetadata.xml |  0
 .../{.2.x.x => 2.21.0}/1275_fix-javadoc.xml|  0
 .../1281_remove_locale-dependent_toLowerCase.xml   |  0
 .../1284_redirect_old_javadoc_urls.xml |  0
 .../1312_add_environment_arbiter.xml   |  0
 .../{.2.x.x => 2.21.0}/1365_open-FileExtension.xml |  0
 .../{.2.x.x => 2.21.0}/1366_fix_java_sql_date.xml  |  0
 ...1367_Missing-Bundle-Activation-OSGiMetadata.xml |  0
 .../1369_bump_build_requirement_jdk_11.xml |  0
 ...tringResolver_uses_instance_after_recycling.xml |  0
 .../1381_support_parents_in_MarkerResolver.xml |  0
 ..._connectionStringSource_in_MongoDb4Provider.xml |  0
 .../1391_fix_NPE_in_PluginElementVisitor.xml   |  0
 .../1405_column_mapping_rename_type_attribute.xml  |  0
 .../1414_restore_SLF4J_Log4jMarker_visibility.xml  |  0
 ..._fix_ArrayOutOfBound_in_Log4jFixedFormatter.xml |  0
 .../1445_1549_fix_sync_roll_action_propagation.xml |  0
 .../1445_fix_synchronous_rolling_file_manager.xml  |  0
 .../1484_fix_StackLocator_stdout.xml   |  0
 ...5_fix_DatePatternConverter_when_TL_disabled.xml |  0
 .../1503_change_defaults_for_LevelRangeFilter.xml  |  0
 .../{.2.x.x => 2.21.0}/1508_fix-javadoc.xml|  0
 ...1530_fix_runtime-dependencies_documentation.xml |  0
 .../1533_set_fqcn_eventbuilder.xml |  0
 ...e_of_incorrect_syntax_of_highlighting_style.xml |  0
 .../1550_multiple_filter_invocations.xml   |  0
 .../{.2.x.x => 2.21.0}/1589_mongodb_tests.xml  |  0
 .../1626_parameter_format_rewrite.xml  |  0
 .../1640_java_9_stack_trace_element.xml|  0
 .../{.2.x.x => 2.21.0}/1646_unsafe_cleaner.xml |  0
 .../1650_fix_rollover_strategy_log4j1.xml  |  0
 .../1681_fix_and_improve_lookup_docs.xml   |  0
 .../1692_make_JTL_LocationAware.xml|  0
 .../1747_mongodb4-long-collection-size-conifg.xml  |  0
 ...a_version_specific_warnings_in_StackLocator.xml |  0
 ...w_multiple_servletcontextlistener_instances.xml |  0
 .../1783_spring_arbiter_without_environment.xml|  0
 .../1786_fix_async_context_data_loss.xml   |  0
 .../1805_fix_NPE_in_JTL_LevelResolver.xml  |  0
 .../LOG4J2-170_Improve_XML_schema.xml  |  0
 .../LOG4J2-3217_fix_NPE_in_ContextSelector.xml |  0
 .../LOG4J2-3657_fix_TL_usage_in_AbstractLogger.xml |  0
 ...ix_notEmpty_converter_for_empty_collections.xml |  0
 ...4J2-3663_fix_file_descriptor_leak_on_Tomcat.xml |  0
 .../{.2.x.x => 2.21.0}/OsgiServiceLocator_npe.xml  |  0
 .../{.2.x.x => 2.21.0}/PreventResourceLeak.xml |  0
 .../{.2.x.x => 2.21.0}/new-release-process.xml |  0
 .../{.2.x.x => 2.21.0}/remove-jmx-gui.xml  |  0
 .../update-1runtime-angus-activation.xml   |  0
 .../update-1runtime-angus-mail.xml |  0
 .../update-1runtime-cassandra-driver.xml   |  0
 .../update-1runtime-cassandra.xml  |  0
 .../update-1runtime-commons-compress.xml   |  0
 .../update-1runtime-commons-csv.xml|  0
 .../{.2.x.x => 2.21.0}/update-1runtime-jackson.xml |  0
 .../update-1runtime-jakarta-activation.xml |  0
 .../update-1runtime-jakarta-mail.xml   |  0
 .../{.2.x.x => 2.21.0}/update-1runtime-jctools.xml |  0
 .../{.2.x.x => 2.21.0}/update-1runtime-kafka.xml   |  0
 .../update-1runtime-kubernetes.xml |  0
 .../{.2.x.x => 2.21.0}/update-1runtime-mongodb.xml |  0
 .../{.2.x.x => 2.21.0}/update-1runtime-netty.xml   |  0
 .../update-1runtime-spring-boot.xml|  0
 .../update-1runtime-spring-framework.xml   |  0
 .../update-1runtime-tomcat-juli.xml|  0
 .../update-1runtime-woodstox.xml   |  0
 src/site/_constants.adoc   |  2 +-
 src/site/_release-notes.adoc   |  2 +-
 .../_release-notes/{_2.x.x.adoc => _2.21.0.adoc}   |  6 +-
 src/site/_release-notes/_2.x.x.adoc| 79 --
 74 files changed, 56 insertions(+), 93 deletions(-)




[logging-log4j2] annotated tag rel/2.21.0 updated (3333493d9a -> de7dec42e9)

2023-10-16 Thread grobmeier
This is an automated email from the ASF dual-hosted git repository.

grobmeier pushed a change to annotated tag rel/2.21.0
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


*** WARNING: tag rel/2.21.0 was modified! ***

from 493d9a (commit)
  to de7dec42e9 (tag)
 tagging 493d9a9daabc72d10582c4682538baa93a2a (commit)
 replaces rel/2.20.0
  by Christian Grobmeier
  on Mon Oct 16 20:57:18 2023 +0200

- Log -
2.21.0
---


No new revisions were added by this update.

Summary of changes:



[logging-site] branch asf-staging updated: Automatic Site Publish by Buildbot

2023-10-16 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/logging-site.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 70fd0090 Automatic Site Publish by Buildbot
70fd0090 is described below

commit 70fd0090b66ba2d63fd1cc0c55d6d0f454154138
Author: buildbot 
AuthorDate: Mon Oct 16 18:47:03 2023 +

Automatic Site Publish by Buildbot
---
 output/feed.xml   | 2 +-
 output/index.html | 1 -
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index 1c5a2611..b73cad06 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -1,4 +1,4 @@
-http://www.w3.org/2005/Atom; >https://jekyllrb.com/; 
version="4.2.2">Jekyll2023-10-16T17:36:18+00:00/feed.xmlApache Software Foundation - Logging 
ServicesWrite an awesome description for your new site here. 
You can edit this line in _ [...]
+http://www.w3.org/2005/Atom; >https://jekyllrb.com/; 
version="4.2.2">Jekyll2023-10-16T18:47:02+00:00/feed.xmlApache Software Foundation - Logging 
ServicesWrite an awesome description for your new site here. 
You can edit this line in _ [...]
 Release
 
 
diff --git a/output/index.html b/output/index.html
index 2a383933..0fffa31f 100644
--- a/output/index.html
+++ b/output/index.html
@@ -212,7 +212,6 @@
 
 
 
-
 
 
 



[logging-site] branch jekyll updated: reverted last commit

2023-10-16 Thread grobmeier
This is an automated email from the ASF dual-hosted git repository.

grobmeier pushed a commit to branch jekyll
in repository https://gitbox.apache.org/repos/asf/logging-site.git


The following commit(s) were added to refs/heads/jekyll by this push:
 new 19124027 reverted last commit
19124027 is described below

commit 191240272111ea7ceb59c9dee8c7c9540c501128
Author: Christian Grobmeier 
AuthorDate: Mon Oct 16 20:46:45 2023 +0200

reverted last commit
---
 index.html | 1 -
 1 file changed, 1 deletion(-)

diff --git a/index.html b/index.html
index 79af32ab..6bdf1da2 100644
--- a/index.html
+++ b/index.html
@@ -41,4 +41,3 @@ layout: default
   See dormant projects 

 
 
-



[logging-site] branch asf-staging updated: Automatic Site Publish by Buildbot

2023-10-16 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/logging-site.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new f6d6ad68 Automatic Site Publish by Buildbot
f6d6ad68 is described below

commit f6d6ad686fad1619a379615d74d73ebb8cf125df
Author: buildbot 
AuthorDate: Mon Oct 16 17:36:19 2023 +

Automatic Site Publish by Buildbot
---
 output/feed.xml   | 2 +-
 output/index.html | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/output/feed.xml b/output/feed.xml
index 06de7a8f..1c5a2611 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -1,4 +1,4 @@
-http://www.w3.org/2005/Atom; >https://jekyllrb.com/; 
version="4.2.2">Jekyll2023-10-13T19:17:03+00:00/feed.xmlApache Software Foundation - Logging 
ServicesWrite an awesome description for your new site here. 
You can edit this line in _ [...]
+http://www.w3.org/2005/Atom; >https://jekyllrb.com/; 
version="4.2.2">Jekyll2023-10-16T17:36:18+00:00/feed.xmlApache Software Foundation - Logging 
ServicesWrite an awesome description for your new site here. 
You can edit this line in _ [...]
 Release
 
 
diff --git a/output/index.html b/output/index.html
index 0fffa31f..2a383933 100644
--- a/output/index.html
+++ b/output/index.html
@@ -212,6 +212,7 @@
 
 
 
+
 
 
 



[logging-site] branch jekyll updated: added line break to retest configuration changes

2023-10-16 Thread grobmeier
This is an automated email from the ASF dual-hosted git repository.

grobmeier pushed a commit to branch jekyll
in repository https://gitbox.apache.org/repos/asf/logging-site.git


The following commit(s) were added to refs/heads/jekyll by this push:
 new 3729a77c added line break to retest configuration changes
3729a77c is described below

commit 3729a77c83c1e85254c93d9d09180b5e2556391a
Author: Christian Grobmeier 
AuthorDate: Mon Oct 16 19:36:02 2023 +0200

added line break to retest configuration changes
---
 index.html | 1 +
 1 file changed, 1 insertion(+)

diff --git a/index.html b/index.html
index 6bdf1da2..79af32ab 100644
--- a/index.html
+++ b/index.html
@@ -41,3 +41,4 @@ layout: default
   See dormant projects 

 
 
+



[logging-parent] branch dependabot/github_actions/github/codeql-action-2.22.3 deleted (was 59717cf)

2023-10-16 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/github_actions/github/codeql-action-2.22.3
in repository https://gitbox.apache.org/repos/asf/logging-parent.git


 was 59717cf  Bump github/codeql-action from 2.22.0 to 2.22.3

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



[logging-parent] branch main updated (f693825 -> 890ee9c)

2023-10-16 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/logging-parent.git


from f693825  added line break to retrigger build
 add 890ee9c  Update `github/codeql-action` to version `2.22.3` 
(#1558328036)

No new revisions were added by this update.

Summary of changes:
 .github/workflows/codeql-analysis-reusable.yaml   | 4 ++--
 .github/workflows/scorecards-analysis-reusable.yaml   | 2 +-
 .../update_github_codeql_action.xml}  | 3 ++-
 src/site/_release-notes/_10.x.x.adoc  | 4 
 4 files changed, 9 insertions(+), 4 deletions(-)
 copy 
src/changelog/{10.1.1/update_com_diffplug_spotless_spotless_maven_plugin.xml => 
.10.x.x/update_github_codeql_action.xml} (65%)



[logging-parent] branch dependabot/github_actions/github/codeql-action-2.22.2 deleted (was 279f388)

2023-10-16 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/github_actions/github/codeql-action-2.22.2
in repository https://gitbox.apache.org/repos/asf/logging-parent.git


 was 279f388  Bump github/codeql-action from 2.22.0 to 2.22.2

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



[logging-parent] branch dependabot/github_actions/github/codeql-action-2.22.3 created (now 59717cf)

2023-10-16 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/github_actions/github/codeql-action-2.22.3
in repository https://gitbox.apache.org/repos/asf/logging-parent.git


  at 59717cf  Bump github/codeql-action from 2.22.0 to 2.22.3

No new revisions were added by this update.



[logging-log4j2] branch dependabot/github_actions/main/github/codeql-action-2.22.2 deleted (was a85788dedb)

2023-10-16 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/github_actions/main/github/codeql-action-2.22.2
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


 was a85788dedb Bump github/codeql-action from 2.21.8 to 2.22.2

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



[logging-log4j2] branch dependabot/github_actions/main/github/codeql-action-2.22.3 created (now 96aab206f0)

2023-10-16 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/github_actions/main/github/codeql-action-2.22.3
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


  at 96aab206f0 Bump github/codeql-action from 2.21.8 to 2.22.3

No new revisions were added by this update.