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

ggregory pushed a change to branch release
in repository https://gitbox.apache.org/repos/asf/commons-jexl.git


 discard 3dfa48b2 Javadoc
    omit e32160b7 Prepare for the release candidate 3.6.0 RC1
     add b9797f63 JEXL-448: refined expression cache handling; - added test;
     add 94e80334 JEXL-448: checkstyle;
     add 6f990858 JEXL-448: checkstyle;
     add e250994e JEXL-448: checkstyle;
     add 2e4b3c2b JEXL-448: changes/release-notes;
     add 4a2d4e45 JEXL-448: addressing #pr comments (space 4 indents, purpose 
clarifications);
     add 86b1f1d7 JEXL-448: addressing #pr comments;
     add a3c6c7ef JEXL-448: release notes;
     add 3e78fb4c Merge pull request #390 from apache/JEXL-448
     add b8877583 Remove unused imports
     add 158fc818 Add missing @Deprecated
     add 429ff2aa Remove unused imports
     add aa7375f6 Remove unused imports
     add 4d4c5907 Use final
     add df3749d9 Add missing @Override
     add 5a7702ed Use final
     add 03450b11 JEXL: annotations on syntactic elements starting with 
curly-bracket behave like their non-annotated counterparts;
     add c8413134 Prepare for the next release candidate

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (3dfa48b2)
            \
             N -- N -- N   refs/heads/release (c8413134)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 RELEASE-NOTES.txt                                  |  52 +------
 pom.xml                                            |   6 +-
 src/changes/changes.xml                            |   5 +-
 .../org/apache/commons/jexl3/JexlArithmetic.java   |   4 +-
 .../java/org/apache/commons/jexl3/JexlBuilder.java |   2 +-
 .../org/apache/commons/jexl3/JexlOperator.java     |   6 +-
 .../org/apache/commons/jexl3/internal/Engine.java  |  73 ++++------
 .../apache/commons/jexl3/internal/MetaCache.java   | 119 +++++++++++++++
 .../org/apache/commons/jexl3/internal/Scope.java   |  13 ++
 .../org/apache/commons/jexl3/internal/Source.java  |  34 ++++-
 .../commons/jexl3/internal/TemplateEngine.java     |  22 ++-
 .../commons/jexl3/introspection/JexlSandbox.java   |   4 +-
 .../jexl3/parser/ASTIdentifierAccessJxlt.java      |  12 +-
 .../commons/jexl3/parser/ASTJxltLiteral.java       |  12 +-
 .../apache/commons/jexl3/parser/JexlParser.java    |  23 +++
 .../org/apache/commons/jexl3/parser/Parser.jjt     |   6 +-
 .../java/org/apache/commons/jexl3/BlockTest.java   |  75 +++++++++-
 .../org/apache/commons/jexl3/ConcurrentCache.java  |   2 +-
 .../java/org/apache/commons/jexl3/JXLTTest.java    |   5 +-
 .../apache/commons/jexl3/internal/RangeTest.java   |  17 ---
 .../commons/jexl3/internal/SourceCacheTest.java    | 160 +++++++++++++++++++++
 .../org/apache/commons/jexl3/internal/Util.java    |   9 +-
 22 files changed, 495 insertions(+), 166 deletions(-)
 create mode 100644 
src/main/java/org/apache/commons/jexl3/internal/MetaCache.java
 create mode 100644 
src/test/java/org/apache/commons/jexl3/internal/SourceCacheTest.java

Reply via email to