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 2022/08/21 08:20:33 UTC

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

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 a6a5d73b JEXL: changes, release notes
a6a5d73b is described below

commit a6a5d73bcd0b0df74c94a4111651d6722548510d
Author: henrib <he...@apache.org>
AuthorDate: Sun Aug 21 10:20:28 2022 +0200

    JEXL: changes, release notes
---
 RELEASE-NOTES.txt       | 2 ++
 src/changes/changes.xml | 6 ++++++
 2 files changed, 8 insertions(+)

diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt
index ac14d259..6fca5ca7 100644
--- a/RELEASE-NOTES.txt
+++ b/RELEASE-NOTES.txt
@@ -40,6 +40,7 @@ the skill set required to write scripts.
 
 New Features in 3.3:
 ====================
+* JEXL-379:     Allow new to use class identifier
 * JEXL-373:     Add support for prefix/postfix increment/decrement operators
 * JEXL-372:     Add support for 'standard' for loop
 * JEXL-369:     Add 'let' and 'const' variable declarations
@@ -53,6 +54,7 @@ New Features in 3.3:
 
 Bugs Fixed in 3.3:
 ==================
+* JEXL-378:     Incremental operator and decremental operator do not honor the side-effect flag
 * JEXL-376:     Introspector captures methods on non-exported classes (modules, java9+)
 * JEXL-375:     Cannot access enums by their name when using sandbox
 * JEXL-374:     No exception if dereferencing null object using safe(false) and antish(false)
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 4e37b286..9d08d6ca 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -27,6 +27,9 @@
     <body>
         <release version="3.3" date="YYYY-MM-DD">
             <!-- ADD -->
+            <action dev="henrib" type="add" issue="JEXL-379">
+                Allow new to use class identifier
+            </action>
             <action dev="henrib" type="add" issue="JEXL-373" due-to="Dmitri Blinov">
                 Add support for prefix/postfix increment/decrement operators
             </action>
@@ -58,6 +61,9 @@
                 Configure accessible packages/classes/methods/fields
             </action>
             <!--  FIX -->
+            <action dev="henrib" type="fix" issue="JEXL-378" due-to="Hussachai Puripunpinyo">
+                Incremental operator and decremental operator do not honor the side-effect flag
+            </action>
             <action dev="henrib" type="fix" issue="JEXL-376">
                 Introspector captures methods on non-exported classes (modules, java9+)
             </action>