You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by tn...@apache.org on 2014/06/27 20:40:18 UTC

svn commit: r1606176 - in /commons/proper/logging/tags/LOGGING_1_2_RC1: ./ RELEASE-NOTES.txt build.xml pom.xml src/changes/changes.xml src/conf/MANIFEST.MF src/site/site.xml src/site/xdoc/download_logging.xml src/site/xdoc/index.xml

Author: tn
Date: Fri Jun 27 18:40:18 2014
New Revision: 1606176

URL: http://svn.apache.org/r1606176
Log:
Creating Commons Logging v1.2 RC1 tag.

Added:
    commons/proper/logging/tags/LOGGING_1_2_RC1/
      - copied from r1606175, commons/proper/logging/trunk/
Modified:
    commons/proper/logging/tags/LOGGING_1_2_RC1/RELEASE-NOTES.txt
    commons/proper/logging/tags/LOGGING_1_2_RC1/build.xml
    commons/proper/logging/tags/LOGGING_1_2_RC1/pom.xml
    commons/proper/logging/tags/LOGGING_1_2_RC1/src/changes/changes.xml
    commons/proper/logging/tags/LOGGING_1_2_RC1/src/conf/MANIFEST.MF
    commons/proper/logging/tags/LOGGING_1_2_RC1/src/site/site.xml
    commons/proper/logging/tags/LOGGING_1_2_RC1/src/site/xdoc/download_logging.xml
    commons/proper/logging/tags/LOGGING_1_2_RC1/src/site/xdoc/index.xml

Modified: commons/proper/logging/tags/LOGGING_1_2_RC1/RELEASE-NOTES.txt
URL: http://svn.apache.org/viewvc/commons/proper/logging/tags/LOGGING_1_2_RC1/RELEASE-NOTES.txt?rev=1606176&r1=1606175&r2=1606176&view=diff
==============================================================================
--- commons/proper/logging/tags/LOGGING_1_2_RC1/RELEASE-NOTES.txt (original)
+++ commons/proper/logging/tags/LOGGING_1_2_RC1/RELEASE-NOTES.txt Fri Jun 27 18:40:18 2014
@@ -1,22 +1,31 @@
               Apache Commons Logging
-                  Version 1.1.3
+                  Version 1.2
                   RELEASE NOTES
 
-The Commons Logging team is pleased to announce the release of Apache Commons Logging 1.1.3
+The Apache Commons Logging team is pleased to announce
+the release of Apache Commons Logging 1.2
 
-Commons Logging is a thin adapter allowing configurable bridging to other,
-well known logging systems.
+Apache Commons Logging is a thin adapter allowing configurable
+bridging to other, well known logging systems.
 
 This is a maintenance release containing bug fixes.
+Java 1.2 or later is required.
 
 Changes in this version include:
 
 Fixed Bugs:
-o LOGGING-151:  Use "org.apache.commons.logging" as bundle symbolic name. Thanks to Krzysztof Daniel.
+o LOGGING-37:   Improve performance of LogFactory#getFactory() by calling
+                Thread#currentThread()#getContextClassLoader() directly instead
+                of using reflection. As a consequence support for JDK 1.1 has
+                been dropped. Thanks to Matthias Ernst, Archie Cobbs.
+o LOGGING-156:  Fix SecurityAllowedTestCase when executed with OpenJDK 1.7 due
+                to an additional required RuntimePermission. Thanks to Mikolaj Izdebski.
+o LOGGING-157:  Fix javadoc to comply with javadoc tool from jdk 1.8. Thanks to Ville Skyttä.
+
 
 Historical list of changes: http://commons.apache.org/proper/commons-logging/changes-report.html
 
-For complete information on Commons Logging, including instructions on how to submit bug reports,
+For complete information on Apache Commons Logging, including instructions on how to submit bug reports,
 patches, or suggestions for improvement, see the Apache Commons Logging website:
 
 http://commons.apache.org/proper/commons-logging/
\ No newline at end of file

Modified: commons/proper/logging/tags/LOGGING_1_2_RC1/build.xml
URL: http://svn.apache.org/viewvc/commons/proper/logging/tags/LOGGING_1_2_RC1/build.xml?rev=1606176&r1=1606175&r2=1606176&view=diff
==============================================================================
--- commons/proper/logging/tags/LOGGING_1_2_RC1/build.xml (original)
+++ commons/proper/logging/tags/LOGGING_1_2_RC1/build.xml Fri Jun 27 18:40:18 2014
@@ -94,7 +94,7 @@
   <property name="component.title"         value="Logging Wrapper Library"/>
 
   <!-- The current version number of this component -->
