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 9e05cc521a812ed781ac835307e45f34923119c4 Author: juanpablo <[email protected]> AuthorDate: Fri Jan 3 00:29:43 2020 +0100 2.11.0-M7-git-03 --- ChangeLog.md | 19 +++++++++++++++++++ .../src/main/java/org/apache/wiki/Release.java | 2 +- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/ChangeLog.md b/ChangeLog.md index a8ee2dc..7f4dc83 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -17,6 +17,25 @@ specific language governing permissions and limitations under the License. --> +**2020-01-03 Juan Pablo Santos (juanpablo AT apache DOT org)** + +* _2.11.0-M7-git-03_ + +* [JSPWIKI-120](https://issues.apache.org/jira/browse/JSPWIKI-120): Separate rendering engine from core + * `ReferenceManager` renamed + moved to `org.apache.wiki.references.DefaultReferenceManager`, with new + `org.apache.wiki.references.ReferenceManager` extracted as interface of the latter + * `scanWikiLinks(..)` and `updateReferences(..)` methods from `WikiEngine` moved to `ReferenceManager` +* `WikiDifferenceManager`, `WikiVariableManager` and `WikiPageRenamer` renamed to `DefaultDifferenceManager`, `DefaultVariableManager` + and `DefaultPageRenamer` respectively; it's a better suited prefix for default implementations and also follows the existing naming + with the existing bunch of `Default[XYZ]Manager` that currently exist +* Moved `[Default]VariableManager` to their own package under `org.apache.wiki.variables` +* Dependency updates + * Flexmark to 0.50.46 + * Lucene to 8.4.0 + * Selenide to 5.6.0 + * Tomcat to 8.5.50 +* Applied format & fixes suggested by intellij to a big bunch of files + **2019-12-20 Juan Pablo Santos (juanpablo AT apache DOT org)** * _2.11.0-M7-git-02_ 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 8aaa884..1a295a3 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 = "git-02"; + public static final String BUILD = "git-03"; /** * This is the generic version string you should use when printing out the version. It is of
