You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by ma...@apache.org on 2014/09/15 01:47:34 UTC

[1/4] git commit: Add changelog entry for LOG4J2-745.

Repository: logging-log4j2
Updated Branches:
  refs/heads/master 9369a3705 -> 9abbb306c


Add changelog entry for LOG4J2-745.


Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo
Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/a4a5e364
Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/a4a5e364
Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/a4a5e364

Branch: refs/heads/master
Commit: a4a5e364d4f584e27c9e45662f799bcb6e96d24f
Parents: 9369a37
Author: Matt Sicker <ma...@apache.org>
Authored: Sun Sep 14 18:41:36 2014 -0500
Committer: Matt Sicker <ma...@apache.org>
Committed: Sun Sep 14 18:41:36 2014 -0500

----------------------------------------------------------------------
 src/changes/changes.xml | 4 ++++
 1 file changed, 4 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/a4a5e364/src/changes/changes.xml
----------------------------------------------------------------------
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 48350a1..f811a44 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -24,6 +24,10 @@
   </properties>
   <body>
     <release version="2.1" date="2014-??-??" description="Bug fixes and enhancements">
+      <action issue="LOG4J2-745" dev="mattsicker" type="fix" due-to="Scott Harrington">
+        Avoid ConverterKey plugin clashes by using a more predictable plugin loading infrastructure.
+        Plugins have been segmented into three parts: class path, user-specified packages, and OSGi bundles.
+      </action>
       <action issue="LOG4J2-753" dev="rpopma" type="fix">
         Improved CachedClock performance.
       </action>


[3/4] git commit: Add changelog entry for LOG4J2-827.

Posted by ma...@apache.org.
Add changelog entry for LOG4J2-827.


Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo
Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/a10f3284
Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/a10f3284
Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/a10f3284

Branch: refs/heads/master
Commit: a10f32848e53811a17d460afae9650e358a37886
Parents: 7d3d44b
Author: Matt Sicker <ma...@apache.org>
Authored: Sun Sep 14 18:45:54 2014 -0500
Committer: Matt Sicker <ma...@apache.org>
Committed: Sun Sep 14 18:45:54 2014 -0500

----------------------------------------------------------------------
 src/changes/changes.xml | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/a10f3284/src/changes/changes.xml
----------------------------------------------------------------------
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index f811a44..a39cbe1 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -24,6 +24,9 @@
   </properties>
   <body>
     <release version="2.1" date="2014-??-??" description="Bug fixes and enhancements">
+      <action issue="LOG4J2-827" dev="mattsicker" type="add">
+        Support use of TypeConverter classes through the standard Plugin system.
+      </action>
       <action issue="LOG4J2-745" dev="mattsicker" type="fix" due-to="Scott Harrington">
         Avoid ConverterKey plugin clashes by using a more predictable plugin loading infrastructure.
         Plugins have been segmented into three parts: class path, user-specified packages, and OSGi bundles.


[2/4] git commit: Clarify javadoc.

Posted by ma...@apache.org.
Clarify javadoc.


Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo
Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/7d3d44b7
Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/7d3d44b7
Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/7d3d44b7

Branch: refs/heads/master
Commit: 7d3d44b72aa754fc493f1955172010d38b29e314
Parents: a4a5e36
Author: Matt Sicker <ma...@apache.org>
Authored: Sun Sep 14 18:44:30 2014 -0500
Committer: Matt Sicker <ma...@apache.org>
Committed: Sun Sep 14 18:45:35 2014 -0500

----------------------------------------------------------------------
 .../log4j/core/config/plugins/convert/TypeConverter.java       | 1 +
 .../log4j/core/config/plugins/convert/TypeConverters.java      | 6 +++++-
 2 files changed, 6 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/7d3d44b7/log4j-core/src/main/java/org/apache/logging/log4j/core/config/plugins/convert/TypeConverter.java
----------------------------------------------------------------------
diff --git a/log4j-core/src/main/java/org/apache/logging/log4j/core/config/plugins/convert/TypeConverter.java b/log4j-core/src/main/java/org/apache/logging/log4j/core/config/plugins/convert/TypeConverter.java
index 70109f9..d941593 100644
--- a/log4j-core/src/main/java/org/apache/logging/log4j/core/config/plugins/convert/TypeConverter.java
+++ b/log4j-core/src/main/java/org/apache/logging/log4j/core/config/plugins/convert/TypeConverter.java
@@ -21,6 +21,7 @@ package org.apache.logging.log4j.core.config.plugins.convert;
  * Interface for doing automatic String conversion to a specific type.
  *
  * @param <T> Converts Strings into the given type {@code T}.
+ * @since 2.1 Moved to the {@code convert} package.
  */
 public interface TypeConverter<T> {
 

http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/7d3d44b7/log4j-core/src/main/java/org/apache/logging/log4j/core/config/plugins/convert/TypeConverters.java
----------------------------------------------------------------------
diff --git a/log4j-core/src/main/java/org/apache/logging/log4j/core/config/plugins/convert/TypeConverters.java b/log4j-core/src/main/java/org/apache/logging/log4j/core/config/plugins/convert/TypeConverters.java
index 260c09c..e106a90 100644
--- a/log4j-core/src/main/java/org/apache/logging/log4j/core/config/plugins/convert/TypeConverters.java
+++ b/log4j-core/src/main/java/org/apache/logging/log4j/core/config/plugins/convert/TypeConverters.java
@@ -39,11 +39,15 @@ import org.apache.logging.log4j.status.StatusLogger;
 /**
  * Collection of basic TypeConverter implementations. May be used to register additional TypeConverters or find
  * registered TypeConverters.
+ *
+ * @since 2.1 Moved to the {@code convert} package.
  */
 public final class TypeConverters {
 
     /**
-     * The {@link Plugin} category to use for {@link TypeConverter} plugins.
+     * The {@link Plugin#category() Plugin Category} to use for {@link TypeConverter} plugins.
+     *
+     * @since 2.1
      */
     public static final String CATEGORY = "TypeConverter";
 


[4/4] git commit: Add changelog entry for LOG4J2-825.

Posted by ma...@apache.org.
Add changelog entry for LOG4J2-825.


Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo
Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/9abbb306
Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/9abbb306
Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/9abbb306

Branch: refs/heads/master
Commit: 9abbb306cd8c89ec4fc499756ca46f471945ecfa
Parents: a10f328
Author: Matt Sicker <ma...@apache.org>
Authored: Sun Sep 14 18:47:19 2014 -0500
Committer: Matt Sicker <ma...@apache.org>
Committed: Sun Sep 14 18:47:19 2014 -0500

----------------------------------------------------------------------
 src/changes/changes.xml | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/9abbb306/src/changes/changes.xml
----------------------------------------------------------------------
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index a39cbe1..1102908 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -38,6 +38,9 @@
         Fixed memory leak in Tomcat 6 caused by clock background threads unintentionally
         started by Tomcat after web application stop.
       </action>
+      <action issue="LOG4J2-825" dev="mattsicker" type="add">
+        Add simple validation constraint annotations for the Plugin system.
+      </action>
       <action issue="LOG4J2-428" dev="ggregory" type="add" due-to="Mark Paluch">
         Implement a GELF layout.
       </action>