-  <property name="component.version"       value="1.2-SNAPSHOT"/>
+  <property name="component.version"       value="1.2"/>
 
   <!-- The base directory for compilation targets -->
   <property name="build.home"              value="${basedir}/target"/>

Modified: commons/proper/logging/tags/LOGGING_1_2_RC1/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/logging/tags/LOGGING_1_2_RC1/pom.xml?rev=1606176&r1=1606175&r2=1606176&view=diff
==============================================================================
--- commons/proper/logging/tags/LOGGING_1_2_RC1/pom.xml (original)
+++ commons/proper/logging/tags/LOGGING_1_2_RC1/pom.xml Fri Jun 27 18:40:18 2014
@@ -32,7 +32,7 @@ under the License.
   <groupId>commons-logging</groupId>
   <artifactId>commons-logging</artifactId>
   <name>Apache Commons Logging</name>
-  <version>1.2-SNAPSHOT</version>
+  <version>1.2</version>
   <description>Apache Commons Logging is a thin adapter allowing configurable bridging to other,
     well known logging systems.</description>
   <url>http://commons.apache.org/proper/commons-logging/</url>
@@ -527,7 +527,7 @@ under the License.
     <maven.compiler.source>1.2</maven.compiler.source>
     <maven.compiler.target>1.2</maven.compiler.target>
     <commons.componentid>logging</commons.componentid>
-    <commons.release.version>1.1.3</commons.release.version>
+    <commons.release.version>1.2</commons.release.version>
     <commons.jira.id>LOGGING</commons.jira.id>
     <commons.jira.pid>12310484</commons.jira.pid>
     <!-- The RC version used in the staging repository URL. -->

Modified: commons/proper/logging/tags/LOGGING_1_2_RC1/src/changes/changes.xml
URL: http://svn.apache.org/viewvc/commons/proper/logging/tags/LOGGING_1_2_RC1/src/changes/changes.xml?rev=1606176&r1=1606175&r2=1606176&view=diff
==============================================================================
--- commons/proper/logging/tags/LOGGING_1_2_RC1/src/changes/changes.xml (original)
+++ commons/proper/logging/tags/LOGGING_1_2_RC1/src/changes/changes.xml Fri Jun 27 18:40:18 2014
@@ -43,7 +43,7 @@ The <action> type attribute can be add,u
     <title>Release Notes</title>
   </properties>
   <body>
-    <release version="1.2" date="TBD" description="TBD">
+    <release version="1.2" date="2014-07-04" description="This is a maintenance release containing bug fixes. Java 1.2 or later is required.">
       <action issue="LOGGING-37" dev="tn" type="fix" due-to="Matthias Ernst,Archie Cobbs">
         Improve performance of LogFactory#getFactory() by calling Thread#currentThread()#getContextClassLoader()
         directly instead of using reflection. As a consequence support for JDK 1.1 has been dropped.

Modified: commons/proper/logging/tags/LOGGING_1_2_RC1/src/conf/MANIFEST.MF
URL: http://svn.apache.org/viewvc/commons/proper/logging/tags/LOGGING_1_2_RC1/src/conf/MANIFEST.MF?rev=1606176&r1=1606175&r2=1606176&view=diff
==============================================================================
--- commons/proper/logging/tags/LOGGING_1_2_RC1/src/conf/MANIFEST.MF (original)
+++ commons/proper/logging/tags/LOGGING_1_2_RC1/src/conf/MANIFEST.MF Fri Jun 27 18:40:18 2014
@@ -1,20 +1,20 @@
 Manifest-Version: 1.0
-Export-Package: org.apache.commons.logging;version="1.1.3",org.apache.
- commons.logging.impl;version="1.1.3"
+Export-Package: org.apache.commons.logging;version="1.2.0",org.apache.
+ commons.logging.impl;version="1.2.0"
 Implementation-Title: Commons Logging
 Implementation-Vendor: The Apache Software Foundation
 Implementation-Vendor-Id: org.apache
 Specification-Title: Commons Logging
 Bundle-License: http://www.apache.org/licenses/LICENSE-2.0.txt
 Bundle-SymbolicName: org.apache.commons.logging
