(logging-parent) branch main updated: Fix Bash typo in `deploy-site-reusable.yaml`

2024-04-10 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 1313030  Fix Bash typo in `deploy-site-reusable.yaml`
1313030 is described below

commit 1313030ddfd27183f0fcb6cd0b3a05ef5c4562c7
Author: Volkan Yazıcı 
AuthorDate: Wed Apr 10 13:31:33 2024 +0200

Fix Bash typo in `deploy-site-reusable.yaml`
---
 .github/workflows/deploy-site-reusable.yaml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/deploy-site-reusable.yaml 
b/.github/workflows/deploy-site-reusable.yaml
index 8e5e802..16f8db7 100644
--- a/.github/workflows/deploy-site-reusable.yaml
+++ b/.github/workflows/deploy-site-reusable.yaml
@@ -50,7 +50,7 @@ on:
 
 jobs:
 
-  deploy-site:
+  deploy:
 
 runs-on: ubuntu-latest
 
@@ -126,7 +126,7 @@ jobs:
 run: |
 
   # Clean up the target path
-  if [ "." -eq "$TARGET_PATH" ]; then
+  if [ "." = "$TARGET_PATH" ]; then
 git ls-files -z | xargs -0 git rm -rf
   else
 git rm -rf "$TARGET_PATH"



(logging-parent) 01/01: Add `README.txt`

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

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

commit b05d3506e27a6daf0c6a7ef82541374167bf4414
Author: Volkan Yazıcı 
AuthorDate: Wed Apr 10 11:31:19 2024 +0200

Add `README.txt`
---
 README.txt | 1 +
 1 file changed, 1 insertion(+)

diff --git a/README.txt b/README.txt
new file mode 100644
index 000..45256d1
--- /dev/null
+++ b/README.txt
@@ -0,0 +1 @@
+An orphan branch to host auto-generated staging website content



(logging-parent) branch main-site-stg created (now b05d350)

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

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


  at b05d350  Add `README.txt`

This branch includes the following new commits:

 new b05d350  Add `README.txt`

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-parent) branch dependabot/maven/com.github.spotbugs-spotbugs-maven-plugin-4.8.4.0 created (now 00024ff)

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

github-bot pushed a change to branch 
dependabot/maven/com.github.spotbugs-spotbugs-maven-plugin-4.8.4.0
in repository https://gitbox.apache.org/repos/asf/logging-parent.git


  at 00024ff  Bump com.github.spotbugs:spotbugs-maven-plugin from 4.8.3.1 
to 4.8.4.0

No new revisions were added by this update.



(logging-parent) branch main updated (a4090c4 -> 7c308f9)

2024-04-10 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 a4090c4  Wire the staging website to the `site-stg` branch
 add 7c308f9  Update `com.github.spotbugs:spotbugs-maven-plugin` to version 
`4.8.4.0` (#156)

No new revisions were added by this update.

Summary of changes:
 pom.xml   | 2 +-
 .../.11.x.x/update_com_github_spotbugs_spotbugs_maven_plugin.xml  | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)



(logging-parent) branch main updated: Try to fix YAML read error in `deploy-site-reusable.yaml`

2024-04-10 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 0d3b583  Try to fix YAML read error in `deploy-site-reusable.yaml`
0d3b583 is described below

commit 0d3b583c3e17b838c716b0e0897e698be7162602
Author: Volkan Yazıcı 
AuthorDate: Wed Apr 10 13:48:08 2024 +0200

Try to fix YAML read error in `deploy-site-reusable.yaml`
---
 .github/workflows/deploy-site-reusable.yaml | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/.github/workflows/deploy-site-reusable.yaml 
b/.github/workflows/deploy-site-reusable.yaml
index 35ae857..f619400 100644
--- a/.github/workflows/deploy-site-reusable.yaml
+++ b/.github/workflows/deploy-site-reusable.yaml
@@ -160,9 +160,8 @@ jobs:
 cat >"$INFRA_FIX_FILENAME" 

(logging-parent) branch main updated: Reorganize placement of `env:` in workflows

2024-04-10 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 2487460  Reorganize placement of `env:` in workflows
2487460 is described below

commit 248746079131d5c3c986ea4ee14435d1ca516553
Author: Volkan Yazıcı 
AuthorDate: Wed Apr 10 10:05:03 2024 +0200

Reorganize placement of `env:` in workflows
---
 .github/workflows/deploy-release-reusable.yaml   | 28 +++-
 .github/workflows/deploy-snapshot-reusable.yaml  |  8 +++
 .github/workflows/merge-dependabot-reusable.yaml | 22 +--
 3 files changed, 28 insertions(+), 30 deletions(-)

diff --git a/.github/workflows/deploy-release-reusable.yaml 
b/.github/workflows/deploy-release-reusable.yaml
index cd8ce16..2f6b156 100644
--- a/.github/workflows/deploy-release-reusable.yaml
+++ b/.github/workflows/deploy-release-reusable.yaml
@@ -83,6 +83,8 @@ jobs:
 
   - name: Export version
 shell: bash
