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 79558a7f84b41796a800c576d28586a4f1a7264c Author: Juan Pablo Santos RodrÃguez <[email protected]> AuthorDate: Sun Apr 24 16:31:48 2022 +0200 2.11.3-git-07 --- ChangeLog.md | 15 +++++++++++++++ .../src/main/java/org/apache/wiki/api/Release.java | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/ChangeLog.md b/ChangeLog.md index 2250033ea..f92a4fc31 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -17,6 +17,21 @@ specific language governing permissions and limitations under the License. --> +**2022-04-24 Juan Pablo Santos (juanpablo AT apache DOT org)** + +* _2.11.3-git-07_ + +* Ensure Lucene indexes all pages and attachments, even when they don't fit in the cache. Should fix [JSPWIKI-1171](https://issues.apache.org/jira/browse/JSPWIKI-1171) + +* Add a memory profiling test, so it can be used to estimate the cache configuration & other memory requirements. To run it just `mvn test -Dtest=MemoryProfiling` on the `jspwiki-main` module + +* Dependency updates + * Awaitility to 4.2.0 + * Apache parent pom to 26 - closes [#182](https://github.com/apache/jspwiki/pull/182), thanks to dependabot + * Maven javadoc plugin to 3.4.0 + * Mockito to 4.5.0 + * Selenide to 6.4.0 - closes [#183](https://github.com/apache/jspwiki/pull/183), thanks to dependabot + **2022-03-28 Juan Pablo Santos (juanpablo AT apache DOT org)** * _2.11.3-git-06_ 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 5e33d26c4..088ad9181 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 = "06"; + public static final String BUILD = "07"; /** * This is the generic version string you should use when printing out the version. It is of
