You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by he...@apache.org on 2017/07/14 13:07:56 UTC

svn commit: r1801958 - in /commons/proper/jexl/trunk: RELEASE-NOTES.txt src/site/xdoc/changes.xml

Author: henrib
Date: Fri Jul 14 13:07:55 2017
New Revision: 1801958

URL: http://svn.apache.org/viewvc?rev=1801958&view=rev
Log:
JEXL-224:
JEXL-225:
	changes, release notes

Modified:
    commons/proper/jexl/trunk/RELEASE-NOTES.txt
    commons/proper/jexl/trunk/src/site/xdoc/changes.xml

Modified: commons/proper/jexl/trunk/RELEASE-NOTES.txt
URL: http://svn.apache.org/viewvc/commons/proper/jexl/trunk/RELEASE-NOTES.txt?rev=1801958&r1=1801957&r2=1801958&view=diff
==============================================================================
--- commons/proper/jexl/trunk/RELEASE-NOTES.txt (original)
+++ commons/proper/jexl/trunk/RELEASE-NOTES.txt Fri Jul 14 13:07:55 2017
@@ -27,14 +27,17 @@ Version 3.2 is a minor release.
 
 New Features in 3.2:
 ====================
+* JEXL-236:      Support CharSequence in size(), empty() and contains() operators
 * JEXL-234:      Extend application of operators startsWith and endsWith from String to CharSequence types
 * JEXL-226:      add ?? operator support
+* JEXL-224:      The ability to overload call() operator in customized JexlArithmetic implementation
 
 Bugs Fixed in 3.2:
 ==================
 * JEXL-231:      Syntax for accessing List elements is not mentioned in docs
 * JEXL-230:      List literal is not mentioned in docs
 * JEXL-227:      JexlScriptEngineFactory.getEngineVersion() should return actual version
+* JEXL-225:      Incorrect invoking methods with ObjectContext
 
 There are no other changes.
 

Modified: commons/proper/jexl/trunk/src/site/xdoc/changes.xml
URL: http://svn.apache.org/viewvc/commons/proper/jexl/trunk/src/site/xdoc/changes.xml?rev=1801958&r1=1801957&r2=1801958&view=diff
==============================================================================
--- commons/proper/jexl/trunk/src/site/xdoc/changes.xml (original)
+++ commons/proper/jexl/trunk/src/site/xdoc/changes.xml Fri Jul 14 13:07:55 2017
@@ -26,6 +26,9 @@
     </properties>
     <body>
         <release version="3.1.1" date="unreleased">
+            <action dev="henrib" type="add" issue="JEXL-236" due-to="Dmitri Blinov">
+                Support CharSequence in size(), empty() and contains() operators
+            </action>
             <action dev="henrib" type="add" issue="JEXL-234" due-to="Dmitri Blinov">
                 Extend application of operators startsWith and endsWith from String to CharSequence types
             </action>
@@ -41,6 +44,12 @@
             <action dev="henrib" type="add" issue="JEXL-226" due-to="Min Wei">
                 add ?? operator support
             </action>
+            <action dev="henrib" type="fix" issue="JEXL-225" due-to="Vyacheslav Shago">
+                Incorrect invoking methods with ObjectContext
+            </action>
+            <action dev="henrib" type="add" issue="JEXL-224" due-to="Dmitri Blinov">
+                The ability to overload call() operator in customized JexlArithmetic implementation
+            </action>
         </release>
         <release version="3.1" date="2017-04-14">
             <action dev="henrib" type="add" issue="JEXL-222" due-to="Dmitri Blinov">