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 2021/06/04 16:47:55 UTC

[commons-jexl] branch master updated: JEXL-350: release notes, changes, pom

This is an automated email from the ASF dual-hosted git repository.

henrib pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-jexl.git


The following commit(s) were added to refs/heads/master by this push:
     new 93f0a96  JEXL-350: release notes, changes, pom
93f0a96 is described below

commit 93f0a96be935a6a476147bee4e3913262c910f4f
Author: henrib <he...@apache.org>
AuthorDate: Fri Jun 4 18:47:49 2021 +0200

    JEXL-350: release notes, changes, pom
---
 RELEASE-NOTES.txt       | 2 ++
 pom.xml                 | 2 +-
 src/changes/changes.xml | 6 ++++++
 3 files changed, 9 insertions(+), 1 deletion(-)

diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt
index 10cefc2..28126ac 100644
--- a/RELEASE-NOTES.txt
+++ b/RELEASE-NOTES.txt
@@ -78,6 +78,8 @@ New Features in 3.2:
 
 Bugs Fixed in 3.2:
 ==================
+* JEXL-350:      map[null] throws "unsolvable property" when a Sandbox is used
+* JEXL-349:       Script valid in 3.0 no longer valid
 * JEXL-348:      Parsing error when mixing namespaces with conditional expressions
 * JEXL-347:      Missing unsolvable property exception for reference when used with equals
 * JEXL-346:      namespace function syntax leads to strange error for "common case" of ternary operator
diff --git a/pom.xml b/pom.xml
index 15d7df4..4cebabf 100644
--- a/pom.xml
+++ b/pom.xml
@@ -78,7 +78,7 @@
         <!-- This is used by reporting plugins -->
         <project.reporting.outputEncoding>${commons.encoding}</project.reporting.outputEncoding>
 
-        <commons.bc.version>1.5</commons.bc.version>
+        <commons.bc.version>3.1</commons.bc.version>
         <commons.release.isDistModule>true</commons.release.isDistModule>
         <commons.distSvnStagingUrl>scm:svn:https://dist.apache.org/repos/dist/dev/commons/${commons.componentid}</commons.distSvnStagingUrl>
         <commons.releaseManagerName>Henri Biestro</commons.releaseManagerName>
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 94e7900..a72fd3f 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -26,6 +26,12 @@
     </properties>
     <body>
         <release version="3.2">
+            <action dev="henrib" type="fix" issue="JEXL-350" due-to="David Costanzo">
+                map[null] throws "unsolvable property" when a Sandbox is used
+            </action>
+            <action dev="henrib" type="fix" issue="JEXL-349" due-to="Cameron Samak">
+                Script valid in 3.0 no longer valid
+            </action>
             <action dev="henrib" type="fix" issue="JEXL-348" due-to="Cameron Samak">
                 Parsing error when mixing namespaces with conditional expressions
             </action>