Skip to content

Commit 5824fbf

Browse files
authored
Merge pull request #753 from marklogic/feature/version
MLE-12345 Bumping version to 6.0-SNAPSHOT
2 parents d36a6c8 + 914c808 commit 5824fbf

File tree

8 files changed

+9
-10
lines changed

8 files changed

+9
-10
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ subprojects {
44
apply plugin: "maven-publish"
55

66
group = "com.marklogic"
7-
version = "5.1-SNAPSHOT"
7+
version = "6.0-SNAPSHOT"
88

99
java {
1010
sourceCompatibility = 17

examples/local-testing-project/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Set this to the version you used when running
22
# "gradle -Pversion=(something) publishToMavenLocal" on your local ml-gradle repo
3-
mlGradleVersion=5.1-SNAPSHOT
3+
mlGradleVersion=6.0-SNAPSHOT
44

55
mlHost=localhost
66
mlAppName=example

ml-app-deployer/src/main/java/com/marklogic/appdeployer/AppConfig.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1873,14 +1873,14 @@ public void setAppServicesTrustStoreAlgorithm(String appServicesTrustStoreAlgori
18731873
}
18741874

18751875
/**
1876-
* @since 5.1.0
1876+
* @since 6.0.0
18771877
*/
18781878
public Map<String, String> getHostCertificatePassphrases() {
18791879
return hostCertificatePassphrases;
18801880
}
18811881

18821882
/**
1883-
* @since 5.1.0
1883+
* @since 6.0.0
18841884
*/
18851885
public void setHostCertificatePassphrases(Map<String, String> hostCertificatePassphrases) {
18861886
this.hostCertificatePassphrases = hostCertificatePassphrases;

ml-app-deployer/src/main/java/com/marklogic/appdeployer/DefaultAppConfigFactory.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public AppConfig newAppConfig() {
4848
final AppConfig appConfig = new AppConfig(this.projectDir);
4949
for (String propertyName : propertyConsumerMap.keySet()) {
5050
String value = getProperty(propertyName);
51-
// In 5.1.0, the value must not be whitespace. But we have this hack here to preserve documented and tested
51+
// In 6.0.0, the value must not be whitespace. But we have this hack here to preserve documented and tested
5252
// functionality for allowing for mlModuleTimestampsPath to be set to an empty string to disable its functionality.
5353
if (StringUtils.hasText(value) || (value != null && "mlModuleTimestampsPath".equalsIgnoreCase(propertyName))) {
5454
try {
@@ -1001,7 +1001,6 @@ public void initialize() {
10011001
registerDataLoadingProperties();
10021002
registerPluginProperties();
10031003

1004-
// Added in 5.1.0
10051004
propertyConsumerMap.put("mlHostCertificatePassphrases", (config, prop) -> {
10061005
String customDelimiter = this.getPropertySource().getProperty("mlHostCertificatePassphrasesDelimiter");
10071006
final String delimiter = StringUtils.hasText(customDelimiter) ? customDelimiter : ",";

ml-app-deployer/src/main/java/com/marklogic/mgmt/resource/security/CertificateTemplateManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ public ResponseEntity<String> insertHostCertificate(String templateIdOrName, Str
105105
}
106106

107107
/**
108-
* @since 5.1.0
108+
* @since 6.0.0
109109
*/
110110
public ResponseEntity<String> insertHostCertificate(String templateIdOrName, String pubCert, String privateKey, String passphrase) {
111111
ObjectNode command = ObjectMapperFactory.getObjectMapper().createObjectNode();

ml-javaclient-util/src/main/java/com/marklogic/client/ext/file/DefaultDocumentFileReader.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public List<DocumentFile> readDocumentFiles(String... paths) {
6666
Path p = constructPath(path);
6767
if (p != null) {
6868
this.currentRootPath = p;
69-
// Fixed in 5.0.1 / 5.1.0 - symlinks are now followed and thus work properly.
69+
// Fixed in 6.0.0 - symlinks are now followed and thus work properly.
7070
Set<FileVisitOption> options = EnumSet.of(FileVisitOption.FOLLOW_LINKS);
7171
try {
7272
Files.walkFileTree(this.currentRootPath, options, Integer.MAX_VALUE, this);

ml-javaclient-util/src/main/java/com/marklogic/client/ext/ssl/SslUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
public abstract class SslUtil {
3131

32-
// Defaulting this to "TLS" in 5.1.0 so that clients connecting to MarkLogic 12 will default to TLSv1.3, while
32+
// Defaulting this to "TLS" in 6.0.0 so that clients connecting to MarkLogic 12 will default to TLSv1.3, while
3333
// clients connecting to MarkLogic 11 or older will default to TLSv1.2.
3434
public final static String DEFAULT_SSL_PROTOCOL = "TLS";
3535

ml-javaclient-util/src/test/java/com/marklogic/client/ext/ssl/SslUtilTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public void configureWithDefaults() {
3131
assertTrue(certs.length > 0);
3232

3333
SSLContext context = config.getSslContext();
34-
assertEquals("TLS", context.getProtocol(), "As of 5.1.0, the default is TLS so that clients connecting to " +
34+
assertEquals("TLS", context.getProtocol(), "As of 6.0.0, the default is TLS so that clients connecting to " +
3535
"MarkLogic 12 will default to TLSv1.3.");
3636
}
3737

0 commit comments

Comments
 (0)