(logging-log4cxx) branch improve_async_appender updated (461a5ff5 -> d91e17ff)

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

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


from 461a5ff5 Add test to ensure all messages are delivered from multiple 
threads
 add d91e17ff Notifying the dispatch thread is simplier than I thought

No new revisions were added by this update.

Summary of changes:
 src/main/cpp/asyncappender.cpp | 2 +-
 src/test/cpp/asyncappendertestcase.cpp | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)



(logging-log4cxx) branch improve_async_appender updated (a63590e6 -> 461a5ff5)

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

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


from a63590e6 Add required header
 add 8bffdbdd Add test to ensure logging event order is preserved
 add 461a5ff5 Add test to ensure all messages are delivered from multiple 
threads

No new revisions were added by this update.

Summary of changes:
 src/test/cpp/asyncappendertestcase.cpp | 59 ++
 1 file changed, 59 insertions(+)



(logging-log4cxx) branch improve_async_appender updated (7fd034a7 -> a63590e6)

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

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


from 7fd034a7 Use a ring buffer to pass events to the dispatch thread
 add a63590e6 Add required header

No new revisions were added by this update.

Summary of changes:
 src/main/cpp/asyncappender.cpp | 1 +
 1 file changed, 1 insertion(+)



(logging-log4cxx) branch improve_async_appender updated: Use a ring buffer to pass events to the dispatch thread

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

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


The following commit(s) were added to refs/heads/improve_async_appender by this 
push:
 new 7fd034a7 Use a ring buffer to pass events to the dispatch thread
7fd034a7 is described below

commit 7fd034a763d7b86399fe33cfd29dd99872f3af52
Author: Stephen Webb 
AuthorDate: Sat Mar 9 14:19:34 2024 +1100

Use a ring buffer to pass events to the dispatch thread
---
 src/main/cpp/asyncappender.cpp | 189 -
 1 file changed, 34 insertions(+), 155 deletions(-)

diff --git a/src/main/cpp/asyncappender.cpp b/src/main/cpp/asyncappender.cpp
index a7265a51..7355f054 100644
--- a/src/main/cpp/asyncappender.cpp
+++ b/src/main/cpp/asyncappender.cpp
@@ -96,78 +96,13 @@ typedef std::map DiscardMap;
 }
 #endif
 
-#define USE_ATOMIC_QUEUE 1
-#if USE_ATOMIC_QUEUE
-#include 
-#include 
-namespace
-{
 static const int CACHE_LINE_SIZE = 128;
-class AtomicQueue
-{
-public:
-   struct alignas(CACHE_LINE_SIZE) Node
-   {
-   LoggingEventPtr data;
-   Node* next;
-   Node() : next(0) {}
-   Node(const LoggingEventPtr& event, Node* n)
-   : data(event)
-   , next(n)
-   { }
-   };
-
-   AtomicQueue(size_t bufferSize)
-   : m_head(0)
-   , m_nextNode(0)
-   , m_nodeStore(std::bit_ceil(bufferSize + 2))
-   {}
-
-   void push(const LoggingEventPtr& event)
-   {
-   auto index = m_nextNode++;
-   auto n = _nodeStore[index % m_nodeStore.size()];
-   *n = Node(event, m_head.load(std::memory_order_relaxed));
-   while (!m_head.compare_exchange_weak(n->next, n, 
std::memory_order_release))
-   {
-   }
-   }
-
-   Node* pop_all(void)
-   {
-   return m_head.exchange(0, std::memory_order_consume);
-   }
-
-   Node* pop_all_reverse(void)
-   {
-   Node* first = 0;
-   auto last = pop_all();
-   while (last)
-   {
-   auto tmp = last;
-   last = last->next;
-   tmp->next = first;
-   first = tmp;
-   }
-   return first;
-   }
-
-   void setBufferSize(size_t bufferSize)
-   {
-   m_nodeStore.resize(std::bit_ceil(bufferSize + 2));
-   }
-private:
-   alignas(CACHE_LINE_SIZE) std::atomic m_head;
-   alignas(CACHE_LINE_SIZE) std::atomic m_nextNode;
-   alignas(CACHE_LINE_SIZE) std::vector m_nodeStore;
-};
-} // namespace
-#endif
 
 struct AsyncAppender::AsyncAppenderPriv : public 
AppenderSkeleton::AppenderSkeletonPrivate
 {
AsyncAppenderPriv() :
AppenderSkeletonPrivate(),
+   buffer(DEFAULT_BUFFER_SIZE),
bufferSize(DEFAULT_BUFFER_SIZE),
appenders(pool),
dispatcher(),
@@ -176,9 +111,9 @@ struct AsyncAppender::AsyncAppenderPriv : public 
AppenderSkeleton::AppenderSkele
 #if LOG4CXX_EVENTS_AT_EXIT
, atExitRegistryRaii([this]{atExitActivated();})
 #endif
-#if USE_ATOMIC_QUEUE
-   , eventList(DEFAULT_BUFFER_SIZE)
-#endif
+   , eventCount(0)
+   , dispatchedCount(0)
+   , commitCount(0)
{
}
 
@@ -192,12 +127,10 @@ struct AsyncAppender::AsyncAppenderPriv : public 
AppenderSkeleton::AppenderSkele
}
 #endif
 
-#if LOG4CXX_ABI_VERSION <= 15 || !(USE_ATOMIC_QUEUE)
/**
 * Event buffer.
*/
LoggingEventList buffer;
-#endif
 
/**
 *  Mutex used to guard access to buffer and discardMap.
@@ -213,7 +146,7 @@ struct AsyncAppender::AsyncAppenderPriv : public 
AppenderSkeleton::AppenderSkele
DiscardMap discardMap;
 
/**
-* Buffer size.
+* The maximum number of undispatched events.
*/
int bufferSize;
 
@@ -241,17 +174,20 @@ struct AsyncAppender::AsyncAppenderPriv : public 
AppenderSkeleton::AppenderSkele
helpers::AtExitRegistry::Raii atExitRegistryRaii;
 #endif
 
-#if USE_ATOMIC_QUEUE
/**
-* Pending events
+* Used to calculate the buffer position at which to store the next 
event.
*/
-   alignas(CACHE_LINE_SIZE) AtomicQueue eventList;
+   alignas(CACHE_LINE_SIZE) std::atomic eventCount;
 
