This is an automated email from the ASF dual-hosted git repository.
freeandnil pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/logging-log4net.git
The following commit(s) were added to refs/heads/master by this push:
new 5eb00bd7 added release notes for #247 and #256
5eb00bd7 is described below
commit 5eb00bd7a02ad23f17f81a6afdd72327bb61a992
Author: Jan Friedrich <[email protected]>
AuthorDate: Mon Jun 16 14:39:04 2025 +0200
added release notes for #247 and #256
---
src/changelog/3.1.1/245-ndc-inherit.xml | 2 +-
src/changelog/3.1.1/247-stucked-date-patterns.xml | 11 +++++++++++
.../3.1.1/256-unsubscibe-appdomain-eventhandlers.xml | 10 ++++++++++
src/log4net/Core/LoggerManager.cs | 2 +-
4 files changed, 23 insertions(+), 2 deletions(-)
diff --git a/src/changelog/3.1.1/245-ndc-inherit.xml
b/src/changelog/3.1.1/245-ndc-inherit.xml
index 79faf00d..c688fc06 100644
--- a/src/changelog/3.1.1/245-ndc-inherit.xml
+++ b/src/changelog/3.1.1/245-ndc-inherit.xml
@@ -7,6 +7,6 @@
<issue id="246" link="https://github.com/apache/logging-log4net/pull/246"/>
<description format="asciidoc">
Fix InvalidCastException in NDC.Inherit(System.Collections.Stack)
- (reported by @jberg7, implemented by @freeandnil in
https://github.com/apache/logging-log4net/pull/246[#246])
+ (reported by @jberg7, fixed by @FreeAndNil in
https://github.com/apache/logging-log4net/pull/246[#246])
</description>
</entry>
\ No newline at end of file
diff --git a/src/changelog/3.1.1/247-stucked-date-patterns.xml
b/src/changelog/3.1.1/247-stucked-date-patterns.xml
new file mode 100644
index 00000000..d751f88f
--- /dev/null
+++ b/src/changelog/3.1.1/247-stucked-date-patterns.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<entry xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns="https://logging.apache.org/xml/ns"
+ xsi:schemaLocation="https://logging.apache.org/xml/ns
https://logging.apache.org/xml/ns/log4j-changelog-0.xsd"
+ type="fixed">
+ <issue id="247" link="https://github.com/apache/logging-log4net/issues/247"/>
+ <issue id="248" link="https://github.com/apache/logging-log4net/pull/248"/>
+ <description format="asciidoc">
+ Fix caching of time strings in AbsoluteTimeDateFormatter (reported by
@LeadAssimilator, fixed by @FreeAndNil in
https://github.com/apache/logging-log4net/pull/248[#248])
+ </description>
+</entry>
\ No newline at end of file
diff --git a/src/changelog/3.1.1/256-unsubscibe-appdomain-eventhandlers.xml
b/src/changelog/3.1.1/256-unsubscibe-appdomain-eventhandlers.xml
new file mode 100644
index 00000000..50311ee7
--- /dev/null
+++ b/src/changelog/3.1.1/256-unsubscibe-appdomain-eventhandlers.xml
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<entry xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns="https://logging.apache.org/xml/ns"
+ xsi:schemaLocation="https://logging.apache.org/xml/ns
https://logging.apache.org/xml/ns/log4j-changelog-0.xsd"
+ type="fixed">
+ <issue id="256" link="https://github.com/apache/logging-log4net/pull/256"/>
+ <description format="asciidoc">
+ Shutdown: Unsubscribe from AppDomain event handlers (by @Flohack74)
+ </description>
+</entry>
\ No newline at end of file
diff --git a/src/log4net/Core/LoggerManager.cs
b/src/log4net/Core/LoggerManager.cs
index 8537e8c0..212e66f8 100644
--- a/src/log4net/Core/LoggerManager.cs
+++ b/src/log4net/Core/LoggerManager.cs
@@ -339,7 +339,7 @@ public static ILogger GetLogger(Assembly
repositoryAssembly, Type type)
/// </remarks>
public static void Shutdown()
{
- //Cleanup event handlers since they only call this mathod anyways
+ // Cleanup event handlers since they only call this method anyway
AppDomain.CurrentDomain.ProcessExit -= OnProcessExit;
AppDomain.CurrentDomain.DomainUnload -= OnDomainUnload;