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

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

commit 810c5761e77b60c7bd21ac85b02a9f95f8541b89
Author: Gary Gregory <[email protected]>
AuthorDate: Wed Jun 17 14:31:00 2026 +0000

    Prepare for the next release candidate
---
 CONTRIBUTING.md                 |  8 ++++----
 README.md                       |  7 ++++---
 RELEASE-NOTES.txt               | 45 +++++++++++++++++++++++++++++++++++++++++
 src/changes/changes.xml         |  2 +-
 src/site/xdoc/download_jexl.xml | 26 ++++++++++++------------
 5 files changed, 67 insertions(+), 21 deletions(-)

diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 046d6d15..bcef6a34 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -48,13 +48,13 @@ Getting Started
 ---------------
 
 + Make sure you have a [JIRA account](https://issues.apache.org/jira/).
-+ Make sure you have a [GitHub account](https://github.com/signup). This is 
not essential, but makes providing patches much easier.
++ Make sure you have a [GitHub account](https://github.com/signup/free). This 
is not essential, but makes providing patches much easier.
 + If you're planning to implement a new feature it makes sense to discuss your 
changes on the [dev list](https://commons.apache.org/mail-lists.html) first. 
This way you can make sure you're not wasting your time on something that isn't 
considered to be in Apache Commons JEXL's scope.
 + Submit a [Jira Ticket][jira] for your issue, assuming one does not already 
exist.
   + Clearly describe the issue including steps to reproduce when it is a bug.
   + Make sure you fill in the earliest version that you know has the issue.
 + Find the corresponding [repository on 
GitHub](https://github.com/apache/?query=commons-),
-[fork](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/working-with-forks/fork-a-repo)
 and check out your forked repository. If you don't have a GitHub account, you 
can still clone the Commons repository.
+[fork](https://help.github.com/articles/fork-a-repo/) and check out your 
forked repository. If you don't have a GitHub account, you can still clone the 
Commons repository.
 
 Making Changes
 --------------
@@ -108,8 +108,8 @@ Additional Resources
 + [Contributing patches](https://commons.apache.org/patches.html)
 + [Apache Commons JEXL JIRA project page][jira]
 + [Contributor License Agreement][cla]
-+ [General GitHub documentation](https://docs.github.com/)
-+ [GitHub pull request 
documentation](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request)
++ [General GitHub documentation](https://help.github.com/)
++ [GitHub pull request 
documentation](https://help.github.com/articles/creating-a-pull-request/)
 
 [cla]:https://www.apache.org/licenses/#clas
 [jira]:https://issues.apache.org/jira/browse/JEXL
diff --git a/README.md b/README.md
index 6ef9ef6a..6152d33e 100644
--- a/README.md
+++ b/README.md
@@ -45,7 +45,7 @@ Apache Commons JEXL
 
 [![Java 
CI](https://github.com/apache/commons-jexl/actions/workflows/maven.yml/badge.svg)](https://github.com/apache/commons-jexl/actions/workflows/maven.yml)
 [![Maven 
Central](https://img.shields.io/maven-central/v/org.apache.commons/commons-jexl3?label=Maven%20Central)](https://search.maven.org/artifact/org.apache.commons/commons-jexl3)
-[![Javadocs](https://javadoc.io/badge/org.apache.commons/commons-jexl3/3.6.2.svg)](https://javadoc.io/doc/org.apache.commons/commons-jexl3/3.6.2)
+[![Javadocs](https://javadoc.io/badge/org.apache.commons/commons-jexl3/3.6.3.svg)](https://javadoc.io/doc/org.apache.commons/commons-jexl3/3.6.3)
 
[![CodeQL](https://github.com/apache/commons-jexl/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/apache/commons-jexl/actions/workflows/codeql-analysis.yml)
 [![OpenSSF 
Scorecard](https://api.securityscorecards.dev/projects/github.com/apache/commons-jexl/badge)](https://api.securityscorecards.dev/projects/github.com/apache/commons-jexl)
 
@@ -68,7 +68,7 @@ Alternatively, you can pull it from the central Maven 
repositories:
 <dependency>
   <groupId>org.apache.commons</groupId>
   <artifactId>commons-jexl3</artifactId>
-  <version>3.6.2</version>
+  <version>3.6.3</version>
 </dependency>
 ```
 
@@ -115,4 +115,5 @@ Additional Resources
 Apache Commons Components
 -------------------------
 
-Please see the [list of components](https://commons.apache.org/components.html)
++ [List of Apache Commons 
components](https://commons.apache.org/components.html): homepages and 
documentation for all components.
++ 
[`REPOSITORIES.md`](https://github.com/apache/commons-parent/blob/master/REPOSITORIES.md):
 overview of the code repositories and their build status.
diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt
index 32bcaa76..68ba6921 100644
--- a/RELEASE-NOTES.txt
+++ b/RELEASE-NOTES.txt
@@ -1,3 +1,48 @@
+Apache Commons JEXL 3.6.3 Release Notes
+---------------------------------------
+
+The Apache Commons JEXL team is pleased to announce the release of Apache 
Commons JEXL 3.6.3.
+
+Introduction
+------------
+
+Apache Commons JEXL is a library that enables scripting features in Java 
applications and frameworks..
+
+This is a feature and maintenance release. Java 8 or later is required.
+
+
+Fixed Bugs
+----------
+
+o JEXL-461:  Updates/improvements to the site documentation for JEXL Syntax. 
Thanks to David Costanzo. 
+o JEXL-459:  Empty/size functions swallow all exceptions with no trace. Thanks 
to Mirek Hankus. 
+o JEXL-458:  Improve permissions expressivity Thanks to Daniil Averin. 
+o JEXL-457:  Reduce default exposure for RESTRICTED JexlPermissions Thanks to 
Daniil Averin. 
+o JEXL-456:  Change in template parser behavior. Thanks to Vincent Bussol. 
+o          Fix the @return tags in the Javadoc for 
JexlArithmetic.toBigInteger() overloads (#403). Thanks to David Costanzo. 
+
+Changes
+-------
+
+o          Bump org.apache.commons:commons-parent from 96 to 102. Thanks to 
Gary Gregory. 
+o          Bump commons-logging:commons-logging from 1.3.5 to 1.4.0. Thanks to 
Gary Gregory. 
+o          Bump com.google.code.gson:gson from 2.13.2 to 2.14.0. Thanks to 
Gary Gregory. 
+
+
+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.3 Release Notes
 =======================================
 
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 852683f0..8b96048a 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -27,7 +27,7 @@
         <author email="[email protected]">Commons Developers</author>
     </properties>
     <body>
-        <release version="3.6.3" date="YYYY-MM-DD"
+        <release version="3.6.3" date="2026-06-17"
                  description="This is a feature and maintenance release. Java 
8 or later is required.">
             <!-- FIX -->
             <action dev="henrib" type="fix" issue="JEXL-461" due-to="David 
Costanzo">Updates/improvements to the site documentation for JEXL 
Syntax.</action>
diff --git a/src/site/xdoc/download_jexl.xml b/src/site/xdoc/download_jexl.xml
index 9f65b8c2..c03b8818 100644
--- a/src/site/xdoc/download_jexl.xml
+++ b/src/site/xdoc/download_jexl.xml
@@ -115,32 +115,32 @@ limitations under the License.
       </p>
     </subsection>
     </section>
-    <section name="Apache Commons JEXL 3.6.2 ">
+    <section name="Apache Commons JEXL 3.6.3 ">
       <subsection name="Binaries">
         <table>
           <tr>
-              <td><a 
href="[preferred]/commons/jexl/binaries/commons-jexl-3.6.2-bin.tar.gz">commons-jexl-3.6.2-bin.tar.gz</a></td>
-              <td><a 
href="https://downloads.apache.org/commons/jexl/binaries/commons-jexl-3.6.2-bin.tar.gz.sha512";>sha512</a></td>
-              <td><a 
href="https://downloads.apache.org/commons/jexl/binaries/commons-jexl-3.6.2-bin.tar.gz.asc";>pgp</a></td>
+              <td><a 
href="[preferred]/commons/jexl/binaries/commons-jexl-3.6.3-bin.tar.gz">commons-jexl-3.6.3-bin.tar.gz</a></td>
+              <td><a 
href="https://downloads.apache.org/commons/jexl/binaries/commons-jexl-3.6.3-bin.tar.gz.sha512";>sha512</a></td>
+              <td><a 
href="https://downloads.apache.org/commons/jexl/binaries/commons-jexl-3.6.3-bin.tar.gz.asc";>pgp</a></td>
           </tr>
           <tr>
-              <td><a 
href="[preferred]/commons/jexl/binaries/commons-jexl-3.6.2-bin.zip">commons-jexl-3.6.2-bin.zip</a></td>
-              <td><a 
href="https://downloads.apache.org/commons/jexl/binaries/commons-jexl-3.6.2-bin.zip.sha512";>sha512</a></td>
-              <td><a 
href="https://downloads.apache.org/commons/jexl/binaries/commons-jexl-3.6.2-bin.zip.asc";>pgp</a></td>
+              <td><a 
href="[preferred]/commons/jexl/binaries/commons-jexl-3.6.3-bin.zip">commons-jexl-3.6.3-bin.zip</a></td>
+              <td><a 
href="https://downloads.apache.org/commons/jexl/binaries/commons-jexl-3.6.3-bin.zip.sha512";>sha512</a></td>
+              <td><a 
href="https://downloads.apache.org/commons/jexl/binaries/commons-jexl-3.6.3-bin.zip.asc";>pgp</a></td>
           </tr>
         </table>
       </subsection>
       <subsection name="Source">
         <table>
           <tr>
-              <td><a 
href="[preferred]/commons/jexl/source/commons-jexl-3.6.2-src.tar.gz">commons-jexl-3.6.2-src.tar.gz</a></td>
-              <td><a 
href="https://downloads.apache.org/commons/jexl/source/commons-jexl-3.6.2-src.tar.gz.sha512";>sha512</a></td>
-              <td><a 
href="https://downloads.apache.org/commons/jexl/source/commons-jexl-3.6.2-src.tar.gz.asc";>pgp</a></td>
+              <td><a 
href="[preferred]/commons/jexl/source/commons-jexl-3.6.3-src.tar.gz">commons-jexl-3.6.3-src.tar.gz</a></td>
+              <td><a 
href="https://downloads.apache.org/commons/jexl/source/commons-jexl-3.6.3-src.tar.gz.sha512";>sha512</a></td>
+              <td><a 
href="https://downloads.apache.org/commons/jexl/source/commons-jexl-3.6.3-src.tar.gz.asc";>pgp</a></td>
           </tr>
           <tr>
-              <td><a 
href="[preferred]/commons/jexl/source/commons-jexl-3.6.2-src.zip">commons-jexl-3.6.2-src.zip</a></td>
-              <td><a 
href="https://downloads.apache.org/commons/jexl/source/commons-jexl-3.6.2-src.zip.sha512";>sha512</a></td>
-              <td><a 
href="https://downloads.apache.org/commons/jexl/source/commons-jexl-3.6.2-src.zip.asc";>pgp</a></td>
+              <td><a 
href="[preferred]/commons/jexl/source/commons-jexl-3.6.3-src.zip">commons-jexl-3.6.3-src.zip</a></td>
+              <td><a 
href="https://downloads.apache.org/commons/jexl/source/commons-jexl-3.6.3-src.zip.sha512";>sha512</a></td>
+              <td><a 
href="https://downloads.apache.org/commons/jexl/source/commons-jexl-3.6.3-src.zip.asc";>pgp</a></td>
           </tr>
         </table>
       </subsection>

Reply via email to