aboutsummaryrefslogtreecommitdiff
path: root/velocity-engine-core
AgeCommit message (Collapse)Author
2022-10-23hsqldb 'jdk8' dependency classifierSwell
2022-10-23update dependencies to avoid CVE warningsSwell
2022-07-25Easier #include and #parse directives subclassing - fixes VELOCITY-959Claude Brisson
2022-07-25Make templates cloneable - fixes VELOCITY-958Claude Brisson
2022-06-18Fix a funny typoClaude Brisson
2022-06-18Merge pull request #23 from gndrm/bugfix/override-defaultEncodingClaude Brisson
add the ability to override defaultEncoding
2022-04-18Fixes VELOCITY-953 where VelocimacroProxy polutes context stack due to wrong ↵Janek.Schumann
handling of #break or exceptions
2021-06-21Update ResourceManagerImpl.javaluryson
invoke touch() to set nextCheck field, otherwise template will be refreshed every time after first expiration
2021-04-27add the ability to override defaultEncodinggndrm
2021-03-03[maven-release-plugin] prepare for next development iterationClaude Brisson
2021-03-03[maven-release-plugin] prepare release 2.3-RC2Claude Brisson
2021-03-03Fix references alternate values implementation, with some more test casesClaude Brisson
2021-03-03Merge pull request #20 from hgschmie/2.3-rc1-fixesClaude Brisson
Fixes failing tests on JDK 11+
2021-03-03Revert "[maven-release-plugin] prepare release 2.3-RC1"Claude Brisson
This reverts commit a9c3432f357b62370992d4698a2f78c97cf484cb.
2021-03-03Revert "[maven-release-plugin] prepare for next development iteration"Claude Brisson
This reverts commit 29f9e32167a0fe66d2f6ca6ce1d3dc394a977db8.
2021-03-02Fixes failing tests on JDK 11+Henning Schmiedehausen
Some brittle code tests the messages of exceptions etc. in the tests which have changed in JDK11+ Tested with OpenJDK 11 and OpenJDK 15.
2021-02-27[maven-release-plugin] prepare for next development iterationClaude Brisson
2021-02-27[maven-release-plugin] prepare release 2.3-RC1Claude Brisson
2021-02-27[engine] Update hsqldb and spring dependencies versionsClaude Brisson
2021-02-27[engine] Fix VELOCITY-927Claude Brisson
2021-02-25Merge feature/fix-some-genericsClaude Brisson
2021-02-25Remove unused test methodsClaude Brisson
2021-02-25Merge pull request #16 from wglasshusain/VELOCITY-931-update-secure-classlistClaude Brisson
Velocity 931 update secure classlist
2021-02-25A lot of almost purely cosmetic code cleanupsClaude Brisson
2021-02-25Rebased what I could from PR #2 'Add generics parameters and remove ↵Claude Brisson
unnecesary casts'
2021-02-25[engine] Upgrade several versionsClaude Brisson
2020-11-23Add .travis.yml for testing the PRs at ↵Martin Tzvetanov Grigorov
https://travis-ci.com/apache/velocity-engine
2020-08-05add further tomcat class to restricted listWill Glass-Husain
2020-07-16update list of restricted classesWill Glass-Husain
2020-07-16tests for SecureIntrospectionWill Glass-Husain
2020-07-16whitespaceWill Glass-Husain
2020-07-16disallow ClassLoader, Thread, and subclasses.Will Glass-Husain
2020-07-16whitespace fixWill Glass-Husain
2020-05-26don't leak classes via Stop.STOP_ALL stack tracePeter Gromov
this prevented garbage-collecting classloaders that accidentally happened to be in the stack trace when Stop class was first accessed
2020-01-29[maven-release-plugin] prepare for next development iterationClaude Brisson
git-svn-id: https://svn.apache.org/repos/asf/velocity/engine/trunk@1873317 13f79535-47bb-0310-9956-ffa450edef68
2020-01-29[maven-release-plugin] prepare release 2.2Claude Brisson
git-svn-id: https://svn.apache.org/repos/asf/velocity/engine/trunk@1873315 13f79535-47bb-0310-9956-ffa450edef68
2020-01-28[engine] Review VELOCITY-926 fix:Claude Brisson
deprecate velocimacro.arguments.preserve_literals in favor of the new velocimacro.enable_bc_mode flag, which mimics 1.7 velocimacro behavior: - preserve arguments literals: #macro(m $arg) $arg #end m($null) will displays $arg w/o bc mode and $null with bc mode - use global defaults for missing arguments: #macro(m $foo) $foo #end #set($foo='foo') #m() will display $foo w/o bc mode and 'foo' with bc mode The following use cases have been left aside from backward compatibility: - preserving local macro scope values #macro(test) #set($foo = 'foo') $some_tool.change_foo_value_in_global_context_to_bar() $foo #end #test() will always display 'bar', while 1.7 displayed 'foo' - setting a null argument to null, while argument name exists in context, #macro(setnull $foo) #set($foo = $null) #end #set($foo='foo') #setnull($null) $foo Will always display 'foo' (w or w/o bc mode), while 1.7 did display $foo git-svn-id: https://svn.apache.org/repos/asf/velocity/engine/trunk@1873244 13f79535-47bb-0310-9956-ffa450edef68
2020-01-28[engine/tools] Revert poms for next 2.2 RCClaude Brisson
git-svn-id: https://svn.apache.org/repos/asf/velocity/engine/trunk@1873243 13f79535-47bb-0310-9956-ffa450edef68
2020-01-24[maven-release-plugin] prepare for next development iterationClaude Brisson
git-svn-id: https://svn.apache.org/repos/asf/velocity/engine/trunk@1873100 13f79535-47bb-0310-9956-ffa450edef68
2020-01-24[maven-release-plugin] prepare release 2.2Claude Brisson
git-svn-id: https://svn.apache.org/repos/asf/velocity/engine/trunk@1873098 13f79535-47bb-0310-9956-ffa450edef68
2020-01-24[engine][VELOCITY-925] Fix BC whitespace gobbling for macro call without ↵Claude Brisson
parentheses git-svn-id: https://svn.apache.org/repos/asf/velocity/engine/trunk@1873088 13f79535-47bb-0310-9956-ffa450edef68
2020-01-23[engine] Fix VELOCITY-926Claude Brisson
git-svn-id: https://svn.apache.org/repos/asf/velocity/engine/trunk@1873069 13f79535-47bb-0310-9956-ffa450edef68
2020-01-10[engine] Fix javadoc issues in generated parser filesClaude Brisson
git-svn-id: https://svn.apache.org/repos/asf/velocity/engine/trunk@1872607 13f79535-47bb-0310-9956-ffa450edef68
2020-01-07[engine] Fix VELOCITY-924 - cache collision between an object and its classClaude Brisson
git-svn-id: https://svn.apache.org/repos/asf/velocity/engine/trunk@1872422 13f79535-47bb-0310-9956-ffa450edef68
2020-01-07[engine] Revert pom versions to pre-2.2 for next RCClaude Brisson
git-svn-id: https://svn.apache.org/repos/asf/velocity/engine/trunk@1872421 13f79535-47bb-0310-9956-ffa450edef68
2020-01-01[maven-release-plugin] prepare for next development iterationClaude Brisson
git-svn-id: https://svn.apache.org/repos/asf/velocity/engine/trunk@1872215 13f79535-47bb-0310-9956-ffa450edef68
2020-01-01[maven-release-plugin] prepare release 2.2Claude Brisson
git-svn-id: https://svn.apache.org/repos/asf/velocity/engine/trunk@1872213 13f79535-47bb-0310-9956-ffa450edef68
2020-01-01[engine] Fix another VELOCITY-904 regressionClaude Brisson
git-svn-id: https://svn.apache.org/repos/asf/velocity/engine/trunk@1872211 13f79535-47bb-0310-9956-ffa450edef68
2020-01-01[engine] Revert poms once again for next 2.2 RCClaude Brisson
git-svn-id: https://svn.apache.org/repos/asf/velocity/engine/trunk@1872210 13f79535-47bb-0310-9956-ffa450edef68
2019-12-28[maven-release-plugin] prepare for next development iterationClaude Brisson
git-svn-id: https://svn.apache.org/repos/asf/velocity/engine/trunk@1872055 13f79535-47bb-0310-9956-ffa450edef68