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 1ce7f38c5bdb897793a683b81534ec70975811c8 Author: Juan Pablo Santos RodrÃguez <[email protected]> AuthorDate: Sat Dec 2 21:01:13 2023 +0100 2.12.2-git-10 --- ChangeLog.md | 12 ++++++++++++ jspwiki-api/src/main/java/org/apache/wiki/api/Release.java | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/ChangeLog.md b/ChangeLog.md index 4c8c882d0..ae44940ea 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -19,6 +19,18 @@ under the License. **2023-11-25 Juan Pablo Santos (juanpablo AT apache DOT org)** +* _2.12.2-git-10_ + +* Use `Engine#getContentEncoding` to call `URLConstructor#parsePageFromURL` (related to error noted at [#322](https://github.com/apache/jspwiki/pull/322)). The latter also url decodes the returned page name. + +* Introduced [`CustomWikiEventListener`](https://jspwiki-wiki.apache.org/Wiki.jsp?page=HowToWriteACustomWikiEventListener) as an easy way to register 3rd party `WikiEventListener`s. + +* Dependency updates + * commons-lang3 to 3.14.0 + * Maven plugins: cargo to 1.10.11 (closes [#324](https://github.com/apache/jspwiki/pull/324), thanks to dependabot) + +**2023-11-25 Juan Pablo Santos (juanpablo AT apache DOT org)** + * _2.12.2-git-09_ * Make `URLConstructor#parsePageFromURL` work with default URL style (closes [#322](https://github.com/apache/jspwiki/pull/322), thanks to Ulf Dittmer) 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 97c850251..ff567b049 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 = "09"; + public static final String BUILD = "10"; /** * This is the generic version string you should use when printing out the version. It is of