/**
-* The number of pending events.
+* Used to calculate the buffer position from which to extract the next 
event.
*/
-   alignas(CACHE_LINE_SIZE) std::atomic approxListSize;
-#endif
+   alignas(CACHE_LINE_SIZE) std::atomic dispatchedCount;
+
+   /**
+* Used to communicate to the dispatch thread when an event is 
committed in 

(logging-site) branch asf-site updated (958619e2 -> d4a6184e)

2024-03-08 Thread grobmeier
This is an automated email from the ASF dual-hosted git repository.

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


 discard 958619e2 Automatic Site Publish by Buildbot
 discard 5ec7735a Automatic Site Publish by Buildbot
 discard 1bef8c38 Automatic Site Publish by Buildbot
 discard 31aa955a Automatic Site Publish by Buildbot
 discard f50bbff6 Automatic Site Publish by Buildbot
 discard 58d0a28a Automatic Site Publish by Buildbot
 discard 6cf411f6 Automatic Site Publish by Buildbot
 discard bf59080d Automatic Site Publish by Buildbot
 discard 82b8bda2 Automatic Site Publish by Buildbot
 discard 8ad9c114 Automatic Site Publish by Buildbot
 discard ecd2da6b Automatic Site Publish by Buildbot
 discard 0287b02e Automatic Site Publish by Buildbot
 discard 957a9c09 Automatic Site Publish by Buildbot
 discard 020fe51d Automatic Site Publish by Buildbot
 discard 1f4bb6f9 Automatic Site Publish by Buildbot
 discard 1f744d2d Automatic Site Publish by Buildbot
 discard bfa32478 Automatic Site Publish by Buildbot
 discard 34ffc7dd Automatic Site Publish by Buildbot
 discard ce79a3aa Automatic Site Publish by Buildbot
 discard 2d514928 Automatic Site Publish by Buildbot
 discard 0a7904b3 Automatic Site Publish by Buildbot
 discard bfe4ea85 Automatic Site Publish by Buildbot
 discard b36e9db2 Automatic Site Publish by Buildbot
 discard 5598cd4f Automatic Site Publish by Buildbot
 discard d6c33c05 Automatic Site Publish by Buildbot
 discard e0f995de Automatic Site Publish by Buildbot
 discard 7f74f09d Automatic Site Publish by Buildbot
 discard e91293a6 Automatic Site Publish by Buildbot
 add 61d273de Automatic Site Publish by Buildbot (29 times)
 add d4a6184e Automatic Site Publish by Buildbot

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   (958619e2)
\
 N -- N -- N   refs/heads/asf-site (d4a6184e)

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:
 content/blog/2023/11/17/flume-joins-logging-services.html|  4 ++--
 content/blog/2023/11/28/new-pmc-member.html  |  4 ++--
 content/blog/2023/12/02/apache-common-logging-1.3.0.html |  4 ++--
 content/blog/2023/12/14/announcing-support-from-the-stf.html |  4 ++--
 content/blog/2023/12/18/20-years-of-innovation.html  |  4 ++--
 content/blog/index.html  |  4 ++--
 content/charter.html |  4 ++--
 content/dormant.html | 10 --
 content/feed.xml |  2 +-
 content/guidelines.html  |  4 ++--
 content/index.html   | 10 ++
 content/mailing-lists.html   |  4 ++--
 content/processes.html   |  4 ++--
 content/security.html|  4 ++--
 content/security/index.html  |  4 ++--
 content/security/known-vulnerabilities.html  |  4 ++--
 content/support.html |  4 ++--
 content/team-list.html   | 10 --
 content/what-is-logging.html |  4 ++--
 content/xml/ns/index.html|  4 ++--
 20 files changed, 51 insertions(+), 45 deletions(-)



(logging-log4j2) branch main updated (4e996ca641 -> 12cd428bda)

2024-03-08 Thread grobmeier
This is an automated email from the ASF dual-hosted git repository.

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


from 4e996ca641 Add review kit to the email template
 new 498569fd1d converted cloud
 new 756daa1902 migrated to adoc
 new 7e84ab9ffd migrated more pages from markdown
 new 66623db6c1 migrated md.vm docs
 new 6a5abb22af upgraded to snapshot version for  latest asciidoc
 new 4bd436a04a added experimental version of asciidoc only plugin
 new 05fab149c6 added experimental version of custom template
 new dce23349f8 added example for source code highlightin
 new 8ff6c12f9a added resources (images etc)
 new 5b8c79fd01 added local fonts instead of Google Fonts for privacy 
reasons
 new c9e840f89b added font awesome 4
 new dbf49a4aa6 cleaned up attributes
 new f942bdcada simplified template for upcomgin menubar implementation
 new d0175567d3 removed author information, as we don't use this kind of 
information in public
 new 4a7ce13ec1 added menus
 new 8253717897 added basic version of sidebar
 new 8670493674 changed fixed toc so its more beautiful
 new b5b9171d81 added transparent logo
 new 4566ea8f8b better handling of fixed toc
 new 81add011a3 made navigation responsive
 new 4660006187 dislabing toc for small screens
 new c839982a39 fixed line break
 new d81b45fe21 added execution id to asciidoc config
 new 953b47fb47 removed unused glyphicons from build
 new bc768bde82 removed unused site code
 new 65cd14d6a5 added scroll behavior for table of content, in case its 
getting bigger than expected
 new e994f6a093 added links to subpages
 new 398fb8f694 full width sub menu items
 new 741fc80d03 commented links that are already included in the new 
navigation
 new 8de41a3a14 fixed clicking of submenus
 new 544b245112 removed gsap and improved effects by custom code
 new 1a6362b007 corrected download link
 new 5741046e57 made use of constants, removed VM file extension
 new ea4bbaa361 added springs asciidoc extensions for block switching
 new 87d8fe321d added information to install log4j along with downloads
 new 65ec5527e4 removed tables.css
 new 6bbfe0a8d6 removed version numbers in trademark terms
 new a044429580 added bill of materials and other parts from artifacts file
 new 8ff1e9e47c removed obsolete maven-artifacts, replaced by downloads.adoc
 new 0bf430a2f1 linked articles, removed tables.css
 new 5d1f38b995 removed tables.css
 new b8834e6c37 linked faq
 new 041b293a6e removed unused glyphicons
 new a06620ee67 removed unused asciidoc-classic.css
 new 8774110538 removed unused images
 new 239f2df999 removed unused logos
 new 422e5c15de better formatting
 new fa25b39b27 prepared for linking up legacy docs
 new c4b12028b4 linked up parts of old docs
 new c5134c6900 added remaining legacy docs
 new 88e4030615 linked old version docs
 new 2d4ff63817 added more links for components etc
 new 1aeff35ca3 removed team report generation (used tl team list)
 new 96de635b1f added note on snapshots
 new 42ba9afaa3 linked up performance docs
 new 635683606c commented work-in-progress links
 new be3766d607 added missing links
 new fec9a5c551 corrected copyright statement
 new 98798bee06 footer links should be gray
 new 149cd894ed removed obsolete site.xml
 new 7d2f833870 added aria labels and alt text
 new c2409732b9 cleaned up mess
 new 79f68a616f removing the verbose flag
 new aed7656f6e fixed menu
 new 92f9d8e2a0 reverted back to latest stable parent
 new 3f81ac5275 jquery was removed
 new 05d2411189 added missing licenses
 new 7efdcb39e4 excluded font awesome from RAT
 new d0654b6fdb applied spotless
 new 4e0dad736e trying to fix windows encoding with a plugin encoding param
 new 0ebb186242 resolving asciidoc params in source blocks
 new 8738775705 moved UTF-8 encoding to resources plugin to avoid 
asciidoc/ruby encoding problem
 new 40317c4554 removed style guide (enforced by tooling)
 new facf5d42ba removed sonar
 new a24b9082ec added services to name
 new 9c7b4c2479 moved up components to develop section
 new 5defb128ad added more components
 new 8044dea9dd removed some markdown leftovers
 new d4d15bcb25 replaced link with xref
 new 9fc7d34797 removed footer blocks incl. css
 new f98aa7745c fixed broken link
 new c76606d4a5 tried to upgrade maven plugin for windows problems
 new e369158495 tried with enforcing latest versions of jruby and 
asciidoctorj
 new 8c56aed4eb reverted old fix, tried with project settings
 new 8b2826dea0 Fix link in `cloud.adoc`
 new a477ea943e Clean-up `pom.xml`
 new dd8fb44f93 Fix `file.encoding=UTF-8` for the JVM process
 new 12cd428bda added callouts to 

(logging-log4j2) branch ms12_conversion_of_md_files deleted (was 270a42a127)

2024-03-08 Thread grobmeier
This is an automated email from the ASF dual-hosted git repository.

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


 was 270a42a127 added callouts to sourcecode, made example simpler

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 ms12_conversion_of_md_files updated (93d88100bf -> 270a42a127)

2024-03-08 Thread grobmeier
This is an automated email from the ASF dual-hosted git repository.

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


from 93d88100bf Fix `file.encoding=UTF-8` for the JVM process
 add 270a42a127 added callouts to sourcecode, made example simpler

No new revisions were added by this update.

Summary of changes:
 src/site/asciidoc/index.adoc | 20 +++-
 1 file changed, 15 insertions(+), 5 deletions(-)



(logging-log4j2) branch ms12_conversion_of_md_files updated (117e004e6e -> 93d88100bf)

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

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


from 117e004e6e Fix link in `cloud.adoc`
 add 45b1a1ddce Clean-up `pom.xml`
 add 93d88100bf Fix `file.encoding=UTF-8` for the JVM process

No new revisions were added by this update.

Summary of changes:
 .mvn/jvm.config | 1 +
 pom.xml | 3 ---
 2 files changed, 1 insertion(+), 3 deletions(-)



(logging-log4j-audit) branch master updated (f7af85a -> 106b9cf)

2024-03-08 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 f7af85a  Update `org.json:json` to version `20240303` (#125)
 add 106b9cf  Update `org.eclipse.jgit:org.eclipse.jgit` to version 
`6.9.0.202403050737-r` (#126)

No new revisions were added by this update.

Summary of changes:
 pom.xml   | 2 +-
 src/changelog/.1.x.x/update_org_eclipse_jgit_org_eclipse_jgit.xml | 8 
 2 files changed, 5 insertions(+), 5 deletions(-)



(logging-log4j-audit) branch dependabot/maven/master/jgit.version-6.9.0.202403050737-r deleted (was 106b9cf)

2024-03-08 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/jgit.version-6.9.0.202403050737-r
in repository https://gitbox.apache.org/repos/asf/logging-log4j-audit.git


 was 106b9cf  Update `org.eclipse.jgit:org.eclipse.jgit` to version 
`6.9.0.202403050737-r` (#126)

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 dependabot/maven/master/jgit.version-6.9.0.202403050737-r updated (4d44123 -> 106b9cf)

2024-03-08 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/jgit.version-6.9.0.202403050737-r
in repository https://gitbox.apache.org/repos/asf/logging-log4j-audit.git


 discard 4d44123  Bump jgit.version from 6.8.0.202311291450-r to 
6.9.0.202403050737-r
 add 106b9cf  Update `org.eclipse.jgit:org.eclipse.jgit` to version 
`6.9.0.202403050737-r` (#126)

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   (4d44123)
\
 N -- N -- N   
refs/heads/dependabot/maven/master/jgit.version-6.9.0.202403050737-r (106b9cf)

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_org_eclipse_jgit_org_eclipse_jgit.xml | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)



(logging-log4j2) branch ms12_conversion_of_md_files updated (3a81d81066 -> 117e004e6e)

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

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


from 3a81d81066 reverted old fix, tried with project settings
 add 117e004e6e Fix link in `cloud.adoc`

No new revisions were added by this update.

Summary of changes:
 src/site/asciidoc/manual/cloud.adoc | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)



(logging-log4j-audit) branch dependabot/maven/master/jgit.version-6.9.0.202403050737-r created (now 4d44123)

2024-03-08 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/jgit.version-6.9.0.202403050737-r
in repository https://gitbox.apache.org/repos/asf/logging-log4j-audit.git


  at 4d44123  Bump jgit.version from 6.8.0.202311291450-r to 
6.9.0.202403050737-r

No new revisions were added by this update.



(logging-log4j2) branch ms12_conversion_of_md_files updated (2f413cbea9 -> 3a81d81066)

2024-03-08 Thread grobmeier
This is an automated email from the ASF dual-hosted git repository.

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


from 2f413cbea9 tried with enforcing latest versions of jruby and 
asciidoctorj
 add 3a81d81066 reverted old fix, tried with project settings

No new revisions were added by this update.

Summary of changes:
 pom.xml | 14 ++
 1 file changed, 2 insertions(+), 12 deletions(-)



(logging-log4j2) branch ms12_conversion_of_md_files updated (599958665a -> 2f413cbea9)

2024-03-08 Thread grobmeier
This is an automated email from the ASF dual-hosted git repository.

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


from 599958665a tried to upgrade maven plugin for windows problems
 add 2f413cbea9 tried with enforcing latest versions of jruby and 
asciidoctorj

No new revisions were added by this update.

Summary of changes:
 pom.xml | 11 +++
 1 file changed, 11 insertions(+)



(logging-log4j2) branch ms12_conversion_of_md_files updated (26fe886c07 -> 599958665a)

2024-03-08 Thread grobmeier
This is an automated email from the ASF dual-hosted git repository.

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


from 26fe886c07 fixed broken link
 add 599958665a tried to upgrade maven plugin for windows problems

No new revisions were added by this update.

Summary of changes:
 pom.xml | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)



(logging-log4net) branch Feature/111-Dropping-support-for-older-runtimes updated (af911722 -> 20cf9dca)

2024-03-08 Thread freeandnil
This is an automated email from the ASF dual-hosted git repository.

freeandnil pushed a change to branch 
Feature/111-Dropping-support-for-older-runtimes
in repository https://gitbox.apache.org/repos/asf/logging-log4net.git


from af911722 - Jiří Činčura removed from nuget owners - readded ASF 
license to solution file
 add 20cf9dca - updated build scripts - added Jan Friedrich as Committer

No new revisions were added by this update.

Summary of changes:
 Jenkinsfile|   69 -
 STATUS.txt |4 +-
 build.cmd  |  131 --
 ...tnet-core-sdk-1.1.ps1 => install-dotnet-sdk.ps1 |   10 +-
 install-net-framework-sdk-3.5.ps1  |   45 -
 log4net.build  | 1931 
 log4net.include|  409 -
 log4net.shfbproj   |   92 -
 8 files changed, 5 insertions(+), 2686 deletions(-)
 delete mode 100644 Jenkinsfile
 delete mode 100755 build.cmd
 rename install-dotnet-core-sdk-1.1.ps1 => install-dotnet-sdk.ps1 (69%)
 delete mode 100644 install-net-framework-sdk-3.5.ps1
 delete mode 100644 log4net.build
 delete mode 100644 log4net.include
 delete mode 100644 log4net.shfbproj



(logging-log4net) branch Feature/TabsToSpaces deleted (was 788cf6ed)

2024-03-08 Thread davydm
This is an automated email from the ASF dual-hosted git repository.

davydm pushed a change to branch Feature/TabsToSpaces
in repository https://gitbox.apache.org/repos/asf/logging-log4net.git


 was 788cf6ed format documents (test project)

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-log4net) branch master updated (a1c3ce57 -> 3877e0b8)

2024-03-08 Thread davydm
This is an automated email from the ASF dual-hosted git repository.

davydm pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/logging-log4net.git


from a1c3ce57 Merge pull request #116 from apache/Feature/v2.0.16
 add 8dbb52b2 Update copyright year in `NOTICE`
 add fc4c0f39 :memo: update build docs
 add 2121c474 tabs to spaces #111
 add 223a9abf format documents #111
 add e1be2df9 tabs to spaces (test project)
 add 788cf6ed format documents (test project)
 add 3877e0b8 Merge pull request #117 from apache/Feature/TabsToSpaces

No new revisions were added by this update.

Summary of changes:
 .../Appender/AdoNet/Log4NetCommand.cs  |  232 +-
 .../Appender/AdoNet/Log4NetConnection.cs   |  164 +-
 .../Appender/AdoNet/Log4NetParameter.cs|  148 +-
 .../Appender/AdoNet/Log4NetParameterCollection.cs  |   62 +-
 .../Appender/AdoNet/Log4NetTransaction.cs  |   54 +-
 src/log4net.Tests/Appender/AdoNetAppenderTest.cs   |  306 +-
 .../Appender/AppenderCollectionTest.cs |   70 +-
 .../Appender/BufferingAppenderTest.cs  |  168 +-
 src/log4net.Tests/Appender/CountingAppender.cs |  112 +-
 src/log4net.Tests/Appender/DebugAppenderTest.cs|  210 +-
 src/log4net.Tests/Appender/EventLogAppenderTest.cs |  142 +-
 src/log4net.Tests/Appender/MemoryAppenderTest.cs   |   95 +-
 src/log4net.Tests/Appender/RemotingAppenderTest.cs |  764 ++--
 .../Appender/RollingFileAppenderTest.cs| 3812 ++--
 .../Appender/SmtpPickupDirAppenderTest.cs  |  430 +--
 src/log4net.Tests/Appender/StringAppender.cs   |   88 +-
 src/log4net.Tests/Appender/TraceAppenderTest.cs|  134 +-
 .../Context/LogicalThreadContextTest.cs|  616 ++--
 src/log4net.Tests/Context/ThreadContextTest.cs |  406 +--
 src/log4net.Tests/Core/EvaluatorTest.cs|  222 +-
 src/log4net.Tests/Core/FixingTest.cs   |  282 +-
 src/log4net.Tests/Core/ShutdownTest.cs |   70 +-
 src/log4net.Tests/Core/StringFormatTest.cs | 1328 +++
 src/log4net.Tests/Filter/FilterTest.cs |  109 +-
 src/log4net.Tests/Hierarchy/Hierarchy.cs   |  128 +-
 src/log4net.Tests/Hierarchy/Logger.cs  |  568 +--
 .../Layout/DynamicPatternLayoutTest.cs |   26 +-
 src/log4net.Tests/Layout/PatternLayoutTest.cs  |  606 ++--
 src/log4net.Tests/Layout/XmlLayoutTest.cs  |  525 +--
 .../LoggerRepository/ConfigurationMessages.cs  |   84 +-
 src/log4net.Tests/NUnitTestRunnerInitializer.cs|   18 +-
 src/log4net.Tests/Signing.cs   |   26 +-
 src/log4net.Tests/Util/CyclicBufferTest.cs |  160 +-
 .../Util/EnvironmentPatternConverterTest.cs|  132 +-
 src/log4net.Tests/Util/LogLogTest.cs   |  152 +-
 src/log4net.Tests/Util/PatternConverterTest.cs |  172 +-
 src/log4net.Tests/Util/PatternStringTest.cs|  124 +-
 src/log4net.Tests/Util/PropertiesDictionaryTest.cs |   64 +-
 .../Util/RandomStringPatternConverterTest.cs   |  104 +-
 src/log4net.Tests/Util/SystemInfoTest.cs   |  283 +-
 src/log4net.Tests/Util/TransformTest.cs|   31 +-
 src/log4net.Tests/Utils.cs |  191 +-
 src/log4net/Appender/AdoNetAppender.cs | 2270 ++--
 src/log4net/Appender/AnsiColorTerminalAppender.cs  | 1080 +++---
 src/log4net/Appender/AppenderCollection.cs | 1748 -
 src/log4net/Appender/AppenderSkeleton.cs   | 1748 -
 src/log4net/Appender/AspNetTraceAppender.cs|  242 +-
 src/log4net/Appender/BufferingAppenderSkeleton.cs  | 1256 +++
 .../Appender/BufferingForwardingAppender.cs|  452 +--
 src/log4net/Appender/ColoredConsoleAppender.cs | 1234 +++
 src/log4net/Appender/ConsoleAppender.cs|  378 +-
 src/log4net/Appender/DebugAppender.cs  |  402 +--
 src/log4net/Appender/EventLogAppender.cs   | 1272 +++
 src/log4net/Appender/FileAppender.cs   | 3018 
 src/log4net/Appender/ForwardingAppender.cs |  466 +--
 src/log4net/Appender/IAppender.cs  |  100 +-
 src/log4net/Appender/IBulkAppender.cs  |   48 +-
 src/log4net/Appender/IFlushable.cs |   66 +-
 src/log4net/Appender/LocalSyslogAppender.cs| 1128 +++---
 .../Appender/ManagedColoredConsoleAppender.cs  |  558 +--
 src/log4net/Appender/MemoryAppender.cs |  392 +-
 src/log4net/Appender/NetSendAppender.cs|  754 ++--
 src/log4net/Appender/OutputDebugStringAppender.cs  |  158 +-
 src/log4net/Appender/RemoteSyslogAppender.cs   | 1144 +++---
 src/log4net/Appender/RemotingAppender.cs   |  598 +--
 src/log4net/Appender/RollingFileAppender.cs| 3409 -
 src/log4net/Appender/SmtpAppender.cs   | 1185 +++---
 src/log4net/Appender/SmtpPickupDirAppender.cs  |  

(logging-log4net) branch Feature/v2.0.16 deleted (was 8ba453e6)

2024-03-08 Thread davydm
This is an automated email from the ASF dual-hosted git repository.

davydm pushed a change to branch Feature/v2.0.16
in repository https://gitbox.apache.org/repos/asf/logging-log4net.git


 was 8ba453e6 :arrow_up: upgrade to release version of zarro

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-log4net) 01/01: Merge pull request #116 from apache/Feature/v2.0.16

2024-03-08 Thread davydm
This is an automated email from the ASF dual-hosted git repository.

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

commit a1c3ce57ee9bede8bd0b30ea430aaf86fa48fd4b
Merge: fe6bf055 8ba453e6
Author: Davyd McColl 
AuthorDate: Fri Mar 8 14:37:23 2024 +0200

Merge pull request #116 from apache/Feature/v2.0.16

Release notes for 2.0.16

 .gitignore |2 +
 .zarro-defaults|   11 +
 local-tasks/build-site.js  |   53 +-
 ...date-version-info.js => update-version-info.ts} |   25 +-
 log4net.build  |2 +-
 log4net.shfbproj   |2 +-
 package-lock.json  |   50 +-
 package.json   |   11 +-
 pom.xml|3 +-
 src/log4net.Tests/log4net.Tests.csproj |2 +-
 src/log4net.sln|9 +
 src/log4net/AssemblyInfo.cs|   46 +-
 src/log4net/AssemblyVersionInfo.cs |4 +-
 src/log4net/log4net.csproj |7 +-
 src/site/xdoc/download_log4net.xml |   20 +-
 src/site/xdoc/release/release-notes.xml| 4144 +++-
 16 files changed, 2361 insertions(+), 2030 deletions(-)

diff --cc src/log4net/log4net.csproj
index 2c9e4a4e,015b5056..61dfe5a9
--- a/src/log4net/log4net.csproj
+++ b/src/log4net/log4net.csproj
@@@ -71,7 -71,15 +71,8 @@@
  4096
  false
  false
+ true

 -  
 -.NETFramework
 -v3.5
 -Client
 -..\..\build\$(Configuration)\net35-client
 -
$(DefineConstants);NET_2_0;NET_3_5;CLIENT_PROFILE
 -  

  .NETFramework
  v4.0



(logging-log4net) branch master updated (fe6bf055 -> a1c3ce57)

2024-03-08 Thread davydm
This is an automated email from the ASF dual-hosted git repository.

davydm pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/logging-log4net.git


from fe6bf055 :memo: update build docs
 add 2640e822 - added release notes for 2.0.16 - changed csproj for 
deterministic builds
 add d565df42 :wrench: upgrade update-version-info task and zarro
 add 2f9666e2 :bookmark: update versioning to 2.0.16.0
 add 66891fdd :bug: should delete old site before asking mvn to make a new 
one
 add 77f01660 :fire: remove changelog item - it's not done yet!
 add f43726a3 :alembic: enable beta package building
 add bf678749 :wrench: fully rely on zarro's release-nuget task
 add 8ba453e6 :arrow_up: upgrade to release version of zarro
 new a1c3ce57 Merge pull request #116 from apache/Feature/v2.0.16

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:
 .gitignore |2 +
 .zarro-defaults|   11 +
 local-tasks/build-site.js  |   53 +-
 ...date-version-info.js => update-version-info.ts} |   25 +-
 log4net.build  |2 +-
 log4net.shfbproj   |2 +-
 package-lock.json  |   50 +-
 package.json   |   11 +-
 pom.xml|3 +-
 src/log4net.Tests/log4net.Tests.csproj |2 +-
 src/log4net.sln|9 +
 src/log4net/AssemblyInfo.cs|   46 +-
 src/log4net/AssemblyVersionInfo.cs |4 +-
 src/log4net/log4net.csproj |7 +-
 src/site/xdoc/download_log4net.xml |   20 +-
 src/site/xdoc/release/release-notes.xml| 4144 +++-
 16 files changed, 2361 insertions(+), 2030 deletions(-)
 rename local-tasks/{update-version-info.js => update-version-info.ts} (81%)



(logging-log4j2) branch ms12_conversion_of_md_files updated (4975a573ec -> 26fe886c07)

2024-03-08 Thread grobmeier
This is an automated email from the ASF dual-hosted git repository.

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


from 4975a573ec removed footer blocks incl. css
 add 26fe886c07 fixed broken link

No new revisions were added by this update.

Summary of changes:
 src/site/asciidoc/manual/cloud.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(logging-log4j2) branch ms12_conversion_of_md_files updated (3789547c8d -> 4975a573ec)

2024-03-08 Thread grobmeier
This is an automated email from the ASF dual-hosted git repository.

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


from 3789547c8d replaced link with xref
 add 4975a573ec removed footer blocks incl. css

No new revisions were added by this update.

Summary of changes:
 src/asciidoc/templates/document.html.erb  | 39 ---
 src/site/resources/css/logging-custom.css | 30 
 2 files changed, 69 deletions(-)



(logging-log4j2) branch ms12_conversion_of_md_files updated (98b1565789 -> 3789547c8d)

2024-03-08 Thread grobmeier
This is an automated email from the ASF dual-hosted git repository.

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


from 98b1565789 removed some markdown leftovers
 add 3789547c8d replaced link with xref

No new revisions were added by this update.

Summary of changes:
 src/site/asciidoc/components.adoc  |  42 ++---
 src/site/asciidoc/legacy-docs.adoc | 326 ++---
 2 files changed, 184 insertions(+), 184 deletions(-)



(logging-log4j2) branch ms12_conversion_of_md_files updated (1166c96f02 -> 98b1565789)

2024-03-08 Thread grobmeier
This is an automated email from the ASF dual-hosted git repository.

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


from 1166c96f02 moved UTF-8 encoding to resources plugin to avoid 
asciidoc/ruby encoding problem
 add b884af1121 removed style guide (enforced by tooling)
 add d40d775c0d removed sonar
 add 85b1161802 added services to name
 add 4b4e84ebb1 moved up components to develop section
 add 675aef94eb added more components
 add 98b1565789 removed some markdown leftovers

No new revisions were added by this update.

Summary of changes:
 src/asciidoc/templates/document.html.erb |6 +-
 src/site/asciidoc/components.adoc|2 +
 src/site/asciidoc/download.adoc  |6 +-
 src/site/asciidoc/javastyle.adoc | 1033 --
 4 files changed, 7 insertions(+), 1040 deletions(-)
 delete mode 100644 src/site/asciidoc/javastyle.adoc



(logging-log4j2) branch ms12_conversion_of_md_files updated (12a82228b7 -> 1166c96f02)

2024-03-08 Thread grobmeier
This is an automated email from the ASF dual-hosted git repository.

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


from 12a82228b7 resolving asciidoc params in source blocks
 add 1166c96f02 moved UTF-8 encoding to resources plugin to avoid 
asciidoc/ruby encoding problem

No new revisions were added by this update.

Summary of changes:
 pom.xml | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)



(logging-log4j2) branch ms12_conversion_of_md_files updated (dce343f3b6 -> 12a82228b7)

2024-03-08 Thread grobmeier
This is an automated email from the ASF dual-hosted git repository.

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


from dce343f3b6 trying to fix windows encoding with a plugin encoding param
 add 12a82228b7 resolving asciidoc params in source blocks

No new revisions were added by this update.

Summary of changes:
 src/site/asciidoc/download.adoc | 18 +-
 1 file changed, 9 insertions(+), 9 deletions(-)



(logging-log4net) tag rel/2.0.16 created (now 2a013ea2)

2024-03-08 Thread davydm
This is an automated email from the ASF dual-hosted git repository.

davydm pushed a change to tag rel/2.0.16
in repository https://gitbox.apache.org/repos/asf/logging-log4net.git


  at 2a013ea2 (commit)
No new revisions were added by this update.



(logging-log4net-site) 01/01: Merge branch 'asf-staging' into asf-site

2024-03-08 Thread davydm
This is an automated email from the ASF dual-hosted git repository.

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

commit 1ddfe3c14e0bde9e8e6632193fd3aafc7abf3f90
Merge: 409997e 6cee94e
Author: Davyd McColl 
AuthorDate: Fri Mar 8 13:03:26 2024 +0200

Merge branch 'asf-staging' into asf-site

 .asf.yaml |1 +
 .htaccess |2 +-
 2.0.x |2 +-
 2.x   |2 +-
 doap_log4net.rdf  |2 +-
 log4net-2.0.16/css/bootstrap.css  | 5893 +
 log4net-2.0.16/css/bootstrap.min.css  |9 +
 log4net-2.0.16/css/maven-theme.css|  141 +
 log4net-2.0.16/css/site.css   |  114 +
 log4net-2.0.16/doap_log4net.rdf   |  128 +
 log4net-2.0.16/download_log4net.html  |  347 +
 log4net-2.0.16/history.html   |  269 +
 log4net-2.0.16/images/collapsed.gif   |  Bin 0 -> 820 bytes
 log4net-2.0.16/images/expanded.gif|  Bin 0 -> 52 bytes
 log4net-2.0.16/images/external.png|  Bin 0 -> 230 bytes
 log4net-2.0.16/images/icon_error_sml.gif  |  Bin 0 -> 1010 bytes
 log4net-2.0.16/images/icon_info_sml.gif   |  Bin 0 -> 606 bytes
 log4net-2.0.16/images/icon_success_sml.gif|  Bin 0 -> 990 bytes
 log4net-2.0.16/images/icon_warning_sml.gif|  Bin 0 -> 576 bytes
 log4net-2.0.16/images/logo.jpg|  Bin 0 -> 8184 bytes
 log4net-2.0.16/images/ls-logo.jpg |  Bin 0 -> 41915 bytes
 log4net-2.0.16/images/maven-feather.png   |  Bin 0 -> 3330 bytes
 log4net-2.0.16/images/newwindow.png   |  Bin 0 -> 220 bytes
 log4net-2.0.16/img/glyphicons-halflings-white.png |  Bin 0 -> 8777 bytes
 log4net-2.0.16/img/glyphicons-halflings.png   |  Bin 0 -> 12799 bytes
 log4net-2.0.16/index.html |  259 +
 log4net-2.0.16/integration.html   |  226 +
 log4net-2.0.16/issue-tracking.html|  223 +
 log4net-2.0.16/js/bootstrap.js| 2027 +
 log4net-2.0.16/js/bootstrap.min.js|6 +
 log4net-2.0.16/js/jquery.js   | 9266 +
 log4net-2.0.16/js/jquery.min.js   |4 +
 log4net-2.0.16/js/prettify.js | 1477 
 log4net-2.0.16/js/prettify.min.js |   41 +
 log4net-2.0.16/js/site.js |  113 +
 log4net-2.0.16/license.html   |  224 +
 log4net-2.0.16/mail-lists.html|  254 +
 log4net-2.0.16/project-info.html  |  242 +
 log4net-2.0.16/project-reports.html   |  227 +
 log4net-2.0.16/rat-report.html| 3414 
 log4net-2.0.16/release/building.html  |  373 +
 log4net-2.0.16/release/config-examples.html   | 1549 
 log4net-2.0.16/release/example-apps.html  |  815 ++
 log4net-2.0.16/release/faq.html   | 1766 
 log4net-2.0.16/release/features.html  |  646 ++
 log4net-2.0.16/release/framework-support.html | 1664 
 log4net-2.0.16/release/howto/chainsaw.html|  345 +
 log4net-2.0.16/release/howto/index.html   |  263 +
 log4net-2.0.16/release/manual/configuration.html  | 1819 
 log4net-2.0.16/release/manual/contexts.html   |  518 ++
 log4net-2.0.16/release/manual/internals.html  |  528 ++
 log4net-2.0.16/release/manual/introduction.html   | 1622 
 log4net-2.0.16/release/manual/plugins.html|  339 +
 log4net-2.0.16/release/manual/repositories.html   |  337 +
 log4net-2.0.16/release/release-notes.html | 3198 +++
 log4net-2.0.16/release/security-reports.html  |  280 +
 log4net-2.0.16/roadmap.html   |  220 +
 log4net-2.0.16/source-repository.html |  236 +
 log4net-2.0.16/team-list.html |  275 +
 59 files changed, 41702 insertions(+), 4 deletions(-)



(logging-log4net-site) branch asf-site updated (409997e -> 1ddfe3c)

2024-03-08 Thread davydm
This is an automated email from the ASF dual-hosted git repository.

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


from 409997e  Merge branch 'asf-staging' into asf-site
 add 7c89f64  content -> output
 add 6ff4492  Revert to 'content'
 add 3e0f59c  Add whitespace to force deployment
 add ae14b66  :memo: preparing for release 2.0.16
 add 1523199  :bug: should have properly generated the documents
 add 6cee94e  :memo: correction: remove item which isn't in this release
 new 1ddfe3c  Merge branch 'asf-staging' into asf-site

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:
 .asf.yaml  |1 +
 .htaccess  |2 +-
 2.0.x  |2 +-
 2.x|2 +-
 doap_log4net.rdf   |2 +-
 .../css/bootstrap.css  |0
 .../css/bootstrap.min.css  |0
 .../css/maven-theme.css|0
 {log4net-2.0.10 => log4net-2.0.16}/css/site.css|0
 .../doap_log4net.rdf   |0
 log4net-2.0.16/download_log4net.html   |  347 ++
 log4net-2.0.16/history.html|  269 ++
 .../images/collapsed.gif   |  Bin
 .../images/expanded.gif|  Bin
 .../images/external.png|  Bin
 .../images/icon_error_sml.gif  |  Bin
 .../images/icon_info_sml.gif   |  Bin
 .../images/icon_success_sml.gif|  Bin
 .../images/icon_warning_sml.gif|  Bin
 {log4net-1.2.11 => log4net-2.0.16}/images/logo.jpg |  Bin
 .../images/ls-logo.jpg |  Bin
 .../images}/maven-feather.png  |  Bin
 .../images/newwindow.png   |  Bin
 .../img/glyphicons-halflings-white.png |  Bin
 .../img/glyphicons-halflings.png   |  Bin
 log4net-2.0.16/index.html  |  259 ++
 log4net-2.0.16/integration.html|  226 ++
 log4net-2.0.16/issue-tracking.html |  223 ++
 {log4net-2.0.10 => log4net-2.0.16}/js/bootstrap.js |0
 .../js/bootstrap.min.js|0
 {log4net-2.0.10 => log4net-2.0.16}/js/jquery.js|0
 .../js/jquery.min.js   |0
 {log4net-2.0.10 => log4net-2.0.16}/js/prettify.js  |0
 .../js/prettify.min.js |0
 {log4net-2.0.10 => log4net-2.0.16}/js/site.js  |0
 log4net-2.0.16/license.html|  224 ++
 log4net-2.0.16/mail-lists.html |  254 ++
 log4net-2.0.16/project-info.html   |  242 ++
 log4net-2.0.16/project-reports.html|  227 ++
 log4net-2.0.16/rat-report.html | 3414 
 log4net-2.0.16/release/building.html   |  373 +++
 log4net-2.0.16/release/config-examples.html| 1549 +
 log4net-2.0.16/release/example-apps.html   |  815 +
 log4net-2.0.16/release/faq.html| 1766 ++
 log4net-2.0.16/release/features.html   |  646 
 log4net-2.0.16/release/framework-support.html  | 1664 ++
 log4net-2.0.16/release/howto/chainsaw.html |  345 ++
 log4net-2.0.16/release/howto/index.html|  263 ++
 log4net-2.0.16/release/manual/configuration.html   | 1819 +++
 log4net-2.0.16/release/manual/contexts.html|  518 +++
 log4net-2.0.16/release/manual/internals.html   |  528 +++
 log4net-2.0.16/release/manual/introduction.html| 1622 ++
 log4net-2.0.16/release/manual/plugins.html |  339 ++
 log4net-2.0.16/release/manual/repositories.html|  337 ++
 log4net-2.0.16/release/release-notes.html  | 3198 ++
 log4net-2.0.16/release/security-reports.html   |  280 ++
 log4net-2.0.16/roadmap.html|  220 ++
 log4net-2.0.16/source-repository.html  |  236 ++
 log4net-2.0.16/team-list.html  |  275 ++
 59 files changed, 22483 insertions(+), 4 deletions(-)
 copy {log4net-2.0.10 => log4net-2.0.16}/css/bootstrap.css (100%)
 copy {log4net-2.0.10 => log4net-2.0.16}/css/bootstrap.min.css (100%)
 copy {log4net-1.2.11 => log4net-2.0.16}/css/maven-theme.css (100%)
 copy {log4net-2.0.10 => log4net-2.0.16}/css/site.css (100%)
 copy {log4net-2.0.10 => log4net-2.0.16}/doap_log4net.rdf (100%)
 create mode 100644 log4net-2.0.16/download_log4net.html
 

svn commit: r67799 - in /release/logging/log4net: binaries/ source/

2024-03-08 Thread davydm
Author: davydm
Date: Fri Mar  8 10:59:15 2024
New Revision: 67799

Log:
:arrow_up: release 2.0.16

Added:
release/logging/log4net/binaries/apache-log4net-binaries-2.0.16.zip   (with 
props)
release/logging/log4net/binaries/apache-log4net-binaries-2.0.16.zip.asc   
(with props)
release/logging/log4net/binaries/apache-log4net-binaries-2.0.16.zip.sha512
release/logging/log4net/binaries/apache-log4net.2.0.16.nupkg   (with props)
release/logging/log4net/binaries/apache-log4net.2.0.16.nupkg.asc   (with 
props)
release/logging/log4net/binaries/apache-log4net.2.0.16.nupkg.sha512
release/logging/log4net/source/apache-log4net-source-2.0.16.zip   (with 
props)
release/logging/log4net/source/apache-log4net-source-2.0.16.zip.asc   (with 
props)
release/logging/log4net/source/apache-log4net-source-2.0.16.zip.sha512
Removed:
release/logging/log4net/binaries/apache-log4net-binaries-2.0.14.zip
release/logging/log4net/binaries/apache-log4net-binaries-2.0.14.zip.asc
release/logging/log4net/binaries/apache-log4net-binaries-2.0.14.zip.sha512
release/logging/log4net/binaries/apache-log4net-binaries-2.0.15.zip
release/logging/log4net/binaries/apache-log4net-binaries-2.0.15.zip.asc
release/logging/log4net/binaries/apache-log4net-binaries-2.0.15.zip.sha512
release/logging/log4net/binaries/apache-log4net.2.0.14.nupkg
release/logging/log4net/binaries/apache-log4net.2.0.14.nupkg.asc
release/logging/log4net/binaries/apache-log4net.2.0.14.nupkg.sha512
release/logging/log4net/source/apache-log4net-source-2.0.14.zip
release/logging/log4net/source/apache-log4net-source-2.0.14.zip.asc
release/logging/log4net/source/apache-log4net-source-2.0.14.zip.sha512
release/logging/log4net/source/apache-log4net-source-2.0.15.zip
release/logging/log4net/source/apache-log4net-source-2.0.15.zip.asc
release/logging/log4net/source/apache-log4net-source-2.0.15.zip.sha512

Added: release/logging/log4net/binaries/apache-log4net-binaries-2.0.16.zip
==
Binary file - no diff available.

Propchange: release/logging/log4net/binaries/apache-log4net-binaries-2.0.16.zip
--
svn:mime-type = application/zip

Added: release/logging/log4net/binaries/apache-log4net-binaries-2.0.16.zip.asc
==
Binary file - no diff available.

Propchange: 
release/logging/log4net/binaries/apache-log4net-binaries-2.0.16.zip.asc
--
svn:mime-type = application/pgp-signature

Added: 
release/logging/log4net/binaries/apache-log4net-binaries-2.0.16.zip.sha512
==
--- release/logging/log4net/binaries/apache-log4net-binaries-2.0.16.zip.sha512 
(added)
+++ release/logging/log4net/binaries/apache-log4net-binaries-2.0.16.zip.sha512 
Fri Mar  8 10:59:15 2024
@@ -0,0 +1 @@
+d32d40b3e5c5de97b51c8ef5ce90ecf56d777b468cada83564d221eddfd181282cf8ef0adec26e5b9bda090fe1a4e88de41b7b97321b4df5403cdc1e5bbab811
 *apache-log4net-binaries-2.0.16.zip
\ No newline at end of file

Added: release/logging/log4net/binaries/apache-log4net.2.0.16.nupkg
==
Binary file - no diff available.

Propchange: release/logging/log4net/binaries/apache-log4net.2.0.16.nupkg
--
svn:mime-type = application/zip

Added: release/logging/log4net/binaries/apache-log4net.2.0.16.nupkg.asc
==
Binary file - no diff available.

Propchange: release/logging/log4net/binaries/apache-log4net.2.0.16.nupkg.asc
--
svn:mime-type = application/pgp-signature

Added: release/logging/log4net/binaries/apache-log4net.2.0.16.nupkg.sha512
==
--- release/logging/log4net/binaries/apache-log4net.2.0.16.nupkg.sha512 (added)
+++ release/logging/log4net/binaries/apache-log4net.2.0.16.nupkg.sha512 Fri Mar 
 8 10:59:15 2024
@@ -0,0 +1 @@
+e8ca05875041f3764f8941d794825066ca1748c9709eb3479a23d3182a1b03a224ddf99e3552e0130174323c59b5e7363df07459d2fcd57080b718ebba69820a
 *apache-log4net.2.0.16.nupkg
\ No newline at end of file

Added: release/logging/log4net/source/apache-log4net-source-2.0.16.zip
==
Binary file - no diff available.

Propchange: release/logging/log4net/source/apache-log4net-source-2.0.16.zip
--
svn:mime-type = application/zip

Added: 

(logging-log4net) tag rel/2.0.16-rc1 created (now 2a013ea2)

2024-03-08 Thread davydm
This is an automated email from the ASF dual-hosted git repository.

davydm pushed a change to tag rel/2.0.16-rc1
in repository https://gitbox.apache.org/repos/asf/logging-log4net.git


  at 2a013ea2 (commit)
No new revisions were added by this update.



(logging-log4net) tag delete created (now 2a013ea2)

2024-03-08 Thread davydm
This is an automated email from the ASF dual-hosted git repository.

davydm pushed a change to tag delete
in repository https://gitbox.apache.org/repos/asf/logging-log4net.git


  at 2a013ea2 (commit)
No new revisions were added by this update.



(logging-site) branch asf-staging updated: Automatic Site Publish by Buildbot

2024-03-08 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

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


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

commit d4a6184eea12cb0382b18db56668a7d17ca07590
Author: buildbot 
AuthorDate: Fri Mar 8 10:44:23 2024 +

Automatic Site Publish by Buildbot
---
 content/blog/2023/11/17/flume-joins-logging-services.html|  4 ++--
 content/blog/2023/11/28/new-pmc-member.html  |  4 ++--
 content/blog/2023/12/02/apache-common-logging-1.3.0.html |  4 ++--
 content/blog/2023/12/14/announcing-support-from-the-stf.html |  4 ++--
 content/blog/2023/12/18/20-years-of-innovation.html  |  4 ++--
 content/blog/index.html  |  4 ++--
 content/charter.html |  4 ++--
 content/dormant.html | 10 --
 content/feed.xml |  2 +-
 content/guidelines.html  |  4 ++--
 content/index.html   | 10 ++
 content/mailing-lists.html   |  4 ++--
 content/processes.html   |  4 ++--
 content/security.html|  4 ++--
 content/security/index.html  |  4 ++--
 content/security/known-vulnerabilities.html  |  4 ++--
 content/support.html |  4 ++--
 content/team-list.html   |  4 ++--
 content/what-is-logging.html |  4 ++--
 content/xml/ns/index.html|  4 ++--
 20 files changed, 45 insertions(+), 45 deletions(-)

diff --git a/content/blog/2023/11/17/flume-joins-logging-services.html 
b/content/blog/2023/11/17/flume-joins-logging-services.html
index 88bf70a1..0c21657e 100644
--- a/content/blog/2023/11/17/flume-joins-logging-services.html
+++ b/content/blog/2023/11/17/flume-joins-logging-services.html
@@ -57,8 +57,6 @@
 
 
 
-Apache Chainsaw
-
 
 
 Apache Log4j® 
Audit
@@ -95,6 +93,8 @@
 
 
 
+Apache Chainsaw
+
 
 
 
diff --git a/content/blog/2023/11/28/new-pmc-member.html 
b/content/blog/2023/11/28/new-pmc-member.html
index 3ab12a2e..4f2ca203 100644
--- a/content/blog/2023/11/28/new-pmc-member.html
+++ b/content/blog/2023/11/28/new-pmc-member.html
@@ -57,8 +57,6 @@
 
 
 
-Apache Chainsaw
-
 
 
 Apache Log4j® 
Audit
@@ -95,6 +93,8 @@
 
 
 
+Apache Chainsaw
+
 
 
 
diff --git a/content/blog/2023/12/02/apache-common-logging-1.3.0.html 
b/content/blog/2023/12/02/apache-common-logging-1.3.0.html
index 96bc9421..7c32c2cb 100644
--- a/content/blog/2023/12/02/apache-common-logging-1.3.0.html
+++ b/content/blog/2023/12/02/apache-common-logging-1.3.0.html
@@ -57,8 +57,6 @@
 
 
 
-Apache Chainsaw
-
 
 
 Apache Log4j® 
Audit
@@ -95,6 +93,8 @@
 
 
 
+Apache Chainsaw
+
 
 
 
diff --git a/content/blog/2023/12/14/announcing-support-from-the-stf.html 
b/content/blog/2023/12/14/announcing-support-from-the-stf.html
index 84dc6136..178fcf79 100644
--- a/content/blog/2023/12/14/announcing-support-from-the-stf.html
+++ b/content/blog/2023/12/14/announcing-support-from-the-stf.html
@@ -57,8 +57,6 @@
 
 
 
-Apache Chainsaw
-
 
 
   

(logging-site) branch main updated: moved chainsaw to dormant

2024-03-08 Thread grobmeier
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/main by this push:
 new 27e39f3d moved chainsaw to dormant
27e39f3d is described below

commit 27e39f3d8c9970ff83d9de9b9ecc7053acb3c609
Author: Christian Grobmeier 
AuthorDate: Fri Mar 8 11:44:05 2024 +0100

moved chainsaw to dormant
---
 _data/projects.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/_data/projects.yml b/_data/projects.yml
index 99aba331..ee93a7b4 100644
--- a/_data/projects.yml
+++ b/_data/projects.yml
@@ -21,7 +21,7 @@
 - name: Apache Chainsaw
   description: A GUI-based log viewer intended as a companion to Log4j®.
   url: /chainsaw
-  status: active
+  status: dormant
   section: processing
 - name: Apache Log4j® Audit
   description: Audit logging framework built upon Apache Log4j®.



(logging-log4j2) branch ms12_conversion_of_md_files updated (96b7a0273a -> dce343f3b6)

2024-03-08 Thread grobmeier
This is an automated email from the ASF dual-hosted git repository.

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


from 96b7a0273a applied spotless
 add dce343f3b6 trying to fix windows encoding with a plugin encoding param

No new revisions were added by this update.

Summary of changes:
 pom.xml | 1 +
 1 file changed, 1 insertion(+)



(logging-log4j2) branch ms12_conversion_of_md_files updated (eb56db92ba -> 96b7a0273a)

2024-03-08 Thread grobmeier
This is an automated email from the ASF dual-hosted git repository.

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


from eb56db92ba excluded font awesome from RAT
 add 96b7a0273a applied spotless

No new revisions were added by this update.

Summary of changes:
 pom.xml | 15 +++
 1 file changed, 7 insertions(+), 8 deletions(-)



(logging-log4j2) branch ms12_conversion_of_md_files updated (e50426e236 -> eb56db92ba)

2024-03-08 Thread grobmeier
This is an automated email from the ASF dual-hosted git repository.

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


from e50426e236 reverted back to latest stable parent
 add 121396b618 jquery was removed
 add cfefb2e8d3 added missing licenses
 add eb56db92ba excluded font awesome from RAT

No new revisions were added by this update.

Summary of changes:
 pom.xml   |  7 ---
 src/site/resources/css/fonts.css  | 19 ++-
 src/site/resources/css/logging-custom.css | 18 ++
 3 files changed, 40 insertions(+), 4 deletions(-)



(logging-log4j2) branch ms12_conversion_of_md_files updated (8f20dbf57b -> e50426e236)

2024-03-08 Thread grobmeier
This is an automated email from the ASF dual-hosted git repository.

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


from 8f20dbf57b fixed menu
 add e50426e236 reverted back to latest stable parent

No new revisions were added by this update.

Summary of changes:
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)