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 5bcd42509ca342c655667c91bf3575ad23d66476 Author: Juan Pablo Santos RodrÃguez <[email protected]> AuthorDate: Mon Nov 15 15:23:08 2021 +0100 2.11.0-git-13 --- ChangeLog.md | 14 ++++++++++++++ jspwiki-api/src/main/java/org/apache/wiki/api/Release.java | 4 ++-- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index 95053ce..d1f72a5 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -17,6 +17,20 @@ specific language governing permissions and limitations under the License. --> +**2021-11-14 Juan Pablo Santos (juanpablo AT apache DOT org)** + +* _2.11.0-git-13_ + +* [JSPWIKI-1159](https://issues.apache.org/jira/browse/JSPWIKI-1159) - [ReferredPagesPlugin](https://jspwiki-wiki.apache.org/Wiki.jsp?page=ReferredPagesPlugin), [ReferringPagesPlugin](https://jspwiki-wiki.apache.org/Wiki.jsp?page=ReferringPagesPlugin), [ReferringUndefinedPagesPlugin](https://jspwiki-wiki.apache.org/Wiki.jsp?page=ReferringUndefinedPagesPlugin), [UndefinedPagesPlugin](https://jspwiki-wiki.apache.org/Wiki.jsp?page=UndefinedPagesPlugin) and [UnusedPagesPlugin](https://jspwik [...] + +* `CookieAuthenticationLoginModule#clearLoginCookie` ensures that the cookie to be deleted belongs to the logincookie directory + +* Fixed login when using `CookieAuthenticationLoginModule`, http response was being written after being committed + +* Dependency updates + * cargo-maven2-plugin to cargo-maven3-plugin + * hsqldb to 2.6.1, thanks to dependabot [#151](https://github.com/apache/jspwiki/pull/151) + **2021-10-28 Juan Pablo Santos (juanpablo AT apache DOT org)** * _2.11.0-git-12_ 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 1eb5512..194ab3d 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 @@ -50,7 +50,7 @@ public final class Release { * <p> * If the POSTFIX is empty, it is not added to the version string. */ - private static final String POSTFIX = ""; + private static final String POSTFIX = "-git-"; /** The JSPWiki major version. */ public static final int VERSION = 2; @@ -69,7 +69,7 @@ public final class Release { * <p> * If the build identifier is empty, it is not added. */ - public static final String BUILD = ""; + public static final String BUILD = "13"; /** * This is the generic version string you should use when printing out the version. It is of