+env:
+  GIT_BRANCH_NAME: ${{ github.ref_name }}
 run: |
   [[ "$GIT_BRANCH_NAME" =~ ^release/.+$ ]] || {
 echo "was expecting a \`release/\`-prefixed Git branch name, 
found: \`$GIT_BRANCH_NAME\`"
@@ -90,8 +92,6 @@ jobs:
   }
   export PROJECT_VERSION=$(echo "$GIT_BRANCH_NAME" | sed 
's/^release\///')
   echo "PROJECT_VERSION=$PROJECT_VERSION" >> $GITHUB_ENV
-env:
-  GIT_BRANCH_NAME: ${{ github.ref_name }}
 
   - name: Set the Maven `revision` property
 shell: bash
@@ -188,19 +188,22 @@ jobs:
 
   - name: Upload to Nexus
 shell: bash
-run: |
-  ./mvnw \
---show-version --batch-mode --errors --no-transfer-progress \
--P deploy,release
 env:
   # `NEXUS_USERNAME` and `NEXUS_PASSWORD` are used in 
`~/.m2/settings.xml` created by `setup-java` action
   NEXUS_USERNAME: ${{ secrets.LOGGING_STAGE_DEPLOYER_USER }}
   NEXUS_PASSWORD: ${{ secrets.LOGGING_STAGE_DEPLOYER_PW }}
   # `SIGN_KEY` is used by `sign-maven-plugin`
   SIGN_KEY: ${{ secrets.GPG_SECRET_KEY }}
+run: |
+  ./mvnw \
+--show-version --batch-mode --errors --no-transfer-progress \
+-P deploy,release
 
   - name: Stage distribution attachments
 shell: bash
+env:
+  DIST_ATTACHMENT_FILEPATH_PATTERN: ${{ 
inputs.distribution-attachment-filepath-pattern }}
+  DIST_ATTACHMENT_COUNT: ${{ inputs.distribution-attachment-count }}
 run: |
 
   # Determine the distribution attachment filepath pattern, if none 
provided
@@ -228,10 +231,6 @@ jobs:
   DIST_ATTACHMENT_COUNT=$DIST_ATTACHMENT_COUNT
   EOF
 
-env:
-  DIST_ATTACHMENT_FILEPATH_PATTERN: ${{ 
inputs.distribution-attachment-filepath-pattern }}
-  DIST_ATTACHMENT_COUNT: ${{ inputs.distribution-attachment-count }}
-
   - name: Create the distribution
 shell: bash
 run: |
@@ -272,6 +271,10 @@ jobs:
 
   - name: Upload to Subversion
 shell: bash
+env:
+  PROJECT_ID: ${{ inputs.project-id }}
+  SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
+  SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
 run: |
 
   # Find the effective Git commit ID
@@ -312,8 +315,3 @@ jobs:
 --username "$SVN_USERNAME" \
 --password "$SVN_PASSWORD" \
 -m "Added \`${DIST_FILENAME_PREFIX}\` artifacts for release 
\`${PROJECT_VERSION}\`"
-
-env:
-  PROJECT_ID: ${{ inputs.project-id }}
-  SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
-  SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
diff --git a/.github/workflows/deploy-snapshot-reusable.yaml 
b/.github/workflows/deploy-snapshot-reusable.yaml
index 90cf26f..7fcab51 100644
--- a/.github/workflows/deploy-snapshot-reusable.yaml
+++ b/.github/workflows/deploy-snapshot-reusable.yaml
@@ -64,11 +64,11 @@ jobs:
 
   - name: Upload to Nexus
 shell: bash
-run: |
-  ./mvnw \
---show-version --batch-mode --errors --no-transfer-progress \
--P deploy
 env:
   # `NEXUS_USERNAME` and `NEXUS_PASSWORD` are used in 
`~/.m2/settings.xml` created by `setup-java` action
   NEXUS_USERNAME: ${{ secrets.NEXUS_USER }}
   NEXUS_PASSWORD: ${{ secrets.NEXUS_PW }}
+run: |
+  ./mvnw \
+--show-version --batch-mode --errors --no-transfer-progress \
+-P deploy
diff --git a/.github/workflows/merge-dependabot-reusable.yaml 
b/.github/workflows/merge-dependabot-reusable.yaml
index 6ea36c3..25b736d 100644
--- a/.github/workflows/merge-dependabot-reusable.yaml
+++ b/.github/workflows/merge-dependabot-reusable.yaml
@@ -45,15 +45,15 @@ jobs:
 
   - name: Find dependency attributes
 

(logging-parent) branch main updated: Wire the staging website to the `site-stg` branch

2024-04-10 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 a4090c4  Wire the staging website to the `site-stg` branch
a4090c4 is described below

commit a4090c405ae95adb449faaa6b73c806c24bdc2c9
Author: Volkan Yazıcı 
AuthorDate: Wed Apr 10 11:27:24 2024 +0200

Wire the staging website to the `site-stg` branch
---
 .asf.yaml | 5 +
 1 file changed, 5 insertions(+)

diff --git a/.asf.yaml b/.asf.yaml
index 665bc95..791f865 100644
--- a/.asf.yaml
+++ b/.asf.yaml
@@ -36,3 +36,8 @@ github:
   required_signatures: true
 asf-site:
   required_signatures: true
+
+staging:
+  profile: ~
+  whoami: main-site-stg
+  subdir: content/logging-parent



(logging-parent) branch main updated: Initial staging website auto-deployment implementation

2024-04-10 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 33695d5  Initial staging website auto-deployment implementation
33695d5 is described below

commit 33695d51b322fae1ac33bd340400636115f60950
Author: Volkan Yazıcı 
AuthorDate: Wed Apr 10 13:23:59 2024 +0200

Initial staging website auto-deployment implementation
---
 .github/workflows/build.yaml|  13 +++
 .github/workflows/deploy-site-reusable.yaml | 171 
 2 files changed, 184 insertions(+)

diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index 0be2b40..4d6c343 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -48,6 +48,19 @@ jobs:
 with:
   site-enabled: true
 
+  deploy-site-stg:
+needs: build
+if: github.repository == 'apache/logging-parent' && github.ref_name == 
'main'
+uses: 
apache/logging-parent/.github/workflows/deploy-site-reusable.yaml@main
+# 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:
+  target-branch: main-site-stg
+
   deploy-snapshot:
 needs: build
 if: github.repository == 'apache/logging-parent' && github.ref_name == 
'main'
diff --git a/.github/workflows/deploy-site-reusable.yaml 
b/.github/workflows/deploy-site-reusable.yaml
new file mode 100644
index 000..8e5e802
--- /dev/null
+++ b/.github/workflows/deploy-site-reusable.yaml
@@ -0,0 +1,171 @@
+#
+# 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-reusable
+
+on:
+  workflow_call:
+inputs:
+  java-version:
+description: The Java compiler version
+default: 17
+type: string
+  install-required:
+description: Flag indicating if Maven `install` goal should be run 
before running the `site` goal
+default: false
+type: boolean
+  source-branch:
+description: |
+  The branch, tag or SHA to checkout and run the Maven `site` goal on.
+  When checking out the repository that triggered a workflow, this 
defaults to the reference or SHA for that event.
+  Otherwise, the default branch of the repository will be used.
+default: ""
+type: string
+  target-branch:
+description: The name of the branch the generated site content will be 
written to
+required: true
+type: string
+  target-path:
+description: The directory path the generated site content will be 
placed under
+default: "."
+type: string
+secrets:
+  GPG_SECRET_KEY:
+description: GPG secret key for signing commits
+required: true
+
+jobs:
+
+  deploy-site:
+
+runs-on: ubuntu-latest
+
+steps:
+
+  - name: Checkout the source branch
+uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633   # 
4.1.2
+with:
+  ref: ${{ inputs.source-branch }}
+
+  - name: Set up Java
+uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9   # 
3.7.0
+with:
+  distribution: temurin
+  java-version: ${{ inputs.java-version }}
+  java-package: jdk
+  architecture: x64
+  cache: maven
+
+  - name: Build the project
+shell: bash
+if: inputs.install-required
+run: |
+  ./mvnw \
+--show-version --batch-mode --errors --no-transfer-progress \
+-Dmaven.test.skip \
+install
+
+  # Node.js cache is needed for Antora
+  - name: Set up Node.js cache
+id: nodejs-cache
+uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9   # 4.0.2
+with:
+  # We should be calculating the cache key using `package-lock.json` 
instead!
+  # See https://stackoverflow.com/a/48524475/1278899
+  # For that, `package-lock.json` needs to be committed into the 
repository – right now it is 

(logging-log4j2) branch main updated: Correct timezone for Raman Gupta (#2463)

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

rgupta 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 b9dd641bd1 Correct timezone for Raman Gupta (#2463)
b9dd641bd1 is described below

commit b9dd641bd132ed9656484b1cf320bf659bf07a32
Author: Raman Gupta 
AuthorDate: Wed Apr 10 03:25:35 2024 -0400

Correct timezone for Raman Gupta (#2463)
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 115f2f88bf..07bb018d10 100644
--- a/pom.xml
+++ b/pom.xml
@@ -130,7 +130,7 @@
   
 Committer
   
-  Asia/Kolkata
+  America/New York
 
 
 



(logging-parent) branch main updated: Fix INFRA fix file check in `deploy-site-reusable.yaml`

2024-04-10 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 d5f8bc5  Fix INFRA fix file check in `deploy-site-reusable.yaml`
d5f8bc5 is described below

commit d5f8bc5b63c5e10f4baf43b18c560dc321fc48c7
Author: Volkan Yazıcı 
AuthorDate: Wed Apr 10 13:42:05 2024 +0200

Fix INFRA fix file check in `deploy-site-reusable.yaml`
---
 .github/workflows/deploy-site-reusable.yaml | 9 +++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/deploy-site-reusable.yaml 
b/.github/workflows/deploy-site-reusable.yaml
index 16f8db7..35ae857 100644
--- a/.github/workflows/deploy-site-reusable.yaml
+++ b/.github/workflows/deploy-site-reusable.yaml
@@ -125,6 +125,10 @@ jobs:
   TARGET_PATH: ${{ inputs.target-path }}
 run: |
 
+  # Check if there exist an INFRA fix file
+  INFRA_FIX_FILENAME=".asf-infra-fix"
+  INFRA_FIX_FILE_EXISTS=$([ -f "$INFRA_FIX_FILENAME" ] && echo "true" 
|| echo "false")
+
   # Clean up the target path
   if [ "." = "$TARGET_PATH" ]; then
 git ls-files -z | xargs -0 git rm -rf
@@ -138,8 +142,9 @@ jobs:
 
   # Recover INFRA fix file, if there was one.
   # Otherwise `git status` will always show a change even when there 
are no changes in the website content.
-  INFRA_FIX_FILENAME=".asf-infra-fix"
-  git checkout HEAD "$INFRA_FIX_FILENAME" 1>/dev/null 2>&1
+  if [ "$INFRA_FIX_FILE_EXISTS" = "true" ]; then
+git checkout HEAD "$INFRA_FIX_FILENAME"
+  fi
 
   # Commit changes, if there are any
   if [ -n "$(git status --porcelain)" ]; then



(logging-log4j2) branch 2.x updated: Correct timezone for Raman Gupta (#2463)

2024-04-10 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 52edad97e8 Correct timezone for Raman Gupta (#2463)
52edad97e8 is described below

commit 52edad97e80371b0f75e096aaaf82fadd9df6aba
Author: Raman Gupta 
AuthorDate: Wed Apr 10 03:25:35 2024 -0400

Correct timezone for Raman Gupta (#2463)
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 8b9d219bc2..519bfb5427 100644
--- a/pom.xml
+++ b/pom.xml
@@ -130,7 +130,7 @@
   
 Committer
   
-  Asia/Kolkata
+  America/New York
 
 
 



(logging-parent) branch asf-site updated: Disable staging site publication

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

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


The following commit(s) were added to refs/heads/asf-site by this push:
 new f1c5486  Disable staging site publication
f1c5486 is described below

commit f1c5486243d88c58df2643c1dffde64d951149cc
Author: Volkan Yazıcı 
AuthorDate: Wed Apr 10 11:25:20 2024 +0200

Disable staging site publication
---
 .asf.yaml | 5 -
 1 file changed, 5 deletions(-)

diff --git a/.asf.yaml b/.asf.yaml
index 2290d0b..597aed3 100644
--- a/.asf.yaml
+++ b/.asf.yaml
@@ -21,8 +21,3 @@ publish:
   profile: ~
   whoami: asf-site
   subdir: content/logging-parent
-
-staging:
-  profile: ~
-  whoami: asf-staging
-  subdir: content/logging-parent



(logging-parent) branch asf-staging updated: Disable staging site publication

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

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


The following commit(s) were added to refs/heads/asf-staging by this push:
 new 78978d9  Disable staging site publication
78978d9 is described below

commit 78978d9d644a10a7399de6d5b5e8ead4a937b9f2
Author: Volkan Yazıcı 
AuthorDate: Wed Apr 10 11:24:24 2024 +0200

Disable staging site publication
---
 .asf.yaml => _asf.yaml | 0
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/.asf.yaml b/_asf.yaml
similarity index 100%
rename from .asf.yaml
rename to _asf.yaml



(logging-parent) branch main updated: Upgrade changelog XSDs

2024-04-10 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 3a5fa9c  Upgrade changelog XSDs
3a5fa9c is described below

commit 3a5fa9cf8f601efb38bb3d628e1db134646eb6e6
Author: Volkan Yazıcı 
AuthorDate: Wed Apr 10 09:55:14 2024 +0200

Upgrade changelog XSDs
---
 .github/workflows/merge-dependabot-reusable.yaml | 4 ++--
 src/changelog/.11.x.x/105_cyclonedx_upgrade.xml  | 4 ++--
 src/changelog/.11.x.x/139_add_parallel_release_support.xml   | 4 ++--
 src/changelog/.11.x.x/140_add_coverage_profile.xml   | 4 ++--
 src/changelog/.11.x.x/update_actions_checkout.xml| 4 ++--
 src/changelog/.11.x.x/update_actions_setup_java.xml  | 4 ++--
 src/changelog/.11.x.x/update_actions_upload_artifact.xml | 4 ++--
 .../.11.x.x/update_com_diffplug_spotless_spotless_maven_plugin.xml   | 4 ++--
 .../.11.x.x/update_com_github_spotbugs_spotbugs_annotations.xml  | 4 ++--
 .../.11.x.x/update_com_github_spotbugs_spotbugs_maven_plugin.xml | 4 ++--
 .../.11.x.x/update_com_google_errorprone_error_prone_core.xml| 4 ++--
 .../.11.x.x/update_com_h3xstream_findsecbugs_findsecbugs_plugin.xml  | 4 ++--
 .../.11.x.x/update_com_palantir_javaformat_palantir_java_format.xml  | 4 ++--
 src/changelog/.11.x.x/update_commons_codec_commons_codec.xml | 4 ++--
 .../update_de_skuzzle_enforcer_restrict_imports_enforcer_rule.xml| 4 ++--
 src/changelog/.11.x.x/update_dependabot_fetch_metadata.xml   | 4 ++--
 src/changelog/.11.x.x/update_github_codeql_action.xml| 4 ++--
 .../update_org_apache_logging_log4j_log4j_changelog_maven_plugin.xml | 4 ++--
 .../update_org_apache_maven_plugins_maven_artifact_plugin.xml| 4 ++--
 .../.11.x.x/update_org_asciidoctor_asciidoctor_maven_plugin.xml  | 4 ++--
 .../.11.x.x/update_org_codehaus_mojo_flatten_maven_plugin.xml| 4 ++--
 .../.11.x.x/update_org_cyclonedx_cyclonedx_maven_plugin.xml  | 4 ++--
 src/changelog/.11.x.x/update_org_eclipse_jgit_org_eclipse_jgit.xml   | 4 ++--
 src/changelog/.11.x.x/update_org_jacoco_jacoco_maven_plugin.xml  | 4 ++--
 .../.11.x.x/update_org_simplify4u_plugins_sign_maven_plugin.xml  | 4 ++--
 src/changelog/.11.x.x/xml_schema_instructions.xml| 4 ++--
 src/changelog/10.0.0/.release.xml| 4 ++--
 src/changelog/10.0.0/add-changelog-export-profile.xml| 4 ++--
 src/changelog/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 ++--
 src/changelog/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.xml| 4 ++--
 src/changelog/10.1.0/add-asciidoc-profile.xml| 4 ++--
 src/changelog/10.1.0/add-dependabot-changelog.xml| 4 ++--
 src/changelog/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 ++---
 .../10.1.0/update_com_github_spotbugs_spotbugs_maven_plugin.xml  | 5 ++---
 .../10.1.0/update_com_google_errorprone_error_prone_core.xml | 5 ++---
 src/changelog/10.1.0/update_org_apache_apache.xml| 4 ++--
 src/changelog/10.1.0/update_org_osgi_osgi_annotation.xml | 5 ++---
 src/changelog/10.1.1/.release.xml| 4 ++--
 src/changelog/10.1.1/change_default_module_name.xml  | 4 ++--
 src/changelog/10.1.1/checksum_file.xml   | 4 ++--
 src/changelog/10.1.1/fix_bnd_required_module_names.xml   | 4 ++--
 src/changelog/10.1.1/timestamp.xml   | 4 ++--
 .../10.1.1/update_com_diffplug_spotless_spotless_maven_plugin.xml| 4 ++--
 src/changelog/10.2.0/.release.xml| 4 ++--
 

(logging-parent) branch dependabot/maven/com.github.spotbugs-spotbugs-maven-plugin-4.8.4.0 updated (00024ff -> 7c308f9)

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

github-bot pushed a change to branch 
dependabot/maven/com.github.spotbugs-spotbugs-maven-plugin-4.8.4.0
in repository https://gitbox.apache.org/repos/asf/logging-parent.git


 discard 00024ff  Bump com.github.spotbugs:spotbugs-maven-plugin from 4.8.3.1 
to 4.8.4.0
 add 7c308f9  Update `com.github.spotbugs:spotbugs-maven-plugin` to version 
`4.8.4.0` (#156)

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   (00024ff)
\
 N -- N -- N   
refs/heads/dependabot/maven/com.github.spotbugs-spotbugs-maven-plugin-4.8.4.0 
(7c308f9)

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



(logging-parent) branch dependabot/maven/com.github.spotbugs-spotbugs-maven-plugin-4.8.4.0 deleted (was 7c308f9)

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

github-bot pushed a change to branch 
dependabot/maven/com.github.spotbugs-spotbugs-maven-plugin-4.8.4.0
in repository https://gitbox.apache.org/repos/asf/logging-parent.git


 was 7c308f9  Update `com.github.spotbugs:spotbugs-maven-plugin` to version 
`4.8.4.0` (#156)

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 updated (b05d350 -> 48c8531)

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


from b05d350  Add `README.txt`
 new 48e5f34  Add website content generated from 
`3704738550608358a14ca2289fa1f874e931de21`
 new 48c8531  Add INFRA fix for the website content generated from 
`3704738550608358a14ca2289fa1f874e931de21`

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:
 .asf-infra-fix|   8 +
 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 +
 features.html | 228 +
 index.html| 191 
 release-instructions-project.html | 538 +
 release-instructions-xml-schema.html  | 248 ++
 release-notes.html| 762 ++
 sitemap.xml   |  27 ++
 usage.html| 186 
 38 files changed, 2524 insertions(+), 1 deletion(-)
 create mode 100644 .asf-infra-fix
 create mode 100644 404.html
 delete mode 100644 README.txt
 create mode 100644 _/css/site.css
 create mode 100644 _/css/vendor/tabs.css
 create mode 100644 _/font/roboto-cyrillic-400-italic.woff2
 create mode 100644 _/font/roboto-cyrillic-400-normal.woff2
 create mode 100644 _/font/roboto-cyrillic-500-italic.woff2
 create mode 100644 _/font/roboto-cyrillic-500-normal.woff2
 create mode 100644 _/font/roboto-latin-400-italic.woff
 create mode 100644 _/font/roboto-latin-400-italic.woff2
 create mode 100644 _/font/roboto-latin-400-normal.woff
 create mode 100644 _/font/roboto-latin-400-normal.woff2
 create mode 100644 _/font/roboto-latin-500-italic.woff
 create mode 100644 _/font/roboto-latin-500-italic.woff2
 create mode 100644 _/font/roboto-latin-500-normal.woff
 create mode 100644 _/font/roboto-latin-500-normal.woff2
 create mode 100644 _/font/roboto-mono-latin-400-normal.woff
 create mode 100644 _/font/roboto-mono-latin-400-normal.woff2
 create mode 100644 _/font/roboto-mono-latin-500-normal.woff
 create mode 100644 _/font/roboto-mono-latin-500-normal.woff2
 create mode 100644 _/img/back.svg
 create mode 100644 _/img/caret.svg
 create mode 100644 _/img/chevron.svg
 create mode 100644 _/img/home-o.svg
 create mode 100644 _/img/home.svg
 create mode 100644 _/img/menu.svg
 create mode 100644 _/img/octicons-16.svg
 create mode 100644 _/js/site.js
 create mode 100644 _/js/vendor/highlight.js
 create mode 100644 _/js/vendor/tabs.js
 create mode 100644 features.html
 create mode 100644 index.html
 create mode 100644 release-instructions-project.html
 create mode 100644 release-instructions-xml-schema.html
 create mode 100644 release-notes.html
 create mode 100644 sitemap.xml
 create mode 100644 usage.html



(logging-parent) 02/02: Add INFRA fix for the website content generated from `3704738550608358a14ca2289fa1f874e931de21`

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

commit 48c85310302aa1f73ec77b875310de5a9d47f17c
Author: ASF Logging Services RM 
AuthorDate: Wed Apr 10 14:55:45 2024 +

Add INFRA fix for the website content generated from 
`3704738550608358a14ca2289fa1f874e931de21`
---
 .asf-infra-fix | 8 
 1 file changed, 8 insertions(+)

diff --git a/.asf-infra-fix b/.asf-infra-fix
new file mode 100644
index 000..3f02fe7
--- /dev/null
+++ b/.asf-infra-fix
@@ -0,0 +1,8 @@
+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: 4823
+- Commit ID: 3704738550608358a14ca2289fa1f874e931de21
+- Timestamp: 2024-04-10T14:55:45Z



(logging-parent) branch main-site-stg updated: Content is not effective, seeing if pushing a small commit will help to recover

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

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


The following commit(s) were added to refs/heads/main-site-stg by this push:
 new 5183af8  Content is not effective, seeing if pushing a small commit 
will help to recover
5183af8 is described below

commit 5183af8adbd780de9352d71739b10282a3531b5f
Author: Volkan Yazıcı 
AuthorDate: Wed Apr 10 17:03:25 2024 +0200

Content is not effective, seeing if pushing a small commit will help to 
recover
---
 .asf-infra-fix | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.asf-infra-fix b/.asf-infra-fix
index 3f02fe7..bbe84f8 100644
--- a/.asf-infra-fix
+++ b/.asf-infra-fix
@@ -3,6 +3,6 @@ This file will be used to push a small commit to help the INFRA 
to recover.
 
 Random values to cause a change:
 
-- Seed: 4823
+- Seed: 4821
 - Commit ID: 3704738550608358a14ca2289fa1f874e931de21
 - Timestamp: 2024-04-10T14:55:45Z



(logging-parent) branch main updated: Import the GPG private key in `deploy-site-reusable.yaml`

2024-04-10 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 3704738  Import the GPG private key in `deploy-site-reusable.yaml`
3704738 is described below

commit 3704738550608358a14ca2289fa1f874e931de21
Author: Volkan Yazıcı 
AuthorDate: Wed Apr 10 16:53:03 2024 +0200

Import the GPG private key in `deploy-site-reusable.yaml`
---
 .github/workflows/deploy-site-reusable.yaml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/deploy-site-reusable.yaml 
b/.github/workflows/deploy-site-reusable.yaml
index 8b96b6b..0f80326 100644
--- a/.github/workflows/deploy-site-reusable.yaml
+++ b/.github/workflows/deploy-site-reusable.yaml
@@ -69,6 +69,7 @@ jobs:
   java-package: jdk
   architecture: x64
   cache: maven
+  gpg-private-key: ${{ secrets.GPG_SECRET_KEY }}
 
   - name: Build the project
 shell: bash
@@ -111,7 +112,7 @@ jobs:
 site
   cd target/site
   find . -empty -type d -delete
-  find . -print0 | sort --zero-terminated | xargs -0 zip -oX 
/tmp/site.zip
+  find . -print0 | sort --zero-terminated | xargs -0 zip -qoX 
/tmp/site.zip
   echo "SOURCE_COMMIT_ID=$(git rev-parse HEAD)" >> $GITHUB_ENV
 
   - name: Checkout the target branch



(logging-parent) 01/02: Add website content generated from `3704738550608358a14ca2289fa1f874e931de21`

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

commit 48e5f34ed698a2216c7e4dcad13bda1b5a80ff88
Author: ASF Logging Services RM 
AuthorDate: Wed Apr 10 14:55:45 2024 +

Add website content generated from 
`3704738550608358a14ca2289fa1f874e931de21`
---
 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 +
 features.html | 228 +
 index.html| 191 
 release-instructions-project.html | 538 +
 release-instructions-xml-schema.html  | 248 ++
 release-notes.html| 762 ++
 sitemap.xml   |  27 ++
 usage.html| 186 
 37 files changed, 2516 insertions(+), 1 deletion(-)

diff --git a/404.html b/404.html
new file mode 100644
index 000..1527069
--- /dev/null
+++ b/404.html
@@ -0,0 +1,82 @@
+
+
+  
+
+
+Page Not Found :: Apache Logging Parent
+
+
+
+
+
+
+  /* `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 Logging Parent
+
+
+  
+https://logging.apache.org;>a subproject 
ofApache Logging Services
+  
+
+  
+
+
+
+  
+
+
+  
+
+
+
+
+  
+
+
+https://github.com/apache/logging-parent/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 45256d1..000
--- a/README.txt
+++ /dev/null
@@ -1 +0,0 @@
-An orphan branch to host auto-generated staging website content
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 @@
+@font-face{font-family:Roboto;font-style:normal;font-weight:400;src:url(../font/roboto-latin-400-normal.woff2)
 format("woff2"),url(../font/roboto-latin-400-normal.woff) 

(logging-log4j2) 01/01: Add installation documentation

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

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

commit d1661830c1713b030efc1380c0a78e934a3eb63c
Author: Piotr P. Karwasz 
AuthorDate: Tue Apr 9 09:11:00 2024 +0200

Add installation documentation
---
 .../modules/ROOT/pages/manual/_installation.adoc   | 34 ++
 1 file changed, 34 insertions(+)

diff --git a/src/site/antora/modules/ROOT/pages/manual/_installation.adoc 
b/src/site/antora/modules/ROOT/pages/manual/_installation.adoc
new file mode 100644
index 00..14819aa2ec
--- /dev/null
+++ b/src/site/antora/modules/ROOT/pages/manual/_installation.adoc
@@ -0,0 +1,34 @@
+= Installing Apache Log4j
+
+As explained in xref:manual/api-separation.adoc[API separation] the 
appropriate way to install Apache Log4j in your software depends on the type of 
software you are writing:
+
+* **Libraries** only require Log4j API and delegate the choice of the 
implementation to applications,
+
+* **Applications** need Log4j API for their own code, but also an 
implementation of each of the major Java logging APIs to support log statements 
from the libraries they use.
+
+== Installing Apache Log4j API
+
+The easiest way to install Log4j API is through a dependency management tool 
such as Maven or Gradle.
+The best way to install Log4j is by using a build tool such as Maven or Gradle.
+
+[tabs,sync-group-id=maven]
+
+[source,xml]
+.Maven
+
+
+org.apache.logging.log4j
+log4j-api
+{log4j-api-version}
+
+
+
+
+[tabs,sync-group-id=gradle]
+
+[source]
+.Gradle
+
+implementation 'org.apache.logging.log4j:log4j-api:{log4j-api-version}'
+
+
\ No newline at end of file



(logging-parent) branch main updated: 2nd attempt to fix YAML read error in `deploy-site-reusable.yaml`

2024-04-10 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 bce897f  2nd attempt to fix YAML read error in 
`deploy-site-reusable.yaml`
bce897f is described below

commit bce897f14ee918241334bc2432d19cd94452cd57
Author: Volkan Yazıcı 
AuthorDate: Wed Apr 10 16:43:01 2024 +0200

2nd attempt to fix YAML read error in `deploy-site-reusable.yaml`
---
 .github/workflows/deploy-site-reusable.yaml | 17 +
 1 file changed, 9 insertions(+), 8 deletions(-)

diff --git a/.github/workflows/deploy-site-reusable.yaml 
b/.github/workflows/deploy-site-reusable.yaml
index f619400..8b96b6b 100644
--- a/.github/workflows/deploy-site-reusable.yaml
+++ b/.github/workflows/deploy-site-reusable.yaml
@@ -158,14 +158,15 @@ jobs:
 
 # INFRA fix
 cat >"$INFRA_FIX_FILENAME" 

(logging-log4j2) branch doc/installation created (now d1661830c1)

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

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


  at d1661830c1 Add installation documentation

This branch includes the following new commits:

 new d1661830c1 Add installation documentation

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-site) branch asf-staging updated (3fe3fff389 -> 3071ef57a5)

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

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


 discard 3fe3fff389 Simplify `.asf.yaml`
 discard 585e6e9f2c Add `logging-log4j2` version `2.23.1` (RC1) website
 add 22db2585f7 Add `log4j` version `2.23.1` site
 new efd3f1f57a Simplify `.asf.yaml`
 new 3071ef57a5 Add redirect to per-artifact folders

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   (3fe3fff389)
\
 N -- N -- N   refs/heads/asf-staging (3071ef57a5)

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.

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:
 2.x/.htaccess | 7 +++
 1 file changed, 7 insertions(+)
 create mode 100644 2.x/.htaccess



(logging-log4j-site) 02/02: Add redirect to per-artifact folders

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

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

commit 3071ef57a5f0537ee1de39dfd08c5a67614cb0b9
Author: Piotr P. Karwasz 
AuthorDate: Wed Apr 10 22:12:16 2024 +0200

Add redirect to per-artifact folders
---
 2.x/.htaccess | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/2.x/.htaccess b/2.x/.htaccess
new file mode 100644
index 00..4b5df8d668
--- /dev/null
+++ b/2.x/.htaccess
@@ -0,0 +1,7 @@
+RewriteEngine On
+RewriteBase "/log4j/2.x/"
+# Per-artifact folders
+RewriteRule 
"log4j-(1\.2-api|appserver|cassandra|couchdb|docker)/(index(\.html)?)?" 
"log4j-$1" [R=permanent]
+RewriteRule 
"log4j-(flume-ng|iostreams|jakarta-web|jcl|jmx-gui)/(index(\.html)?)?" 
"log4j-$1" [R=permanent]
+RewriteRule 
"log4j-(jpl|jul|kubernetes|mongodb[34]|slf4j2?-impl)/(index(\.html)?)?" 
"log4j-$1" [R=permanent]
+RewriteRule 
"log4j-(spring-boot|spring-cloud-config(-client)?|taglib|to-jul|to-slf4j|web)/(index(\.html)?)?"
 "log4j-$1" [R=permanent]



(logging-log4j-site) 01/02: Simplify `.asf.yaml`

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

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

commit efd3f1f57a24d5a09e5e0b3dd549f29a690d0271
Author: Volkan Yazıcı 
AuthorDate: Wed Mar 6 13:53:25 2024 +0100

Simplify `.asf.yaml`
---
 .asf.yaml | 11 ---
 1 file changed, 11 deletions(-)

diff --git a/.asf.yaml b/.asf.yaml
index e549b8bfd4..10bf912aba 100644
--- a/.asf.yaml
+++ b/.asf.yaml
@@ -1,19 +1,8 @@
-notifications:
-  commits:  commits@logging.apache.org
-  issues:   notificati...@logging.apache.org
-  pullrequests: notificati...@logging.apache.org
-  jira_options: link label comment 
-
 staging:
   profile: ~
   whoami: asf-staging
   subdir: content/log4j
 
-staging:
-  profile: clean
-  whoami: clean-staging
-  subdir: content/log4j
-
 publish:
   profile: ~
   whoami: asf-site



(logging-log4j-site) branch asf-staging updated (66b3ad2a82 -> 332707feab)

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

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


 discard 66b3ad2a82 Add redirect to per-artifact folders
 new 332707feab Add redirect to per-artifact folders

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   (66b3ad2a82)
\
 N -- N -- N   refs/heads/asf-staging (332707feab)

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.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 2.x/.htaccess | 10 ++
 1 file changed, 6 insertions(+), 4 deletions(-)



(logging-log4j-site) 01/01: Add redirect to per-artifact folders

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

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

commit 332707feab4a77108c90aaf71e4b154ad4b2e9f8
Author: Piotr P. Karwasz 
AuthorDate: Wed Apr 10 22:12:16 2024 +0200

Add redirect to per-artifact folders
---
 2.x/.htaccess | 9 +
 1 file changed, 9 insertions(+)

diff --git a/2.x/.htaccess b/2.x/.htaccess
new file mode 100644
index 00..4af5042531
--- /dev/null
+++ b/2.x/.htaccess
@@ -0,0 +1,9 @@
+RewriteEngine On
+RewriteBase "/log4j/2.x/"
+# Per-artifact folders
+RewriteRule 
"^log4j-(1\.2-api|appserver|cassandra|couchdb|docker)/(index(\.html)?)?$" 
"log4j-$1" [R=permanent]
+RewriteRule 
"^log4j-(flume-ng|iostreams|jakarta-web|jcl|jmx-gui)/(index(\.html)?)?$" 
"log4j-$1" [R=permanent]
+RewriteRule 
"^log4j-(jpl|jul|kubernetes|mongodb[34]|slf4j2?-impl)/(index(\.html)?)?$" 
"log4j-$1" [R=permanent]
+RewriteRule 
"^log4j-(spring-boot|spring-cloud-config(-client)?|taglib|to-jul|to-slf4j|web)/(index(\.html)?)?$"
 "log4j-$1" [R=permanent]
+RewriteRule "^log4j-lala/(index(\.html)?)?$ "log4j-lala" [R=permanent]
+



(logging-log4j-site) branch asf-staging updated (3071ef57a5 -> 66b3ad2a82)

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

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


 discard 3071ef57a5 Add redirect to per-artifact folders
 new 66b3ad2a82 Add redirect to per-artifact folders

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   (3071ef57a5)
\
 N -- N -- N   refs/heads/asf-staging (66b3ad2a82)

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.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:



(logging-log4j-site) 01/01: Add redirect to per-artifact folders

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

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

commit 66b3ad2a82421256af1b56e19328fcf9f1cdce20
Author: Piotr P. Karwasz 
AuthorDate: Wed Apr 10 22:12:16 2024 +0200

Add redirect to per-artifact folders
---
 2.x/.htaccess | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/2.x/.htaccess b/2.x/.htaccess
new file mode 100644
index 00..4b5df8d668
--- /dev/null
+++ b/2.x/.htaccess
@@ -0,0 +1,7 @@
+RewriteEngine On
+RewriteBase "/log4j/2.x/"
+# Per-artifact folders
+RewriteRule 
"log4j-(1\.2-api|appserver|cassandra|couchdb|docker)/(index(\.html)?)?" 
"log4j-$1" [R=permanent]
+RewriteRule 
"log4j-(flume-ng|iostreams|jakarta-web|jcl|jmx-gui)/(index(\.html)?)?" 
"log4j-$1" [R=permanent]
+RewriteRule 
"log4j-(jpl|jul|kubernetes|mongodb[34]|slf4j2?-impl)/(index(\.html)?)?" 
"log4j-$1" [R=permanent]
+RewriteRule 
"log4j-(spring-boot|spring-cloud-config(-client)?|taglib|to-jul|to-slf4j|web)/(index(\.html)?)?"
 "log4j-$1" [R=permanent]



(logging-log4j-site) 01/01: Add redirect to per-artifact folders

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

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

commit 786c5de7f98d5b878e75a858e0f47a8b8e7d457e
Author: Piotr P. Karwasz 
AuthorDate: Wed Apr 10 22:12:16 2024 +0200

Add redirect to per-artifact folders
---
 2.x/.htaccess | 9 +
 1 file changed, 9 insertions(+)

diff --git a/2.x/.htaccess b/2.x/.htaccess
new file mode 100644
index 00..18098dd8d0
--- /dev/null
+++ b/2.x/.htaccess
@@ -0,0 +1,9 @@
+RewriteEngine On
+RewriteBase "/log4j/2.x/"
+# Per-artifact folders
+RewriteRule 
"^log4j-(1\.2-api|appserver|cassandra|couchdb|docker)/(index(\.html)?)?$" 
"log4j-$1" [R=permanent]
+RewriteRule 
"^log4j-(flume-ng|iostreams|jakarta-web|jcl|jmx-gui)/(index(\.html)?)?$" 
"log4j-$1" [R=permanent]
+RewriteRule 
"^log4j-(jpl|jul|kubernetes|mongodb[34]|slf4j2?-impl)/(index(\.html)?)?$" 
"log4j-$1" [R=permanent]
+RewriteRule 
"^log4j-(spring-boot|spring-cloud-config(-client)?|taglib|to-jul|to-slf4j|web)/(index(\.html)?)?$"
 "log4j-$1" [R=permanent]
+RewriteRule "^log4j-lala/(index(\.html)?)?$" "log4j-lala" [R=permanent]
+



(logging-log4j-site) branch asf-staging updated (332707feab -> 786c5de7f9)

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

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


 discard 332707feab Add redirect to per-artifact folders
 new 786c5de7f9 Add redirect to per-artifact folders

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   (332707feab)
\
 N -- N -- N   refs/heads/asf-staging (786c5de7f9)

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.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 2.x/.htaccess | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(logging-log4j-site) branch asf-staging updated (786c5de7f9 -> c83555f00e)

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

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


 discard 786c5de7f9 Add redirect to per-artifact folders
 new c83555f00e Add redirect to per-artifact folders

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   (786c5de7f9)
\
 N -- N -- N   refs/heads/asf-staging (c83555f00e)

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.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 2.x/.htaccess | 1 -
 1 file changed, 1 deletion(-)



(logging-log4j-site) 01/01: Add redirect to per-artifact folders

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

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

commit c83555f00ebe8967fddd9bc20e8f01bbccf81ea2
Author: Piotr P. Karwasz 
AuthorDate: Wed Apr 10 22:12:16 2024 +0200

Add redirect to per-artifact folders
---
 2.x/.htaccess | 8 
 1 file changed, 8 insertions(+)

diff --git a/2.x/.htaccess b/2.x/.htaccess
new file mode 100644
index 00..7d54b85793
--- /dev/null
+++ b/2.x/.htaccess
@@ -0,0 +1,8 @@
+RewriteEngine On
+RewriteBase "/log4j/2.x/"
+# Per-artifact folders
+RewriteRule 
"^log4j-(1\.2-api|appserver|cassandra|couchdb|docker)/(index(\.html)?)?$" 
"log4j-$1" [R=permanent]
+RewriteRule 
"^log4j-(flume-ng|iostreams|jakarta-web|jcl|jmx-gui)/(index(\.html)?)?$" 
"log4j-$1" [R=permanent]
+RewriteRule 
"^log4j-(jpl|jul|kubernetes|mongodb[34]|slf4j2?-impl)/(index(\.html)?)?$" 
"log4j-$1" [R=permanent]
+RewriteRule 
"^log4j-(spring-boot|spring-cloud-config(-client)?|taglib|to-jul|to-slf4j|web)/(index(\.html)?)?$"
 "log4j-$1" [R=permanent]
+



(logging-log4cxx) 01/01: Add 'persist-credentials: false' to all Github checkout actions

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

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

commit 432b11776e90c968be98c142de069bb79fa5f4fd
Author: Stephen Webb 
AuthorDate: Thu Apr 11 11:34:57 2024 +1000

Add 'persist-credentials: false' to all Github checkout actions
---
 .github/workflows/abi-compatibility.yml  | 1 +
 .github/workflows/log4cxx-cpp11.yml  | 1 +
 .github/workflows/log4cxx-macos.yml  | 1 +
 .github/workflows/log4cxx-ubuntu.yml | 1 +
 .github/workflows/log4cxx-windows-static.yml | 1 +
 .github/workflows/log4cxx-windows.yml| 1 +
 .github/workflows/package_code.yml   | 1 +
 .github/workflows/sonarcloud.yml | 1 +
 8 files changed, 8 insertions(+)

diff --git a/.github/workflows/abi-compatibility.yml 
b/.github/workflows/abi-compatibility.yml
index e323e660..5fbdecff 100644
--- a/.github/workflows/abi-compatibility.yml
+++ b/.github/workflows/abi-compatibility.yml
@@ -34,6 +34,7 @@ jobs:
 steps:
 - uses: actions/checkout@v2
   with:
+persist-credentials: false # do not persist auth token in the local 
git config
 path: main
 
 - name: 'Configure Dependencies - Ubuntu'
diff --git a/.github/workflows/log4cxx-cpp11.yml 
b/.github/workflows/log4cxx-cpp11.yml
index 23f97219..0474ca5f 100644
--- a/.github/workflows/log4cxx-cpp11.yml
+++ b/.github/workflows/log4cxx-cpp11.yml
@@ -24,6 +24,7 @@ jobs:
 steps:
 - uses: actions/checkout@v3
   with:
+persist-credentials: false # do not persist auth token in the local 
git config
 path: main
 
 - name: 'Configure Dependencies - Ubuntu'
diff --git a/.github/workflows/log4cxx-macos.yml 
b/.github/workflows/log4cxx-macos.yml
index 456a191a..2df58221 100644
--- a/.github/workflows/log4cxx-macos.yml
+++ b/.github/workflows/log4cxx-macos.yml
@@ -40,6 +40,7 @@ jobs:
 steps:
 - uses: actions/checkout@v3
   with:
+persist-credentials: false # do not persist auth token in the local 
git config
 path: main
 
 - name: 'configure and build'
diff --git a/.github/workflows/log4cxx-ubuntu.yml 
b/.github/workflows/log4cxx-ubuntu.yml
index be9e0225..7df025ba 100644
--- a/.github/workflows/log4cxx-ubuntu.yml
+++ b/.github/workflows/log4cxx-ubuntu.yml
@@ -62,6 +62,7 @@ jobs:
 steps:
 - uses: actions/checkout@v3
   with:
+persist-credentials: false # do not persist auth token in the local 
git config
 path: main
 
 - name: 'Configure Dependencies'
diff --git a/.github/workflows/log4cxx-windows-static.yml 
b/.github/workflows/log4cxx-windows-static.yml
index 009f28e1..2285daeb 100644
--- a/.github/workflows/log4cxx-windows-static.yml
+++ b/.github/workflows/log4cxx-windows-static.yml
@@ -34,6 +34,7 @@ jobs:
 steps:
 - uses: actions/checkout@v3
   with:
+persist-credentials: false # do not persist auth token in the local 
git config
 path: main
 
 - name: 'Restore Prebuilt Dependencies'
diff --git a/.github/workflows/log4cxx-windows.yml 
b/.github/workflows/log4cxx-windows.yml
index c942670b..38625ca6 100644
--- a/.github/workflows/log4cxx-windows.yml
+++ b/.github/workflows/log4cxx-windows.yml
@@ -34,6 +34,7 @@ jobs:
 steps:
 - uses: actions/checkout@v3
   with:
+persist-credentials: false # do not persist auth token in the local 
git config
 path: main
 
 - name: 'Restore Prebuilt Dependencies'
diff --git a/.github/workflows/package_code.yml 
b/.github/workflows/package_code.yml
index 31b48498..bfa1518a 100644
--- a/.github/workflows/package_code.yml
+++ b/.github/workflows/package_code.yml
@@ -33,6 +33,7 @@ jobs:
 steps:
 - uses: actions/checkout@v2
   with:
+persist-credentials: false # do not persist auth token in the local 
git config
 path: clean-checkout
 
 # Consider using CPack when it supports a white-list for included files
diff --git a/.github/workflows/sonarcloud.yml b/.github/workflows/sonarcloud.yml
index 442deb09..41945fa5 100644
--- a/.github/workflows/sonarcloud.yml
+++ b/.github/workflows/sonarcloud.yml
@@ -34,6 +34,7 @@ jobs:
 steps:
   - uses: actions/checkout@v2
 with:
+  persist-credentials: false # do not persist auth token in the local 
git config
   fetch-depth: 0  # Shallow clones should be disabled for a better 
relevancy of analysis
   path: main
 



(logging-log4cxx) branch improve_security created (now 432b1177)

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

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


  at 432b1177 Add 'persist-credentials: false' to all Github checkout 
actions

This branch includes the following new commits:

 new 432b1177 Add 'persist-credentials: false' to all Github checkout 
actions

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-site) branch asf-site updated (22db2585f7 -> c83555f00e)

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

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


from 22db2585f7 Add `log4j` version `2.23.1` site
 add efd3f1f57a Simplify `.asf.yaml`
 add c83555f00e Add redirect to per-artifact folders

No new revisions were added by this update.

Summary of changes:
 .asf.yaml | 11 ---
 2.x/.htaccess |  8 
 2 files changed, 8 insertions(+), 11 deletions(-)
 create mode 100644 2.x/.htaccess