You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by oh...@apache.org on 2014/09/15 21:56:25 UTC

svn commit: r1625134 - in /commons/proper/configuration/trunk: RELEASE-NOTES.txt src/changes/changes.xml

Author: oheger
Date: Mon Sep 15 19:56:25 2014
New Revision: 1625134

URL: http://svn.apache.org/r1625134
Log:
Added some more fixed issues to the release notes and changes.xml.

Modified:
    commons/proper/configuration/trunk/RELEASE-NOTES.txt
    commons/proper/configuration/trunk/src/changes/changes.xml

Modified: commons/proper/configuration/trunk/RELEASE-NOTES.txt
URL: http://svn.apache.org/viewvc/commons/proper/configuration/trunk/RELEASE-NOTES.txt?rev=1625134&r1=1625133&r2=1625134&view=diff
==============================================================================
--- commons/proper/configuration/trunk/RELEASE-NOTES.txt (original)
+++ commons/proper/configuration/trunk/RELEASE-NOTES.txt Mon Sep 15 19:56:25 2014
@@ -69,6 +69,9 @@ o CONFIGURATION-512:  It is now possible
 o CONFIGURATION-508:  Generic get() methods have been added to the Configuration interface.
                       These methods expect a target class and try to convert the value of
                       the specified property to this target class.
+o CONFIGURATION-204:  With the new reloading mechanism automatic and periodic reloading checks
+                      can be performed.
+o CONFIGURATION-202:  Reloading checks can now be performed in a background thread.
 
 Fixed Bugs:
 o CONFIGURATION-582:  Fixed a StringIndexOutOfBoundsException in PropertiesConfigurationLayout
@@ -191,6 +194,9 @@ o CONFIGURATION-418:  The handling of li
 o CONFIGURATION-330:  Concurrent access to configurations has been reworked.
 o CONFIGURATION-153:  It is now possible to define the strategy used for locating
                       configuration files.
+o CONFIGURATION-136:  Reloading can no longer corrupt a configuration instance. This is now
+                      handled by a configuration builder; the original configuration instance
+                      is not modified.
 o CONFIGURATION-26:   It is now possible to influence the conversion from a container object
                       (a collection or an array) to a single value (e.g. what is returned by
                       getString() if the current property has multiple values). Per default,

Modified: commons/proper/configuration/trunk/src/changes/changes.xml
URL: http://svn.apache.org/viewvc/commons/proper/configuration/trunk/src/changes/changes.xml?rev=1625134&r1=1625133&r2=1625134&view=diff
==============================================================================
--- commons/proper/configuration/trunk/src/changes/changes.xml (original)
+++ commons/proper/configuration/trunk/src/changes/changes.xml Mon Sep 15 19:56:25 2014
@@ -148,11 +148,11 @@
         files. Arbitrary file-based configurations are now supported.
       </action>
       <action dev="oheger" type="update" issue="CONFIGURATION-539">
-        The deprectated INIConfiguration class was removed.
+        The deprecated INIConfiguration class was removed.
         HierarchicalINIConfiguration was renamed to INIConfiguration.
       </action>
       <action dev="oheger" type="update" issue="CONFIGURATION-537">
-        The deprectated ConfigurationFactory class was removed.
+        The deprecated ConfigurationFactory class was removed.
       </action>
       <action dev="oheger" type="update" issue="CONFIGURATION-536">
         File-based configurations are now implemented in a different way.
@@ -289,10 +289,22 @@
       <action dev="oheger" type="update" issue="CONFIGURATION-330">
         Concurrent access to configurations has been reworked.
       </action>
+      <action dev="oheger" type="add" issue="CONFIGURATION-204">
+        With the new reloading mechanism automatic and periodic reloading checks
+        can be performed.
+      </action>
+      <action dev="oheger" type="add" issue="CONFIGURATION-202">
+        Reloading checks can now be performed in a background thread.
+      </action>
       <action dev="oheger" type="update" issue="CONFIGURATION-153">
         It is now possible to define the strategy used for locating
         configuration files.
       </action>
+      <action dev="oheger" type="update" issue="CONFIGURATION-136">
+        Reloading can no longer corrupt a configuration instance. This is now
+        handled by a configuration builder; the original configuration instance
+        is not modified.
+      </action>
       <action dev="oheger" type="update" issue="CONFIGURATION-26">
         It is now possible to influence the conversion from a container object
         (a collection or an array) to a single value (e.g. what is returned by