Skip to content

Commit a2e1c23

Browse files
committed
Merge branch 'release/1.1.0' into 1.0-master
2 parents b7e2a02 + e644eea commit a2e1c23

File tree

153 files changed

+4068
-1492
lines changed

Some content is hidden

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

153 files changed

+4068
-1492
lines changed

.travis.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,21 @@
11
language: java
22
jdk:
33
- oraclejdk8
4+
env:
5+
- NODE_VERSION=6.1
46
sudo: true
57
before_install:
68
- echo 'America/Los_Angeles' | sudo tee /etc/timezone
79
- sudo dpkg-reconfigure --frontend noninteractive tzdata
810
install:
11+
- nvm install $NODE_VERSION
12+
- nvm use $NODE_VERSION
13+
- npm install -g typings
914
- ./shared/dev-tasks/install-dependencies.sh
1015
script:
11-
- '[ "${TRAVIS_SECURE_ENV_VARS}" = "false" ] && ./gradlew test || ./gradlew jshint'
16+
- nvm use $NODE_VERSION
17+
- if [[ $TRAVIS_SECURE_ENV_VARS == true ]]; then
18+
./gradlew check;
19+
else
20+
./gradlew jshint;
21+
fi

CHANGELOG.md

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,29 @@
11
# Change Log
22

3-
## [v1.0.2](https://github.com/marklogic/marklogic-data-hub/tree/v1.0.2)
3+
## [v1.1.0](https://github.com/marklogic/marklogic-data-hub/tree/v1.1.0)
44

5+
[Full Changelog](https://github.com/marklogic/marklogic-data-hub/compare/v1.0.2...v1.1.0)
6+
7+
**Implemented enhancements:**
8+
9+
- Detect when running upgraded hub [\#322](https://github.com/marklogic/marklogic-data-hub/issues/322)
10+
11+
**Fixed bugs:**
12+
13+
- if MarkLogic is not started, login reports "invalid username or password" [\#343](https://github.com/marklogic/marklogic-data-hub/issues/343)
14+
- Need gradle variables for Auth method for final, staging, etc [\#340](https://github.com/marklogic/marklogic-data-hub/issues/340)
15+
- Pagination not implemented on jobs page [\#320](https://github.com/marklogic/marklogic-data-hub/issues/320)
16+
17+
**Closed issues:**
18+
19+
- Directory slashes when typing in paths [\#341](https://github.com/marklogic/marklogic-data-hub/issues/341)
20+
- Scaffolding generation failed [\#338](https://github.com/marklogic/marklogic-data-hub/issues/338)
21+
- Investigating slow performance in loading modules on Windows [\#336](https://github.com/marklogic/marklogic-data-hub/issues/336)
22+
- Input Flow - Output URI replace configuration doesn't stick on windows [\#335](https://github.com/marklogic/marklogic-data-hub/issues/335)
23+
- Keep user database settings separate from hub database settings [\#325](https://github.com/marklogic/marklogic-data-hub/issues/325)
24+
- Create a non-admin user for doing hub stuff [\#200](https://github.com/marklogic/marklogic-data-hub/issues/200)
25+
26+
## [v1.0.2](https://github.com/marklogic/marklogic-data-hub/tree/v1.0.2) (2016-11-22)
527
[Full Changelog](https://github.com/marklogic/marklogic-data-hub/compare/v1.0.1...v1.0.2)
628

729
**Fixed bugs:**

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Alternatively you can include the jar file as a build dependency in your Java pr
4444
**Gradle**
4545

4646
```groovy
47-
compile('com.marklogic:marklogic-data-hub:1.0.2')
47+
compile('com.marklogic:marklogic-data-hub:1.1.0')
4848
```
4949

5050
**Maven**
@@ -53,15 +53,15 @@ compile('com.marklogic:marklogic-data-hub:1.0.2')
5353
<dependency>
5454
<groupId>com.marklogic</groupId>
5555
<artifactId>marklogic-data-hub</artifactId>
56-
<version>1.0.2</version>
56+
<version>1.1.0</version>
5757
<type>pom</type>
5858
</dependency>
5959
```
6060

6161
**Ivy**
6262

6363
```xml
64-
<dependency org='com.marklogic' name='marklogic-data-hub' rev='1.0.2'>
64+
<dependency org='com.marklogic' name='marklogic-data-hub' rev='1.1.0'>
6565
<artifact name='$AID' ext='pom'></artifact>
6666
</dependency>
6767
```
@@ -72,7 +72,7 @@ If you prefer to use gradle for all of your hub interactions then you can includ
7272

7373
```groovy
7474
plugins {
75-
id 'com.marklogic.ml-data-hub' version '1.0.2'
75+
id 'com.marklogic.ml-data-hub' version '1.1.0'
7676
}
7777
```
7878

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@ subprojects {
2424
}
2525

2626
task wrapper(type: Wrapper) {
27-
gradleVersion = '2.6'
27+
gradleVersion = '3.1'
2828
}

examples/.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@ config
22
build.gradle
33
gradle.properties
44
gradle-local.properties
5-
marklogic-config/
5+
hub-internal-config/
6+
user-config/

examples/spring-batch/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
id 'idea'
55
id 'application'
66
id 'net.saliman.properties' version '1.4.6'
7-
id 'com.marklogic.ml-data-hub' version '1.0.2'
7+
id 'com.marklogic.ml-data-hub' version '1.1.0'
88
}
99

1010
repositories {
@@ -13,7 +13,7 @@ repositories {
1313
}
1414

1515
dependencies {
16-
compile 'com.marklogic:marklogic-data-hub:1.0.2'
16+
compile 'com.marklogic:marklogic-data-hub:1.1.0'
1717
compile 'com.marklogic:marklogic-spring-batch-core:0.6.0'
1818
compile 'com.marklogic:ml-javaclient-util:2.9.1'
1919
testCompile 'com.marklogic:marklogic-spring-batch-test:0.6.0'

examples/spring-batch/marklogic-config/databases/job-database.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,14 @@
4949
"collation": "",
5050
"range-value-positions": false,
5151
"invalid-values": "reject"
52+
},
53+
{
54+
"scalar-type": "string",
55+
"namespace-uri": "http://marklogic.com/spring-batch",
56+
"localname": "status",
57+
"collation": "http://marklogic.com/collation/",
58+
"range-value-positions": false,
59+
"invalid-values": "reject"
5260
}
5361
],
5462
"path-namespace": [

gradle.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
version=1.1.0

gradle/wrapper/gradle-wrapper.jar

-710 Bytes
Binary file not shown.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Wed Jan 20 09:34:11 EST 2016
1+
#Wed Dec 14 14:06:48 EST 2016
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-2.10-bin.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-3.1-bin.zip

0 commit comments

Comments
 (0)