You are viewing a plain text version of this content. The canonical link for it is here.
Posted to server-dev@james.apache.org by bt...@apache.org on 2019/01/02 10:34:21 UTC

[11/11] james-project git commit: Upgrade instruction: merge 3.3.0 & unreleased blocks

Upgrade instruction: merge 3.3.0 & unreleased blocks


Project: http://git-wip-us.apache.org/repos/asf/james-project/repo
Commit: http://git-wip-us.apache.org/repos/asf/james-project/commit/e6419359
Tree: http://git-wip-us.apache.org/repos/asf/james-project/tree/e6419359
Diff: http://git-wip-us.apache.org/repos/asf/james-project/diff/e6419359

Branch: refs/heads/master
Commit: e64193596724551373422629c89499b1a30594f1
Parents: 5692d13
Author: Benoit Tellier <bt...@linagora.com>
Authored: Wed Jan 2 11:36:09 2019 +0700
Committer: Benoit Tellier <bt...@linagora.com>
Committed: Wed Jan 2 17:33:22 2019 +0700

----------------------------------------------------------------------
 upgrade-instructions.md | 66 ++++++++++++++++++++------------------------
 1 file changed, 30 insertions(+), 36 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/james-project/blob/e6419359/upgrade-instructions.md
----------------------------------------------------------------------
diff --git a/upgrade-instructions.md b/upgrade-instructions.md
index 89c10b4..a494d53 100644
--- a/upgrade-instructions.md
+++ b/upgrade-instructions.md
@@ -16,7 +16,9 @@ Changes to apply between 3.2.x and 3.3.x will be reported here.
 
 Change list:
 
+ - [Changes to the MailboxListener API](#changes-to-the-mailboxlistener-api)
  - [Changes in WebAdmin reIndexing API](#changes-in-webadmin-reindexing-api)
+ - [Rename KEY column in JAMES_MAILBOX_ANNOTATION table](#james-mailbox-annotation)
 
 ### Changes to the MailboxListener API
 
@@ -57,6 +59,34 @@ We made this API introduced in James 3.2.0 a bit more REST friendly. If you deve
 
 For more details please refer to [the latest WebAdmin documentation](https://github.com/apache/james-project/blob/master/src/site/markdown/server/manage-webadmin.md#ReIndexing).
 
+### Rename KEY column in JAMES_MAILBOX_ANNOTATION table
+
+Date: 19/12/2018
+
+SHA-1: e25967664538be18ec29f47e73e661bdf29da41f
+
+JIRA: https://issues.apache.org/jira/projects/MAILBOX/issues/MAILBOX-356
+
+Required: Yes
+
+Concerned products: all JPA related products
+
+#### Upgrade procedure
+
+Rename `KEY` column in `JAMES_MAILBOX_ANNOTATION` table. The syntax is:
+
+##### In MySQL
+```
+ALTER TABLE JAMES_MAILBOX_ANNOTATION CHANGE KEY ANNOTATION_KEY varchar(200);
+```
+
+##### In MariaDB
+```
+ALTER TABLE JAMES_MAILBOX_ANNOTATION CHANGE COLUMN KEY ANNOTATION_KEY varchar(200);
+```
+
+_or the syntax corresponding to your database._
+
 ## 3.2.0 version
 
 Changes to apply between 3.1.0 and 3.2.0 had been reported here.
@@ -171,39 +201,3 @@ $ nodetool stop
 ```
 $ nodetool upgradesstables apache_james
 ```
-
-## 3.3.0 version
-
-Changes to apply between 3.2.0 and 3.3.0 had been reported here.
-
-Changelist:
-
- - [Rename KEY column in JAMES_MAILBOX_ANNOTATION table](#james-mailbox-annotation)
- 
-### Rename KEY column in JAMES_MAILBOX_ANNOTATION table
- 
-Date: 19/12/2018
- 
-SHA-1: e25967664538be18ec29f47e73e661bdf29da41f
- 
-JIRA: https://issues.apache.org/jira/projects/MAILBOX/issues/MAILBOX-356
- 
-Required: Yes
-
-Concerned products: all JPA related products
-
-#### Upgrade procedure
-
-Rename `KEY` column in `JAMES_MAILBOX_ANNOTATION` table. The syntax is:
-
-##### In MySQL
-```
-ALTER TABLE JAMES_MAILBOX_ANNOTATION CHANGE KEY ANNOTATION_KEY varchar(200);
-```
-
-##### In MariaDB
-```
-ALTER TABLE JAMES_MAILBOX_ANNOTATION CHANGE COLUMN KEY ANNOTATION_KEY varchar(200);
-```
-
-_or the syntax corresponding to your database._


---------------------------------------------------------------------
To unsubscribe, e-mail: server-dev-unsubscribe@james.apache.org
For additional commands, e-mail: server-dev-help@james.apache.org