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 2c59187acc209e33e1db4201964971652fb2038d Author: Juan Pablo Santos RodrÃguez <[email protected]> AuthorDate: Tue Mar 22 12:09:07 2022 +0100 2.11.3-git-04 --- ChangeLog.md | 19 +++++++++++++++++++ .../src/main/java/org/apache/wiki/api/Release.java | 2 +- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/ChangeLog.md b/ChangeLog.md index 161da52..a76fa6f 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -17,6 +17,25 @@ specific language governing permissions and limitations under the License. --> +**2022-03-22 Juan Pablo Santos (juanpablo AT apache DOT org)** + +* _2.11.3-git-04_ + +* [JSPWIKI-802](https://issues.apache.org/jira/browse/JSPWIKI-802) - Markdown syntax Support: initial Markdown support for plain editor. + * Currently, can be activated by setting the `jspwiki.syntax.plain` property to `plain/wiki-snips-markdown.js`. + * Alternatively, as of 2.11.3-git-02, whole Markdown support configuration can be set up by setting the `jspwiki.syntax` property to `markdown`. + * Details at [Markdown support page](https://jspwiki-wiki.apache.org/Wiki.jsp?page=Markdown%20Support). + +* `TemplateManager` now understands resources beginning with `engine://` to be keys of `Engine`'s wiki properties. In those cases, if the key and its associated value exist, the latter will be used to as the requested resource. + +* Dependency updates + * Mockito to 4.4.0 - closes [#176](https://github.com/apache/jspwiki/pull/176), thanks to dependabot + * Selenide to 6.3.5 + * Tomcat to 9.0.60 + * XStream to 1.4.19 - closes [#177](https://github.com/apache/jspwiki/pull/177), thanks to dependabot + * Maven JXR plugin to 3.2.0, dependency plugin to 3.3.0 - closes [#178](https://github.com/apache/jspwiki/pull/178), thanks to dependabot + + **2022-03-15 Dirk Frederickx (brushed AT apache DOT org)** * _2.11.3-git-03_ 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 0a3fb2e..1e01d18 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 = "03"; + public static final String BUILD = "04"; /** * This is the generic version string you should use when printing out the version. It is of
