From 75bda31376a6061e379cb815a55308626f96a65c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobi=20Sch=C3=A4fer?= Date: Sat, 21 Mar 2020 20:20:02 +0100 Subject: [PATCH] add: change log --- CHANGES.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 CHANGES.md diff --git a/CHANGES.md b/CHANGES.md new file mode 100644 index 00000000..cd41ee5a --- /dev/null +++ b/CHANGES.md @@ -0,0 +1,18 @@ +# Change Log + +## March 21, 2020 + +* Completely rewrote build system with Gradle +* Separated launcher from main source as Gradle subproject +* Launcher now includes all JARs found in `lib` +* Upgraded Rhino to version 1.7.12 +* Upgraded Jetty to version 9.x +* Removed support for Apache JServ Protocol (AJP) +* Added support for CommonJS require() method +* Allow variable arguments in res.write() and res.writeln() +* Replaced Helma’s MD5 and Base64 methods with equivalent methods from Apache Commons +* Refactored String methods from Java to JavaScript: encode(), encodeForm(), encodeXml(), stripTags() +* Replaced custom String methods with Rhino’s built-in ones: endsWith(), repeat(), startsWith(), trim() +* Refactored custom String.pad() method with built-in methods +* Redefined custom Array.contains() method with built-in Array.includes() +* Refactored custom Array methods with built-in methods: intersection(), union()