From 00ad31ad50c8932233064b497b420f0d2f91cb05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beat=20S=C3=A4gesser?= Date: Mon, 16 Sep 2019 11:46:33 +0200 Subject: [PATCH] NO-JIRA Add 2.10.0 entry with upgrade instructions --- docs/user-manual/en/versions.md | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/docs/user-manual/en/versions.md b/docs/user-manual/en/versions.md index 4997663bd3..6083551ceb 100644 --- a/docs/user-manual/en/versions.md +++ b/docs/user-manual/en/versions.md @@ -8,6 +8,38 @@ This chapter provides the following information for each release: - **Note:** Follow the general upgrade procedure outlined in the [Upgrading the Broker](upgrading.md) chapter in addition to any version-specific upgrade instructions outlined here. +## 2.10.0 + +[Full release notes](https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12315920&version=12345602). + +This was mainly a bug-fix release with a notable dependency change impacting version upgrade. + +#### Upgrading from 2.9.0 + +Due to the WildFly dependency upgrade the broker start scripts/configuration need to be adjusted after upgrading. + +##### On \*nix + +Locate this statement in `bin/artemis`: +``` +WILDFLY_COMMON="$ARTEMIS_HOME/lib/wildfly-common-1.5.1.Final.jar" +``` +This needs to be replaced with this: +``` +WILDFLY_COMMON="$ARTEMIS_HOME/lib/wildfly-common-1.5.2.Final.jar" +``` + +##### On Windows + +Locate this part of `JAVA_ARGS` in `etc/artemis.profile.cmd` respectively `bin/artemis-service.xml`: +``` +%ARTEMIS_HOME%\lib\wildfly-common-1.5.1.Final.jar +``` +This needs to be replaced with this: +``` +%ARTEMIS_HOME%\lib\wildfly-common-1.5.2.Final.jar +``` + ## 2.9.0 [Full release notes](https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12315920&version=12345527).