-X-Compile-Target-JDK: 1.1
-Implementation-Version: 1.1.3
+X-Compile-Target-JDK: 1.2
+Implementation-Version: 1.2
 Specification-Vendor: The Apache Software Foundation
 Bundle-Name: Commons Logging
 Created-By: Apache Maven Bundle Plugin
 X-Compile-Source-JDK: 1.2
 Bundle-Vendor: The Apache Software Foundation
-Bundle-Version: 1.1.3
+Bundle-Version: 1.2.0
 Bundle-ManifestVersion: 2
 Bundle-Description: Commons Logging is a thin adapter allowing configu
  rable bridging to other,    well known logging systems.
@@ -25,4 +25,4 @@ Import-Package: javax.servlet;resolution
  .0.1]",org.apache.log4j;resolution:=optional;version="[1.2.15,2.0.0)"
 Include-Resource: META-INF/NOTICE.txt=NOTICE.txt,META-INF/LICENSE.txt=
  LICENSE.txt
-Specification-Version: 1.1.3
+Specification-Version: 1.2

Modified: commons/proper/logging/tags/LOGGING_1_2_RC1/src/site/site.xml
URL: http://svn.apache.org/viewvc/commons/proper/logging/tags/LOGGING_1_2_RC1/src/site/site.xml?rev=1606176&r1=1606175&r2=1606176&view=diff
==============================================================================
--- commons/proper/logging/tags/LOGGING_1_2_RC1/src/site/site.xml (original)
+++ commons/proper/logging/tags/LOGGING_1_2_RC1/src/site/site.xml Fri Jun 27 18:40:18 2014
@@ -39,8 +39,8 @@ under the License.
             href="/RELEASE-NOTES.txt"/>
       <item name='JavaDoc (Latest release)'
             href='/javadocs/api-release/index.html'/>
-      <item name='JavaDoc (v1.1)'
-            href='/javadocs/api-1.1/index.html'/>
+      <item name='JavaDoc (v1.1.3)'
+            href='/javadocs/api-1.1.3/index.html'/>
       <item name='JavaDoc (v1.0.4)'
             href='/javadocs/api-1.0.4/index.html'/>
     </menu>

Modified: commons/proper/logging/tags/LOGGING_1_2_RC1/src/site/xdoc/download_logging.xml
URL: http://svn.apache.org/viewvc/commons/proper/logging/tags/LOGGING_1_2_RC1/src/site/xdoc/download_logging.xml?rev=1606176&r1=1606175&r2=1606176&view=diff
==============================================================================
--- commons/proper/logging/tags/LOGGING_1_2_RC1/src/site/xdoc/download_logging.xml (original)
+++ commons/proper/logging/tags/LOGGING_1_2_RC1/src/site/xdoc/download_logging.xml Fri Jun 27 18:40:18 2014
@@ -45,11 +45,11 @@ limitations under the License.
 -->
 <document>
   <properties>
-    <title>Download Commons Logging</title>
+    <title>Download Apache Commons Logging</title>
     <author email="dev@commons.apache.org">Commons Documentation Team</author>
   </properties>
   <body>
-    <section name="Download Commons Logging">
+    <section name="Download Apache Commons Logging">
     <subsection name="Using a Mirror">
       <p>
         We recommend you use a mirror to download our release
@@ -95,32 +95,32 @@ limitations under the License.
       </p>
     </subsection>
     </section>
-    <section name="Commons Logging 1.1.3 ">
+    <section name="Apache Commons Logging 1.2 ">
       <subsection name="Binaries">
         <table>
           <tr>
-              <td><a href="[preferred]/commons/logging/binaries/commons-logging-1.1.3-bin.tar.gz">commons-logging-1.1.3-bin.tar.gz</a></td>
-              <td><a href="http://www.apache.org/dist/commons/logging/binaries/commons-logging-1.1.3-bin.tar.gz.md5">md5</a></td>
-              <td><a href="http://www.apache.org/dist/commons/logging/binaries/commons-logging-1.1.3-bin.tar.gz.asc">pgp</a></td>
+              <td><a href="[preferred]/commons/logging/binaries/commons-logging-1.2-bin.tar.gz">commons-logging-1.2-bin.tar.gz</a></td>
+              <td><a href="http://www.apache.org/dist/commons/logging/binaries/commons-logging-1.2-bin.tar.gz.md5">md5</a></td>
+              <td><a href="http://www.apache.org/dist/commons/logging/binaries/commons-logging-1.2-bin.tar.gz.asc">pgp</a></td>
           </tr>
           <tr>
