Skip to content

Commit 9803cca

Browse files
committed
Merge branch 'release-4.1.1' into 4.0-master
2 parents f8af56f + 5110f96 commit 9803cca

File tree

94 files changed

+3526
-11342
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

94 files changed

+3526
-11342
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# CHANGELOG
22

3+
## 4.1.1
4+
#### New Functionality
5+
- [#1006](https://github.com/marklogic/java-client-api/issues/1006) - Data Services First - MarkLogic's support for microservices
6+
7+
#### Improvements and Bug Fixes
8+
- [#999](https://github.com/marklogic/java-client-api/issues/999) - Connect only to primary host for load balancer scenario
9+
- [#991](https://github.com/marklogic/java-client-api/issues/991) - Correct cookie expiration for Application Load Balancer
10+
- [#989](https://github.com/marklogic/java-client-api/issues/989) - Manage cookies for used for host affinity in Transaction
11+
- [#968](https://github.com/marklogic/java-client-api/issues/968) - Deprecate XOMHandle
12+
313
## 4.1.0
414

515
#### New Functionality

LEGALNOTICES.TXT

Lines changed: 1195 additions & 9803 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ To use the API in your maven project, include the following in your pom.xml:
6060
<dependency>
6161
<groupId>com.marklogic</groupId>
6262
<artifactId>marklogic-client-api</artifactId>
63-
<version>4.1.0</version>
63+
<version>4.1.1</version>
6464
</dependency>
6565

6666
And add this repository to your pom.xml repositories section:
@@ -73,7 +73,7 @@ And add this repository to your pom.xml repositories section:
7373
For gradle projects, include the following:
7474

7575
dependencies {
76-
compile group: 'com.marklogic', name: 'marklogic-client-api', version: '4.1.0'
76+
compile group: 'com.marklogic', name: 'marklogic-client-api', version: '4.1.1'
7777
}
7878

7979
Use gradle 1.7+ and add this to your build.gradle repositories section:

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
group=com.marklogic
2-
version=4.1.0
3-
releaseVersion=4.1.0
2+
version=4.1.1
3+
releaseVersion=4.1.1
44
describedName=MarkLogic Java Client API
55
publishUrl=file:../marklogic-java/releases

marklogic-client-api-functionaltests/build.gradle

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ test {
66
exclude 'com/marklogic/client/functionaltest/TestSSLConnection.class'
77
exclude 'com/marklogic/client/functionaltest/TestBug18993.class'
88
exclude 'com/marklogic/client/functionaltest/TestDatabaseClientWithKerberos.class'
9+
exclude 'com/marklogic/client/functionaltest/TestDatabaseClientWithCertBasedAuth.class'
910
exclude 'com/marklogic/client/functionaltest/TestSandBox.class'
1011
}
1112

@@ -22,16 +23,12 @@ repositories {
2223
maven { url "http://developer.marklogic.com/maven2" }
2324
}
2425

25-
jacocoTestReport {
26-
group = "Reporting"
27-
description = "Generate Jacoco coverage reports after running tests."
28-
additionalSourceDirs = files(sourceSets.main.allJava.srcDirs)
29-
}
30-
3126
dependencies {
3227
compile project (':marklogic-client-api')
3328
compile group: 'org.skyscreamer', name: 'jsonassert', version: '1.5.0'
3429
compile group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.11.0'
3530
compile group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.11.0'
31+
compile group: 'org.slf4j', name: 'slf4j-api', version:'1.7.25'
32+
testCompile group: 'ch.qos.logback', name: 'logback-classic', version:'1.2.3'
3633
compile group: 'commons-io', name: 'commons-io', version: '2.6'
3734
}

0 commit comments

Comments
 (0)