(logging-log4j2) branch dependabot/github_actions/2.x/github/codeql-action-3.25.1 updated (df30937d9c -> 99655307a4)

2024-04-18 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/2.x/github/codeql-action-3.25.1
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


 discard df30937d9c Bump github/codeql-action from 3.24.10 to 3.25.1
 add 483e5ab50e Update `org.apache.activemq:activemq-broker` to version 
`6.1.2` (#2472)
 add 138b686e2f Update `org.apache.cassandra:cassandra-all` to version 
`3.11.17` (#2479)
 add 99655307a4 Bump github/codeql-action from 3.24.10 to 3.25.1

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   (df30937d9c)
\
 N -- N -- N   
refs/heads/dependabot/github_actions/2.x/github/codeql-action-3.25.1 
(99655307a4)

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-parent/pom.xml| 4 ++--
 src/changelog/.2.x.x/update_org_apache_activemq_activemq_broker.xml | 4 ++--
 .../update_org_apache_cassandra_cassandra_all.xml}  | 6 +++---
 3 files changed, 7 insertions(+), 7 deletions(-)
 copy 
src/changelog/{2.0-beta4/LOG4J2-128_Add_follow_attribute_to_Console_Appender.xml
 => .2.x.x/update_org_apache_cassandra_cassandra_all.xml} (61%)



(logging-log4j-scala) branch dependabot/maven/org.apache.logging-logging-parent-11.0.0 created (now 4fd2e44)

2024-04-18 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.apache.logging-logging-parent-11.0.0
in repository https://gitbox.apache.org/repos/asf/logging-log4j-scala.git


  at 4fd2e44  Bump org.apache.logging:logging-parent from 10.6.0 to 11.0.0

No new revisions were added by this update.



(logging-log4cxx) branch master updated: Prevent fault when using one of the LevelChange constructors (#368)

2024-04-18 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 d8048cc4 Prevent fault when using one of the LevelChange constructors 
(#368)
d8048cc4 is described below

commit d8048cc4e0e21f44c9ef38a8f58eb2b18fac9659
Author: Stephen Webb 
AuthorDate: Fri Apr 19 11:18:59 2024 +1000

Prevent fault when using one of the LevelChange constructors (#368)
---
 src/main/include/log4cxx/levelchange.h |  2 +-
 src/test/cpp/levelchangetestcase.cpp   | 12 +++-
 2 files changed, 12 insertions(+), 2 deletions(-)

diff --git a/src/main/include/log4cxx/levelchange.h 
b/src/main/include/log4cxx/levelchange.h
index df2f6f96..1a5ec573 100644
--- a/src/main/include/log4cxx/levelchange.h
+++ b/src/main/include/log4cxx/levelchange.h
@@ -52,7 +52,7 @@ public: // ...structors
}
/// Set \c otherCategory to the level of \c thisCategory
LevelChange(const LoggerPtr& otherCategory, const LoggerPtr& 
thisCategory)
-   : LevelChange(otherCategory, m_otherCategory->getLevel())
+   : LevelChange(otherCategory, thisCategory->getLevel())
{
}
/// Set the logger named \c otherCategory to \c level
diff --git a/src/test/cpp/levelchangetestcase.cpp 
b/src/test/cpp/levelchangetestcase.cpp
index 85ea1eb2..c935d930 100644
--- a/src/test/cpp/levelchangetestcase.cpp
+++ b/src/test/cpp/levelchangetestcase.cpp
@@ -124,12 +124,22 @@ public:
processor.DoStep1();
LOGUNIT_ASSERT_EQUAL(appender->count, initialCount);
{
-   LevelChange x(LOG4CXX_STR("ComplexProcessing"), 
myLogger);
+   LevelChange 
ctx(getLogger(LOG4CXX_STR("ComplexProcessing")), myLogger);
processor.DoStep2();
// Check the ComplexProcessing debug request was sent 
to the appender
LOGUNIT_ASSERT_EQUAL(appender->count, initialCount + 1);
}
 
+   // Check the ComplexProcessing debug request is not sent to the 
appender
+   processor.DoStep1();
+   LOGUNIT_ASSERT_EQUAL(appender->count, initialCount + 1);
+   {
+   LevelChange ctx(LOG4CXX_STR("ComplexProcessing"), 
myLogger);
+   processor.DoStep2();
+   // Check the ComplexProcessing debug request was sent 
to the appender
+   LOGUNIT_ASSERT_EQUAL(appender->count, initialCount + 2);
+   }
+
// Check the ComplexProcessing debug request is no longer sent 
to the appender
auto finalCount = appender->count;
processor.DoStep3();



(logging-log4cxx) branch level_change_bug deleted (was ec9e0a12)

2024-04-18 Thread swebb2066
This is an automated email from the ASF dual-hosted git repository.

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


 was ec9e0a12 Improve test case

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-log4j-samples) branch dependabot/maven/io.fabric8-kubernetes-client-bom-6.12.1 updated (bb31aef -> 79debed)

2024-04-18 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/io.fabric8-kubernetes-client-bom-6.12.1
in repository https://gitbox.apache.org/repos/asf/logging-log4j-samples.git


 discard bb31aef  Bump io.fabric8:kubernetes-client-bom from 6.12.0 to 6.12.1
 add 79debed  Update `io.fabric8:kubernetes-client-bom` to version `6.12.1` 
(#129)

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   (bb31aef)
\
 N -- N -- N   
refs/heads/dependabot/maven/io.fabric8-kubernetes-client-bom-6.12.1 (79debed)

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:
 src/changelog/.0.x.x/update_io_fabric8_kubernetes_client_bom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)



(logging-log4j-samples) branch dependabot/maven/io.fabric8-kubernetes-client-bom-6.12.1 deleted (was 79debed)

2024-04-18 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/io.fabric8-kubernetes-client-bom-6.12.1
in repository https://gitbox.apache.org/repos/asf/logging-log4j-samples.git


 was 79debed  Update `io.fabric8:kubernetes-client-bom` to version `6.12.1` 
(#129)

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-log4j-samples) branch main updated (00834fe -> 79debed)

2024-04-18 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-log4j-samples.git


from 00834fe  Update `org.slf4j:slf4j-api` to version `2.0.13` (#128)
 add 79debed  Update `io.fabric8:kubernetes-client-bom` to version `6.12.1` 
(#129)

No new revisions were added by this update.

Summary of changes:
 log4j-spring-cloud-config-sample-application/pom.xml | 2 +-
 src/changelog/.0.x.x/update_io_fabric8_kubernetes_client_bom.xml | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)



(logging-log4j-samples) branch dependabot/maven/org.apache.logging-logging-parent-11.0.0 created (now ea990a8)

2024-04-18 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.apache.logging-logging-parent-11.0.0
in repository https://gitbox.apache.org/repos/asf/logging-log4j-samples.git


  at ea990a8  Bump org.apache.logging:logging-parent from 10.6.0 to 11.0.0

No new revisions were added by this update.



(logging-log4j-samples) branch dependabot/maven/io.fabric8-kubernetes-client-bom-6.12.1 created (now bb31aef)

2024-04-18 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/io.fabric8-kubernetes-client-bom-6.12.1
in repository https://gitbox.apache.org/repos/asf/logging-log4j-samples.git


  at bb31aef  Bump io.fabric8:kubernetes-client-bom from 6.12.0 to 6.12.1

No new revisions were added by this update.



(logging-log4j-jakarta) branch dependabot/maven/org.apache.logging-logging-parent-10.6.0 deleted (was 9ba00cb)

2024-04-18 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.apache.logging-logging-parent-10.6.0
in repository https://gitbox.apache.org/repos/asf/logging-log4j-jakarta.git


 was 9ba00cb  Bump org.apache.logging:logging-parent from 10.5.0 to 10.6.0

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-log4j-jakarta) branch dependabot/maven/org.apache.logging-logging-parent-11.0.0 created (now 5888f6e)

2024-04-18 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.apache.logging-logging-parent-11.0.0
in repository https://gitbox.apache.org/repos/asf/logging-log4j-jakarta.git


  at 5888f6e  Bump org.apache.logging:logging-parent from 10.5.0 to 11.0.0

No new revisions were added by this update.



(logging-log4j-transform) branch dependabot/maven/org.apache.logging-logging-parent-10.6.0 deleted (was 7f555f3)

2024-04-18 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.apache.logging-logging-parent-10.6.0
in repository https://gitbox.apache.org/repos/asf/logging-log4j-transform.git


 was 7f555f3  Bump org.apache.logging:logging-parent from 10.5.0 to 10.6.0

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-log4j-transform) branch dependabot/maven/org.apache.logging-logging-parent-11.0.0 created (now 7f8d493)

2024-04-18 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.apache.logging-logging-parent-11.0.0
in repository https://gitbox.apache.org/repos/asf/logging-log4j-transform.git


  at 7f8d493  Bump org.apache.logging:logging-parent from 10.5.0 to 11.0.0

No new revisions were added by this update.



(logging-log4j-site) branch feature/site/link-clean-up created (now aa258b5ddb)

2024-04-18 Thread pkarwasz
This is an automated email from the ASF dual-hosted git repository.

pkarwasz pushed a change to branch feature/site/link-clean-up
in repository https://gitbox.apache.org/repos/asf/logging-log4j-site.git


  at aa258b5ddb Change links from `/log4j/log4j-2.3` to `/log4j/2.3.x`

This branch includes the following new commits:

 new aad9357b4c Normalize URLs
 new 90ff034e19 Change links from `/log4j/1.2` to `/log4j/1.x`
 new aa258b5ddb Change links from `/log4j/log4j-2.3` to `/log4j/2.3.x`

The 3 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.




(logging-log4j-kotlin) branch main-site-stg-out updated: Add website content generated from `cca8883130773aaaef751255d8abfb5954c710c5`

2024-04-18 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch main-site-stg-out
in repository https://gitbox.apache.org/repos/asf/logging-log4j-kotlin.git


The following commit(s) were added to refs/heads/main-site-stg-out by this push:
 new c197339  Add website content generated from 
`cca8883130773aaaef751255d8abfb5954c710c5`
c197339 is described below

commit c19733940a7bb2454caa1666af10b1b89a611850
Author: ASF Logging Services RM 
AuthorDate: Thu Apr 18 19:34:40 2024 +

Add website content generated from 
`cca8883130773aaaef751255d8abfb5954c710c5`
---
 404.html  |  82 +++
 README.txt|   1 -
 _/css/site.css|   3 +
 _/css/vendor/tabs.css | 110 +
 _/font/roboto-cyrillic-400-italic.woff2   | Bin 0 -> 10292 bytes
 _/font/roboto-cyrillic-400-normal.woff2   | Bin 0 -> 9628 bytes
 _/font/roboto-cyrillic-500-italic.woff2   | Bin 0 -> 10640 bytes
 _/font/roboto-cyrillic-500-normal.woff2   | Bin 0 -> 9840 bytes
 _/font/roboto-latin-400-italic.woff   | Bin 0 -> 22048 bytes
 _/font/roboto-latin-400-italic.woff2  | Bin 0 -> 17368 bytes
 _/font/roboto-latin-400-normal.woff   | Bin 0 -> 20344 bytes
 _/font/roboto-latin-400-normal.woff2  | Bin 0 -> 15744 bytes
 _/font/roboto-latin-500-italic.woff   | Bin 0 -> 22092 bytes
 _/font/roboto-latin-500-italic.woff2  | Bin 0 -> 17336 bytes
 _/font/roboto-latin-500-normal.woff   | Bin 0 -> 20544 bytes
 _/font/roboto-latin-500-normal.woff2  | Bin 0 -> 15920 bytes
 _/font/roboto-mono-latin-400-normal.woff  | Bin 0 -> 15160 bytes
 _/font/roboto-mono-latin-400-normal.woff2 | Bin 0 -> 12312 bytes
 _/font/roboto-mono-latin-500-normal.woff  | Bin 0 -> 15364 bytes
 _/font/roboto-mono-latin-500-normal.woff2 | Bin 0 -> 12532 bytes
 _/img/back.svg|   1 +
 _/img/caret.svg   |   1 +
 _/img/chevron.svg |   1 +
 _/img/home-o.svg  |   1 +
 _/img/home.svg|   1 +
 _/img/menu.svg|   1 +
 _/img/octicons-16.svg |   1 +
 _/js/site.js  |   6 +
 _/js/vendor/highlight.js  |   1 +
 _/js/vendor/tabs.js   | 127 ++
 development.html  | 146 
 index.html| 363 +
 release-notes.html| 373 ++
 sitemap.xml   |  15 ++
 34 files changed, 1233 insertions(+), 1 deletion(-)

diff --git a/404.html b/404.html
new file mode 100644
index 000..b50e989
--- /dev/null
+++ b/404.html
@@ -0,0 +1,82 @@
+
+
+  
+
+
+Page Not Found :: Apache Log4j Kotlin
+
+
+
+
+
+
+  /* `page-toclevels` greater than 4 are not supported by Antora UI, patching 
it: */
+  .toc .toc-menu li[data-level="4"] a {
+padding-left: 2.75rem
+  }
+  /* Replace the default highlight.js color for strings from red to green: */
+  .hljs-string {
+color: #0f8532;
+  }
+
+  
+  
+
+  
+
+  Apache Log4j Kotlin
+
+
+  
+https://logging.apache.org;>a subproject 
ofApache Logging Services
+  
+
+  
+
+
+
+  
+
+
+  
+
+
+
+
+  
+
+
+https://github.com/apache/logging-log4j-kotlin/edit/main/src/site/antora/modules//pages/;>Edit
 this Page
+
+  
+
+Page Not Found
+
+The page youre looking for does not exist. It may have been moved. 
You can return to the start page, or follow one of 
the links in the navigation to the left.
+
+
+If you arrived on this page by clicking on a link, please notify the owner 
of the site that the link is broken.
+If you typed the URL of this page manually, please double check that you 
entered the address correctly.
+
+
+  
+
+
+
+  
+Copyright © 1999-2024 https://www.apache.org/;>The Apache 
Software Foundation.
+Licensed under the https://www.apache.org/licenses/LICENSE-2.0;>Apache Software License, 
Version 2.0.
+Please read our https://privacy.apache.org/policies/privacy-policy-public.html;>privacy 
policy.
+  
+  
+Apache, Log4j, and the Apache feather logo are trademarks or registered 
trademarks of The Apache Software Foundation.
+Oracle and Java are registered trademarks of Oracle and/or its affiliates.
+Other names may be trademarks of their respective owners.
+  
+
+
+
+
+
+  
+
diff --git a/README.txt b/README.txt
deleted file mode 100644
index 3992ab7..000
--- a/README.txt
+++ /dev/null
@@ -1 +0,0 @@
-Content for initializing an orphan branch for the website to be generated from 
`cca8883130773aaaef751255d8abfb5954c710c5`
diff --git a/_/css/site.css b/_/css/site.css
new file mode 100644
index 000..e7b43c5
--- /dev/null
+++ b/_/css/site.css
@@ -0,0 +1,3 @@

(logging-log4j-kotlin) branch main-site-stg-out updated: Add `.asf.yaml` along with an INFRA fix for the website content generated from `cca8883130773aaaef751255d8abfb5954c710c5`

2024-04-18 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch main-site-stg-out
in repository https://gitbox.apache.org/repos/asf/logging-log4j-kotlin.git


The following commit(s) were added to refs/heads/main-site-stg-out by this push:
 new cd8f598  Add `.asf.yaml` along with an INFRA fix for the website 
content generated from `cca8883130773aaaef751255d8abfb5954c710c5`
cd8f598 is described below

commit cd8f5982a850c9cd39c92c476b48f36f11a3c5b1
Author: ASF Logging Services RM 
AuthorDate: Thu Apr 18 19:34:41 2024 +

Add `.asf.yaml` along with an INFRA fix for the website content generated 
from `cca8883130773aaaef751255d8abfb5954c710c5`
---
 .asf.yaml | 14 ++
 1 file changed, 14 insertions(+)

diff --git a/.asf.yaml b/.asf.yaml
new file mode 100644
index 000..d1fdc89
--- /dev/null
+++ b/.asf.yaml
@@ -0,0 +1,14 @@
+staging:
+  profile: ~
+  whoami: main-site-stg-out
+  subdir: content/log4j/kotlin
+
+
+# INFRA cannot handle change sets bigger than a certain size: 
https://the-asf.slack.com/archives/CBX4TSBQ8/p1709724983391709
+# This file will be used to push a small commit to help the INFRA to recover.
+#
+# Random values to cause a change:
+#
+# - Seed: 27388
+# - Commit ID: cca8883130773aaaef751255d8abfb5954c710c5
+# - Timestamp: 2024-04-18T19:34:41Z



(logging-log4j-kotlin) branch main-site-stg-out created (now 03beac2)

2024-04-18 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch main-site-stg-out
in repository https://gitbox.apache.org/repos/asf/logging-log4j-kotlin.git


  at 03beac2  Initial content for the website to be generated from 
`cca8883130773aaaef751255d8abfb5954c710c5`

This branch includes the following new commits:

 new 03beac2  Initial content for the website to be generated from 
`cca8883130773aaaef751255d8abfb5954c710c5`

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.




(logging-log4j-kotlin) 01/01: Initial content for the website to be generated from `cca8883130773aaaef751255d8abfb5954c710c5`

2024-04-18 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch main-site-stg-out
in repository https://gitbox.apache.org/repos/asf/logging-log4j-kotlin.git

commit 03beac29b36bcf149f547fbcfaf0d214c6a8f2e3
Author: ASF Logging Services RM 
AuthorDate: Thu Apr 18 19:34:38 2024 +

Initial content for the website to be generated from 
`cca8883130773aaaef751255d8abfb5954c710c5`
---
 README.txt | 1 +
 1 file changed, 1 insertion(+)

diff --git a/README.txt b/README.txt
new file mode 100644
index 000..3992ab7
--- /dev/null
+++ b/README.txt
@@ -0,0 +1 @@
+Content for initializing an orphan branch for the website to be generated from 
`cca8883130773aaaef751255d8abfb5954c710c5`



(logging-log4j-kotlin) branch main updated: Bump `logging-parent` to version `11.0.0` (apache/logging-log4j2#2476)

2024-04-18 Thread vy
This is an automated email from the ASF dual-hosted git repository.

vy pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/logging-log4j-kotlin.git


The following commit(s) were added to refs/heads/main by this push:
 new cca8883  Bump `logging-parent` to version `11.0.0` 
(apache/logging-log4j2#2476)
cca8883 is described below

commit cca8883130773aaaef751255d8abfb5954c710c5
Author: Volkan Yazıcı 
AuthorDate: Thu Apr 18 21:29:01 2024 +0200

Bump `logging-parent` to version `11.0.0` (apache/logging-log4j2#2476)
---
 .github/dependabot.yaml|   8 +-
 .github/generate-email.sh  |  25 ++---
 .github/workflows/build.yaml   |  15 ++-
 .github/workflows/deploy-site.yaml |  95 +
 .github/workflows/merge-dependabot.yaml|   4 +-
 .gitignore |   4 +
 antora-playbook.yaml   | 117 +
 log4j-api-kotlin-benchmark/pom.xml |   3 +
 log4j-api-kotlin-sample/pom.xml|   3 +
 package.json   |   7 ++
 pom.xml|   2 +-
 src/changelog/.1.x.x/.release-notes.adoc.ftl   |   2 +-
 ...add-coroutine-context-convenience-functions.xml |  20 +---
 .../.1.x.x/update_apache_logging_parent.xml|   8 --
 .../update_org_apache_logging_log4j_log4j_bom.xml  |   4 +-
 .../update_org_apache_logging_logging_parent.xml   |   7 +-
 ...org_apache_maven_plugins_maven_shade_plugin.xml |   8 --
 .../update_org_codehaus_mojo_exec_maven_plugin.xml |   8 --
 .../.1.x.x/update_org_junit_junit_bom.xml  |   8 --
 src/changelog/.changelog.adoc.ftl  |   3 +-
 src/changelog/.index.adoc.ftl  |   9 +-
 src/changelog/1.0.0/.release-notes.adoc.ftl|   2 +-
 src/changelog/1.0.0/.release.xml   |  22 +---
 .../1.0.0/LOG4J2-1705_Create_Kotlin_API.xml|   6 +-
 ...4J2-2432_Make_namedLogger_more_discoverable.xml |   6 +-
 src/changelog/1.1.0/.release-notes.adoc.ftl|   2 +-
 src/changelog/1.1.0/.release.xml   |  22 +---
 .../LOG4J2-2433_Support_MDCs_with_coroutines.xml   |   6 +-
 .../LOG4J2-2518_Support_suspend_functions.xml  |   6 +-
 ...OG4J2-2843_Update_Kotlin_baseline_to_1.3.72.xml |   6 +-
 src/changelog/1.2.0/.release-notes.adoc.ftl|   2 +-
 src/changelog/1.2.0/.release.xml   |  22 +---
 .../1.2.0/LOG4J2-3218_Update_Log4j_baseline.xml|   6 +-
 src/changelog/1.3.0/.release-notes.adoc.ftl|   2 +-
 src/changelog/1.3.0/.release.xml   |  22 +---
 src/changelog/1.3.0/28-Update_Log4j_baseline.xml   |   6 +-
 .../1.3.0/29-Add_extension_property_for_logger.xml |   6 +-
 .../1.3.0/30-Add_facade_APIs_for_ThreadContext.xml |   6 +-
 src/changelog/1.3.0/32-Catching_Throwing.xml   |   6 +-
 src/changelog/1.3.0/37-facelift.xml|   6 +-
 src/changelog/1.3.0/JPMS.xml   |   6 +-
 src/changelog/1.3.0/OSGi-Bundle-SymbolicName.xml   |   6 +-
 src/changelog/1.3.0/dokka.xml  |   6 +-
 src/changelog/1.3.0/junit5.xml |   6 +-
 src/changelog/1.3.0/kotlin-baseline.xml|   6 +-
 src/changelog/1.3.0/skip-deploy.xml|   6 +-
 src/changelog/1.4.0/.release-notes.adoc.ftl|   2 +-
 src/changelog/1.4.0/.release.xml   |  22 +---
 src/changelog/1.4.0/54-thread-context.xml  |   6 +-
 src/changelog/1.4.0/add-sbom.xml   |  20 +---
 src/changelog/1.4.0/update-parent.xml  |  20 +---
 .../update_org_apache_logging_log4j_log4j_bom.xml  |   4 +-
 .../update_org_apache_logging_logging_parent.xml   |   4 +-
 ...org_codehaus_mojo_build_helper_maven_plugin.xml |   4 +-
 .../update_org_codehaus_mojo_exec_maven_plugin.xml |   4 +-
 src/changelog/1.4.0/update_org_junit_junit_bom.xml |   4 +-
 src/site/_constants.adoc   |  42 
 src/site/_constants.tmpl.adoc  |  42 
 src/site/_release-notes.adoc   |  44 
 src/site/_release-notes/_1.0.0.adoc|  50 -
 src/site/_release-notes/_1.1.0.adoc|  51 -
 src/site/_release-notes/_1.2.0.adoc|  46 
 src/site/_release-notes/_1.3.0.adoc|  62 ---
 src/site/_release-notes/_1.4.0.adoc|  59 ---
 src/site/_release-notes/_1.x.x.adoc|  55 --
 src/site/antora/antora.tmpl.yml|  50 +
 src/site/antora/antora.yml |  50 +
 src/site/antora/modules/ROOT/nav.adoc  |  22 
 .../antora/modules/ROOT/pages/development.adoc |  43 
 .../{ => antora/modules/ROOT/pages}/index.adoc |  74 +
 

(logging-parent) branch dependabot/github_actions/actions/upload-artifact-4.3.2 updated (4a3fb40 -> 8fec95d)

2024-04-18 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/actions/upload-artifact-4.3.2
in repository https://gitbox.apache.org/repos/asf/logging-parent.git


 discard 4a3fb40  Bump actions/upload-artifact from 4.3.1 to 4.3.2
 add 8fec95d  Update `actions/upload-artifact` to version `4.3.2` (#162)

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   (4a3fb40)
\
 N -- N -- N   
refs/heads/dependabot/github_actions/actions/upload-artifact-4.3.2 (8fec95d)

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:
 .../update_actions_upload_artifact.xml}| 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
 copy 
src/changelog/{10.3.0/update_org_apache_maven_plugins_maven_artifact_plugin.xml 
=> .11.x.x/update_actions_upload_artifact.xml} (62%)



(logging-parent) branch dependabot/github_actions/actions/upload-artifact-4.3.2 deleted (was 8fec95d)

2024-04-18 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/actions/upload-artifact-4.3.2
in repository https://gitbox.apache.org/repos/asf/logging-parent.git


 was 8fec95d  Update `actions/upload-artifact` to version `4.3.2` (#162)

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 (dfcf14a -> 8fec95d)

2024-04-18 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 dfcf14a  Add npm support to dependabot
 add 8fec95d  Update `actions/upload-artifact` to version `4.3.2` (#162)

No new revisions were added by this update.

Summary of changes:
 .github/workflows/build-reusable.yaml | 4 ++--
 .github/workflows/scorecards-analysis-reusable.yaml   | 2 +-
 .../update_actions_upload_artifact.xml}   | 3 ++-
 3 files changed, 5 insertions(+), 4 deletions(-)
 copy 
src/changelog/{10.3.0/update_org_apache_maven_plugins_maven_artifact_plugin.xml 
=> .11.x.x/update_actions_upload_artifact.xml} (62%)



(logging-parent) branch dependabot/github_actions/actions/upload-artifact-4.3.2 created (now 4a3fb40)

2024-04-18 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/actions/upload-artifact-4.3.2
in repository https://gitbox.apache.org/repos/asf/logging-parent.git


  at 4a3fb40  Bump actions/upload-artifact from 4.3.1 to 4.3.2

No new revisions were added by this update.



(logging-parent) branch main-site-stg-out updated: Add website content generated from `dfcf14ab41f763284fdc326c5abb6377bbc1317b`

2024-04-18 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/main-site-stg-out by this push:
 new ea849dd  Add website content generated from 
`dfcf14ab41f763284fdc326c5abb6377bbc1317b`
ea849dd is described below

commit ea849dd63023ac89e9bea756f6c244f11f1b2040
Author: ASF Logging Services RM 
AuthorDate: Thu Apr 18 19:15:18 2024 +

Add website content generated from 
`dfcf14ab41f763284fdc326c5abb6377bbc1317b`
---
 sitemap.xml | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/sitemap.xml b/sitemap.xml
index 489e6f1..80335c7 100644
--- a/sitemap.xml
+++ b/sitemap.xml
@@ -2,26 +2,26 @@
 http://www.sitemaps.org/schemas/sitemap/0.9;>
 
 https://logging.apache.org/logging-parent/features.html
-2024-04-18T13:23:57.584Z
+2024-04-18T19:15:16.891Z
 
 
 https://logging.apache.org/logging-parent/index.html
-2024-04-18T13:23:57.584Z
+2024-04-18T19:15:16.891Z
 
 
 
https://logging.apache.org/logging-parent/release-instructions-project.html
-2024-04-18T13:23:57.584Z
+2024-04-18T19:15:16.891Z
 
 
 
https://logging.apache.org/logging-parent/release-instructions-xml-schema.html
-2024-04-18T13:23:57.584Z
+2024-04-18T19:15:16.891Z
 
 
 https://logging.apache.org/logging-parent/release-notes.html
-2024-04-18T13:23:57.584Z
+2024-04-18T19:15:16.891Z
 
 
 https://logging.apache.org/logging-parent/usage.html
-2024-04-18T13:23:57.584Z
+2024-04-18T19:15:16.891Z
 
 



(logging-parent) branch main-site-stg-out updated: Add `.asf.yaml` along with an INFRA fix for the website content generated from `dfcf14ab41f763284fdc326c5abb6377bbc1317b`

2024-04-18 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/main-site-stg-out by this push:
 new 4b670b3  Add `.asf.yaml` along with an INFRA fix for the website 
content generated from `dfcf14ab41f763284fdc326c5abb6377bbc1317b`
4b670b3 is described below

commit 4b670b32d7a3d933b3f3f486469cdae69a3bc012
Author: ASF Logging Services RM 
AuthorDate: Thu Apr 18 19:15:18 2024 +

Add `.asf.yaml` along with an INFRA fix for the website content generated 
from `dfcf14ab41f763284fdc326c5abb6377bbc1317b`
---
 .asf.yaml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.asf.yaml b/.asf.yaml
index 874a9b4..118a45c 100644
--- a/.asf.yaml
+++ b/.asf.yaml
@@ -9,6 +9,6 @@ staging:
 #
 # Random values to cause a change:
 #
-# - Seed: 11025
-# - Commit ID: 45c7146fc473231329af6cdd875510b182d9ecc7
-# - Timestamp: 2024-04-18T13:23:59Z
+# - Seed: 16229
+# - Commit ID: dfcf14ab41f763284fdc326c5abb6377bbc1317b
+# - Timestamp: 2024-04-18T19:15:18Z



(logging-parent) branch main updated: Add npm support to dependabot

2024-04-18 Thread vy
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/main by this push:
 new dfcf14a  Add npm support to dependabot
dfcf14a is described below

commit dfcf14ab41f763284fdc326c5abb6377bbc1317b
Author: Volkan Yazıcı 
AuthorDate: Thu Apr 18 21:14:54 2024 +0200

Add npm support to dependabot
---
 .github/dependabot.yaml | 5 +
 1 file changed, 5 insertions(+)

diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml
index 3e9bf9e..e88ba5b 100644
--- a/.github/dependabot.yaml
+++ b/.github/dependabot.yaml
@@ -38,3 +38,8 @@ updates:
 directory: "/"
 schedule:
   interval: daily
+
+  - package-ecosystem: npm
+directory: "/"
+schedule:
+  interval: daily



(logging-log4j-jmx-gui) branch dependabot/maven/org.apache.logging-logging-parent-11.0.0 created (now adda164)

2024-04-18 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.apache.logging-logging-parent-11.0.0
in repository https://gitbox.apache.org/repos/asf/logging-log4j-jmx-gui.git


  at adda164  Bump org.apache.logging:logging-parent from 10.6.0 to 11.0.0

No new revisions were added by this update.



(logging-log4j2) branch main-site-stg-out updated: Add website content generated from `b4cff33d3906752080917b0a730c6f23b1dd6ad9`

2024-04-18 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch main-site-stg-out
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


The following commit(s) were added to refs/heads/main-site-stg-out by this push:
 new 759b38f595 Add website content generated from 
`b4cff33d3906752080917b0a730c6f23b1dd6ad9`
759b38f595 is described below

commit 759b38f59575786fba59f71a129cd8b1563c33b5
Author: ASF Logging Services RM 
AuthorDate: Thu Apr 18 16:45:11 2024 +

Add website content generated from 
`b4cff33d3906752080917b0a730c6f23b1dd6ad9`
---
 plugin-reference.html |   7 +---
 sitemap.xml   | 114 +-
 2 files changed, 58 insertions(+), 63 deletions(-)

diff --git a/plugin-reference.html b/plugin-reference.html
index bc090ed939..1538ed9a80 100644
--- a/plugin-reference.html
+++ b/plugin-reference.html
@@ -3933,12 +3933,7 @@ This attribute is ignored if immediateFlush 
is set to true
 Property
 Property?
-
-A generic list of key/value properties
-
-
-The meaning of these properties depends on the component.
-
+
 
 
 
diff --git a/sitemap.xml b/sitemap.xml
index 384c8553af..bc6e6206e7 100644
--- a/sitemap.xml
+++ b/sitemap.xml
@@ -2,230 +2,230 @@
 http://www.sitemaps.org/schemas/sitemap/0.9;>
 
 https://logging.apache.org/log4j/3.x/articles.html
-2024-04-18T14:26:08.166Z
+2024-04-18T16:44:52.325Z
 
 
 https://logging.apache.org/log4j/3.x/download.html
-2024-04-18T14:26:08.166Z
+2024-04-18T16:44:52.325Z
 
 
 https://logging.apache.org/log4j/3.x/faq.html
-2024-04-18T14:26:08.166Z
+2024-04-18T16:44:52.325Z
 
 
 https://logging.apache.org/log4j/3.x/getting-started/index.html
-2024-04-18T14:26:08.166Z
+2024-04-18T16:44:52.325Z
 
 
 https://logging.apache.org/log4j/3.x/guidelines.html
-2024-04-18T14:26:08.166Z
+2024-04-18T16:44:52.325Z
 
 
 https://logging.apache.org/log4j/3.x/index.html
-2024-04-18T14:26:08.166Z
+2024-04-18T16:44:52.325Z
 
 
 https://logging.apache.org/log4j/3.x/javadoc.html
-2024-04-18T14:26:08.166Z
+2024-04-18T16:44:52.325Z
 
 
 https://logging.apache.org/log4j/3.x/log4j-1.2-api.html
-2024-04-18T14:26:08.166Z
+2024-04-18T16:44:52.325Z
 
 
 https://logging.apache.org/log4j/3.x/log4j-api.html
-2024-04-18T14:26:08.166Z
+2024-04-18T16:44:52.325Z
 
 
 https://logging.apache.org/log4j/3.x/log4j-docker.html
-2024-04-18T14:26:08.166Z
+2024-04-18T16:44:52.325Z
 
 
 https://logging.apache.org/log4j/3.x/log4j-flume-ng.html
-2024-04-18T14:26:08.166Z
+2024-04-18T16:44:52.325Z
 
 
 https://logging.apache.org/log4j/3.x/log4j-iostreams.html
-2024-04-18T14:26:08.166Z
+2024-04-18T16:44:52.325Z
 
 
 https://logging.apache.org/log4j/3.x/log4j-jpl.html
-2024-04-18T14:26:08.166Z
+2024-04-18T16:44:52.325Z
 
 
 https://logging.apache.org/log4j/3.x/log4j-jul.html
-2024-04-18T14:26:08.166Z
+2024-04-18T16:44:52.325Z
 
 
 https://logging.apache.org/log4j/3.x/log4j-mongodb4.html
-2024-04-18T14:26:08.166Z
+2024-04-18T16:44:52.325Z
 
 
 https://logging.apache.org/log4j/3.x/log4j-slf4j-impl.html
-2024-04-18T14:26:08.166Z
+2024-04-18T16:44:52.325Z
 
 
 https://logging.apache.org/log4j/3.x/log4j-slf4j2-impl.html
-2024-04-18T14:26:08.166Z
+2024-04-18T16:44:52.325Z
 
 
 
https://logging.apache.org/log4j/3.x/log4j-spring-cloud-config-client.html
-2024-04-18T14:26:08.166Z
+2024-04-18T16:44:52.325Z
 
 
 https://logging.apache.org/log4j/3.x/log4j-to-jul.html
-2024-04-18T14:26:08.166Z
+2024-04-18T16:44:52.325Z
 
 
 https://logging.apache.org/log4j/3.x/log4j-to-slf4j.html
-2024-04-18T14:26:08.166Z
+2024-04-18T16:44:52.325Z
 
 
 https://logging.apache.org/log4j/3.x/manual/api-separation.html
-2024-04-18T14:26:08.166Z
+2024-04-18T16:44:52.325Z
 
 
 https://logging.apache.org/log4j/3.x/manual/api.html
-2024-04-18T14:26:08.166Z
+2024-04-18T16:44:52.325Z
 
 
 https://logging.apache.org/log4j/3.x/manual/appenders.html
-2024-04-18T14:26:08.166Z
+2024-04-18T16:44:52.325Z
 
 
 https://logging.apache.org/log4j/3.x/manual/architecture.html
-2024-04-18T14:26:08.166Z
+2024-04-18T16:44:52.325Z
 
 
 https://logging.apache.org/log4j/3.x/manual/async.html
-2024-04-18T14:26:08.166Z
+2024-04-18T16:44:52.325Z
 
 
 https://logging.apache.org/log4j/3.x/manual/cloud.html
-2024-04-18T14:26:08.166Z
+2024-04-18T16:44:52.325Z
 
 
 https://logging.apache.org/log4j/3.x/manual/compatibility.html
-2024-04-18T14:26:08.166Z
+2024-04-18T16:44:52.325Z
 
 
 https://logging.apache.org/log4j/3.x/manual/configuration.html
-2024-04-18T14:26:08.166Z
+2024-04-18T16:44:52.325Z
 
 
 https://logging.apache.org/log4j/3.x/manual/customconfig.html
-2024-04-18T14:26:08.166Z
+2024-04-18T16:44:52.325Z
 
 
 https://logging.apache.org/log4j/3.x/manual/customloglevels.html
-2024-04-18T14:26:08.166Z
+2024-04-18T16:44:52.325Z
 
 
 https://logging.apache.org/log4j/3.x/manual/dependencyinjection.html
-2024-04-18T14:26:08.166Z
+2024-04-18T16:44:52.325Z
 
 
 https://logging.apache.org/log4j/3.x/manual/eventlogging.html
-2024-04-18T14:26:08.166Z
+2024-04-18T16:44:52.325Z
 
 

(logging-log4j2) branch main-site-stg-out updated: Add `.asf.yaml` along with an INFRA fix for the website content generated from `b4cff33d3906752080917b0a730c6f23b1dd6ad9`

2024-04-18 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch main-site-stg-out
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


The following commit(s) were added to refs/heads/main-site-stg-out by this push:
 new 108332a97c Add `.asf.yaml` along with an INFRA fix for the website 
content generated from `b4cff33d3906752080917b0a730c6f23b1dd6ad9`
108332a97c is described below

commit 108332a97c476336b2d8828d2a0286f508669e09
Author: ASF Logging Services RM 
AuthorDate: Thu Apr 18 16:45:12 2024 +

Add `.asf.yaml` along with an INFRA fix for the website content generated 
from `b4cff33d3906752080917b0a730c6f23b1dd6ad9`
---
 .asf.yaml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.asf.yaml b/.asf.yaml
index 65e7794662..881f13d00d 100644
--- a/.asf.yaml
+++ b/.asf.yaml
@@ -9,6 +9,6 @@ staging:
 #
 # Random values to cause a change:
 #
-# - Seed: 28434
-# - Commit ID: be7b9a4e8fa0409333bc4dfa5b041480d8b12aaf
-# - Timestamp: 2024-04-18T14:26:30Z
+# - Seed: 18855
+# - Commit ID: b4cff33d3906752080917b0a730c6f23b1dd6ad9
+# - Timestamp: 2024-04-18T16:45:12Z



(logging-log4j2) branch main updated: Fix Error Prone bug

2024-04-18 Thread vy
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/main by this push:
 new b4cff33d39 Fix Error Prone bug
b4cff33d39 is described below

commit b4cff33d3906752080917b0a730c6f23b1dd6ad9
Author: Volkan Yazıcı 
AuthorDate: Thu Apr 18 18:41:28 2024 +0200

Fix Error Prone bug
---
 .../core/config/plugins/convert/TypeConvertersTest.java| 14 +++---
 1 file changed, 3 insertions(+), 11 deletions(-)

diff --git 
a/log4j-core-test/src/test/java/org/apache/logging/log4j/core/config/plugins/convert/TypeConvertersTest.java
 
b/log4j-core-test/src/test/java/org/apache/logging/log4j/core/config/plugins/convert/TypeConvertersTest.java
index 403a22d784..a379b4d713 100644
--- 
a/log4j-core-test/src/test/java/org/apache/logging/log4j/core/config/plugins/convert/TypeConvertersTest.java
+++ 
b/log4j-core-test/src/test/java/org/apache/logging/log4j/core/config/plugins/convert/TypeConvertersTest.java
@@ -16,8 +16,7 @@
  */
 package org.apache.logging.log4j.core.config.plugins.convert;
 
-import static org.junit.Assert.assertArrayEquals;
-import static org.junit.Assert.assertEquals;
+import static org.assertj.core.api.Assertions.assertThat;
 
 import java.io.File;
 import java.math.BigDecimal;
@@ -214,16 +213,9 @@ public class TypeConvertersTest {
 }
 
 @Test
-public void testConvert() throws Exception {
+public void testConvert() {
 final Object actual =
 
DI.createInitializedFactory().getTypeConverter(clazz).convert(value, 
defaultValue);
-final String assertionMessage = "\nGiven: " + value + "\nDefault: " + 
defaultValue;
-if (expected != null && expected instanceof char[]) {
-assertArrayEquals(assertionMessage, (char[]) expected, (char[]) 
actual);
-} else if (expected != null && expected instanceof byte[]) {
-assertArrayEquals(assertionMessage, (byte[]) expected, (byte[]) 
actual);
-} else {
-assertEquals(assertionMessage, expected, actual);
-}
+assertThat(actual).as("Given: `%s`, Default: `%s`", value, 
defaultValue).isEqualTo(expected);
 }
 }



(logging-log4j-audit) branch dependabot/github_actions/master/apache/logging-parent-rel/11.0.0 deleted (was f56a72d)

2024-04-18 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/master/apache/logging-parent-rel/11.0.0
in repository https://gitbox.apache.org/repos/asf/logging-log4j-audit.git


 was f56a72d  Update `apache/logging-parent` to version `` (#139)

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-log4j-audit) branch master updated (b42e154 -> f56a72d)

2024-04-18 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

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


from b42e154  Update `org.codehaus.plexus:plexus-utils` to version `4.0.1` 
(#138)
 add f56a72d  Update `apache/logging-parent` to version `` (#139)

No new revisions were added by this update.

Summary of changes:
 .github/workflows/build.yaml  | 6 +++---
 .github/workflows/codeql-analysis.yaml| 2 +-
 .github/workflows/merge-dependabot.yaml   | 4 ++--
 src/changelog/.1.x.x/update_apache_logging_parent.xml | 6 +++---
 4 files changed, 9 insertions(+), 9 deletions(-)



(logging-log4j-audit) branch dependabot/github_actions/master/apache/logging-parent-rel/11.0.0 updated (cf1c875 -> f56a72d)

2024-04-18 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/master/apache/logging-parent-rel/11.0.0
in repository https://gitbox.apache.org/repos/asf/logging-log4j-audit.git


 discard cf1c875  Bump apache/logging-parent from rel/10.6.0 to 11.0.0
 add f56a72d  Update `apache/logging-parent` to version `` (#139)

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   (cf1c875)
\
 N -- N -- N   
refs/heads/dependabot/github_actions/master/apache/logging-parent-rel/11.0.0 
(f56a72d)

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:
 src/changelog/.1.x.x/update_apache_logging_parent.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)



(logging-log4j-audit) branch dependabot/maven/master/org.apache.logging-logging-parent-11.0.0 created (now f6f51b6)

2024-04-18 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/master/org.apache.logging-logging-parent-11.0.0
in repository https://gitbox.apache.org/repos/asf/logging-log4j-audit.git


  at f6f51b6  Bump org.apache.logging:logging-parent from 10.6.0 to 11.0.0

No new revisions were added by this update.



(logging-log4j-audit) branch dependabot/github_actions/master/apache/logging-parent-rel/11.0.0 created (now cf1c875)

2024-04-18 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/master/apache/logging-parent-rel/11.0.0
in repository https://gitbox.apache.org/repos/asf/logging-log4j-audit.git


  at cf1c875  Bump apache/logging-parent from rel/10.6.0 to 11.0.0

No new revisions were added by this update.



(logging-log4j2) branch dependabot/maven/2.x/cassandra.version-3.11.17 updated (ed1204f706 -> 138b686e2f)

2024-04-18 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/2.x/cassandra.version-3.11.17
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


 discard ed1204f706 Bump cassandra.version from 3.11.16 to 3.11.17
 add 483e5ab50e Update `org.apache.activemq:activemq-broker` to version 
`6.1.2` (#2472)
 add 138b686e2f Update `org.apache.cassandra:cassandra-all` to version 
`3.11.17` (#2479)

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   (ed1204f706)
\
 N -- N -- N   
refs/heads/dependabot/maven/2.x/cassandra.version-3.11.17 (138b686e2f)

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-parent/pom.xml| 2 +-
 src/changelog/.2.x.x/update_org_apache_activemq_activemq_broker.xml | 4 ++--
 .../update_org_apache_cassandra_cassandra_all.xml}  | 6 +++---
 3 files changed, 6 insertions(+), 6 deletions(-)
 copy 
src/changelog/{2.0-beta4/LOG4J2-128_Add_follow_attribute_to_Console_Appender.xml
 => .2.x.x/update_org_apache_cassandra_cassandra_all.xml} (61%)



(logging-log4j2) branch dependabot/maven/2.x/cassandra.version-3.11.17 deleted (was 138b686e2f)

2024-04-18 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/2.x/cassandra.version-3.11.17
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


 was 138b686e2f Update `org.apache.cassandra:cassandra-all` to version 
`3.11.17` (#2479)

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 (483e5ab50e -> 138b686e2f)

2024-04-18 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

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


from 483e5ab50e Update `org.apache.activemq:activemq-broker` to version 
`6.1.2` (#2472)
 add 138b686e2f Update `org.apache.cassandra:cassandra-all` to version 
`3.11.17` (#2479)

No new revisions were added by this update.

Summary of changes:
 log4j-parent/pom.xml| 2 +-
 .../update_org_apache_cassandra_cassandra_all.xml}  | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)
 copy 
src/changelog/{2.0-beta4/LOG4J2-128_Add_follow_attribute_to_Console_Appender.xml
 => .2.x.x/update_org_apache_cassandra_cassandra_all.xml} (61%)



(logging-log4j2) branch dependabot/maven/2.x/org.apache.activemq-activemq-broker-6.1.2 deleted (was 483e5ab50e)

2024-04-18 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/2.x/org.apache.activemq-activemq-broker-6.1.2
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


 was 483e5ab50e Update `org.apache.activemq:activemq-broker` to version 
`6.1.2` (#2472)

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/maven/2.x/org.apache.activemq-activemq-broker-6.1.2 updated (f1715a7607 -> 483e5ab50e)

2024-04-18 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/2.x/org.apache.activemq-activemq-broker-6.1.2
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


 discard f1715a7607 Bump org.apache.activemq:activemq-broker from 6.1.1 to 6.1.2
 add 483e5ab50e Update `org.apache.activemq:activemq-broker` to version 
`6.1.2` (#2472)

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   (f1715a7607)
\
 N -- N -- N   
refs/heads/dependabot/maven/2.x/org.apache.activemq-activemq-broker-6.1.2 
(483e5ab50e)

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:
 src/changelog/.2.x.x/update_org_apache_activemq_activemq_broker.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)



(logging-log4j2) branch 2.x updated (80da0fe32d -> 483e5ab50e)

2024-04-18 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

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


from 80da0fe32d Update `io.netty:netty-bom` to version `4.1.109.Final` 
(#2471)
 add 483e5ab50e Update `org.apache.activemq:activemq-broker` to version 
`6.1.2` (#2472)

No new revisions were added by this update.

Summary of changes:
 log4j-parent/pom.xml| 2 +-
 src/changelog/.2.x.x/update_org_apache_activemq_activemq_broker.xml | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)



(logging-log4j2) 01/02: Improve Download and Installation pages in `main` (#2480)

2024-04-18 Thread pkarwasz
This is an automated email from the ASF dual-hosted git repository.

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

commit ee94caa971cfef846843d6db32fd46b09db338bd
Author: Volkan Yazıcı 
AuthorDate: Thu Apr 18 14:08:26 2024 +0200

Improve Download and Installation pages in `main` (#2480)

Co-authored-by: Piotr P. Karwasz 
---
 antora-playbook.yaml   |  10 +-
 pom.xml|  30 +
 src/site/antora/antora.tmpl.yml|  12 +-
 src/site/antora/antora.yml |  14 +-
 src/site/antora/modules/ROOT/nav.adoc  |   5 +-
 src/site/antora/modules/ROOT/pages/download.adoc   | 233 +--
 src/site/antora/modules/ROOT/pages/index.adoc  |  53 +-
 .../modules/ROOT/pages/manual/installation.adoc| 723 +
 .../antora/modules/ROOT/pages/manual/logsep.adoc   |   6 +-
 src/site/antora/modules/ROOT/pages/security.adoc   | 320 -
 src/site/antora/modules/ROOT/pages/support.adoc| 145 -
 11 files changed, 842 insertions(+), 709 deletions(-)

diff --git a/antora-playbook.yaml b/antora-playbook.yaml
index 607c05b705..0b8db66622 100644
--- a/antora-playbook.yaml
+++ b/antora-playbook.yaml
@@ -77,11 +77,19 @@ ui:
 
 
 

(logging-log4j2) branch doc/2.x/installation created (now 91b329c64d)

2024-04-18 Thread pkarwasz
This is an automated email from the ASF dual-hosted git repository.

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


  at 91b329c64d Adapt Download and Installation page to `2.x`

This branch includes the following new commits:

 new ee94caa971 Improve Download and Installation pages in `main` (#2480)
 new 91b329c64d Adapt Download and Installation page to `2.x`

The 2 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.




(logging-log4j2) 02/02: Adapt Download and Installation page to `2.x`

2024-04-18 Thread pkarwasz
This is an automated email from the ASF dual-hosted git repository.

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

commit 91b329c64d56e57b6e87bb1539266f6062c9cdda
Author: Piotr P. Karwasz 
AuthorDate: Thu Apr 18 17:25:36 2024 +0200

Adapt Download and Installation page to `2.x`
---
 pom.xml|  8 +++
 src/site/antora/antora.tmpl.yml|  1 +
 src/site/antora/antora.yml |  9 +--
 src/site/antora/modules/ROOT/nav.adoc  |  4 +-
 src/site/antora/modules/ROOT/pages/index.adoc  | 27 
 .../modules/ROOT/pages/manual/installation.adoc| 73 +-
 6 files changed, 58 insertions(+), 64 deletions(-)

diff --git a/pom.xml b/pom.xml
index f21d80f8a0..861794b511 100644
--- a/pom.xml
+++ b/pom.xml
@@ -332,6 +332,7 @@
 true
 true
 1.3.1
+2.17.0
 2.23.1
 2.23.1
 
2.23.1
@@ -724,6 +725,13 @@
 ${site-commons-logging.version}
   
 
+  
+com.fasterxml.jackson
+jackson-bom
+${site-jackson.version}
+pom
+  
+
   
 ch.qos.logback
 logback-core
diff --git a/src/site/antora/antora.tmpl.yml b/src/site/antora/antora.tmpl.yml
index 61e9a581d9..c62fb0f3ef 100644
--- a/src/site/antora/antora.tmpl.yml
+++ b/src/site/antora/antora.tmpl.yml
@@ -47,6 +47,7 @@ asciidoc:
 logging-services-url: "https://logging.apache.org;
 # Dependency versions
 commons-logging-version: "${site-commons-logging.version}"
+jackson-version: "${site-jackson.version}"
 log4j-api-version: "${log4j-api.version}"
 log4j-core-version: "${site-log4j-core.version}"
 log4j-layout-template-json-version: 
"${site-log4j-layout-template-json.version}"
diff --git a/src/site/antora/antora.yml b/src/site/antora/antora.yml
index 68647cec44..b7d1fbe16e 100644
--- a/src/site/antora/antora.yml
+++ b/src/site/antora/antora.yml
@@ -42,15 +42,16 @@ asciidoc:
 project-github-url: "https://github.com/apache/logging-log4j2;
 project-name: "Log4j"
 project-id: "log4j"
-java-target-version: "17"
+java-target-version: "8"
 java-compiler-version: "[17,18)"
 logging-services-url: "https://logging.apache.org;
 # Dependency versions
-commons-logging-version: "1.4.0"
+commons-logging-version: "1.2.3-commons-logging"
+jackson-version: "1.2.3-jackson"
 log4j-api-version: "1.2.3-api"
 log4j-core-version: "1.2.3-core"
 log4j-layout-template-json-version: "1.2.3-layout-template-json"
-logback-version: "1.5.12"
-slf4j-version: "2.0.12"
+logback-version: "1.2.3-logback"
+slf4j-version: "1.2.3-slf4j"
 nav:
   - modules/ROOT/nav.adoc
diff --git a/src/site/antora/modules/ROOT/nav.adoc 
b/src/site/antora/modules/ROOT/nav.adoc
index 091cc1a103..7453e67fd7 100644
--- a/src/site/antora/modules/ROOT/nav.adoc
+++ b/src/site/antora/modules/ROOT/nav.adoc
@@ -18,8 +18,8 @@
 * xref:download.adoc[Download]
 ** xref:runtime-dependencies.adoc[]
 ** xref:release-notes.adoc[]
-* link:{logging-services-url}/support.html[Support]
-** link:{logging-services-url}/security.html[Security]
+* link:{logging-services-url}/support[Support]
+** link:{logging-services-url}/security[Security]
 ** xref:thanks.adoc[Thanks]
 
 .Learn
diff --git a/src/site/antora/modules/ROOT/pages/index.adoc 
b/src/site/antora/modules/ROOT/pages/index.adoc
index 996d2a2f9a..4bc0673b46 100644
--- a/src/site/antora/modules/ROOT/pages/index.adoc
+++ b/src/site/antora/modules/ROOT/pages/index.adoc
@@ -19,15 +19,15 @@
 
 Apache Log4j is a versatile, industrial-grade Java logging framework composed 
of an API, its implementation,  and components to assist the deployment for 
various use cases.
 Log4j is 
https://security.googleblog.com/2021/12/apache-log4j-vulnerability.html[used by 
8% of the Maven ecosystem] and listed as one of 
https://docs.google.com/spreadsheets/d/1ONZ4qeMq8xmeCHX03lIgIYE4MEXVfVL6oj05lbuXTDM/edit#gid=1024997528[the
 top 100 critical open source software projects].
-The project is actively maintained by a 
{logging-services-url}/team-list.html[team] of several volunteers and 
xref:support.adoc[support]ed by a big community.
+The project is actively maintained by a 
{logging-services-url}/team-list.html[team] of several volunteers and 
{logging-services-url}/support[support]ed by a big community.
 
 [#shortcuts]
 == Shortcuts
-- xref:download.adoc#using-a-build-system[How can I add Log4j artifacts to my 
Maven/Ivy/Gradle project?]
+- xref:manual/installation.adoc[How can I add Log4j artifacts to my 
Maven/Ivy/Gradle project?]
 - xref:manual/usage.adoc[How can I use the Log4j API?]
 - xref:manual/configuration.adoc[How can I configure my `log4j2.xml`?]
 - xref:release-notes.adoc[Where are the release notes?]
-- xref:support.adoc[**I need help!**]
+- {logging-services-url}/support[**I need 

(logging-log4j2) branch dependabot/github_actions/2.x/github/codeql-action-3.25.1 updated (018489156e -> df30937d9c)

2024-04-18 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/2.x/github/codeql-action-3.25.1
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


 discard 018489156e Bump github/codeql-action from 3.24.10 to 3.25.1
 add 14b5c31f91 Update `logging-parent` version to `11.0.0`
 add 239f6c42c3 Fix forgotten workflow update
 add 800161fdaa Remove unused Maven properties
 add 62c3b5c74e Switch CI release trigger prefix to `release/2`
 add 80da0fe32d Update `io.netty:netty-bom` to version `4.1.109.Final` 
(#2471)
 add df30937d9c Bump github/codeql-action from 3.24.10 to 3.25.1

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   (018489156e)
\
 N -- N -- N   
refs/heads/dependabot/github_actions/2.x/github/codeql-action-3.25.1 
(df30937d9c)

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:
 .github/workflows/build.yaml   | 10 +-
 .github/workflows/codeql-analysis.yaml |  2 +-
 .github/workflows/deploy-site.yaml | 10 +-
 .github/workflows/merge-dependabot.yaml|  4 ++--
 log4j-parent/pom.xml   |  2 +-
 pom.xml| 21 +
 src/changelog/.2.x.x/update_io_netty_netty_bom.xml |  4 ++--
 7 files changed, 17 insertions(+), 36 deletions(-)



(logging-log4j2) branch dependabot/maven/main/io.netty-netty-bom-4.1.109.Final updated (bd608a35ba -> 553c693161)

2024-04-18 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/main/io.netty-netty-bom-4.1.109.Final
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


 discard bd608a35ba Bump io.netty:netty-bom from 4.1.108.Final to 4.1.109.Final
 add 553c693161 Bump io.netty:netty-bom from 4.1.108.Final to 4.1.109.Final

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   (bd608a35ba)
\
 N -- N -- N   
refs/heads/dependabot/maven/main/io.netty-netty-bom-4.1.109.Final (553c693161)

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:



(logging-log4j2) branch dependabot/maven/main/org.graalvm.truffle-truffle-api-24.0.1 updated (ce77338f1f -> c9af9c23fa)

2024-04-18 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/main/org.graalvm.truffle-truffle-api-24.0.1
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


 discard ce77338f1f Bump org.graalvm.truffle:truffle-api from 24.0.0 to 24.0.1
 add c9af9c23fa Bump org.graalvm.truffle:truffle-api from 24.0.0 to 24.0.1

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   (ce77338f1f)
\
 N -- N -- N   
refs/heads/dependabot/maven/main/org.graalvm.truffle-truffle-api-24.0.1 
(c9af9c23fa)

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:



(logging-log4j2) branch dependabot/maven/2.x/org.apache.activemq-activemq-broker-6.1.2 updated (4d7e45084f -> f1715a7607)

2024-04-18 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/2.x/org.apache.activemq-activemq-broker-6.1.2
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


 discard 4d7e45084f Bump org.apache.activemq:activemq-broker from 6.1.1 to 6.1.2
 add 27aa8d57cf Refactor ResourceLogger
 add e0a2bcb4dc Address cache misses in `LevelResolver`
 add 8e3e3b05c8 Try fixing `AsyncThreadContext*` tests
 add 7f5720a22e Rename old workflows
 add b8ff14c76c Fix deprecated workflows
 add 426fcfb80d Fix deprecated workflows (2)
 add 19c53a0382 Fix deprecated workflows (3)
 add 20763fd3b0 Remove deprecated workflows
 add 3c4414abbb Disable JMX bean creation by default
 add de497d Fix changelog namespace
 add 331765b760 Rename change file to better reflect contents
 add 53e9a11b84 Update log4j-mongodb4 `org.mongodb:*` from `4.11.1` to 
`4.11.2`
 add 04619cf6fe Avoid possible NPE in test
 add 9fb29ab761 Fix errorprone warning
 add 14b5c31f91 Update `logging-parent` version to `11.0.0`
 add 239f6c42c3 Fix forgotten workflow update
 add 800161fdaa Remove unused Maven properties
 add 62c3b5c74e Switch CI release trigger prefix to `release/2`
 add 80da0fe32d Update `io.netty:netty-bom` to version `4.1.109.Final` 
(#2471)
 add f1715a7607 Bump org.apache.activemq:activemq-broker from 6.1.1 to 6.1.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   (4d7e45084f)
\
 N -- N -- N   
refs/heads/dependabot/maven/2.x/org.apache.activemq-activemq-broker-6.1.2 
(f1715a7607)

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:
 .github/workflows/build.yaml   |  10 +-
 .github/workflows/codeql-analysis.yaml |   2 +-
 .github/workflows/deploy-site.yaml |  10 +-
 .github/workflows/merge-dependabot.yaml|   4 +-
 ...ggerTest.java => ScopedResourceLoggerTest.java} |   6 +-
 ...sourceLogger.java => ScopedResourceLogger.java} | 100 ++--
 .../AbstractResourceLogger.java}   | 104 ++---
 ...ggerTest.java => ScopedResourceLoggerTest.java} |  12 +--
 .../async/AbstractAsyncThreadContextTestBase.java  |  34 +--
 ...t.java => QueuedScopedContextProviderTest.java} |   2 +-
 .../org/apache/logging/log4j/core/jmx/Server.java  |   2 +-
 .../template/json/resolver/LevelResolver.java  |  32 +--
 log4j-mongodb4/pom.xml |   8 +-
 .../logging/log4j/mongodb4/MongoDb4Resolver.java   |  13 ++-
 log4j-parent/pom.xml   |   2 +-
 pom.xml|  21 +
 src/changelog/.2.x.x/.release-notes.adoc.ftl   |   4 +
 ...ization.xml => 2462_disable_jmx_by_default.xml} |   4 +-
 src/changelog/.2.x.x/update_io_netty_netty_bom.xml |   4 +-
 ...odb_bson.xml => update_org_mongodb_3.12.14.xml} |   2 +-
 ...godb_bson.xml => update_org_mongodb_4.11.2.xml} |   2 +-
 .../antora/modules/ROOT/pages/log4j-jmx-gui.adoc   |   7 ++
 .../modules/ROOT/pages/manual/configuration.adoc   |   2 +-
 src/site/antora/modules/ROOT/pages/manual/jmx.adoc |  28 +++---
 .../modules/ROOT/pages/manual/resource-logger.adoc |  55 ++-
 25 files changed, 256 insertions(+), 214 deletions(-)
 rename 
log4j-api-test/src/test/java/org/apache/logging/log4j/{ResourceLoggerTest.java 
=> ScopedResourceLoggerTest.java} (96%)
 copy log4j-api/src/main/java/org/apache/logging/log4j/{ResourceLogger.java => 
ScopedResourceLogger.java} (51%)
 rename log4j-api/src/main/java/org/apache/logging/log4j/{ResourceLogger.java 
=> spi/AbstractResourceLogger.java} (56%)
 rename 
log4j-core-test/src/test/java/org/apache/logging/log4j/{ResourceLoggerTest.java 
=> ScopedResourceLoggerTest.java} (93%)
 rename 
log4j-core-test/src/test/java/org/apache/logging/log4j/core/impl/internal/{DefaultScopedContextProviderTest.java
 => QueuedScopedContextProviderTest.java} (95%)
 copy src/changelog/.2.x.x/{2374_refactor_initialization.xml => 
2462_disable_jmx_by_default.xml} (55%)
 copy src/changelog/.2.x.x/{update_org_mongodb_bson.xml => 
update_org_mongodb_3.12.14.xml} (78%)
 rename src/changelog/.2.x.x/{update_org_mongodb_bson.xml => 
update_org_mongodb_4.11.2.xml} (77%)



(logging-log4j2) branch dependabot/maven/2.x/cassandra.version-3.11.17 updated (f0b5f683ef -> ed1204f706)

2024-04-18 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/2.x/cassandra.version-3.11.17
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


 discard f0b5f683ef Bump cassandra.version from 3.11.16 to 3.11.17
 add 331765b760 Rename change file to better reflect contents
 add 53e9a11b84 Update log4j-mongodb4 `org.mongodb:*` from `4.11.1` to 
`4.11.2`
 add 04619cf6fe Avoid possible NPE in test
 add 9fb29ab761 Fix errorprone warning
 add 14b5c31f91 Update `logging-parent` version to `11.0.0`
 add 239f6c42c3 Fix forgotten workflow update
 add 800161fdaa Remove unused Maven properties
 add 62c3b5c74e Switch CI release trigger prefix to `release/2`
 add 80da0fe32d Update `io.netty:netty-bom` to version `4.1.109.Final` 
(#2471)
 add ed1204f706 Bump cassandra.version from 3.11.16 to 3.11.17

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   (f0b5f683ef)
\
 N -- N -- N   
refs/heads/dependabot/maven/2.x/cassandra.version-3.11.17 (ed1204f706)

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:
 .github/workflows/build.yaml| 10 +-
 .github/workflows/codeql-analysis.yaml  |  2 +-
 .github/workflows/deploy-site.yaml  | 10 +-
 .github/workflows/merge-dependabot.yaml |  4 ++--
 log4j-mongodb4/pom.xml  |  8 ++--
 .../logging/log4j/mongodb4/MongoDb4Resolver.java| 13 ++---
 log4j-parent/pom.xml|  2 +-
 pom.xml | 21 +
 src/changelog/.2.x.x/update_io_netty_netty_bom.xml  |  4 ++--
 ...godb_bson.xml => update_org_mongodb_3.12.14.xml} |  2 +-
 ...ngodb_bson.xml => update_org_mongodb_4.11.2.xml} |  2 +-
 11 files changed, 31 insertions(+), 47 deletions(-)
 copy src/changelog/.2.x.x/{update_org_mongodb_bson.xml => 
update_org_mongodb_3.12.14.xml} (78%)
 rename src/changelog/.2.x.x/{update_org_mongodb_bson.xml => 
update_org_mongodb_4.11.2.xml} (77%)



(logging-log4j2) branch dependabot/maven/main/io.netty-netty-bom-4.1.109.Final updated (44aef475a3 -> bd608a35ba)

2024-04-18 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/main/io.netty-netty-bom-4.1.109.Final
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


 discard 44aef475a3 Bump io.netty:netty-bom from 4.1.108.Final to 4.1.109.Final
 add 97e441dd9e Address cache misses in `LevelResolver`
 add a61678df1d Try fixing `AsyncThreadContext*` tests
 add e27b7650c1 Remove `NamedLoggerContextPropertiesTest`
 add 4c2cdc7362 Improve Download and Installation pages in `main` (#2480)
 add a117e9dee9 Update `apache/logging-parent` to version `` (#2485)
 add 1e545f6b35 Bump `logging-parent` to version `11.0.0`
 add 44398dcab6 Fix `generate-email.sh`
 add 8bcb2a9597 Remove redundant `java-version` parameter from CI
 add de2a3ba1af Switch CI release condition prefix to `release/3`
 add be7b9a4e8f Fix changelogs
 add bd608a35ba Bump io.netty:netty-bom from 4.1.108.Final to 4.1.109.Final

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   (44aef475a3)
\
 N -- N -- N   
refs/heads/dependabot/maven/main/io.netty-netty-bom-4.1.109.Final (bd608a35ba)

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:
 .github/generate-email.sh  |  15 +-
 .github/workflows/build.yaml   |  23 +-
 .github/workflows/codeql-analysis.yaml |   2 +-
 .github/workflows/deploy-site.yaml |  98 +++
 .github/workflows/merge-dependabot.yaml|   8 +-
 antora-playbook.yaml   |  10 +-
 .../log4j/async/logger/AsyncThreadContextTest.java |  26 +-
 .../util/NamedLoggerContextPropertiesTest.java |  67 --
 .../template/json/resolver/LevelResolver.java  |  32 +-
 pom.xml| 204 +-
 .../.3.x.x/2408_remove_log4j_kubernetes.xml|   4 +-
 src/changelog/.3.x.x/add_plugin_reference.xml  |   4 +-
 src/changelog/.3.x.x/migrate_to_antora.xml |   4 +-
 src/changelog/.3.x.x/remove_cli_tools.xml  |   4 +-
 src/changelog/.3.x.x/remove_duration.xml   |   4 +-
 .../.3.x.x/update_apache_logging_parent.xml|   8 +
 ...update_co_elastic_logging_log4j2_ecs_layout.xml |   4 +-
 .../update_com_fasterxml_jackson_jackson_bom.xml   |   4 +-
 .../.3.x.x/update_com_github_luben_zstd_jni.xml|   4 +-
 ...update_com_github_tomakehurst_wiremock_jre8.xml |   4 +-
 .../.3.x.x/update_com_google_guava_guava.xml   |   4 +-
 .../.3.x.x/update_commons_io_commons_io.xml|   4 +-
 .../update_commons_logging_commons_logging.xml |   4 +-
 src/changelog/.3.x.x/update_io_netty_netty_bom.xml |   4 +-
 .../.3.x.x/update_net_bytebuddy_byte_buddy.xml |   4 +-
 .../update_org_apache_commons_commons_compress.xml |   4 +-
 .../update_org_apache_commons_commons_dbcp2.xml|   4 +-
 .../.3.x.x/update_org_apache_groovy_groovy_bom.xml |   4 +-
 .../update_org_apache_tomcat_tomcat_juli.xml   |   4 +-
 .../.3.x.x/update_org_awaitility_awaitility.xml|   4 +-
 ...pdate_org_eclipse_platform_org_eclipse_osgi.xml |   4 +-
 ...client_elasticsearch_rest_high_level_client.xml |   4 +-
 .../update_org_graalvm_truffle_truffle_api.xml |   4 +-
 .../.3.x.x/update_org_javassist_javassist.xml  |   4 +-
 .../.3.x.x/update_org_mockito_mockito_bom.xml  |   4 +-
 src/changelog/.3.x.x/update_org_mongodb_bson.xml   |   4 +-
 ...ingframework_boot_spring_boot_autoconfigure.xml |   4 +-
 ..._springframework_cloud_spring_cloud_context.xml |   4 +-
 ...te_org_springframework_spring_framework_bom.xml |   4 +-
 src/changelog/3.0.0-alpha1/.release.xml|   6 +-
 .../3.0.0-alpha1/1220_Simplify_site_generation.xml |   5 +-
 .../3.0.0-alpha1/480_Update_build_to_Java_11.xml   |   5 +-
 ...be_created_through_more_flexible_dependency.xml |   5 +-
 ..._Convert_documentation_into_AsciiDoc_format.xml |   5 +-
 ...2171_Allow_to_force_LOG4J2_to_use_TCCL_only.xml |   9 +-
 ...ore_util_datetime_to_core_time_internal_for.xml |   5 +-
 ...ed_classes_from_core_util_to_core_time_Clas.xml |   5 +-
 ...Kafka_support_into_a_new_module_log4j_kafka.xml |   5 +-
 ...JeroMq_support_into_a_new_module_log4j_jero.xml |   5 +-
 ...f_SMTP_support_into_a_new_module_log4j_smtp.xml |   5 +-
 ...t_from_log4j_core_to_a_new_module_log4j_csv.xml |   5 +-
 ...232_Move_JMS_code_to_a_new_module_log4j_jms.xml |   5 +-
 

(logging-log4j2) branch dependabot/maven/main/org.graalvm.truffle-truffle-api-24.0.1 updated (987f731f45 -> ce77338f1f)

2024-04-18 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/main/org.graalvm.truffle-truffle-api-24.0.1
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


 discard 987f731f45 Bump org.graalvm.truffle:truffle-api from 24.0.0 to 24.0.1
 add e27b7650c1 Remove `NamedLoggerContextPropertiesTest`
 add 4c2cdc7362 Improve Download and Installation pages in `main` (#2480)
 add a117e9dee9 Update `apache/logging-parent` to version `` (#2485)
 add 1e545f6b35 Bump `logging-parent` to version `11.0.0`
 add 44398dcab6 Fix `generate-email.sh`
 add 8bcb2a9597 Remove redundant `java-version` parameter from CI
 add de2a3ba1af Switch CI release condition prefix to `release/3`
 add be7b9a4e8f Fix changelogs
 add ce77338f1f Bump org.graalvm.truffle:truffle-api from 24.0.0 to 24.0.1

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   (987f731f45)
\
 N -- N -- N   
refs/heads/dependabot/maven/main/org.graalvm.truffle-truffle-api-24.0.1 
(ce77338f1f)

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:
 .github/generate-email.sh  |  15 +-
 .github/workflows/build.yaml   |  23 +-
 .github/workflows/codeql-analysis.yaml |   2 +-
 .github/workflows/deploy-site.yaml |  98 +++
 .github/workflows/merge-dependabot.yaml|   8 +-
 antora-playbook.yaml   |  10 +-
 .../util/NamedLoggerContextPropertiesTest.java |  67 --
 pom.xml| 204 +-
 .../.3.x.x/2408_remove_log4j_kubernetes.xml|   4 +-
 src/changelog/.3.x.x/add_plugin_reference.xml  |   4 +-
 src/changelog/.3.x.x/migrate_to_antora.xml |   4 +-
 src/changelog/.3.x.x/remove_cli_tools.xml  |   4 +-
 src/changelog/.3.x.x/remove_duration.xml   |   4 +-
 .../.3.x.x/update_apache_logging_parent.xml|   8 +
 ...update_co_elastic_logging_log4j2_ecs_layout.xml |   4 +-
 .../update_com_fasterxml_jackson_jackson_bom.xml   |   4 +-
 .../.3.x.x/update_com_github_luben_zstd_jni.xml|   4 +-
 ...update_com_github_tomakehurst_wiremock_jre8.xml |   4 +-
 .../.3.x.x/update_com_google_guava_guava.xml   |   4 +-
 .../.3.x.x/update_commons_io_commons_io.xml|   4 +-
 .../update_commons_logging_commons_logging.xml |   4 +-
 src/changelog/.3.x.x/update_io_netty_netty_bom.xml |   4 +-
 .../.3.x.x/update_net_bytebuddy_byte_buddy.xml |   4 +-
 .../update_org_apache_commons_commons_compress.xml |   4 +-
 .../update_org_apache_commons_commons_dbcp2.xml|   4 +-
 .../.3.x.x/update_org_apache_groovy_groovy_bom.xml |   4 +-
 .../update_org_apache_tomcat_tomcat_juli.xml   |   4 +-
 .../.3.x.x/update_org_awaitility_awaitility.xml|   4 +-
 ...pdate_org_eclipse_platform_org_eclipse_osgi.xml |   4 +-
 ...client_elasticsearch_rest_high_level_client.xml |   4 +-
 .../update_org_graalvm_truffle_truffle_api.xml |   4 +-
 .../.3.x.x/update_org_javassist_javassist.xml  |   4 +-
 .../.3.x.x/update_org_mockito_mockito_bom.xml  |   4 +-
 src/changelog/.3.x.x/update_org_mongodb_bson.xml   |   4 +-
 ...ingframework_boot_spring_boot_autoconfigure.xml |   4 +-
 ..._springframework_cloud_spring_cloud_context.xml |   4 +-
 ...te_org_springframework_spring_framework_bom.xml |   4 +-
 src/changelog/3.0.0-alpha1/.release.xml|   6 +-
 .../3.0.0-alpha1/1220_Simplify_site_generation.xml |   5 +-
 .../3.0.0-alpha1/480_Update_build_to_Java_11.xml   |   5 +-
 ...be_created_through_more_flexible_dependency.xml |   5 +-
 ..._Convert_documentation_into_AsciiDoc_format.xml |   5 +-
 ...2171_Allow_to_force_LOG4J2_to_use_TCCL_only.xml |   9 +-
 ...ore_util_datetime_to_core_time_internal_for.xml |   5 +-
 ...ed_classes_from_core_util_to_core_time_Clas.xml |   5 +-
 ...Kafka_support_into_a_new_module_log4j_kafka.xml |   5 +-
 ...JeroMq_support_into_a_new_module_log4j_jero.xml |   5 +-
 ...f_SMTP_support_into_a_new_module_log4j_smtp.xml |   5 +-
 ...t_from_log4j_core_to_a_new_module_log4j_csv.xml |   5 +-
 ...232_Move_JMS_code_to_a_new_module_log4j_jms.xml |   5 +-
 ...3_Move_JDBC_code_to_a_new_module_log4j_jdbc.xml |   5 +-
 ...based_layouts_to_their_own_modules_JSON_XML.xml |   5 +-
 ...g_log4j_core_lookup_EnvironmentLookup_may_t.xml |   5 +-
 

(logging-log4j2) branch dependabot/maven/2.x/io.netty-netty-bom-4.1.109.Final updated (31d38e6622 -> 80da0fe32d)

2024-04-18 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/2.x/io.netty-netty-bom-4.1.109.Final
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


 discard 31d38e6622 Bump io.netty:netty-bom from 4.1.108.Final to 4.1.109.Final
 add 80da0fe32d Update `io.netty:netty-bom` to version `4.1.109.Final` 
(#2471)

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   (31d38e6622)
\
 N -- N -- N   
refs/heads/dependabot/maven/2.x/io.netty-netty-bom-4.1.109.Final (80da0fe32d)

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:
 src/changelog/.2.x.x/update_io_netty_netty_bom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)



(logging-log4j2) branch dependabot/maven/2.x/io.netty-netty-bom-4.1.109.Final deleted (was 80da0fe32d)

2024-04-18 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/2.x/io.netty-netty-bom-4.1.109.Final
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


 was 80da0fe32d Update `io.netty:netty-bom` to version `4.1.109.Final` 
(#2471)

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 (62c3b5c74e -> 80da0fe32d)

2024-04-18 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

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


from 62c3b5c74e Switch CI release trigger prefix to `release/2`
 add 80da0fe32d Update `io.netty:netty-bom` to version `4.1.109.Final` 
(#2471)

No new revisions were added by this update.

Summary of changes:
 log4j-parent/pom.xml   | 2 +-
 src/changelog/.2.x.x/update_io_netty_netty_bom.xml | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)



(logging-log4j2) branch main-site-stg-out updated: Add `.asf.yaml` along with an INFRA fix for the website content generated from `be7b9a4e8fa0409333bc4dfa5b041480d8b12aaf`

2024-04-18 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch main-site-stg-out
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


The following commit(s) were added to refs/heads/main-site-stg-out by this push:
 new 7f66baaf59 Add `.asf.yaml` along with an INFRA fix for the website 
content generated from `be7b9a4e8fa0409333bc4dfa5b041480d8b12aaf`
7f66baaf59 is described below

commit 7f66baaf5936b81e365f919ad5c02f16bd350cd0
Author: ASF Logging Services RM 
AuthorDate: Thu Apr 18 14:26:30 2024 +

Add `.asf.yaml` along with an INFRA fix for the website content generated 
from `be7b9a4e8fa0409333bc4dfa5b041480d8b12aaf`
---
 .asf.yaml | 14 ++
 1 file changed, 14 insertions(+)

diff --git a/.asf.yaml b/.asf.yaml
new file mode 100644
index 00..65e7794662
--- /dev/null
+++ b/.asf.yaml
@@ -0,0 +1,14 @@
+staging:
+  profile: ~
+  whoami: main-site-stg-out
+  subdir: content/log4j/3.x
+
+
+# INFRA cannot handle change sets bigger than a certain size: 
https://the-asf.slack.com/archives/CBX4TSBQ8/p1709724983391709
+# This file will be used to push a small commit to help the INFRA to recover.
+#
+# Random values to cause a change:
+#
+# - Seed: 28434
+# - Commit ID: be7b9a4e8fa0409333bc4dfa5b041480d8b12aaf
+# - Timestamp: 2024-04-18T14:26:30Z



(logging-log4j2) branch main-site-stg-out created (now 52250ae9bd)

2024-04-18 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

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


  at 52250ae9bd Initial content for the website to be generated from 
`be7b9a4e8fa0409333bc4dfa5b041480d8b12aaf`

This branch includes the following new commits:

 new 52250ae9bd Initial content for the website to be generated from 
`be7b9a4e8fa0409333bc4dfa5b041480d8b12aaf`

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.




(logging-log4j2) 01/01: Initial content for the website to be generated from `be7b9a4e8fa0409333bc4dfa5b041480d8b12aaf`

2024-04-18 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch main-site-stg-out
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git

commit 52250ae9bd31cc26c24725834383e02a8fbd0653
Author: ASF Logging Services RM 
AuthorDate: Thu Apr 18 14:26:25 2024 +

Initial content for the website to be generated from 
`be7b9a4e8fa0409333bc4dfa5b041480d8b12aaf`
---
 README.txt | 1 +
 1 file changed, 1 insertion(+)

diff --git a/README.txt b/README.txt
new file mode 100644
index 00..80fa27e752
--- /dev/null
+++ b/README.txt
@@ -0,0 +1 @@
+Content for initializing an orphan branch for the website to be generated from 
`be7b9a4e8fa0409333bc4dfa5b041480d8b12aaf`



(logging-log4j2) branch dependabot/maven/2.x/io.netty-netty-bom-4.1.109.Final updated (acba32e196 -> 31d38e6622)

2024-04-18 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/2.x/io.netty-netty-bom-4.1.109.Final
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


 discard acba32e196 Bump io.netty:netty-bom from 4.1.108.Final to 4.1.109.Final
 add 3c4414abbb Disable JMX bean creation by default
 add de497d Fix changelog namespace
 add 331765b760 Rename change file to better reflect contents
 add 53e9a11b84 Update log4j-mongodb4 `org.mongodb:*` from `4.11.1` to 
`4.11.2`
 add 04619cf6fe Avoid possible NPE in test
 add 9fb29ab761 Fix errorprone warning
 add 14b5c31f91 Update `logging-parent` version to `11.0.0`
 add 239f6c42c3 Fix forgotten workflow update
 add 800161fdaa Remove unused Maven properties
 add 62c3b5c74e Switch CI release trigger prefix to `release/2`
 add 31d38e6622 Bump io.netty:netty-bom from 4.1.108.Final to 4.1.109.Final

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   (acba32e196)
\
 N -- N -- N   
refs/heads/dependabot/maven/2.x/io.netty-netty-bom-4.1.109.Final (31d38e6622)

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:
 .github/workflows/build.yaml   | 10 
 .github/workflows/codeql-analysis.yaml |  2 +-
 .github/workflows/deploy-site.yaml | 10 
 .github/workflows/merge-dependabot.yaml|  4 ++--
 .../org/apache/logging/log4j/core/jmx/Server.java  |  2 +-
 log4j-mongodb4/pom.xml |  8 ++-
 .../logging/log4j/mongodb4/MongoDb4Resolver.java   | 13 +++---
 pom.xml| 21 +---
 src/changelog/.2.x.x/.release-notes.adoc.ftl   |  4 
 ...ization.xml => 2462_disable_jmx_by_default.xml} |  4 ++--
 ...odb_bson.xml => update_org_mongodb_3.12.14.xml} |  2 +-
 ...godb_bson.xml => update_org_mongodb_4.11.2.xml} |  2 +-
 .../antora/modules/ROOT/pages/log4j-jmx-gui.adoc   |  7 ++
 .../modules/ROOT/pages/manual/configuration.adoc   |  2 +-
 src/site/antora/modules/ROOT/pages/manual/jmx.adoc | 28 +-
 15 files changed, 60 insertions(+), 59 deletions(-)
 copy src/changelog/.2.x.x/{2374_refactor_initialization.xml => 
2462_disable_jmx_by_default.xml} (55%)
 copy src/changelog/.2.x.x/{update_org_mongodb_bson.xml => 
update_org_mongodb_3.12.14.xml} (78%)
 rename src/changelog/.2.x.x/{update_org_mongodb_bson.xml => 
update_org_mongodb_4.11.2.xml} (77%)



(logging-site) branch asf-site updated: Remove Ahrefs verification file

2024-04-18 Thread pkarwasz
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/asf-site by this push:
 new 9ed605a0 Remove Ahrefs verification file
9ed605a0 is described below

commit 9ed605a088c47317a2f72a6416cdc9eec3b18ca7
Author: Piotr P. Karwasz 
AuthorDate: Thu Apr 18 16:16:19 2024 +0200

Remove Ahrefs verification file
---
 ...refs_5445883b1716904026a03ceb21417e5ab51531d9671775cb6849223d68cfd116 | 1 -
 1 file changed, 1 deletion(-)

diff --git 
a/content/ahrefs_5445883b1716904026a03ceb21417e5ab51531d9671775cb6849223d68cfd116
 
b/content/ahrefs_5445883b1716904026a03ceb21417e5ab51531d9671775cb6849223d68cfd116
deleted file mode 100644
index b92514ee..
--- 
a/content/ahrefs_5445883b1716904026a03ceb21417e5ab51531d9671775cb6849223d68cfd116
+++ /dev/null
@@ -1 +0,0 @@
-ahrefs-site-verification_5445883b1716904026a03ceb21417e5ab51531d9671775cb6849223d68cfd116
\ No newline at end of file



(logging-site) branch asf-site updated: Registration in Ahrefs (broken links)

2024-04-18 Thread pkarwasz
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/asf-site by this push:
 new 03b7d67b Registration in Ahrefs (broken links)
03b7d67b is described below

commit 03b7d67bb2c66bb0d99c5892895b06030dbcf47c
Author: Piotr P. Karwasz 
AuthorDate: Thu Apr 18 16:14:21 2024 +0200

Registration in Ahrefs (broken links)
---
 ...refs_5445883b1716904026a03ceb21417e5ab51531d9671775cb6849223d68cfd116 | 1 +
 1 file changed, 1 insertion(+)

diff --git 
a/content/ahrefs_5445883b1716904026a03ceb21417e5ab51531d9671775cb6849223d68cfd116
 
b/content/ahrefs_5445883b1716904026a03ceb21417e5ab51531d9671775cb6849223d68cfd116
new file mode 100644
index ..b92514ee
--- /dev/null
+++ 
b/content/ahrefs_5445883b1716904026a03ceb21417e5ab51531d9671775cb6849223d68cfd116
@@ -0,0 +1 @@
+ahrefs-site-verification_5445883b1716904026a03ceb21417e5ab51531d9671775cb6849223d68cfd116
\ No newline at end of file



(logging-log4j2) branch 2.x-site-stg-out updated: Add `.asf.yaml` along with an INFRA fix for the website content generated from `62c3b5c74ec6e2ca014e74bb7bf547b661099724`

2024-04-18 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch 2.x-site-stg-out
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


The following commit(s) were added to refs/heads/2.x-site-stg-out by this push:
 new 2422ddebf1 Add `.asf.yaml` along with an INFRA fix for the website 
content generated from `62c3b5c74ec6e2ca014e74bb7bf547b661099724`
2422ddebf1 is described below

commit 2422ddebf1abd0fd768f53c0ade23aed7769aa91
Author: ASF Logging Services RM 
AuthorDate: Thu Apr 18 14:11:57 2024 +

Add `.asf.yaml` along with an INFRA fix for the website content generated 
from `62c3b5c74ec6e2ca014e74bb7bf547b661099724`
---
 .asf.yaml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.asf.yaml b/.asf.yaml
index 62efd19b7d..37383729c6 100644
--- a/.asf.yaml
+++ b/.asf.yaml
@@ -9,6 +9,6 @@ staging:
 #
 # Random values to cause a change:
 #
-# - Seed: 21024
-# - Commit ID: 800161fdaa20ba6bd72359bd798926d43798169a
-# - Timestamp: 2024-04-18T13:56:32Z
+# - Seed: 26404
+# - Commit ID: 62c3b5c74ec6e2ca014e74bb7bf547b661099724
+# - Timestamp: 2024-04-18T14:11:57Z



(logging-log4j2) branch 2.x-site-stg-out updated: Add website content generated from `62c3b5c74ec6e2ca014e74bb7bf547b661099724`

2024-04-18 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch 2.x-site-stg-out
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


The following commit(s) were added to refs/heads/2.x-site-stg-out by this push:
 new a007e3817a Add website content generated from 
`62c3b5c74ec6e2ca014e74bb7bf547b661099724`
a007e3817a is described below

commit a007e3817a59e5397d192e46b37dfce2d90818b4
Author: ASF Logging Services RM 
AuthorDate: Thu Apr 18 14:11:56 2024 +

Add website content generated from 
`62c3b5c74ec6e2ca014e74bb7bf547b661099724`
---
 sitemap.xml | 136 ++--
 1 file changed, 68 insertions(+), 68 deletions(-)

diff --git a/sitemap.xml b/sitemap.xml
index 0597f6f192..76e87b4659 100644
--- a/sitemap.xml
+++ b/sitemap.xml
@@ -2,274 +2,274 @@
 http://www.sitemaps.org/schemas/sitemap/0.9;>
 
 https://logging.apache.org/log4j/2.x/articles.html
-2024-04-18T13:56:09.824Z
+2024-04-18T14:11:34.963Z
 
 
 https://logging.apache.org/log4j/2.x/download.html
-2024-04-18T13:56:09.824Z
+2024-04-18T14:11:34.963Z
 
 
 https://logging.apache.org/log4j/2.x/faq.html
-2024-04-18T13:56:09.824Z
+2024-04-18T14:11:34.963Z
 
 
 https://logging.apache.org/log4j/2.x/guidelines.html
-2024-04-18T13:56:09.824Z
+2024-04-18T14:11:34.963Z
 
 
 https://logging.apache.org/log4j/2.x/index.html
-2024-04-18T13:56:09.824Z
+2024-04-18T14:11:34.963Z
 
 
 https://logging.apache.org/log4j/2.x/javadoc.html
-2024-04-18T13:56:09.824Z
+2024-04-18T14:11:34.963Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-1.2-api.html
-2024-04-18T13:56:09.824Z
+2024-04-18T14:11:34.963Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-api.html
-2024-04-18T13:56:09.824Z
+2024-04-18T14:11:34.963Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-appserver.html
-2024-04-18T13:56:09.824Z
+2024-04-18T14:11:34.963Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-cassandra.html
-2024-04-18T13:56:09.824Z
+2024-04-18T14:11:34.963Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-couchdb.html
-2024-04-18T13:56:09.824Z
+2024-04-18T14:11:34.963Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-docker.html
-2024-04-18T13:56:09.824Z
+2024-04-18T14:11:34.963Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-flume-ng.html
-2024-04-18T13:56:09.824Z
+2024-04-18T14:11:34.963Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-iostreams.html
-2024-04-18T13:56:09.824Z
+2024-04-18T14:11:34.963Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-jakarta-web.html
-2024-04-18T13:56:09.824Z
+2024-04-18T14:11:34.963Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-jcl.html
-2024-04-18T13:56:09.824Z
+2024-04-18T14:11:34.963Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-jmx-gui.html
-2024-04-18T13:56:09.824Z
+2024-04-18T14:11:34.963Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-jpl.html
-2024-04-18T13:56:09.824Z
+2024-04-18T14:11:34.963Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-jul.html
-2024-04-18T13:56:09.824Z
+2024-04-18T14:11:34.963Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-mongodb3.html
-2024-04-18T13:56:09.824Z
+2024-04-18T14:11:34.963Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-mongodb4.html
-2024-04-18T13:56:09.824Z
+2024-04-18T14:11:34.963Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-slf4j-impl.html
-2024-04-18T13:56:09.824Z
+2024-04-18T14:11:34.963Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-slf4j2-impl.html
-2024-04-18T13:56:09.824Z
+2024-04-18T14:11:34.963Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-spring-boot.html
-2024-04-18T13:56:09.824Z
+2024-04-18T14:11:34.963Z
 
 
 
https://logging.apache.org/log4j/2.x/log4j-spring-cloud-config-client.html
-2024-04-18T13:56:09.824Z
+2024-04-18T14:11:34.963Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-spring-cloud-config.html
-2024-04-18T13:56:09.824Z
+2024-04-18T14:11:34.963Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-taglib.html
-2024-04-18T13:56:09.824Z
+2024-04-18T14:11:34.963Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-to-jul.html
-2024-04-18T13:56:09.824Z
+2024-04-18T14:11:34.963Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-to-slf4j.html
-2024-04-18T13:56:09.824Z
+2024-04-18T14:11:34.963Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-web.html
-2024-04-18T13:56:09.824Z
+2024-04-18T14:11:34.963Z
 
 
 https://logging.apache.org/log4j/2.x/manual/api-separation.html
-2024-04-18T13:56:09.824Z
+2024-04-18T14:11:34.963Z
 
 
 https://logging.apache.org/log4j/2.x/manual/api.html
-2024-04-18T13:56:09.824Z
+2024-04-18T14:11:34.963Z
 
 
 https://logging.apache.org/log4j/2.x/manual/appenders.html
-2024-04-18T13:56:09.824Z
+2024-04-18T14:11:34.963Z
 
 
 https://logging.apache.org/log4j/2.x/manual/architecture.html
-2024-04-18T13:56:09.824Z
+2024-04-18T14:11:34.963Z
 
 
 https://logging.apache.org/log4j/2.x/manual/async.html
-2024-04-18T13:56:09.824Z
+2024-04-18T14:11:34.963Z
 
 
 https://logging.apache.org/log4j/2.x/manual/cloud.html
-2024-04-18T13:56:09.824Z

(logging-log4j2) branch main updated: Switch CI release condition prefix to `release/3`

2024-04-18 Thread vy
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/main by this push:
 new de2a3ba1af Switch CI release condition prefix to `release/3`
de2a3ba1af is described below

commit de2a3ba1afed6ff469893d9f6572dcd56ee4ca9e
Author: Volkan Yazıcı 
AuthorDate: Thu Apr 18 16:07:56 2024 +0200

Switch CI release condition prefix to `release/3`
---
 .github/workflows/build.yaml   |  4 ++--
 .github/workflows/deploy-site.yaml | 33 -
 2 files changed, 34 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index 69532e45e1..7dd3ba7ab5 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -21,7 +21,7 @@ on:
   push:
 branches:
   - "main"
-  - "release/*"
+  - "release/3*"
 paths-ignore:
   - "**.adoc"
   - "**.md"
@@ -53,7 +53,7 @@ jobs:
 
   deploy-release:
 needs: build
-if: github.repository == 'apache/logging-log4j2' && 
startsWith(github.ref_name, 'release/')
+if: github.repository == 'apache/logging-log4j2' && 
startsWith(github.ref_name, 'release/3')
 uses: 
apache/logging-parent/.github/workflows/deploy-release-reusable.yaml@rel/11.0.0
 # Secrets for deployments
 secrets:
diff --git a/.github/workflows/deploy-site.yaml 
b/.github/workflows/deploy-site.yaml
index c50b3e63c1..e8bd60be50 100644
--- a/.github/workflows/deploy-site.yaml
+++ b/.github/workflows/deploy-site.yaml
@@ -22,6 +22,7 @@ on:
 branches:
   - "main"
   - "main-site-pro"
+  - "release/3*"
 paths-ignore:
   - "**.md"
   - "**.txt"
@@ -49,7 +50,7 @@ jobs:
   target-branch: ${{ github.ref_name }}-site-stg-out
 
   deploy-site-pro:
-if: github.repository == 'apache/logging-log4j2' && github.ref_name == 
'3.x-site-pro'
+if: github.repository == 'apache/logging-log4j2' && github.ref_name == 
'main-site-pro'
 uses: 
apache/logging-parent/.github/workflows/deploy-site-reusable.yaml@rel/11.0.0
 # Secrets for committing the generated site
 secrets:
@@ -65,3 +66,33 @@ jobs:
   subdir: content/log4j/3.x
   install-required: true
   target-branch: ${{ github.ref_name }}-out
+
+  export-version:
+if: github.repository == 'apache/logging-log4j2' && 
startsWith(github.ref_name, 'release/3')
+runs-on: ubuntu-latest
+outputs:
+  version: ${{ steps.export-version.outputs.version }}
+steps:
+  - name: Export version
+id: export-version
+run: |
+  version=$(echo "${{ github.ref_name }}" | sed 's/^release\///')
+  echo "version=$version" >> "$GITHUB_OUTPUT"
+
+  deploy-site-rel:
+needs: export-version
+uses: 
apache/logging-parent/.github/workflows/deploy-site-reusable.yaml@rel/11.0.0
+# Secrets for committing the generated site
+secrets:
+  GPG_SECRET_KEY: ${{ secrets.LOGGING_GPG_SECRET_KEY }}
+# Write permissions for committing the generated site
+permissions:
+  contents: write
+with:
+  asf-yaml-content: |
+staging:
+  profile: ~
+  whoami: ${{ github.ref_name }}-site-stg-out
+  subdir: content/log4j/${{ needs.export-version.outputs.version }}
+  install-required: true
+  target-branch: ${{ github.ref_name }}-site-stg-out



(logging-log4j2) branch 2.x updated: Switch CI release trigger prefix to `release/2`

2024-04-18 Thread vy
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/2.x by this push:
 new 62c3b5c74e Switch CI release trigger prefix to `release/2`
62c3b5c74e is described below

commit 62c3b5c74ec6e2ca014e74bb7bf547b661099724
Author: Volkan Yazıcı 
AuthorDate: Thu Apr 18 16:06:06 2024 +0200

Switch CI release trigger prefix to `release/2`
---
 .github/workflows/build.yaml   | 4 ++--
 .github/workflows/deploy-site.yaml | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index fabfa5569f..a041ad70ce 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -21,7 +21,7 @@ on:
   push:
 branches:
   - "2.x"
-  - "release/*"
+  - "release/2*"
 paths-ignore:
   - "**.adoc"
   - "**.md"
@@ -60,7 +60,7 @@ jobs:
 
   deploy-release:
 needs: build
-if: github.repository == 'apache/logging-log4j2' && 
startsWith(github.ref_name, 'release/')
+if: github.repository == 'apache/logging-log4j2' && 
startsWith(github.ref_name, 'release/2')
 uses: 
apache/logging-parent/.github/workflows/deploy-release-reusable.yaml@rel/11.0.0
 # Secrets for deployments
 secrets:
diff --git a/.github/workflows/deploy-site.yaml 
b/.github/workflows/deploy-site.yaml
index b918eb048f..3b6803c523 100644
--- a/.github/workflows/deploy-site.yaml
+++ b/.github/workflows/deploy-site.yaml
@@ -22,7 +22,7 @@ on:
 branches:
   - "2.x"
   - "2.x-site-pro"
-  - "release/*"
+  - "release/2*"
 paths-ignore:
   - "**.md"
   - "**.txt"
@@ -68,7 +68,7 @@ jobs:
   target-branch: ${{ github.ref_name }}-out
 
   export-version:
-if: github.repository == 'apache/logging-log4j2' && 
startsWith(github.ref_name, 'release/')
+if: github.repository == 'apache/logging-log4j2' && 
startsWith(github.ref_name, 'release/2')
 runs-on: ubuntu-latest
 outputs:
   version: ${{ steps.export-version.outputs.version }}



(logging-log4j2) 02/02: Remove redundant `java-version` parameter from CI

2024-04-18 Thread vy
This is an automated email from the ASF dual-hosted git repository.

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

commit 8bcb2a95970e05f310c60a8460ae4bf223d950a6
Author: Volkan Yazıcı 
AuthorDate: Thu Apr 18 16:02:11 2024 +0200

Remove redundant `java-version` parameter from CI
---
 .github/workflows/build.yaml| 4 
 .github/workflows/merge-dependabot.yaml | 4 
 2 files changed, 8 deletions(-)

diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index 1e9a8c6162..69532e45e1 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -40,7 +40,6 @@ jobs:
 if: github.actor != 'dependabot[bot]'
 uses: 
apache/logging-parent/.github/workflows/build-reusable.yaml@rel/11.0.0
 with:
-  java-version: 17
   site-enabled: true
 
   deploy-snapshot:
@@ -51,8 +50,6 @@ jobs:
 secrets:
   NEXUS_USERNAME: ${{ secrets.NEXUS_USER }}
   NEXUS_PASSWORD: ${{ secrets.NEXUS_PW }}
-with:
-  java-version: 17
 
   deploy-release:
 needs: build
@@ -69,5 +66,4 @@ jobs:
 permissions:
   contents: write
 with:
-  java-version: 17
   project-id: log4j
diff --git a/.github/workflows/merge-dependabot.yaml 
b/.github/workflows/merge-dependabot.yaml
index 67fc0de075..db3b848117 100644
--- a/.github/workflows/merge-dependabot.yaml
+++ b/.github/workflows/merge-dependabot.yaml
@@ -31,14 +31,10 @@ jobs:
   build:
 if: github.repository == 'apache/logging-log4j2' && github.event_name == 
'pull_request_target' && github.actor == 'dependabot[bot]'
 uses: 
apache/logging-parent/.github/workflows/build-reusable.yaml@rel/11.0.0
-with:
-  java-version: 17
 
   merge-dependabot:
 needs: build
 uses: 
apache/logging-parent/.github/workflows/merge-dependabot-reusable.yaml@rel/11.0.0
-with:
-  java-version: 17
 permissions:
   contents: write # to push 
changelog commits
   pull-requests: write# to close 
the PR



(logging-log4j2) 01/02: Fix `generate-email.sh`

2024-04-18 Thread vy
This is an automated email from the ASF dual-hosted git repository.

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

commit 44398dcab60ffdd9852dc4fd1f48054479d7d12a
Author: Volkan Yazıcı 
AuthorDate: Thu Apr 18 15:57:55 2024 +0200

Fix `generate-email.sh`
---
 .github/generate-email.sh | 15 ---
 1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/.github/generate-email.sh b/.github/generate-email.sh
index de718c96ad..17cd36a90c 100755
--- a/.github/generate-email.sh
+++ b/.github/generate-email.sh
@@ -41,7 +41,7 @@ PROJECT_VERSION="$2"
 COMMIT_ID="$3"
 
 # Check release notes file
-RELEASE_NOTES_FILE="$SCRIPT_DIR/../src/site/_release-notes/_$PROJECT_VERSION.adoc"
+RELEASE_NOTES_FILE="$SCRIPT_DIR/../target/generated-site/antora/modules/ROOT/pages/_release-notes/$PROJECT_VERSION.adoc"
 [ -f "$RELEASE_NOTES_FILE" ] || {
 stderr "Couldn't find release notes file: $RELEASE_NOTES_FILE"
 exit 1
@@ -56,7 +56,8 @@ dump_review_kit() {
 
 dump_release_notes() {
 awk "f{print} /^Release date::/{f=1}" "$RELEASE_NOTES_FILE" \
-| sed -r 's!'$PROJECT_REPO'/(issues|pull)/[0-9]+\[([0-9]+)\]!#\2!g'
+| sed -r 's!'$PROJECT_REPO'/(issues|pull)/[0-9]+\[([0-9]+)\]!#\2!g' \
+| sed -r 
's!https://github.com/([^/]+)/([^/]+)/(pull|issues)/([0-9]+)\[(\1/\2#\4)\]!\5!g'
 }
 
 case $1 in
@@ -64,11 +65,11 @@ case $1 in
 vote)
 cat <

(logging-log4j2) branch main updated (1e545f6b35 -> 8bcb2a9597)

2024-04-18 Thread vy
This is an automated email from the ASF dual-hosted git repository.

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


from 1e545f6b35 Bump `logging-parent` to version `11.0.0`
 new 44398dcab6 Fix `generate-email.sh`
 new 8bcb2a9597 Remove redundant `java-version` parameter from CI

The 2 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:
 .github/generate-email.sh   | 15 ---
 .github/workflows/build.yaml|  4 
 .github/workflows/merge-dependabot.yaml |  4 
 3 files changed, 8 insertions(+), 15 deletions(-)



(logging-log4j2) branch main updated: Bump `logging-parent` to version `11.0.0`

2024-04-18 Thread vy
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/main by this push:
 new 1e545f6b35 Bump `logging-parent` to version `11.0.0`
1e545f6b35 is described below

commit 1e545f6b35da05053f16fa1ddec370c695cb95d9
Author: Volkan Yazıcı 
AuthorDate: Thu Apr 18 15:56:07 2024 +0200

Bump `logging-parent` to version `11.0.0`
---
 .github/workflows/build.yaml   |   9 +-
 .github/workflows/deploy-site.yaml |  67 ++
 pom.xml| 175 ++---
 3 files changed, 76 insertions(+), 175 deletions(-)

diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index f93febe161..1e9a8c6162 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -49,8 +49,8 @@ jobs:
 uses: 
apache/logging-parent/.github/workflows/deploy-snapshot-reusable.yaml@rel/11.0.0
 # Secrets for deployments
 secrets:
-  NEXUS_USER: ${{ secrets.NEXUS_USER }}
-  NEXUS_PW: ${{ secrets.NEXUS_PW }}
+  NEXUS_USERNAME: ${{ secrets.NEXUS_USER }}
+  NEXUS_PASSWORD: ${{ secrets.NEXUS_PW }}
 with:
   java-version: 17
 
@@ -61,8 +61,8 @@ jobs:
 # Secrets for deployments
 secrets:
   GPG_SECRET_KEY: ${{ secrets.LOGGING_GPG_SECRET_KEY }}
-  LOGGING_STAGE_DEPLOYER_USER: ${{ secrets.LOGGING_STAGE_DEPLOYER_USER }}
-  LOGGING_STAGE_DEPLOYER_PW: ${{ secrets.LOGGING_STAGE_DEPLOYER_PW }}
+  NEXUS_USERNAME: ${{ secrets.LOGGING_STAGE_DEPLOYER_USER }}
+  NEXUS_PASSWORD: ${{ secrets.LOGGING_STAGE_DEPLOYER_PW }}
   SVN_USERNAME: ${{ secrets.LOGGING_SVN_DEV_USERNAME }}
   SVN_PASSWORD: ${{ secrets.LOGGING_SVN_DEV_PASSWORD }}
 # Write permissions to allow the Maven `revision` property update, 
changelog release, etc.
@@ -71,4 +71,3 @@ jobs:
 with:
   java-version: 17
   project-id: log4j
-  site-enabled: true
diff --git a/.github/workflows/deploy-site.yaml 
b/.github/workflows/deploy-site.yaml
new file mode 100644
index 00..c50b3e63c1
--- /dev/null
+++ b/.github/workflows/deploy-site.yaml
@@ -0,0 +1,67 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to you under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#  http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+name: deploy-site
+
+on:
+  push:
+branches:
+  - "main"
+  - "main-site-pro"
+paths-ignore:
+  - "**.md"
+  - "**.txt"
+
+permissions: read-all
+
+jobs:
+
+  deploy-site-stg:
+if: github.repository == 'apache/logging-log4j2' && github.ref_name == 
'main'
+uses: 
apache/logging-parent/.github/workflows/deploy-site-reusable.yaml@rel/11.0.0
+# Secrets for committing the generated site
+secrets:
+  GPG_SECRET_KEY: ${{ secrets.LOGGING_GPG_SECRET_KEY }}
+# Write permissions for committing the generated site
+permissions:
+  contents: write
+with:
+  asf-yaml-content: |
+staging:
+  profile: ~
+  whoami: ${{ github.ref_name }}-site-stg-out
+  subdir: content/log4j/3.x
+  install-required: true
+  target-branch: ${{ github.ref_name }}-site-stg-out
+
+  deploy-site-pro:
+if: github.repository == 'apache/logging-log4j2' && github.ref_name == 
'3.x-site-pro'
+uses: 
apache/logging-parent/.github/workflows/deploy-site-reusable.yaml@rel/11.0.0
+# Secrets for committing the generated site
+secrets:
+  GPG_SECRET_KEY: ${{ secrets.LOGGING_GPG_SECRET_KEY }}
+# Write permissions for committing the generated site
+permissions:
+  contents: write
+with:
+  asf-yaml-content: |
+publish:
+  profile: ~
+  whoami: ${{ github.ref_name }}-out
+  subdir: content/log4j/3.x
+  install-required: true
+  target-branch: ${{ github.ref_name }}-out
diff --git a/pom.xml b/pom.xml
index decfc455c7..385ed90a8c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -31,7 +31,7 @@
   
 org.apache.logging
 logging-parent
-10.6.0
+11.0.0
 
   
 
@@ -352,12 +352,6 @@
 21.7.1
 10.5.0
 
-
-3.2.0
-1.15.0
-
 
@@ -653,7 +647,7 @@
This section consists of plugins responsible for generating the 
site.
Note that only this (i.e., 

(logging-log4j2) branch 2.x-site-stg-out updated: Add `.asf.yaml` along with an INFRA fix for the website content generated from `800161fdaa20ba6bd72359bd798926d43798169a`

2024-04-18 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch 2.x-site-stg-out
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


The following commit(s) were added to refs/heads/2.x-site-stg-out by this push:
 new 9ee0a8e14c Add `.asf.yaml` along with an INFRA fix for the website 
content generated from `800161fdaa20ba6bd72359bd798926d43798169a`
9ee0a8e14c is described below

commit 9ee0a8e14cbcd03698c283615894de1f3bdc2f47
Author: ASF Logging Services RM 
AuthorDate: Thu Apr 18 13:56:32 2024 +

Add `.asf.yaml` along with an INFRA fix for the website content generated 
from `800161fdaa20ba6bd72359bd798926d43798169a`
---
 .asf.yaml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.asf.yaml b/.asf.yaml
index cd6e22de75..62efd19b7d 100644
--- a/.asf.yaml
+++ b/.asf.yaml
@@ -9,6 +9,6 @@ staging:
 #
 # Random values to cause a change:
 #
-# - Seed: 15569
-# - Commit ID: 239f6c42c3251b379eee21064106a5042b4e05ea
-# - Timestamp: 2024-04-18T13:34:27Z
+# - Seed: 21024
+# - Commit ID: 800161fdaa20ba6bd72359bd798926d43798169a
+# - Timestamp: 2024-04-18T13:56:32Z



(logging-log4j2) branch 2.x-site-stg-out updated: Add website content generated from `800161fdaa20ba6bd72359bd798926d43798169a`

2024-04-18 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch 2.x-site-stg-out
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


The following commit(s) were added to refs/heads/2.x-site-stg-out by this push:
 new 0facd3251d Add website content generated from 
`800161fdaa20ba6bd72359bd798926d43798169a`
0facd3251d is described below

commit 0facd3251dfed9d61e2e057638be12ffcedf9512
Author: ASF Logging Services RM 
AuthorDate: Thu Apr 18 13:56:31 2024 +

Add website content generated from 
`800161fdaa20ba6bd72359bd798926d43798169a`
---
 plugin-reference.html |  12 ++---
 sitemap.xml   | 136 +-
 2 files changed, 74 insertions(+), 74 deletions(-)

diff --git a/plugin-reference.html b/plugin-reference.html
index f0859ed522..6e0724004f 100644
--- a/plugin-reference.html
+++ b/plugin-reference.html
@@ -15818,10 +15818,10 @@ Supports Lookup expressions.
 boolean?
 
 
-If "true", includes the stacktrace of any Throwable in the generated JSON, 
defaults to "true".
+If "true", includes the stacktrace of any Throwable in the generated data, 
defaults to "true".
 
 
-If "true", includes the stacktrace of any Throwable in the generated data, 
defaults to "true".
+If "true", includes the stacktrace of any Throwable in the generated JSON, 
defaults to "true".
 
 
 
@@ -17117,10 +17117,10 @@ Supports Lookup expressions.
 boolean?
 
 
-If "true", includes the stacktrace of any Throwable in the generated JSON, 
defaults to "true".
+If "true", includes the stacktrace of any Throwable in the generated data, 
defaults to "true".
 
 
-If "true", includes the stacktrace of any Throwable in the generated data, 
defaults to "true".
+If "true", includes the stacktrace of any Throwable in the generated JSON, 
defaults to "true".
 
 
 
@@ -17316,10 +17316,10 @@ Supports Lookup expressions.
 boolean?
 
 
-If "true", includes the stacktrace of any Throwable in the generated JSON, 
defaults to "true".
+If "true", includes the stacktrace of any Throwable in the generated data, 
defaults to "true".
 
 
-If "true", includes the stacktrace of any Throwable in the generated data, 
defaults to "true".
+If "true", includes the stacktrace of any Throwable in the generated JSON, 
defaults to "true".
 
 
 
diff --git a/sitemap.xml b/sitemap.xml
index b9f0b6cf5f..0597f6f192 100644
--- a/sitemap.xml
+++ b/sitemap.xml
@@ -2,274 +2,274 @@
 http://www.sitemaps.org/schemas/sitemap/0.9;>
 
 https://logging.apache.org/log4j/2.x/articles.html
-2024-04-18T13:34:03.554Z
+2024-04-18T13:56:09.824Z
 
 
 https://logging.apache.org/log4j/2.x/download.html
-2024-04-18T13:34:03.554Z
+2024-04-18T13:56:09.824Z
 
 
 https://logging.apache.org/log4j/2.x/faq.html
-2024-04-18T13:34:03.554Z
+2024-04-18T13:56:09.824Z
 
 
 https://logging.apache.org/log4j/2.x/guidelines.html
-2024-04-18T13:34:03.554Z
+2024-04-18T13:56:09.824Z
 
 
 https://logging.apache.org/log4j/2.x/index.html
-2024-04-18T13:34:03.554Z
+2024-04-18T13:56:09.824Z
 
 
 https://logging.apache.org/log4j/2.x/javadoc.html
-2024-04-18T13:34:03.554Z
+2024-04-18T13:56:09.824Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-1.2-api.html
-2024-04-18T13:34:03.554Z
+2024-04-18T13:56:09.824Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-api.html
-2024-04-18T13:34:03.554Z
+2024-04-18T13:56:09.824Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-appserver.html
-2024-04-18T13:34:03.554Z
+2024-04-18T13:56:09.824Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-cassandra.html
-2024-04-18T13:34:03.554Z
+2024-04-18T13:56:09.824Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-couchdb.html
-2024-04-18T13:34:03.554Z
+2024-04-18T13:56:09.824Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-docker.html
-2024-04-18T13:34:03.554Z
+2024-04-18T13:56:09.824Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-flume-ng.html
-2024-04-18T13:34:03.554Z
+2024-04-18T13:56:09.824Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-iostreams.html
-2024-04-18T13:34:03.554Z
+2024-04-18T13:56:09.824Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-jakarta-web.html
-2024-04-18T13:34:03.554Z
+2024-04-18T13:56:09.824Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-jcl.html
-2024-04-18T13:34:03.554Z
+2024-04-18T13:56:09.824Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-jmx-gui.html
-2024-04-18T13:34:03.554Z
+2024-04-18T13:56:09.824Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-jpl.html
-2024-04-18T13:34:03.554Z
+2024-04-18T13:56:09.824Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-jul.html
-2024-04-18T13:34:03.554Z
+2024-04-18T13:56:09.824Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-mongodb3.html
-2024-04-18T13:34:03.554Z
+2024-04-18T13:56:09.824Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-mongodb4.html
-2024-04-18T13:34:03.554Z
+2024-04-18T13:56:09.824Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-slf4j-impl.html
-2024-04-18T13:34:03.554Z
+2024-04-18T13:56:09.824Z
 
 
 

(logging-log4j2) branch 2.x updated: Remove unused Maven properties

2024-04-18 Thread vy
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/2.x by this push:
 new 800161fdaa Remove unused Maven properties
800161fdaa is described below

commit 800161fdaa20ba6bd72359bd798926d43798169a
Author: Volkan Yazıcı 
AuthorDate: Thu Apr 18 15:50:12 2024 +0200

Remove unused Maven properties
---
 pom.xml | 6 --
 1 file changed, 6 deletions(-)

diff --git a/pom.xml b/pom.xml
index 262dd19174..5a94c774d9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -342,12 +342,6 @@
 21.7.1
 10.5.0
 
-
-3.2.0
-1.15.0
-
 



(logging-log4j2) branch dependabot/github_actions/main/apache/logging-parent-rel/11.0.0 deleted (was a117e9dee9)

2024-04-18 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/apache/logging-parent-rel/11.0.0
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


 was a117e9dee9 Update `apache/logging-parent` to version `` (#2485)

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 main updated (4c2cdc7362 -> a117e9dee9)

2024-04-18 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-log4j2.git


from 4c2cdc7362 Improve Download and Installation pages in `main` (#2480)
 add a117e9dee9 Update `apache/logging-parent` to version `` (#2485)

No new revisions were added by this update.

Summary of changes:
 .github/workflows/build.yaml| 6 +++---
 .github/workflows/codeql-analysis.yaml  | 2 +-
 .github/workflows/merge-dependabot.yaml | 4 ++--
 .../{3.0.0-beta2 => .3.x.x}/update_apache_logging_parent.xml| 2 +-
 4 files changed, 7 insertions(+), 7 deletions(-)
 copy src/changelog/{3.0.0-beta2 => .3.x.x}/update_apache_logging_parent.xml 
(83%)



(logging-log4j2) branch dependabot/github_actions/main/apache/logging-parent-rel/11.0.0 updated (0160ae918e -> a117e9dee9)

2024-04-18 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/apache/logging-parent-rel/11.0.0
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


 discard 0160ae918e Bump apache/logging-parent from rel/10.6.0 to 11.0.0
 add a117e9dee9 Update `apache/logging-parent` to version `` (#2485)

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   (0160ae918e)
\
 N -- N -- N   
refs/heads/dependabot/github_actions/main/apache/logging-parent-rel/11.0.0 
(a117e9dee9)

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:
 src/changelog/{3.0.0-beta2 => .3.x.x}/update_apache_logging_parent.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 copy src/changelog/{3.0.0-beta2 => .3.x.x}/update_apache_logging_parent.xml 
(83%)



(logging-log4j2) branch 2.x-site-stg-out updated: Add `.asf.yaml` along with an INFRA fix for the website content generated from `239f6c42c3251b379eee21064106a5042b4e05ea`

2024-04-18 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch 2.x-site-stg-out
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


The following commit(s) were added to refs/heads/2.x-site-stg-out by this push:
 new 33627a52d1 Add `.asf.yaml` along with an INFRA fix for the website 
content generated from `239f6c42c3251b379eee21064106a5042b4e05ea`
33627a52d1 is described below

commit 33627a52d150322fea303b60dba7bcc58b09abf1
Author: ASF Logging Services RM 
AuthorDate: Thu Apr 18 13:34:27 2024 +

Add `.asf.yaml` along with an INFRA fix for the website content generated 
from `239f6c42c3251b379eee21064106a5042b4e05ea`
---
 .asf.yaml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.asf.yaml b/.asf.yaml
index f70d6eefb0..cd6e22de75 100644
--- a/.asf.yaml
+++ b/.asf.yaml
@@ -9,6 +9,6 @@ staging:
 #
 # Random values to cause a change:
 #
-# - Seed: 21235
-# - Commit ID: 14b5c31f913b8f0f20cbb9a102993c85ee14712b
-# - Timestamp: 2024-04-18T13:21:04Z
+# - Seed: 15569
+# - Commit ID: 239f6c42c3251b379eee21064106a5042b4e05ea
+# - Timestamp: 2024-04-18T13:34:27Z



(logging-log4j2) branch 2.x-site-stg-out updated: Add website content generated from `239f6c42c3251b379eee21064106a5042b4e05ea`

2024-04-18 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch 2.x-site-stg-out
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


The following commit(s) were added to refs/heads/2.x-site-stg-out by this push:
 new 34e35e262c Add website content generated from 
`239f6c42c3251b379eee21064106a5042b4e05ea`
34e35e262c is described below

commit 34e35e262c3a298ccaaa4e70ed1598af09ac39b6
Author: ASF Logging Services RM 
AuthorDate: Thu Apr 18 13:34:26 2024 +

Add website content generated from 
`239f6c42c3251b379eee21064106a5042b4e05ea`
---
 plugin-reference.html |  14 +++---
 sitemap.xml   | 136 +-
 2 files changed, 75 insertions(+), 75 deletions(-)

diff --git a/plugin-reference.html b/plugin-reference.html
index 1a8c9d8467..f0859ed522 100644
--- a/plugin-reference.html
+++ b/plugin-reference.html
@@ -1404,7 +1404,7 @@ Originally developed by Ceki Glc and Anders 
Kristensen.
 
 
 header
-String?
+boolean?
 
 
 
@@ -15818,10 +15818,10 @@ Supports Lookup expressions.
 boolean?
 
 
-If "true", includes the stacktrace of any Throwable in the generated data, 
defaults to "true".
+If "true", includes the stacktrace of any Throwable in the generated JSON, 
defaults to "true".
 
 
-If "true", includes the stacktrace of any Throwable in the generated JSON, 
defaults to "true".
+If "true", includes the stacktrace of any Throwable in the generated data, 
defaults to "true".
 
 
 
@@ -17117,10 +17117,10 @@ Supports Lookup expressions.
 boolean?
 
 
-If "true", includes the stacktrace of any Throwable in the generated data, 
defaults to "true".
+If "true", includes the stacktrace of any Throwable in the generated JSON, 
defaults to "true".
 
 
-If "true", includes the stacktrace of any Throwable in the generated JSON, 
defaults to "true".
+If "true", includes the stacktrace of any Throwable in the generated data, 
defaults to "true".
 
 
 
@@ -17316,10 +17316,10 @@ Supports Lookup expressions.
 boolean?
 
 
-If "true", includes the stacktrace of any Throwable in the generated data, 
defaults to "true".
+If "true", includes the stacktrace of any Throwable in the generated JSON, 
defaults to "true".
 
 
-If "true", includes the stacktrace of any Throwable in the generated JSON, 
defaults to "true".
+If "true", includes the stacktrace of any Throwable in the generated data, 
defaults to "true".
 
 
 
diff --git a/sitemap.xml b/sitemap.xml
index de0a20c1d9..b9f0b6cf5f 100644
--- a/sitemap.xml
+++ b/sitemap.xml
@@ -2,274 +2,274 @@
 http://www.sitemaps.org/schemas/sitemap/0.9;>
 
 https://logging.apache.org/log4j/2.x/articles.html
-2024-04-18T13:20:42.034Z
+2024-04-18T13:34:03.554Z
 
 
 https://logging.apache.org/log4j/2.x/download.html
-2024-04-18T13:20:42.034Z
+2024-04-18T13:34:03.554Z
 
 
 https://logging.apache.org/log4j/2.x/faq.html
-2024-04-18T13:20:42.034Z
+2024-04-18T13:34:03.554Z
 
 
 https://logging.apache.org/log4j/2.x/guidelines.html
-2024-04-18T13:20:42.034Z
+2024-04-18T13:34:03.554Z
 
 
 https://logging.apache.org/log4j/2.x/index.html
-2024-04-18T13:20:42.034Z
+2024-04-18T13:34:03.554Z
 
 
 https://logging.apache.org/log4j/2.x/javadoc.html
-2024-04-18T13:20:42.034Z
+2024-04-18T13:34:03.554Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-1.2-api.html
-2024-04-18T13:20:42.034Z
+2024-04-18T13:34:03.554Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-api.html
-2024-04-18T13:20:42.034Z
+2024-04-18T13:34:03.554Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-appserver.html
-2024-04-18T13:20:42.034Z
+2024-04-18T13:34:03.554Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-cassandra.html
-2024-04-18T13:20:42.034Z
+2024-04-18T13:34:03.554Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-couchdb.html
-2024-04-18T13:20:42.034Z
+2024-04-18T13:34:03.554Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-docker.html
-2024-04-18T13:20:42.034Z
+2024-04-18T13:34:03.554Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-flume-ng.html
-2024-04-18T13:20:42.034Z
+2024-04-18T13:34:03.554Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-iostreams.html
-2024-04-18T13:20:42.034Z
+2024-04-18T13:34:03.554Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-jakarta-web.html
-2024-04-18T13:20:42.034Z
+2024-04-18T13:34:03.554Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-jcl.html
-2024-04-18T13:20:42.034Z
+2024-04-18T13:34:03.554Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-jmx-gui.html
-2024-04-18T13:20:42.034Z
+2024-04-18T13:34:03.554Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-jpl.html
-2024-04-18T13:20:42.034Z
+2024-04-18T13:34:03.554Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-jul.html
-2024-04-18T13:20:42.034Z
+2024-04-18T13:34:03.554Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-mongodb3.html
-2024-04-18T13:20:42.034Z
+2024-04-18T13:34:03.554Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-mongodb4.html
-2024-04-18T13:20:42.034Z
+2024-04-18T13:34:03.554Z
 
 
 

(logging-log4j2) branch 2.x updated: Fix forgotten workflow update

2024-04-18 Thread vy
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/2.x by this push:
 new 239f6c42c3 Fix forgotten workflow update
239f6c42c3 is described below

commit 239f6c42c3251b379eee21064106a5042b4e05ea
Author: Volkan Yazıcı 
AuthorDate: Thu Apr 18 15:28:22 2024 +0200

Fix forgotten workflow update
---
 .github/workflows/build.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index 46a70b447f..fabfa5569f 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -38,7 +38,7 @@ jobs:
 
   build:
 if: github.actor != 'dependabot[bot]'
-uses: apache/logging-parent/.github/workflows/build-reusable.yaml@main
+uses: 
apache/logging-parent/.github/workflows/build-reusable.yaml@rel/11.0.0
 with:
   java-version: |
 8



(logging-parent) branch main-site-pro-out updated: Add `.asf.yaml` along with an INFRA fix for the website content generated from `9bd5b60f2b47263c15b307d6e343fc6d9d0b54d4`

2024-04-18 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/main-site-pro-out by this push:
 new c0dc5cc  Add `.asf.yaml` along with an INFRA fix for the website 
content generated from `9bd5b60f2b47263c15b307d6e343fc6d9d0b54d4`
c0dc5cc is described below

commit c0dc5cc7720fa2f2b9406c27fa768ccf381f0049
Author: ASF Logging Services RM 
AuthorDate: Thu Apr 18 13:24:14 2024 +

Add `.asf.yaml` along with an INFRA fix for the website content generated 
from `9bd5b60f2b47263c15b307d6e343fc6d9d0b54d4`
---
 .asf.yaml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.asf.yaml b/.asf.yaml
index cd8d5d4..762c604 100644
--- a/.asf.yaml
+++ b/.asf.yaml
@@ -9,6 +9,6 @@ publish:
 #
 # Random values to cause a change:
 #
-# - Seed: 18063
-# - Commit ID: 950b8595da8679d750c9e779d3e88d096d092fb5
-# - Timestamp: 2024-04-18T13:05:31Z
+# - Seed: 9625
+# - Commit ID: 9bd5b60f2b47263c15b307d6e343fc6d9d0b54d4
+# - Timestamp: 2024-04-18T13:24:14Z



(logging-parent) branch main-site-pro-out updated: Add website content generated from `9bd5b60f2b47263c15b307d6e343fc6d9d0b54d4`

2024-04-18 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/main-site-pro-out by this push:
 new 9cbacf1  Add website content generated from 
`9bd5b60f2b47263c15b307d6e343fc6d9d0b54d4`
9cbacf1 is described below

commit 9cbacf1b759288ebb88552c52f11d8b95d406917
Author: ASF Logging Services RM 
AuthorDate: Thu Apr 18 13:24:14 2024 +

Add website content generated from 
`9bd5b60f2b47263c15b307d6e343fc6d9d0b54d4`
---
 index.html  | 16 +++-
 sitemap.xml | 12 ++--
 2 files changed, 9 insertions(+), 19 deletions(-)

diff --git a/index.html b/index.html
index cc58733..d38252c 100644
--- a/index.html
+++ b/index.html
@@ -130,20 +130,10 @@
 
 
 
-Distribution
+Download
 
 
-In accordance with the Apache Software Foundations release https://infra.apache.org/release-distribution.html;>distribution 
policy and https://infra.apache.org/release-publishing.html;>creation process, 
project artifacts are officially accessible from the following 
locations:
-
-
-
-
-ASF https://repository.apache.org/content/repositories/releases;>Release 
and https://repository.apache.org/content/repositories/snapshots;>snapshot
 repositories (mirrored to https://central.sonatype.dev/;>the Maven 
Central Repository)
-
-
-ASF https://downloads.apache.org/logging/logging-parent;>Distribution 
directory
-
-
+Please refer to https://logging.apache.org/download.html;>the 
Logging Services Download page.
 
 
 
@@ -163,7 +153,7 @@ See https://logging.apache.org/support.html;>the 
Logging Services suppo
 
 Are you looking for the list of known security vulnerabilities?
 Have you encountered an unlisted security vulnerability or other unexpected 
behaviour that has a security impact?
-Please refer to https://logging.apache.org/security/;>the Logging 
Services Security page
+Please refer to https://logging.apache.org/security.html;>the Logging 
Services Security page.
 
 
 
diff --git a/sitemap.xml b/sitemap.xml
index ec07c02..4ee70f8 100644
--- a/sitemap.xml
+++ b/sitemap.xml
@@ -2,26 +2,26 @@
 http://www.sitemaps.org/schemas/sitemap/0.9;>
 
 https://logging.apache.org/logging-parent/features.html
-2024-04-18T13:05:30.076Z
+2024-04-18T13:24:12.983Z
 
 
 https://logging.apache.org/logging-parent/index.html
-2024-04-18T13:05:30.076Z
+2024-04-18T13:24:12.983Z
 
 
 
https://logging.apache.org/logging-parent/release-instructions-project.html
-2024-04-18T13:05:30.076Z
+2024-04-18T13:24:12.983Z
 
 
 
https://logging.apache.org/logging-parent/release-instructions-xml-schema.html
-2024-04-18T13:05:30.076Z
+2024-04-18T13:24:12.983Z
 
 
 https://logging.apache.org/logging-parent/release-notes.html
-2024-04-18T13:05:30.076Z
+2024-04-18T13:24:12.983Z
 
 
 https://logging.apache.org/logging-parent/usage.html
-2024-04-18T13:05:30.076Z
+2024-04-18T13:24:12.983Z
 
 



(logging-parent) branch main-site-stg-out updated: Add `.asf.yaml` along with an INFRA fix for the website content generated from `45c7146fc473231329af6cdd875510b182d9ecc7`

2024-04-18 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/main-site-stg-out by this push:
 new 34ea339  Add `.asf.yaml` along with an INFRA fix for the website 
content generated from `45c7146fc473231329af6cdd875510b182d9ecc7`
34ea339 is described below

commit 34ea339201f4136149c9eae3556ca64173676c49
Author: ASF Logging Services RM 
AuthorDate: Thu Apr 18 13:23:59 2024 +

Add `.asf.yaml` along with an INFRA fix for the website content generated 
from `45c7146fc473231329af6cdd875510b182d9ecc7`
---
 .asf.yaml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.asf.yaml b/.asf.yaml
index c2e0d9f..874a9b4 100644
--- a/.asf.yaml
+++ b/.asf.yaml
@@ -9,6 +9,6 @@ staging:
 #
 # Random values to cause a change:
 #
-# - Seed: 10375
-# - Commit ID: bb5b6a33d0263244cabd52b6a0e70c10c42963ed
-# - Timestamp: 2024-04-18T12:41:49Z
+# - Seed: 11025
+# - Commit ID: 45c7146fc473231329af6cdd875510b182d9ecc7
+# - Timestamp: 2024-04-18T13:23:59Z



(logging-parent) branch main-site-stg-out updated: Add website content generated from `45c7146fc473231329af6cdd875510b182d9ecc7`

2024-04-18 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/main-site-stg-out by this push:
 new 9cb1fbd  Add website content generated from 
`45c7146fc473231329af6cdd875510b182d9ecc7`
9cb1fbd is described below

commit 9cb1fbdc6909d392acbfa8988894265ab965f80d
Author: ASF Logging Services RM 
AuthorDate: Thu Apr 18 13:23:58 2024 +

Add website content generated from 
`45c7146fc473231329af6cdd875510b182d9ecc7`
---
 index.html  | 16 +++-
 sitemap.xml | 12 ++--
 2 files changed, 9 insertions(+), 19 deletions(-)

diff --git a/index.html b/index.html
index cc58733..d38252c 100644
--- a/index.html
+++ b/index.html
@@ -130,20 +130,10 @@
 
 
 
-Distribution
+Download
 
 
-In accordance with the Apache Software Foundations release https://infra.apache.org/release-distribution.html;>distribution 
policy and https://infra.apache.org/release-publishing.html;>creation process, 
project artifacts are officially accessible from the following 
locations:
-
-
-
-
-ASF https://repository.apache.org/content/repositories/releases;>Release 
and https://repository.apache.org/content/repositories/snapshots;>snapshot
 repositories (mirrored to https://central.sonatype.dev/;>the Maven 
Central Repository)
-
-
-ASF https://downloads.apache.org/logging/logging-parent;>Distribution 
directory
-
-
+Please refer to https://logging.apache.org/download.html;>the 
Logging Services Download page.
 
 
 
@@ -163,7 +153,7 @@ See https://logging.apache.org/support.html;>the 
Logging Services suppo
 
 Are you looking for the list of known security vulnerabilities?
 Have you encountered an unlisted security vulnerability or other unexpected 
behaviour that has a security impact?
-Please refer to https://logging.apache.org/security/;>the Logging 
Services Security page
+Please refer to https://logging.apache.org/security.html;>the Logging 
Services Security page.
 
 
 
diff --git a/sitemap.xml b/sitemap.xml
index 2fd5fa3..489e6f1 100644
--- a/sitemap.xml
+++ b/sitemap.xml
@@ -2,26 +2,26 @@
 http://www.sitemaps.org/schemas/sitemap/0.9;>
 
 https://logging.apache.org/logging-parent/features.html
-2024-04-18T12:41:47.965Z
+2024-04-18T13:23:57.584Z
 
 
 https://logging.apache.org/logging-parent/index.html
-2024-04-18T12:41:47.965Z
+2024-04-18T13:23:57.584Z
 
 
 
https://logging.apache.org/logging-parent/release-instructions-project.html
-2024-04-18T12:41:47.965Z
+2024-04-18T13:23:57.584Z
 
 
 
https://logging.apache.org/logging-parent/release-instructions-xml-schema.html
-2024-04-18T12:41:47.965Z
+2024-04-18T13:23:57.584Z
 
 
 https://logging.apache.org/logging-parent/release-notes.html
-2024-04-18T12:41:47.965Z
+2024-04-18T13:23:57.584Z
 
 
 https://logging.apache.org/logging-parent/usage.html
-2024-04-18T12:41:47.965Z
+2024-04-18T13:23:57.584Z
 
 



(logging-parent) branch main-site-pro updated: Redirect Download, Support, and Security pages

2024-04-18 Thread vy
This is an automated email from the ASF dual-hosted git repository.

vy pushed a commit to branch main-site-pro
in repository https://gitbox.apache.org/repos/asf/logging-parent.git


The following commit(s) were added to refs/heads/main-site-pro by this push:
 new 9bd5b60  Redirect Download, Support, and Security pages
9bd5b60 is described below

commit 9bd5b60f2b47263c15b307d6e343fc6d9d0b54d4
Author: Volkan Yazıcı 
AuthorDate: Thu Apr 18 15:23:29 2024 +0200

Redirect Download, Support, and Security pages
---
 src/site/antora/antora.tmpl.yml  |  1 +
 src/site/antora/antora.yml   |  1 +
 src/site/antora/modules/ROOT/pages/features.adoc |  2 +-
 src/site/antora/modules/ROOT/pages/index.adoc| 17 +++--
 4 files changed, 10 insertions(+), 11 deletions(-)

diff --git a/src/site/antora/antora.tmpl.yml b/src/site/antora/antora.tmpl.yml
index 8c344c0..c6e6fba 100644
--- a/src/site/antora/antora.tmpl.yml
+++ b/src/site/antora/antora.tmpl.yml
@@ -46,5 +46,6 @@ asciidoc:
 java-compiler-version: "${minimalJavaBuildVersion}"
 site-url-staging: "https://logging.staged.apache.org/{project-id};
 site-url: "https://logging.apache.org/{project-id};
+logging-services-url: "https://logging.apache.org;
 nav:
   - modules/ROOT/nav.adoc
diff --git a/src/site/antora/antora.yml b/src/site/antora/antora.yml
index 0ffc19e..63faef9 100644
--- a/src/site/antora/antora.yml
+++ b/src/site/antora/antora.yml
@@ -46,5 +46,6 @@ asciidoc:
 java-compiler-version: "[17,18)"
 site-url-staging: "https://logging.staged.apache.org/awesome-project;
 site-url: "https://logging.apache.org/awesome-project;
+logging-services-url: "https://logging.apache.org;
 nav:
   - modules/ROOT/nav.adoc
diff --git a/src/site/antora/modules/ROOT/pages/features.adoc 
b/src/site/antora/modules/ROOT/pages/features.adoc
index 196c719..4062a74 100644
--- a/src/site/antora/modules/ROOT/pages/features.adoc
+++ b/src/site/antora/modules/ROOT/pages/features.adoc
@@ -44,7 +44,7 @@ Plugin execution is configured and activated to generate SBOM 
files for each mod
 Generated SBOM files are attached as artifacts with `cyclonedx` classifier and 
XML extensions, that is, `--cyclonedx.xml`.
 
 Produced SBOMs are enriched with `vulnerability-assertion` references to a 
https://cyclonedx.org/capabilities/vdr[CycloneDX Vulnerability Disclosure 
Report (VDR)] 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[]
+This VDR is accessible through the following URL: 
{logging-services-url}/cyclonedx/vdr.xml[]
 
 [#reusable-workflows]
 == Reusable GitHub Actions workflows
diff --git a/src/site/antora/modules/ROOT/pages/index.adoc 
b/src/site/antora/modules/ROOT/pages/index.adoc
index 7d934d2..2f4e07f 100644
--- a/src/site/antora/modules/ROOT/pages/index.adoc
+++ b/src/site/antora/modules/ROOT/pages/index.adoc
@@ -15,12 +15,12 @@
 limitations under the License.
 
 
-:log4j-url: https://logging.apache.org/log4j/2.x
+:log4j-url: {logging-services-url}/log4j/2.x
 :log4j-api-url: {log4j-url}/manual/api-separation.html
 
 = {project-name}
 
-{project-name} is the parent project **internally** used in Maven-based 
projects of https://logging.apache.org[the Apache Logging Services].
+{project-name} is the parent project **internally** used in Maven-based 
projects of {logging-services-url}[the Apache Logging Services].
 
 [#development]
 == Development
@@ -45,24 +45,21 @@ You can build the website as follows:
 
 This will generate the website to the `target/site` folder, which you can view 
with a browser.
 
-[#distribution]
-== Distribution
+[#download]
+== Download
 
-In accordance with the Apache Software Foundation's release 
https://infra.apache.org/release-distribution.html[distribution policy] and 
https://infra.apache.org/release-publishing.html[creation process], project 
artifacts are _officially_ accessible from the following locations:
-
-* ASF https://repository.apache.org/content/repositories/releases[Release] and 
https://repository.apache.org/content/repositories/snapshots[snapshot] 
repositories (mirrored to https://central.sonatype.dev/[the Maven Central 
Repository])
-* ASF https://downloads.apache.org/logging/{project-id}[Distribution directory]
+Please refer to {logging-services-url}/download.html[the Logging Services 
Download page].
 
 [#support]
 == Support
 
 This project is intended for internal usage only.
 You can use GitHub Issues for feature requests and bug reports – not questions!
-See https://logging.apache.org/support.html[the Logging Services support 
policy] for details.
+See {logging-services-url}/support.html[the Logging Services support policy] 
for details.
 
 [#security]
 == Security
 
 Are you looking for the list of known security vulnerabilities?
 Have you encountered an unlisted security vulnerability or other unexpected 
behaviour that has a 

(logging-parent) branch main updated: Redirect Download, Support, and Security pages

2024-04-18 Thread vy
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/main by this push:
 new 45c7146  Redirect Download, Support, and Security pages
45c7146 is described below

commit 45c7146fc473231329af6cdd875510b182d9ecc7
Author: Volkan Yazıcı 
AuthorDate: Thu Apr 18 15:23:29 2024 +0200

Redirect Download, Support, and Security pages
---
 src/site/antora/antora.tmpl.yml  |  1 +
 src/site/antora/antora.yml   |  1 +
 src/site/antora/modules/ROOT/pages/features.adoc |  2 +-
 src/site/antora/modules/ROOT/pages/index.adoc| 17 +++--
 4 files changed, 10 insertions(+), 11 deletions(-)

diff --git a/src/site/antora/antora.tmpl.yml b/src/site/antora/antora.tmpl.yml
index 8c344c0..c6e6fba 100644
--- a/src/site/antora/antora.tmpl.yml
+++ b/src/site/antora/antora.tmpl.yml
@@ -46,5 +46,6 @@ asciidoc:
 java-compiler-version: "${minimalJavaBuildVersion}"
 site-url-staging: "https://logging.staged.apache.org/{project-id};
 site-url: "https://logging.apache.org/{project-id};
+logging-services-url: "https://logging.apache.org;
 nav:
   - modules/ROOT/nav.adoc
diff --git a/src/site/antora/antora.yml b/src/site/antora/antora.yml
index 0ffc19e..63faef9 100644
--- a/src/site/antora/antora.yml
+++ b/src/site/antora/antora.yml
@@ -46,5 +46,6 @@ asciidoc:
 java-compiler-version: "[17,18)"
 site-url-staging: "https://logging.staged.apache.org/awesome-project;
 site-url: "https://logging.apache.org/awesome-project;
+logging-services-url: "https://logging.apache.org;
 nav:
   - modules/ROOT/nav.adoc
diff --git a/src/site/antora/modules/ROOT/pages/features.adoc 
b/src/site/antora/modules/ROOT/pages/features.adoc
index 196c719..4062a74 100644
--- a/src/site/antora/modules/ROOT/pages/features.adoc
+++ b/src/site/antora/modules/ROOT/pages/features.adoc
@@ -44,7 +44,7 @@ Plugin execution is configured and activated to generate SBOM 
files for each mod
 Generated SBOM files are attached as artifacts with `cyclonedx` classifier and 
XML extensions, that is, `--cyclonedx.xml`.
 
 Produced SBOMs are enriched with `vulnerability-assertion` references to a 
https://cyclonedx.org/capabilities/vdr[CycloneDX Vulnerability Disclosure 
Report (VDR)] 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[]
+This VDR is accessible through the following URL: 
{logging-services-url}/cyclonedx/vdr.xml[]
 
 [#reusable-workflows]
 == Reusable GitHub Actions workflows
diff --git a/src/site/antora/modules/ROOT/pages/index.adoc 
b/src/site/antora/modules/ROOT/pages/index.adoc
index 7d934d2..2f4e07f 100644
--- a/src/site/antora/modules/ROOT/pages/index.adoc
+++ b/src/site/antora/modules/ROOT/pages/index.adoc
@@ -15,12 +15,12 @@
 limitations under the License.
 
 
-:log4j-url: https://logging.apache.org/log4j/2.x
+:log4j-url: {logging-services-url}/log4j/2.x
 :log4j-api-url: {log4j-url}/manual/api-separation.html
 
 = {project-name}
 
-{project-name} is the parent project **internally** used in Maven-based 
projects of https://logging.apache.org[the Apache Logging Services].
+{project-name} is the parent project **internally** used in Maven-based 
projects of {logging-services-url}[the Apache Logging Services].
 
 [#development]
 == Development
@@ -45,24 +45,21 @@ You can build the website as follows:
 
 This will generate the website to the `target/site` folder, which you can view 
with a browser.
 
-[#distribution]
-== Distribution
+[#download]
+== Download
 
-In accordance with the Apache Software Foundation's release 
https://infra.apache.org/release-distribution.html[distribution policy] and 
https://infra.apache.org/release-publishing.html[creation process], project 
artifacts are _officially_ accessible from the following locations:
-
-* ASF https://repository.apache.org/content/repositories/releases[Release] and 
https://repository.apache.org/content/repositories/snapshots[snapshot] 
repositories (mirrored to https://central.sonatype.dev/[the Maven Central 
Repository])
-* ASF https://downloads.apache.org/logging/{project-id}[Distribution directory]
+Please refer to {logging-services-url}/download.html[the Logging Services 
Download page].
 
 [#support]
 == Support
 
 This project is intended for internal usage only.
 You can use GitHub Issues for feature requests and bug reports – not questions!
-See https://logging.apache.org/support.html[the Logging Services support 
policy] for details.
+See {logging-services-url}/support.html[the Logging Services support policy] 
for details.
 
 [#security]
 == Security
 
 Are you looking for the list of known security vulnerabilities?
 Have you encountered an unlisted security vulnerability or other unexpected 
behaviour that has a security impact?
-Please 

(logging-log4j2) branch 2.x-site-stg-out updated: Add `.asf.yaml` along with an INFRA fix for the website content generated from `14b5c31f913b8f0f20cbb9a102993c85ee14712b`

2024-04-18 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch 2.x-site-stg-out
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


The following commit(s) were added to refs/heads/2.x-site-stg-out by this push:
 new de6674d70e Add `.asf.yaml` along with an INFRA fix for the website 
content generated from `14b5c31f913b8f0f20cbb9a102993c85ee14712b`
de6674d70e is described below

commit de6674d70edb9f7451a958890dd3c8fde56640a3
Author: ASF Logging Services RM 
AuthorDate: Thu Apr 18 13:21:04 2024 +

Add `.asf.yaml` along with an INFRA fix for the website content generated 
from `14b5c31f913b8f0f20cbb9a102993c85ee14712b`
---
 .asf.yaml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.asf.yaml b/.asf.yaml
index 535877729a..f70d6eefb0 100644
--- a/.asf.yaml
+++ b/.asf.yaml
@@ -9,6 +9,6 @@ staging:
 #
 # Random values to cause a change:
 #
-# - Seed: 6822
-# - Commit ID: 9fb29ab761ac0cccf155aa0acd30724132fc8f5c
-# - Timestamp: 2024-04-17T23:06:14Z
+# - Seed: 21235
+# - Commit ID: 14b5c31f913b8f0f20cbb9a102993c85ee14712b
+# - Timestamp: 2024-04-18T13:21:04Z



(logging-log4j2) branch 2.x-site-stg-out updated: Add website content generated from `14b5c31f913b8f0f20cbb9a102993c85ee14712b`

2024-04-18 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch 2.x-site-stg-out
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


The following commit(s) were added to refs/heads/2.x-site-stg-out by this push:
 new c79defd877 Add website content generated from 
`14b5c31f913b8f0f20cbb9a102993c85ee14712b`
c79defd877 is described below

commit c79defd877e85093df8873f3ae58a6af100c00b4
Author: ASF Logging Services RM 
AuthorDate: Thu Apr 18 13:21:03 2024 +

Add website content generated from 
`14b5c31f913b8f0f20cbb9a102993c85ee14712b`
---
 plugin-reference.html |   2 +-
 sitemap.xml   | 136 +-
 2 files changed, 69 insertions(+), 69 deletions(-)

diff --git a/plugin-reference.html b/plugin-reference.html
index 6e0724004f..1a8c9d8467 100644
--- a/plugin-reference.html
+++ b/plugin-reference.html
@@ -1404,7 +1404,7 @@ Originally developed by Ceki Glc and Anders 
Kristensen.
 
 
 header
-boolean?
+String?
 
 
 
diff --git a/sitemap.xml b/sitemap.xml
index 044e297cad..de0a20c1d9 100644
--- a/sitemap.xml
+++ b/sitemap.xml
@@ -2,274 +2,274 @@
 http://www.sitemaps.org/schemas/sitemap/0.9;>
 
 https://logging.apache.org/log4j/2.x/articles.html
-2024-04-17T23:05:52.325Z
+2024-04-18T13:20:42.034Z
 
 
 https://logging.apache.org/log4j/2.x/download.html
-2024-04-17T23:05:52.325Z
+2024-04-18T13:20:42.034Z
 
 
 https://logging.apache.org/log4j/2.x/faq.html
-2024-04-17T23:05:52.325Z
+2024-04-18T13:20:42.034Z
 
 
 https://logging.apache.org/log4j/2.x/guidelines.html
-2024-04-17T23:05:52.325Z
+2024-04-18T13:20:42.034Z
 
 
 https://logging.apache.org/log4j/2.x/index.html
-2024-04-17T23:05:52.325Z
+2024-04-18T13:20:42.034Z
 
 
 https://logging.apache.org/log4j/2.x/javadoc.html
-2024-04-17T23:05:52.325Z
+2024-04-18T13:20:42.034Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-1.2-api.html
-2024-04-17T23:05:52.325Z
+2024-04-18T13:20:42.034Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-api.html
-2024-04-17T23:05:52.325Z
+2024-04-18T13:20:42.034Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-appserver.html
-2024-04-17T23:05:52.325Z
+2024-04-18T13:20:42.034Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-cassandra.html
-2024-04-17T23:05:52.325Z
+2024-04-18T13:20:42.034Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-couchdb.html
-2024-04-17T23:05:52.325Z
+2024-04-18T13:20:42.034Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-docker.html
-2024-04-17T23:05:52.325Z
+2024-04-18T13:20:42.034Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-flume-ng.html
-2024-04-17T23:05:52.325Z
+2024-04-18T13:20:42.034Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-iostreams.html
-2024-04-17T23:05:52.325Z
+2024-04-18T13:20:42.034Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-jakarta-web.html
-2024-04-17T23:05:52.325Z
+2024-04-18T13:20:42.034Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-jcl.html
-2024-04-17T23:05:52.325Z
+2024-04-18T13:20:42.034Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-jmx-gui.html
-2024-04-17T23:05:52.325Z
+2024-04-18T13:20:42.034Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-jpl.html
-2024-04-17T23:05:52.325Z
+2024-04-18T13:20:42.034Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-jul.html
-2024-04-17T23:05:52.325Z
+2024-04-18T13:20:42.034Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-mongodb3.html
-2024-04-17T23:05:52.325Z
+2024-04-18T13:20:42.034Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-mongodb4.html
-2024-04-17T23:05:52.325Z
+2024-04-18T13:20:42.034Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-slf4j-impl.html
-2024-04-17T23:05:52.325Z
+2024-04-18T13:20:42.034Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-slf4j2-impl.html
-2024-04-17T23:05:52.325Z
+2024-04-18T13:20:42.034Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-spring-boot.html
-2024-04-17T23:05:52.325Z
+2024-04-18T13:20:42.034Z
 
 
 
https://logging.apache.org/log4j/2.x/log4j-spring-cloud-config-client.html
-2024-04-17T23:05:52.325Z
+2024-04-18T13:20:42.034Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-spring-cloud-config.html
-2024-04-17T23:05:52.325Z
+2024-04-18T13:20:42.034Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-taglib.html
-2024-04-17T23:05:52.325Z
+2024-04-18T13:20:42.034Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-to-jul.html
-2024-04-17T23:05:52.325Z
+2024-04-18T13:20:42.034Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-to-slf4j.html
-2024-04-17T23:05:52.325Z
+2024-04-18T13:20:42.034Z
 
 
 https://logging.apache.org/log4j/2.x/log4j-web.html
-2024-04-17T23:05:52.325Z
+2024-04-18T13:20:42.034Z
 
 
 https://logging.apache.org/log4j/2.x/manual/api-separation.html
-2024-04-17T23:05:52.325Z
+2024-04-18T13:20:42.034Z
 
 
 https://logging.apache.org/log4j/2.x/manual/api.html
-2024-04-17T23:05:52.325Z
+2024-04-18T13:20:42.034Z
 
 
 https://logging.apache.org/log4j/2.x/manual/appenders.html
-2024-04-17T23:05:52.325Z
+2024-04-18T13:20:42.034Z
 
 
 

(logging-log4j2) branch dependabot/github_actions/2.x/apache/logging-parent-rel/11.0.0 deleted (was 4390e5e331)

2024-04-18 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/2.x/apache/logging-parent-rel/11.0.0
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


 was 4390e5e331 Bump apache/logging-parent from rel/10.6.0 to 11.0.0

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: Update `logging-parent` version to `11.0.0`

2024-04-18 Thread vy
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/2.x by this push:
 new 14b5c31f91 Update `logging-parent` version to `11.0.0`
14b5c31f91 is described below

commit 14b5c31f913b8f0f20cbb9a102993c85ee14712b
Author: Volkan Yazıcı 
AuthorDate: Thu Apr 18 15:14:29 2024 +0200

Update `logging-parent` version to `11.0.0`
---
 .github/workflows/build.yaml|  4 ++--
 .github/workflows/codeql-analysis.yaml  |  2 +-
 .github/workflows/deploy-site.yaml  |  6 +++---
 .github/workflows/merge-dependabot.yaml |  4 ++--
 pom.xml | 15 +--
 5 files changed, 9 insertions(+), 22 deletions(-)

diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index 9a8216d9b5..46a70b447f 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -48,7 +48,7 @@ jobs:
   deploy-snapshot:
 needs: build
 if: github.repository == 'apache/logging-log4j2' && github.ref_name == 
'2.x'
-uses: 
apache/logging-parent/.github/workflows/deploy-snapshot-reusable.yaml@main
+uses: 
apache/logging-parent/.github/workflows/deploy-snapshot-reusable.yaml@rel/11.0.0
 # Secrets for deployments
 secrets:
   NEXUS_USERNAME: ${{ secrets.NEXUS_USER }}
@@ -61,7 +61,7 @@ jobs:
   deploy-release:
 needs: build
 if: github.repository == 'apache/logging-log4j2' && 
startsWith(github.ref_name, 'release/')
-uses: 
apache/logging-parent/.github/workflows/deploy-release-reusable.yaml@main
+uses: 
apache/logging-parent/.github/workflows/deploy-release-reusable.yaml@rel/11.0.0
 # Secrets for deployments
 secrets:
   GPG_SECRET_KEY: ${{ secrets.LOGGING_GPG_SECRET_KEY }}
diff --git a/.github/workflows/codeql-analysis.yaml 
b/.github/workflows/codeql-analysis.yaml
index ce09ca38b0..e2988672df 100644
--- a/.github/workflows/codeql-analysis.yaml
+++ b/.github/workflows/codeql-analysis.yaml
@@ -30,7 +30,7 @@ permissions: read-all
 jobs:
 
   analyze:
-uses: 
apache/logging-parent/.github/workflows/codeql-analysis-reusable.yaml@rel/10.6.0
+uses: 
apache/logging-parent/.github/workflows/codeql-analysis-reusable.yaml@rel/11.0.0
 with:
   java-version: |
 8
diff --git a/.github/workflows/deploy-site.yaml 
b/.github/workflows/deploy-site.yaml
index d0ca53cfcd..b918eb048f 100644
--- a/.github/workflows/deploy-site.yaml
+++ b/.github/workflows/deploy-site.yaml
@@ -33,7 +33,7 @@ jobs:
 
   deploy-site-stg:
 if: github.repository == 'apache/logging-log4j2' && github.ref_name == 
'2.x'
-uses: 
apache/logging-parent/.github/workflows/deploy-site-reusable.yaml@main
+uses: 
apache/logging-parent/.github/workflows/deploy-site-reusable.yaml@rel/11.0.0
 # Secrets for committing the generated site
 secrets:
   GPG_SECRET_KEY: ${{ secrets.LOGGING_GPG_SECRET_KEY }}
@@ -51,7 +51,7 @@ jobs:
 
   deploy-site-pro:
 if: github.repository == 'apache/logging-log4j2' && github.ref_name == 
'2.x-site-pro'
-uses: 
apache/logging-parent/.github/workflows/deploy-site-reusable.yaml@main
+uses: 
apache/logging-parent/.github/workflows/deploy-site-reusable.yaml@rel/11.0.0
 # Secrets for committing the generated site
 secrets:
   GPG_SECRET_KEY: ${{ secrets.LOGGING_GPG_SECRET_KEY }}
@@ -81,7 +81,7 @@ jobs:
 
   deploy-site-rel:
 needs: export-version
-uses: 
apache/logging-parent/.github/workflows/deploy-site-reusable.yaml@main
+uses: 
apache/logging-parent/.github/workflows/deploy-site-reusable.yaml@rel/11.0.0
 # Secrets for committing the generated site
 secrets:
   GPG_SECRET_KEY: ${{ secrets.LOGGING_GPG_SECRET_KEY }}
diff --git a/.github/workflows/merge-dependabot.yaml 
b/.github/workflows/merge-dependabot.yaml
index 439d7803b6..5dd244a23b 100644
--- a/.github/workflows/merge-dependabot.yaml
+++ b/.github/workflows/merge-dependabot.yaml
@@ -30,7 +30,7 @@ jobs:
 
   build:
 if: github.repository == 'apache/logging-log4j2' && github.event_name == 
'pull_request_target' && github.actor == 'dependabot[bot]'
-uses: 
apache/logging-parent/.github/workflows/build-reusable.yaml@rel/10.6.0
+uses: 
apache/logging-parent/.github/workflows/build-reusable.yaml@rel/11.0.0
 with:
   java-version: |
 8
@@ -38,7 +38,7 @@ jobs:
 
   merge-dependabot:
 needs: build
-uses: 
apache/logging-parent/.github/workflows/merge-dependabot-reusable.yaml@rel/10.6.0
+uses: 
apache/logging-parent/.github/workflows/merge-dependabot-reusable.yaml@rel/11.0.0
 with:
   java-version: 17
 permissions:
diff --git a/pom.xml b/pom.xml
index 5d5459ee91..262dd19174 100644
--- a/pom.xml
+++ b/pom.xml
@@ -31,7 +31,7 @@
   
 org.apache.logging
 logging-parent
-11.0.0-SNAPSHOT
+11.0.0
 
   
 
@@ -534,19 +534,6 @@
 
   
 
-  
-  
-
-  
-false
-  

(logging-parent) branch main-site-pro-out updated: Add `.asf.yaml` along with an INFRA fix for the website content generated from `950b8595da8679d750c9e779d3e88d096d092fb5`

2024-04-18 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/main-site-pro-out by this push:
 new 79f4796  Add `.asf.yaml` along with an INFRA fix for the website 
content generated from `950b8595da8679d750c9e779d3e88d096d092fb5`
79f4796 is described below

commit 79f4796aa9f3ff0cb0fce6a87c10a980429115ca
Author: ASF Logging Services RM 
AuthorDate: Thu Apr 18 13:05:31 2024 +

Add `.asf.yaml` along with an INFRA fix for the website content generated 
from `950b8595da8679d750c9e779d3e88d096d092fb5`
---
 .asf.yaml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.asf.yaml b/.asf.yaml
index 1f5a932..cd8d5d4 100644
--- a/.asf.yaml
+++ b/.asf.yaml
@@ -9,6 +9,6 @@ publish:
 #
 # Random values to cause a change:
 #
-# - Seed: 28249
-# - Commit ID: eb3d4c1d8e1149f7165147be2298586ab243a2ee
-# - Timestamp: 2024-04-11T13:53:34Z
+# - Seed: 18063
+# - Commit ID: 950b8595da8679d750c9e779d3e88d096d092fb5
+# - Timestamp: 2024-04-18T13:05:31Z



(logging-parent) branch main-site-pro updated (eb3d4c1 -> 950b859)

2024-04-18 Thread vy
This is an automated email from the ASF dual-hosted git repository.

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


from eb3d4c1  Add `deploy-site.yaml` workflow
 add ea70ea3  Sync `.asf.yaml` file between branches
 add 08d2310  Protect `asf-site` instead of `asf-staging`
 add 6a0ce96  Update `org.asciidoctor:asciidoctor-maven-plugin` to version 
`2.2.5` (#99)
 add cd93666  Release notes summary for version `10.6.0`
 add 63cd5bc  Revert "Release notes summary for version `10.6.0`"
 add a5b2f34  Set version to `10.6.0`
 add d69d19a  Update the `project.build.outputTimestamp` property
 add eb7b55f  Release changelog for version `10.6.0`
 add 8fadeb9  Fix release notes again after CI run
 add f005ce4  Update the `project.build.outputTimestamp` property
 add 7954251  Release changelog for version `10.6.0`
 add cbc1ea5  Set version to `10.6.1-SNAPSHOT`
 add ff39ff0  Update `com.diffplug.spotless:spotless-maven-plugin` to 
version `2.42.0` (#100)
 add 313345e  Update `org.codehaus.mojo:flatten-maven-plugin` to version 
`1.6.0` (#102)
 add 28cd147  Update `actions/upload-artifact` to version `4.1.0` (#103)
 add dea9f96  Update `com.github.spotbugs:spotbugs-maven-plugin` to version 
`4.8.3.0` (#101)
 add 02e4fd0  Remove publishing config from code branch
 add 78bbf5e  Update `org.cyclonedx:cyclonedx-maven-plugin` to version 
`2.7.11` (#104)
 add 976db98  Update `github/codeql-action` to version `3.23.1` (#106)
 add 8451ae6  Update `actions/upload-artifact` to version `4.2.0` (#107)
 add 5243af1  Update `com.palantir.javaformat:palantir-java-format` to 
version `2.40.0` (#109)
 add a4680c7  Update `com.diffplug.spotless:spotless-maven-plugin` to 
version `2.43.0` (#108)
 add 2b0e6c1  Update `actions/upload-artifact` to version `4.3.0` (#110)
 add 2c228e3  Update `de.skuzzle.enforcer:restrict-imports-enforcer-rule` 
to version `2.5.0` (#111)
 add 022e3c8  Update `github/codeql-action` to version `3.23.2` (#112)
 add ec130a0  Update `github/codeql-action` to version `3.24.0` (#113)
 add 8ce21b8  Improve release instructions
 add c252dbe  Update `actions/upload-artifact` to version `4.3.1` (#114)
 add f7bdfe2  Update `commons-codec:commons-codec` to version `1.16.1` 
(#115)
 add 144d2e3  Update `com.github.spotbugs:spotbugs-maven-plugin` to version 
`4.8.3.1` (#116)
 add 03e7100  Update `org.asciidoctor:asciidoctor-maven-plugin` to version 
`2.2.6` (#117)
 add b8b2d73  Update `github/codeql-action` to version `3.24.1` (#118)
 add 1b53383  Update `org.asciidoctor:asciidoctor-maven-plugin` to version 
`3.0.0` (#119)
 add 405ec17  Update `github/codeql-action` to version `3.24.3` (#120)
 add faa6347  Update `com.google.errorprone:error_prone_core` to version 
`2.25.0` (#122)
 add b5bbcf0  switched to successor for asciidoc maven plugin
 add 24b2ed4  Merge pull request #123 from 
apache/switch_to_ad_plugin_successor
 add 52d428a  Update `org.simplify4u.plugins:sign-maven-plugin` to version 
`1.1.0` (#124)
 add 794314b  reverted use of latest asciidoctor module
 add e955422  Update `github/codeql-action` to version `3.24.4` (#125)
 add 52b7a6e  Update `github/codeql-action` to version `3.24.5` (#126)
 add 1123ff6  Update `com.h3xstream.findsecbugs:findsecbugs-plugin` to 
version `1.13.0` (#127)
 add d8587f3  Update `actions/setup-java` to version `4.1.0` (#128)
 add 6038d45  Update `github/codeql-action` to version `3.24.6` (#129)
 add 9f437bc  Mention `-DskipTests` in the review kit
 add 6747121  Update `org.eclipse.jgit:org.eclipse.jgit` to version 
`6.9.0.202403050737-r` (#130)
 add 1cb3120  Update `com.google.errorprone:error_prone_core` to version 
`2.26.0` (#131)
 add 2ec4167  Update `actions/checkout` to version `4.1.2` (#132)
 add e250e88  Update `github/codeql-action` to version `3.24.7` (#133)
 add f2fdce1  Update `com.google.errorprone:error_prone_core` to version 
`2.26.1` (#134)
 add c5d2d4f  Update `actions/setup-java` to version `4.2.0` (#135)
 add bdc2c51  Update `com.palantir.javaformat:palantir-java-format` to 
version `2.41.0` (#136)
 add 8cec32e  Update `actions/setup-java` to version `4.2.1` (#137)
 add 87df9b0  Update `github/codeql-action` to version `3.24.8` (#142)
 add 8ca89db  Update `dependabot/fetch-metadata` to version `2.0.0` (#144)
 add bbca0a9  Update `github/codeql-action` to version `3.24.9` (#143)
 add 2b97df5  Update `org.cyclonedx:cyclonedx-maven-plugin` to version 
`2.8.0` (#145)
 add 3d05c4f  Update 
`org.apache.logging.log4j:log4j-changelog-maven-plugin` to version `0.8.0` 
(#146)
 add 0014712  Replace `process-sbom` script with CycloneDX configuration
 add ce82ca1  Add test coverage profile
 add 3415674  Document `coverage` profile
 add e25391a  Remove Flume from test 

(logging-parent) 01/01: Merge tag `rel/11.0.0`

2024-04-18 Thread vy
This is an automated email from the ASF dual-hosted git repository.

vy pushed a commit to branch main-site-pro
in repository https://gitbox.apache.org/repos/asf/logging-parent.git

commit 950b8595da8679d750c9e779d3e88d096d092fb5
Merge: eb3d4c1 b5bbe45
Author: Volkan Yazıcı 
AuthorDate: Thu Apr 18 15:02:02 2024 +0200

Merge tag `rel/11.0.0`

 .asf.yaml  |   5 +-
 .github/generate-email.sh  |  14 +-
 .github/release-review-kit.txt |   1 +
 .github/workflows/build-reusable.yaml  |  33 +-
 .github/workflows/build.yaml   |   9 +-
 .github/workflows/codeql-analysis-reusable.yaml|   8 +-
 .github/workflows/deploy-release-reusable.yaml | 151 +++---
 .github/workflows/deploy-site-reusable.yaml| 194 +++
 .github/workflows/deploy-site.yaml |  31 +-
 .github/workflows/deploy-snapshot-reusable.yaml|  16 +-
 .github/workflows/merge-dependabot-reusable.yaml   |  32 +-
 .../workflows/scorecards-analysis-reusable.yaml|   6 +-
 .gitignore |   4 +
 NOTICE.txt |   2 +-
 README.adoc|   2 +-
 antora-playbook.yaml   | 117 +
 package.json   |   7 +
 pom.xml| 580 ++---
 .../{.10.x.x => .11.x.x}/.release-notes.adoc.ftl   |   2 +-
 src/changelog/.changelog.adoc.ftl  |   3 +-
 src/changelog/.index.adoc.ftl  |   9 +-
 src/changelog/10.0.0/.release-notes.adoc.ftl   |   2 +-
 src/changelog/10.0.0/.release.xml  |   4 +-
 .../10.0.0/add-changelog-export-profile.xml|   4 +-
 .../10.0.0/add-changelog-release-profile.xml   |   4 +-
 src/changelog/10.0.0/add-deploy-profile.xml|   4 +-
 src/changelog/10.0.0/add-distribution-profile.xml  |   4 +-
 src/changelog/10.0.0/add-release-instructions.xml  |   4 +-
 src/changelog/10.0.0/add-release-profile.xml   |   4 +-
 .../10.0.0/add-reusable-build-workflow.xml |   4 +-
 src/changelog/10.0.0/use-changelog-plugin.xml  |   4 +-
 src/changelog/10.0.0/use-semver.xml|   4 +-
 src/changelog/10.1.0/.release-notes.adoc.ftl   |   2 +-
 src/changelog/10.1.0/.release.xml  |   4 +-
 src/changelog/10.1.0/add-asciidoc-profile.xml  |   4 +-
 src/changelog/10.1.0/add-dependabot-changelog.xml  |   4 +-
 .../10.1.0/add-osgi-jpms-descriptor-generation.xml |   4 +-
 src/changelog/10.1.0/add-reports-on-failure.xml|   4 +-
 src/changelog/10.1.0/add-website.xml   |   4 +-
 src/changelog/10.1.0/fix-java-version.xml  |   4 +-
 src/changelog/10.1.0/remove-outputTimestamp.xml|   4 +-
 src/changelog/10.1.0/switch-changelog-to-adoc.xml  |   4 +-
 src/changelog/10.1.0/update_actions_checkout.xml   |   5 +-
 ...e_com_github_spotbugs_spotbugs_maven_plugin.xml |   5 +-
 ...date_com_google_errorprone_error_prone_core.xml |   5 +-
 src/changelog/10.1.0/update_org_apache_apache.xml  |   4 +-
 .../10.1.0/update_org_osgi_osgi_annotation.xml |   5 +-
 src/changelog/10.1.1/.release-notes.adoc.ftl   |   2 +-
 src/changelog/10.1.1/.release.xml  |   4 +-
 .../10.1.1/change_default_module_name.xml  |   4 +-
 src/changelog/10.1.1/checksum_file.xml |   4 +-
 .../10.1.1/fix_bnd_required_module_names.xml   |   4 +-
 src/changelog/10.1.1/timestamp.xml |   4 +-
 ...com_diffplug_spotless_spotless_maven_plugin.xml |   4 +-
 src/changelog/10.2.0/.release-notes.adoc.ftl   |   2 +-
 src/changelog/10.2.0/.release.xml  |   4 +-
 src/changelog/10.2.0/add-sbom-support.xml  |   4 +-
 src/changelog/10.2.0/add_bnd_baseline_plugin.xml   |   4 +-
 .../10.2.0/apply_bnd_config_all_goals.xml  |   4 +-
 src/changelog/10.2.0/change_flattened_pom.xml  |   4 +-
 src/changelog/10.2.0/fix_bnd_extra_options.xml |   4 +-
 .../10.2.0/keep-parent-in-flatten-bom.xml  |   4 +-
 .../10.2.0/remove-build-in-flatten-bom.xml |   4 +-
 src/changelog/10.2.0/skip-symlink-dirs.xml |   4 +-
 src/changelog/10.2.0/update-changelog-version.xml  |   4 +-
 .../10.2.0/update-changelog-xsd-version.xml|   4 +-
 ...te_com_github_spotbugs_spotbugs_annotations.xml |   4 +-
 src/changelog/10.2.0/use-specific-defaultGoal.xml  |   4 +-
 src/changelog/10.3.0/.release-notes.adoc.ftl   |   2 +-
 src/changelog/10.3.0/.release.xml  |   4 +-
 src/changelog/10.3.0/add-bnd-extra-config.xml  |   4 +-
 .../10.3.0/add-pom-xml-timestamp-substitution.xml  |   4 +-
 .../10.3.0/add-sbom-serialNumber-and-vex.xml   |   4 +-
 src/changelog/10.3.0/add-spotbugs-exclude.xml  |   4 +-
 .../10.3.0/auto-derive-dist-attachments.xml|   4 +-
 src/changelog/10.3.0/change-bnd-baseline.xml   

(logging-log4j2) branch dependabot/github_actions/main/apache/logging-parent-rel/11.0.0 created (now 0160ae918e)

2024-04-18 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/apache/logging-parent-rel/11.0.0
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


  at 0160ae918e Bump apache/logging-parent from rel/10.6.0 to 11.0.0

No new revisions were added by this update.



(logging-log4j2) branch dependabot/github_actions/2.x/apache/logging-parent-rel/11.0.0 created (now 4390e5e331)

2024-04-18 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/2.x/apache/logging-parent-rel/11.0.0
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


  at 4390e5e331 Bump apache/logging-parent from rel/10.6.0 to 11.0.0

No new revisions were added by this update.



svn commit: r68626 - /dev/logging/logging-parent/11.0.0/

2024-04-18 Thread vy
Author: vy
Date: Thu Apr 18 12:47:09 2024
New Revision: 68626

Log:
Remove `logging-parent` version `11.0.0` files released

Removed:
dev/logging/logging-parent/11.0.0/



svn commit: r68625 - in /release/logging/logging-parent: 10.6.0/ 11.0.0/

2024-04-18 Thread vy
Author: vy
Date: Thu Apr 18 12:46:17 2024
New Revision: 68625

Log:
Add `logging-parent` version `11.0.0` distribution

Added:
release/logging/logging-parent/11.0.0/
release/logging/logging-parent/11.0.0/apache-logging-parent-11.0.0-bin.zip  
 (with props)

release/logging/logging-parent/11.0.0/apache-logging-parent-11.0.0-bin.zip.asc

release/logging/logging-parent/11.0.0/apache-logging-parent-11.0.0-bin.zip.sha512
release/logging/logging-parent/11.0.0/apache-logging-parent-11.0.0-src.zip  
 (with props)

release/logging/logging-parent/11.0.0/apache-logging-parent-11.0.0-src.zip.asc

release/logging/logging-parent/11.0.0/apache-logging-parent-11.0.0-src.zip.sha512
Removed:
release/logging/logging-parent/10.6.0/

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

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

Added: 
release/logging/logging-parent/11.0.0/apache-logging-parent-11.0.0-bin.zip.asc
==
--- 
release/logging/logging-parent/11.0.0/apache-logging-parent-11.0.0-bin.zip.asc 
(added)
+++ 
release/logging/logging-parent/11.0.0/apache-logging-parent-11.0.0-bin.zip.asc 
Thu Apr 18 12:46:17 2024
@@ -0,0 +1,16 @@
+-BEGIN PGP SIGNATURE-
+
+iQIzBAABCgAdFiEEB36Ik6bcwz3UpNWyVuc7qaC1ktAFAmYdB5QACgkQVuc7qaC1
+ktCclg/9EhSXyj2kz5UdYyx5EeiEA+XFAJwETdaYby/IyPi1QUSKN29usFT1i16P
+fEL0psULyF6pRVHpKZFiZflb6lyn9LBmA3U0AB+5VHeKBUJNI5Q3KrdHu4/XO0EX
+0LMtVCQJ8nEHvr+WzZ2YEhL79QLYV4pdzwaE1RfCzcbA6MrfdvzGUOovyiR5avmk
+mwbdr/fOs1y8R8pOBSfW/KV0hdIPICG1N6iUIcqFrT675DdbQdsbHJJuF6MgyuNl
+dJ3WlNBKcnip+OIAG8CzqRKWaycCnw5h9uDancuP6ed/EgEFc//RskSWHHgkzNit
+WYh6Y9F1fwgDCLzh55Q/0OSw1pkUaXDhAAnh1VWSfP3WKHXvGwdochidF2YrU7GK
+8LlMzS6pftVaqxwgN/X63Fk1eU8e69U/vbHep7+BeMI00W/zWP2alWw57SNwEsTg
+GGEUERYPh4bPt5iathUnL8p3BXyPihKAJOSc4p/7OLLY8t0OLmnPZ13wIl2LgONc
+Mla6/Sga0vlQRV+/PciVbnt6FM52ZNz23/7hqCl9SVq/I9LGUqzcL8RPRpctj1Sl
+Uh/z3x94uYzLoyl/wyaXzmeoy8G251bfwv6zZaeHZqNtB1UdHrKzkaqtz+jS8kta
+K/so0lU06lQlPcprY5Si9FA8elUzxjGP26N1ohy58HUzd5hFMVY=
+=YMEk
+-END PGP SIGNATURE-

Added: 
release/logging/logging-parent/11.0.0/apache-logging-parent-11.0.0-bin.zip.sha512
==
--- 
release/logging/logging-parent/11.0.0/apache-logging-parent-11.0.0-bin.zip.sha512
 (added)
+++ 
release/logging/logging-parent/11.0.0/apache-logging-parent-11.0.0-bin.zip.sha512
 Thu Apr 18 12:46:17 2024
@@ -0,0 +1 @@
+2be8ff0c0aec5fa0abab04eaff06b252f2634fc39fc50b95521826ea12f4a96b4f249b3b785dbd3c627105ec0b8ae27b7b1e90e7103a2e6421d574307b366a46
  apache-logging-parent-11.0.0-bin.zip

Added: 
release/logging/logging-parent/11.0.0/apache-logging-parent-11.0.0-src.zip
==
Binary file - no diff available.

Propchange: 
release/logging/logging-parent/11.0.0/apache-logging-parent-11.0.0-src.zip
--
svn:mime-type = application/octet-stream

Added: 
release/logging/logging-parent/11.0.0/apache-logging-parent-11.0.0-src.zip.asc
==
--- 
release/logging/logging-parent/11.0.0/apache-logging-parent-11.0.0-src.zip.asc 
(added)
+++ 
release/logging/logging-parent/11.0.0/apache-logging-parent-11.0.0-src.zip.asc 
Thu Apr 18 12:46:17 2024
@@ -0,0 +1,16 @@
+-BEGIN PGP SIGNATURE-
+
+iQIzBAABCgAdFiEEB36Ik6bcwz3UpNWyVuc7qaC1ktAFAmYdB5QACgkQVuc7qaC1
+ktAFMg/+IRvkSpI9VtpazTJU9TdEGO1Ix7v/SbVPU8KOhOfMPOILAm/jIpAuQzA+
+8Q8VazoAGbqYFyiB5iwvXvqeIaxGGOrJsnKEWA1QA00mKb2KGi4k774ztp5A4tv/
+CL0ivRPQfJ/IFrQI2PIv1G1kqtBFVpUFXWyx2c2G8f+0ZvHHRqso9fz2VTI4zIHY
+uJCCpTneqhqkV4OcmBEYGMfUB787K5l9vfvi4XE3AeoNoPI6mK1bGpjVHMqONvR3
+p1nNnBcy2jYbY3868P8vkjsqiCJF7zkz6/k8dWKiLMmgH5xNS0U+cNBEINqYZfcr
+BOjJc1bQhWAfyTzfTKuDYVwCp53PTQ9i/On1fsCDcaPNxFy/xGokYr5sqqxeo18y
+/6JfM8NptC35XSVQ8SRnnk1EOR0TF39wjKb/Vh14rQ2BtA2i3cZZNb68GEib3/i7
+qSalileoSJ4vhKyLZf1WfQUpcYlGOb2DlwtEc9pDWJugky5LfvkLhoVlgR9+0Iq3
+6eu5rlbNX0laP+X5mIVG5VydFlY9E6Is2zoCKL3gspbgaGkIr1+b8OsIptGbsdz/
+ICE/kprZRaDjev2PnVZDQ6OYWyhQhcJLYRbjEF5uvNiQvsTPzVGeBgKpcgqRv6rL
+KbB9STIJqfUG3i6kmzyMoBY89iIHb8aRs/SCG0sHu031MHGQElA=
+=TMc1
+-END PGP SIGNATURE-

Added: 
release/logging/logging-parent/11.0.0/apache-logging-parent-11.0.0-src.zip.sha512
==
--- 
release/logging/logging-parent/11.0.0/apache-logging-parent-11.0.0-src.zip.sha512
 (added)
+++ 
release/logging/logging-parent/11.0.0/apache-logging-parent-11.0.0-src.zip.sha512
 Thu Apr 18 12:46:17 2024
@@ -0,0 +1 @@

(logging-parent) branch release/11.0.0-site-stg-out deleted (was a32b05e)

2024-04-18 Thread vy
This is an automated email from the ASF dual-hosted git repository.

vy pushed a change to branch release/11.0.0-site-stg-out
in repository https://gitbox.apache.org/repos/asf/logging-parent.git


 was a32b05e  Add `.asf.yaml` along with an INFRA fix for the website 
content generated from `ce75abf99cb670354f6048c8068e502a1ff9a1e1`

This change permanently discards the following revisions:

 discard a32b05e  Add `.asf.yaml` along with an INFRA fix for the website 
content generated from `ce75abf99cb670354f6048c8068e502a1ff9a1e1`
 discard 5493b64  Add website content generated from 
`ce75abf99cb670354f6048c8068e502a1ff9a1e1`
 discard 92f57ce  Initial content for the website to be generated from 
`ce75abf99cb670354f6048c8068e502a1ff9a1e1`



(logging-parent) branch release/11.0.0 deleted (was b5bbe45)

2024-04-18 Thread vy
This is an automated email from the ASF dual-hosted git repository.

vy pushed a change to branch release/11.0.0
in repository https://gitbox.apache.org/repos/asf/logging-parent.git


 was b5bbe45  Update the `project.build.outputTimestamp` property

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-site-stg-out updated: Add `.asf.yaml` along with an INFRA fix for the website content generated from `bb5b6a33d0263244cabd52b6a0e70c10c42963ed`

2024-04-18 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/main-site-stg-out by this push:
 new c546588  Add `.asf.yaml` along with an INFRA fix for the website 
content generated from `bb5b6a33d0263244cabd52b6a0e70c10c42963ed`
c546588 is described below

commit c5465886aa5b57ba2987bd5322e4e65acdb26424
Author: ASF Logging Services RM 
AuthorDate: Thu Apr 18 12:41:49 2024 +

Add `.asf.yaml` along with an INFRA fix for the website content generated 
from `bb5b6a33d0263244cabd52b6a0e70c10c42963ed`
---
 .asf.yaml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.asf.yaml b/.asf.yaml
index fcdc5f2..c2e0d9f 100644
--- a/.asf.yaml
+++ b/.asf.yaml
@@ -9,6 +9,6 @@ staging:
 #
 # Random values to cause a change:
 #
-# - Seed: 2156
-# - Commit ID: 96891ba1b01f95a436298fbe7b6df3357e448cdb
-# - Timestamp: 2024-04-17T11:12:39Z
+# - Seed: 10375
+# - Commit ID: bb5b6a33d0263244cabd52b6a0e70c10c42963ed
+# - Timestamp: 2024-04-18T12:41:49Z



(logging-parent) branch main-site-stg-out updated: Add website content generated from `bb5b6a33d0263244cabd52b6a0e70c10c42963ed`

2024-04-18 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/main-site-stg-out by this push:
 new c4869ad  Add website content generated from 
`bb5b6a33d0263244cabd52b6a0e70c10c42963ed`
c4869ad is described below

commit c4869adeac14ccbd99562f8d66c74216348a193d
Author: ASF Logging Services RM 
AuthorDate: Thu Apr 18 12:41:49 2024 +

Add website content generated from 
`bb5b6a33d0263244cabd52b6a0e70c10c42963ed`
---
 release-notes.html | 81 ++
 sitemap.xml| 12 
 usage.html |  2 +-
 3 files changed, 76 insertions(+), 19 deletions(-)

diff --git a/release-notes.html b/release-notes.html
index 4b3bc29..ace5b01 100644
--- a/release-notes.html
+++ b/release-notes.html
@@ -99,7 +99,73 @@
 This minor release contains several small improvements.
 
 
-Added
+Updated
+
+
+
+Update com.h3xstream.findsecbugs:findsecbugs-plugin to version 
1.13.0 (https://github.com/apache/logging-parent/pull/159;>159)
+
+
+Update github/codeql-action to version 3.25.1 (https://github.com/apache/logging-parent/pull/161;>161)
+
+
+Update org.apache:apache to version 32 (https://github.com/apache/logging-parent/pull/160;>160)
+
+
+
+
+
+
+
+11.0.0
+
+
+
+Release date
+
+2024-04-15
+
+
+
+
+This release contains a big revamp to the website build and several other 
minor enhancements.
+
+
+Website build changes
+
+The website build system is migrated from 
asciidoctor-maven-plugin to Antora.
+This implies that src/site and generate-email.sh 
files need to be adapted, and target/site can be viewed without 
needing a local web server.
+
+
+The Maven site phase is re-engineered such that generated 
sources (i.e., src/site/_release_notes and 
src/site/_constants.adoc) will be targeted to 
target/generated-site and the website will be built from there.
+This avoids the need to commit generated sources to the repository and, hence, 
works around changelog merge conflict problems.
+
+
+
+Website deployment 
changes
+
+The newly added site-deploy-reusable.yaml GitHub Actions 
workflow enables to automate the website deployment.
+Using the source-branch-site-environment-out 
branch naming convention, the Maven site goal running on
+
+
+
+
+the main branch populates the main-site-stg-out 
branch serving the logging.staged.apache.org/logging-parent
+
+
+the main-site-pro branch populates the 
main-site-pro-out branch serving the 
logging.apache.org/logging-parent
+
+
+the release/version branch populates the 
release/version-site-stg-out branch serving the 
logging.staged.apache.org/logging-parent-version
+
+
+
+
+Refer to the usage and project release instructions pages for details.
+
+
+
+Added
 
 
 
@@ -115,7 +181,7 @@
 
 
 
-Changed
+Changed
 
 
 
@@ -131,7 +197,7 @@
 
 
 
-Updated
+Updated
 
 
 
@@ -144,18 +210,9 @@
 Update com.google.errorprone:error_prone_core to version 
2.26.1 (https://github.com/apache/logging-parent/pull/134;>134)
 
 
-Update com.h3xstream.findsecbugs:findsecbugs-plugin to version 
1.13.0 (https://github.com/apache/logging-parent/pull/159;>159)
-
-
 Update com.palantir.javaformat:palantir-java-format to version 
2.43.0 (https://github.com/apache/logging-parent/pull/154;>154)
 
 
-Update github/codeql-action to version 3.25.0 (https://github.com/apache/logging-parent/pull/158;>158)
-
-
-Update org.apache:apache to version 32 (https://github.com/apache/logging-parent/pull/160;>160)
-
-
 Update org.apache.logging.log4j:log4j-changelog-maven-plugin 
to version 0.8.0 (https://github.com/apache/logging-parent/pull/146;>146)
 
 
diff --git a/sitemap.xml b/sitemap.xml
index 84e867f..2fd5fa3 100644
--- a/sitemap.xml
+++ b/sitemap.xml
@@ -2,26 +2,26 @@
 http://www.sitemaps.org/schemas/sitemap/0.9;>
 
 https://logging.apache.org/logging-parent/features.html
-2024-04-17T11:12:37.306Z
+2024-04-18T12:41:47.965Z
 
 
 https://logging.apache.org/logging-parent/index.html
-2024-04-17T11:12:37.306Z
+2024-04-18T12:41:47.965Z
 
 
 
https://logging.apache.org/logging-parent/release-instructions-project.html
-2024-04-17T11:12:37.306Z
+2024-04-18T12:41:47.965Z
 
 
 
https://logging.apache.org/logging-parent/release-instructions-xml-schema.html
-2024-04-17T11:12:37.306Z
+2024-04-18T12:41:47.965Z
 
 
 https://logging.apache.org/logging-parent/release-notes.html
-2024-04-17T11:12:37.306Z
+2024-04-18T12:41:47.965Z
 
 
 https://logging.apache.org/logging-parent/usage.html
-2024-04-17T11:12:37.306Z
+2024-04-18T12:41:47.965Z
 
 
diff --git a/usage.html b/usage.html
index 88d47f5..0259fe8 100644
--- a/usage.html
+++ b/usage.html
@@ -100,7 +100,7 @@
 
 
 
-Add org.apache.logging:logging-parent:10.6.0 as a 
parent to your pom.xml
+Add org.apache.logging:logging-parent:11.0.0 as a 
parent to your pom.xml
 
 
 You may need to add .mvn/jvm.config to your project. See 

(logging-parent) 01/02: Merge tag `rel/11.0.0`

2024-04-18 Thread vy
This is an automated email from the ASF dual-hosted git repository.

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

commit edbebdff241cb4ff293d208f1f4028a503193ce1
Merge: a14bafb b5bbe45
Author: Volkan Yazıcı 
AuthorDate: Thu Apr 18 14:40:18 2024 +0200

Merge tag `rel/11.0.0`

 pom.xml|  6 +-
 src/changelog/11.0.0/.release-notes.adoc.ftl   | 64 ++
 src/changelog/11.0.0/.release.xml  | 21 +++
 .../{.11.x.x => 11.0.0}/105_cyclonedx_upgrade.xml  |  0
 .../139_add_parallel_release_support.xml   |  0
 .../140_add_coverage_profile.xml   |  0
 src/changelog/{.11.x.x => 11.0.0}/antora.xml   |  0
 .../{.11.x.x => 11.0.0}/auto_site_deploy.xml   |  0
 ...com_diffplug_spotless_spotless_maven_plugin.xml |  0
 ...e_com_github_spotbugs_spotbugs_maven_plugin.xml |  0
 ...date_com_google_errorprone_error_prone_core.xml |  0
 ...om_palantir_javaformat_palantir_java_format.xml |  0
 ..._logging_log4j_log4j_changelog_maven_plugin.xml |  0
 ..._apache_maven_plugins_maven_artifact_plugin.xml |  0
 ...date_org_codehaus_mojo_flatten_maven_plugin.xml |  0
 ...update_org_cyclonedx_cyclonedx_maven_plugin.xml |  0
 .../xml_schema_instructions.xml|  0
 17 files changed, 88 insertions(+), 3 deletions(-)




(logging-parent) branch main updated (a14bafb -> bb5b6a3)

2024-04-18 Thread vy
This is an automated email from the ASF dual-hosted git repository.

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


from a14bafb  Update `github/codeql-action` to version `3.25.1` (#161)
 add ce75abf  Prepare to release `11.0.0`
 add b5bbe45  Update the `project.build.outputTimestamp` property
 new edbebdf  Merge tag `rel/11.0.0`
 new bb5b6a3  Set the next development version to `11.1.0-SNAPSHOT`

The 2 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|  6 ++---
 .../{10.1.0 => 11.0.0}/.release-notes.adoc.ftl | 27 +-
 src/changelog/{10.1.0 => 11.0.0}/.release.xml  |  2 +-
 .../{.11.x.x => 11.0.0}/105_cyclonedx_upgrade.xml  |  0
 .../139_add_parallel_release_support.xml   |  0
 .../140_add_coverage_profile.xml   |  0
 src/changelog/{.11.x.x => 11.0.0}/antora.xml   |  0
 .../{.11.x.x => 11.0.0}/auto_site_deploy.xml   |  0
 ...com_diffplug_spotless_spotless_maven_plugin.xml |  0
 ...e_com_github_spotbugs_spotbugs_maven_plugin.xml |  0
 ...date_com_google_errorprone_error_prone_core.xml |  0
 ...om_palantir_javaformat_palantir_java_format.xml |  0
 ..._logging_log4j_log4j_changelog_maven_plugin.xml |  0
 ..._apache_maven_plugins_maven_artifact_plugin.xml |  0
 ...date_org_codehaus_mojo_flatten_maven_plugin.xml |  0
 ...update_org_cyclonedx_cyclonedx_maven_plugin.xml |  0
 .../xml_schema_instructions.xml|  0
 17 files changed, 25 insertions(+), 10 deletions(-)
 copy src/changelog/{10.1.0 => 11.0.0}/.release-notes.adoc.ftl (59%)
 copy src/changelog/{10.1.0 => 11.0.0}/.release.xml (95%)
 rename src/changelog/{.11.x.x => 11.0.0}/105_cyclonedx_upgrade.xml (100%)
 rename src/changelog/{.11.x.x => 11.0.0}/139_add_parallel_release_support.xml 
(100%)
 rename src/changelog/{.11.x.x => 11.0.0}/140_add_coverage_profile.xml (100%)
 rename src/changelog/{.11.x.x => 11.0.0}/antora.xml (100%)
 rename src/changelog/{.11.x.x => 11.0.0}/auto_site_deploy.xml (100%)
 rename src/changelog/{.11.x.x => 
11.0.0}/update_com_diffplug_spotless_spotless_maven_plugin.xml (100%)
 rename src/changelog/{.11.x.x => 
11.0.0}/update_com_github_spotbugs_spotbugs_maven_plugin.xml (100%)
 rename src/changelog/{.11.x.x => 
11.0.0}/update_com_google_errorprone_error_prone_core.xml (100%)
 rename src/changelog/{.11.x.x => 
11.0.0}/update_com_palantir_javaformat_palantir_java_format.xml (100%)
 rename src/changelog/{.11.x.x => 
11.0.0}/update_org_apache_logging_log4j_log4j_changelog_maven_plugin.xml (100%)
 rename src/changelog/{.11.x.x => 
11.0.0}/update_org_apache_maven_plugins_maven_artifact_plugin.xml (100%)
 rename src/changelog/{.11.x.x => 
11.0.0}/update_org_codehaus_mojo_flatten_maven_plugin.xml (100%)
 rename src/changelog/{.11.x.x => 
11.0.0}/update_org_cyclonedx_cyclonedx_maven_plugin.xml (100%)
 rename src/changelog/{.11.x.x => 11.0.0}/xml_schema_instructions.xml (100%)



  1   2   >