This is an automated email from the ASF dual-hosted git repository.
henrib pushed a commit to branch JEXL-448
in repository https://gitbox.apache.org/repos/asf/commons-jexl.git
The following commit(s) were added to refs/heads/JEXL-448 by this push:
new 2e4b3c2b JEXL-448: changes/release-notes;
2e4b3c2b is described below
commit 2e4b3c2b443514850561cfe34ac5701da3b60b05
Author: Henrib <[email protected]>
AuthorDate: Sun Nov 9 20:17:27 2025 +0100
JEXL-448: changes/release-notes;
---
RELEASE-NOTES.txt | 52 +------------------------------------------------
src/changes/changes.xml | 3 +++
2 files changed, 4 insertions(+), 51 deletions(-)
diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt
index fdaf0543..66c15267 100644
--- a/RELEASE-NOTES.txt
+++ b/RELEASE-NOTES.txt
@@ -1,54 +1,3 @@
-Apache Commons JEXL 3.6.0 Release Notes
----------------------------------------
-
-The Apache Commons JEXL team is pleased to announce the release of Apache
Commons JEXL 3.6.0.
-
-Introduction
-------------
-
-Apache Commons JEXL is a library that facilitates the implementation of
scripting features in
- applications and frameworks written in Java.
-
-This is a feature and maintenance release. Java 8 or later is required.
-
-New features
-------------
-
-o JEXL-440: Switch statement & expressions.
-
-Fixed Bugs
-----------
-
-o JEXL-447: Regression in script-defined functions. Thanks to William Price.
-o JEXL-446: ClassTool module inspection is too strict. Thanks to William
Price.
-o JEXL-442: Local variables are not resolved in interpolation string
expression. Thanks to Xu Pengcheng.
-o JEXL-441: Tokenization error if "\n" in template expression. Thanks to Xu
Pengcheng.
-o JEXL-439: When using reference capture, incorrect scoping when local
variable redefines a captured symbol. Thanks to Xu Pengcheng.
-o JEXL-437: Semicolons not actually optional between function calls on
separate lines. Thanks to William Price.
-o
org.apache.commons.jexl3.internal.introspection.AbstractExecutor.initMarker(Class,
String, Class...) throws IllegalArgumentException instead of Exception. Thanks
to Gary Gregory.
-o Reuse BigInteger constants instead of creating new instances in
JexlArithmetic.toBigInteger(Object). Thanks to Gary Gregory.
-
-Changes
--------
-
-o Bump org.apache.commons:commons-parent from 81 to 91 #344, #368,
#372. Thanks to Gary Gregory, Dependabot.
-o Bump org.apache.commons:commons-lang3 from 3.17.0 to 3.19.0 #355.
Thanks to Gary Gregory, Dependabot.
-o Bump com.google.code.gson:gson from 2.13.1 to 2.13.2 #371. Thanks
to Gary Gregory, Dependabot.
-
-
-Historical list of changes:
https://commons.apache.org/proper/commons-jexl/changes.html
-
-For complete information on Apache Commons JEXL, including instructions on how
to submit bug reports,
-patches, or suggestions for improvement, see the Apache Commons JEXL website:
-
-https://commons.apache.org/proper/commons-jexl/
-
-Download page: https://commons.apache.org/proper/commons-jexl/download_jexl.cgi
-
-Have fun!
--Apache Commons Team
-
-------------------------------------------------------------------------------
Apache Commons JEXL 3.6.0 Release Notes
---------------------------------------
@@ -71,6 +20,7 @@ o JEXL-440: Switch statement & expressions.
Fixed Bugs
----------
+o JEXL-448: Cache handling is perfectible.
o JEXL-447: Regression in script-defined functions. Thanks to William Price.
o JEXL-446: ClassTool module inspection is too strict. Thanks to William
Price.
o JEXL-442: Local variables are not resolved in interpolation string
expression. Thanks to Xu Pengcheng.
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index b74212e3..cba7980f 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -30,6 +30,9 @@
<release version="3.6.0" date="2025-11-08"
description="This is a feature and maintenance release. Java
8 or later is required.">
<!-- FIX -->
+ <action dev="henrib" type="fix" issue="JEXL-448">
+ Cache handling is perfectible.
+ </action>
<action dev="henrib" type="fix" issue="JEXL-447" due-to="William
Price">
Regression in script-defined functions.
</action>