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 ffee109c1ad599142ae5fc34319f71822cd057b2 Author: juanpablo <[email protected]> AuthorDate: Fri Jan 17 00:06:33 2020 +0100 2.11.0-M7-git-05 --- ChangeLog.md | 16 ++++++++++++++++ jspwiki-main/src/main/java/org/apache/wiki/Release.java | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/ChangeLog.md b/ChangeLog.md index aced183..e5f9366 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -17,6 +17,22 @@ specific language governing permissions and limitations under the License. --> +**2020-01-16 Juan Pablo Santos (juanpablo AT apache DOT org)** + +* _2.11.0-M7-git-05_ + +* [JSPWIKI-120](https://issues.apache.org/jira/browse/JSPWIKI-120): Separate rendering engine from core + * `RenderingManager` renamed as `org.apache.wiki.render.DefaultRenderingManager`, with new + `org.apache.wiki.render.RenderingManager` extracted as interface of the latter + * moved `textToHtml(..)` methods from `WikiEngine` to `RenderingManager` + * moved `getHTML(..)` methods from `WikiEngine` to `RenderingManager` + * moved `beautifyTitle( String )` and `beautifyTitleNoBreak` methods from `WikiEngine` to `RenderingManager`__ +* `VAR_EXECUTE_PLUGINS` and `WYSIWYG_EDITOR_MODE` constants from `RenderingManager` moved to `WikiContext` (the latter +as `VAR_WYSIWYG_EDITOR_MODE`) +* constant `PROP_RUNFILTERS` from `WikiEngine` moved to `VariableManager` as `VAR_RUNFILTERS`. +* constants `PUNCTUATION_CHARS_ALLOWED` and `LEGACY_CHARS_ALLOWED` from `MarkupParser` moved to `TextUtil`. +* Update ASF parent pom + plugin definitions to support, as far as possible, [reproducible builds](https://maven.apache.org/guides/mini/guide-reproducible-builds.html) + **2020-01-09 Juan Pablo Santos (juanpablo AT apache DOT org)** * _2.11.0-M7-git-04_ 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 6520655..c06bb25 100644 --- a/jspwiki-main/src/main/java/org/apache/wiki/Release.java +++ b/jspwiki-main/src/main/java/org/apache/wiki/Release.java @@ -69,7 +69,7 @@ public final class Release { * <p> * If the build identifier is empty, it is not added. */ - public static final String BUILD = "git-04"; + public static final String BUILD = "git-05"; /** * This is the generic version string you should use when printing out the version. It is of
