This is an automated email from the ASF dual-hosted git repository. juanpablo pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/jspwiki.git
commit 0abc7d0a3196706df03aeac0348b0d1c7ca220f8 Author: juanpablo <[email protected]> AuthorDate: Mon Nov 5 22:35:00 2018 +0100 2.11.0-M1-git-08 --- ChangeLog | 25 ++++++++++++++++++---- .../src/main/java/org/apache/wiki/Release.java | 2 +- 2 files changed, 22 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index 64a6663..1aac5be 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,10 +1,27 @@ +2018-11-05 Juan Pablo Santos (juanpablo AT apache DOT org) + + * 2.11.0-M1-git-08: try to load as many external third-party plugin jars as possible, instead + of all-or-nothing + + * small backwards-incompatible changes: + - CryptoUtil#verifySaltedPassword doesn't throw UnsupportedEncodingException anymore + - TextUtil#urlDecode methods don't throw UnsupportedOperationException anymore + - ClassUtil#getMappedObject methods now throw ReflectiveOperationException, IllegalArgumentException + instead of WikiException + - ClassUtil#getMappedClass method now throws ClassNotFoundException instead of WikiException + + * fix possible concurrency issue at ReferenceManager#serializeAttrsToDisk + + * remove commons-codec usage from source (it's carried onto the war as a transitive + dependency though), plus several other small refactors + 2018-11-02 Juan Pablo Santos (juanpablo AT apache DOT org) * 2.11.0-M1-git-07: removed a bunch of warnings throughout the code - - * added a Jenkinsfile - - * small backwards-incompatible change: WikiEngine#getRecentChanges() now returns a Set instead of a Collection + + * added a Jenkinsfile + + * small backwards-incompatible change: WikiEngine#getRecentChanges() now returns a Set instead of a Collection 2018-10-30 Juan Pablo Santos (juanpablo AT apache DOT org) diff --git a/jspwiki-main/src/main/java/org/apache/wiki/Release.java b/jspwiki-main/src/main/java/org/apache/wiki/Release.java index c2bf99e..996bc46 100644 --- a/jspwiki-main/src/main/java/org/apache/wiki/Release.java +++ b/jspwiki-main/src/main/java/org/apache/wiki/Release.java @@ -72,7 +72,7 @@ public final class Release { * <p> * If the build identifier is empty, it is not added. */ - public static final String BUILD = "7"; + public static final String BUILD = "8"; /** * This is the generic version string you should use when printing out the version. It is of
