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 3404df2c4222e125e9292687132e708abdd0066a Author: juanpablo <[email protected]> AuthorDate: Sat Mar 21 18:03:24 2020 +0100 2.11.0-M7-git-14 --- ChangeLog.md | 22 ++++++++++++++++++++++ .../src/main/java/org/apache/wiki/api/Release.java | 2 +- 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/ChangeLog.md b/ChangeLog.md index 33541aa..f1d708e 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -17,6 +17,28 @@ specific language governing permissions and limitations under the License. --> +**2020-03-21 Juan Pablo Santos (juanpablo AT apache DOT org)** + +* _2.11.0-M7-git-14_ + +* [JSPWIKI-303](https://issues.apache.org/jira/browse/JSPWIKI-303): JSPWiki-API library creation + * added compatibility to page / attachment providers not using the public API + * `jspwiki.pageProvider` should be set to `WikiPageAdapterProvider` and then `jspwiki.pageProvider.adapter.impl` + to the actual page provider + * `jspwiki.attachmentProvider` should be set to `WikiAttachmentAdapterProvider` and then `jspwiki.attachmentProvider.adapter.impl` + to the actual attachment provider + * see `WikiProviderAdaptersTest` on the jspwiki-210-adapters module for an example + * `Page` does not deal with ACLs yet + * SPI to create objects from the `o.a.w.api.core` package still needs to be done + +* Added more helper methods to `TestEngine` to ease building customized instances (again, see `WikiProviderAdaptersTest` on the +jspwiki-210-adapters module for an example) + +* Dependency updates + * Tika to 1.24 + * Tomcat to 9.0.33 + * Selenide to 5.10.0 + **2020-03-16 Juan Pablo Santos (juanpablo AT apache DOT org)** * _2.11.0-M7-git-13_ diff --git a/jspwiki-api/src/main/java/org/apache/wiki/api/Release.java b/jspwiki-api/src/main/java/org/apache/wiki/api/Release.java index 4862f62..61fd742 100644 --- a/jspwiki-api/src/main/java/org/apache/wiki/api/Release.java +++ b/jspwiki-api/src/main/java/org/apache/wiki/api/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-13"; + public static final String BUILD = "git-14"; /** * This is the generic version string you should use when printing out the version. It is of
