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 62bb84ce444278f50d8531b55603e830e5c96b9d Author: juanpablo <[email protected]> AuthorDate: Tue Jan 28 21:33:30 2020 +0100 2.11.0-M7-git-06 --- ChangeLog.md | 26 +++++++++++++++++++++- .../src/main/java/org/apache/wiki/Release.java | 2 +- 2 files changed, 26 insertions(+), 2 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index e5f9366..7857aeb 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -17,6 +17,30 @@ specific language governing permissions and limitations under the License. --> +**2020-01-28 Juan Pablo Santos (juanpablo AT apache DOT org)** + +* _2.11.0-M7-git-06_ + +* [JSPWIKI-120](https://issues.apache.org/jira/browse/JSPWIKI-120): Separate rendering engine from core + * `CommandResolver` renamed as `org.apache.wiki.ui.DefaultCommandResolver`, with new + `org.apache.wiki.ui.CommandResolver` extracted as interface of the latter + * `ProgressManager` renamed as `org.apache.wiki.ui.progress.DefaultProgressManager`, with new + `org.apache.wiki.ui.progress.ProgressManager` extracted as interface of the latter + * removed `createContext(..)` method from `WikiEngine` use new constructor on `WikiContext` instead + * removed `WikiEngine#getRedirectURL(..)` use same method on `WikiContext` +* Removed `WikiEventUtils` if relying on it use directly `WikiEventManager.getInstance().addWikiEventListener( client, listener )` +* Fixed possible synchronization issues on `DefaultProgressManager` and `WikiAjaxDispatcherServlet` +* `PageEventFilter` moved from `event` to `filters` package +* `WikiEngine#init(..)` now enforces at least a 3.1 servlet api environment, inline with the servlet-api dependency version +* [JSPWIKI-1127](https://issues.apache.org/jira/browse/JSPWIKI-1127): Get rid off jspwiki.referenceStyle +* Dependency updates + * ASF parent pom to version 23 + * Awaitility to 4.0.2 + * Flexmark to 0.50.48 + * JUnit to 5.6.0 + * Lucene to 8.4.1 + * SLF4J to 1.7.30 + **2020-01-16 Juan Pablo Santos (juanpablo AT apache DOT org)** * _2.11.0-M7-git-05_ @@ -26,7 +50,7 @@ under the License. `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`__ + * 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`. 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 c06bb25..225c8ba 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-05"; + public static final String BUILD = "git-06"; /** * This is the generic version string you should use when printing out the version. It is of