-              <td><a href="[preferred]/commons/logging/binaries/commons-logging-1.1.3-bin.zip">commons-logging-1.1.3-bin.zip</a></td>
-              <td><a href="http://www.apache.org/dist/commons/logging/binaries/commons-logging-1.1.3-bin.zip.md5">md5</a></td>
-              <td><a href="http://www.apache.org/dist/commons/logging/binaries/commons-logging-1.1.3-bin.zip.asc">pgp</a></td>
+              <td><a href="[preferred]/commons/logging/binaries/commons-logging-1.2-bin.zip">commons-logging-1.2-bin.zip</a></td>
+              <td><a href="http://www.apache.org/dist/commons/logging/binaries/commons-logging-1.2-bin.zip.md5">md5</a></td>
+              <td><a href="http://www.apache.org/dist/commons/logging/binaries/commons-logging-1.2-bin.zip.asc">pgp</a></td>
           </tr>
         </table>
       </subsection>
       <subsection name="Source">
         <table>
           <tr>
-              <td><a href="[preferred]/commons/logging/source/commons-logging-1.1.3-src.tar.gz">commons-logging-1.1.3-src.tar.gz</a></td>
-              <td><a href="http://www.apache.org/dist/commons/logging/source/commons-logging-1.1.3-src.tar.gz.md5">md5</a></td>
-              <td><a href="http://www.apache.org/dist/commons/logging/source/commons-logging-1.1.3-src.tar.gz.asc">pgp</a></td>
+              <td><a href="[preferred]/commons/logging/source/commons-logging-1.2-src.tar.gz">commons-logging-1.2-src.tar.gz</a></td>
+              <td><a href="http://www.apache.org/dist/commons/logging/source/commons-logging-1.2-src.tar.gz.md5">md5</a></td>
+              <td><a href="http://www.apache.org/dist/commons/logging/source/commons-logging-1.2-src.tar.gz.asc">pgp</a></td>
           </tr>
           <tr>
-              <td><a href="[preferred]/commons/logging/source/commons-logging-1.1.3-src.zip">commons-logging-1.1.3-src.zip</a></td>
-              <td><a href="http://www.apache.org/dist/commons/logging/source/commons-logging-1.1.3-src.zip.md5">md5</a></td>
-              <td><a href="http://www.apache.org/dist/commons/logging/source/commons-logging-1.1.3-src.zip.asc">pgp</a></td>
+              <td><a href="[preferred]/commons/logging/source/commons-logging-1.2-src.zip">commons-logging-1.2-src.zip</a></td>
+              <td><a href="http://www.apache.org/dist/commons/logging/source/commons-logging-1.2-src.zip.md5">md5</a></td>
+              <td><a href="http://www.apache.org/dist/commons/logging/source/commons-logging-1.2-src.zip.asc">pgp</a></td>
           </tr>
         </table>
       </subsection>

Modified: commons/proper/logging/tags/LOGGING_1_2_RC1/src/site/xdoc/index.xml
URL: http://svn.apache.org/viewvc/commons/proper/logging/tags/LOGGING_1_2_RC1/src/site/xdoc/index.xml?rev=1606176&r1=1606175&r2=1606176&view=diff
==============================================================================
--- commons/proper/logging/tags/LOGGING_1_2_RC1/src/site/xdoc/index.xml (original)
+++ commons/proper/logging/tags/LOGGING_1_2_RC1/src/site/xdoc/index.xml Fri Jun 27 18:40:18 2014
@@ -81,6 +81,11 @@ This gives short introductions to topics
 Binary and source distributions are available
        <a href="http://commons.apache.org/logging/download_logging.cgi">here</a>.
     </p>
+    <subsection name='1.2 Release - July 2014'>
+      <p>The main purpose of the 1.2 release is to drop support for Java 1.1.</p>
+      <p>For a full list of changes since the 1.1.3 release, please refer to the
+      <a href="changes-report.html">change-report</a>.</p> 
+    </subsection>
     <subsection name='1.1.3 Release - May 2013'>
       <p>The 1.1.3 release only updates the Bundle-SymbolicName in the manifest
       to "org.apache.commons.logging".</p>