Skip to content
This repository was archived by the owner on Sep 16, 2024. It is now read-only.

Commit f3c2d1b

Browse files
committed
Updating changelog for 2.0rc4
1 parent 551ce51 commit f3c2d1b

File tree

3 files changed

+50
-30
lines changed

3 files changed

+50
-30
lines changed

CHANGELOG.mdown

Lines changed: 48 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# ml-app-deployer releases
22

3-
## 2.0rc4 - TBD
3+
## 2.0rc4 - 2016-01-20
44

5+
* Added exception handling for intermittent case where, when deleting multiple XDBC/ODBC servers in a row, the 2nd one will fail
56
* [#78](https://github.com/rjrudin/ml-app-deployer/issues/78) Added support for mlContentForestsPerHost
67
* [#77](https://github.com/rjrudin/ml-app-deployer/issues/77) Support Spring Boot-style properties with a "marklogic." prefix
78

@@ -64,4 +65,49 @@ and DeployTriggersDatabaseCommand and DeploySchemasDatabaseCommand now default t
6465

6566
* [#56](https://github.com/rjrudin/ml-app-deployer/issues/56) ConfigureForestReplicasCommand now supports "undo", using
6667
new methods in ForestManager to delete replica forests. Also extracted AbstractUndoableCommand.
67-
* [#57](https://github.com/rjrudin/ml-app-deployer/issues/57) Fixed creation of forests on multiple hosts
68+
* [#57](https://github.com/rjrudin/ml-app-deployer/issues/57) Fixed creation of forests on multiple hosts
69+
70+
71+
## Old CHANGELOG
72+
73+
## 2.0-alpha-1 First pending release of 2.0 version that depends on ML8 Mgmt API
74+
75+
## 2.0-alpha-3 Targeting Java 1.7
76+
77+
## 2.0-alpha-5 Security/CPF support, bumped up to 2.0.4 of ml-javaclient-util
78+
79+
## 2.0-alpha-6 AdminManager methods and custom token support
80+
81+
## 2.0-alpha-7 ConfigDir's baseDir is now modifiable; 2.0.6 of ml-javaclient-util; fixed CPF sort order issue
82+
83+
## 2.0a8 Load default CPF pipelines; scaffolding
84+
85+
## 2.0a9 Fix for waiting for ML to restart
86+
87+
## 2.0a10 SQL views support; CreateOtherServersCommand; CreateSchemasDatabaseCommand
88+
89+
## 2.0a11 All security resources now created as admin user
90+
91+
## 2.0a12 Loading modules now loads options/properties against the test server too (if it exists)
92+
93+
## 2.0a13 Dropping xdbcUsername/xdbcPassword from AppConfig
94+
95+
## 2.0a14 Dropping get*Xdbc methods from AppConfig
96+
97+
## 2.0a15 AbstractResourceCommand now sorts files
98+
99+
## 2.0b1 Repackaged, added GroupManager
100+
101+
## 2.0b2 Using ml-javaclient-util 2.2
102+
103+
## 2.0b3 Cert template IDs are stored in the custom tokens map
104+
105+
## 2.0b4 Added CreateDatabasesCommand; renamed Create prefix to Deploy in most cases
106+
107+
## 2.0b5 DeployGroups command will now wait for a restart if necessary; LoadModulesCommand now first loads all assets from all module paths; added GenerateTemporaryCertificateCommand
108+
109+
## 2.0b6 Added flexrep support - DeployConfigsCommand and DeployTargetsCommand
110+
111+
## 2.0b7 Depends on ml-javaclient-util 2.2.2, which supports a FileFilter for XccAssetLoader
112+
113+
## 2.0b8 Depends on ml-javaclient-util 2.3, which has a new interface for ModulesLoader; added ConfigureReplicaForestsCommand

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ if (project.hasProperty("myBintrayUser")) {
5959
licenses = ['Apache-2.0']
6060
vcsUrl = 'https://github.com/rjrudin/' + project.name + '.git'
6161
version {
62-
name = "2.0rc3"
62+
name = "2.0rc4"
6363
released = new Date()
6464
}
6565
}

gradle.properties

Lines changed: 1 addition & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,4 @@
11
group=com.marklogic
22
publishUrl=file:../gh-pages-marklogic-java/releases
33
javadocsDir=../gh-pages-marklogic-java/javadocs
4-
version=2.0rc3
5-
6-
7-
# Old CHANGELOG
8-
9-
# 2.0-alpha-1 First pending release of 2.0 version that depends on ML8 Mgmt API
10-
# 2.0-alpha-3 Targeting Java 1.7
11-
# 2.0-alpha-5 Security/CPF support, bumped up to 2.0.4 of ml-javaclient-util
12-
# 2.0-alpha-6 AdminManager methods and custom token support
13-
# 2.0-alpha-7 ConfigDir's baseDir is now modifiable; 2.0.6 of ml-javaclient-util; fixed CPF sort order issue
14-
# 2.0a8 Load default CPF pipelines; scaffolding
15-
# 2.0a9 Fix for waiting for ML to restart
16-
# 2.0a10 SQL views support; CreateOtherServersCommand; CreateSchemasDatabaseCommand
17-
# 2.0a11 All security resources now created as admin user
18-
# 2.0a12 Loading modules now loads options/properties against the test server too (if it exists)
19-
# 2.0a13 Dropping xdbcUsername/xdbcPassword from AppConfig
20-
# 2.0a14 Dropping get*Xdbc methods from AppConfig
21-
# 2.0a15 AbstractResourceCommand now sorts files
22-
# 2.0b1 Repackaged, added GroupManager
23-
# 2.0b2 Using ml-javaclient-util 2.2
24-
# 2.0b3 Cert template IDs are stored in the custom tokens map
25-
# 2.0b4 Added CreateDatabasesCommand; renamed Create prefix to Deploy in most cases
26-
# 2.0b5 DeployGroups command will now wait for a restart if necessary; LoadModulesCommand now first loads all assets from all module paths;
27-
# added GenerateTemporaryCertificateCommand
28-
# 2.0b6 Added flexrep support - DeployConfigsCommand and DeployTargetsCommand
29-
# 2.0b7 Depends on ml-javaclient-util 2.2.2, which supports a FileFilter for XccAssetLoader
30-
# 2.0b8 Depends on ml-javaclient-util 2.3, which has a new interface for ModulesLoader; added ConfigureReplicaForestsCommand
4+
version=2.0rc4

0 commit comments

Comments
 (0)