Skip to content

Commit e9b8f8b

Browse files
committed
prepping 1.1.1
1 parent 35bb795 commit e9b8f8b

File tree

9 files changed

+48
-22
lines changed

9 files changed

+48
-22
lines changed

CHANGELOG.md

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

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

5+
[Full Changelog](https://github.com/marklogic/marklogic-data-hub/compare/v1.1.0...v1.1.1)
6+
7+
**Implemented enhancements:**
8+
9+
- customize session name to avoid conflicts [\#369](https://github.com/marklogic/marklogic-data-hub/issues/369)
10+
- Change Java Client API dependency to stable build [\#358](https://github.com/marklogic/marklogic-data-hub/issues/358)
11+
- Update Hub to use latest ml-gradle [\#355](https://github.com/marklogic/marklogic-data-hub/issues/355)
12+
13+
**Closed issues:**
14+
15+
- Entities and custom modules fail to deploy - v1.1.0 [\#377](https://github.com/marklogic/marklogic-data-hub/issues/377)
16+
- See if we can bail if the gradle version is too low [\#376](https://github.com/marklogic/marklogic-data-hub/issues/376)
17+
- Unable to login marklogic using hub frame work received "500 Internal Server Error" [\#374](https://github.com/marklogic/marklogic-data-hub/issues/374)
18+
- gradle plugin gets confused about users [\#371](https://github.com/marklogic/marklogic-data-hub/issues/371)
19+
- can't put binary inside envelope [\#366](https://github.com/marklogic/marklogic-data-hub/issues/366)
20+
- MLCP can't find /etc/hadooop [\#365](https://github.com/marklogic/marklogic-data-hub/issues/365)
21+
- Add CLA requirement to CONTRIBUTING [\#361](https://github.com/marklogic/marklogic-data-hub/issues/361)
22+
- Bug: QuickStart Login screen: Long paths aren't completely visible in Chrome [\#354](https://github.com/marklogic/marklogic-data-hub/issues/354)
23+
24+
**Merged pull requests:**
25+
26+
- Adds CLA requirement \(\#361\) [\#363](https://github.com/marklogic/marklogic-data-hub/pull/363) ([jmakeig](https://github.com/jmakeig))
27+
- Adds CLA requirement \(\#361\) [\#362](https://github.com/marklogic/marklogic-data-hub/pull/362) ([jmakeig](https://github.com/jmakeig))
28+
- Updates Java Client API dependency to stable build [\#359](https://github.com/marklogic/marklogic-data-hub/pull/359) ([jmakeig](https://github.com/jmakeig))
29+
30+
## [v1.1.0](https://github.com/marklogic/marklogic-data-hub/tree/v1.1.0) (2016-12-16)
531
[Full Changelog](https://github.com/marklogic/marklogic-data-hub/compare/v1.0.2...v1.1.0)
632

733
**Implemented enhancements:**

CONTRIBUTING.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,15 @@ To build the entire DHF (marklogic-data-hub.jar, quickstart.war, and ml-data-hub
3636

3737
```bash
3838
cd /path/to/data-hub-project/
39-
gradle build -x test
39+
./gradlew build -x test
4040
```
4141

4242
#### Running your local hub instead of the cloud hosted one
4343
```bash
4444
cd /path/to/data-hub-project/
45-
gradle publishToMavenLocal
45+
./gradlew publishToMavenLocal
4646
cd /path/to/data-hub-project/ml-data-hub-plugin
47-
gradle publishToMavenLocal
47+
./gradlew publishToMavenLocal
4848
```
4949

5050
Then in your build.gradle file you will need to use the local version:
@@ -69,7 +69,7 @@ You will need to open two terminal windows.
6969
**Terminal window 1** - This runs the webapp.
7070
```bash
7171
cd /path/to/data-hub-project
72-
gradle bootrun
72+
./gradlew bootrun
7373
```
7474

7575
**Terminal window 2** - This runs the Quickstart UI
@@ -174,7 +174,7 @@ $ git rebase upstream/1.0-develop
174174
Make sure the JUnit tests pass.
175175

176176
```sh
177-
$ gradle test
177+
$ ./gradlew test
178178
```
179179

180180
Make sure that all tests pass. Please, do not submit patches that fail.

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
OS | Status
77
--- | --- | ---
8-
Linux/Mac | [![Build Status](https://travis-ci.org/marklogic/marklogic-data-hub.svg?branch=1.0-develop)](https://travis-ci.org/marklogic/marklogic-data-hub)
8+
Linux/Mac | [![Build Status](https://travis-ci.org/marklogic/marklogic-data-hub.svg?branch=1.0-master)](https://travis-ci.org/marklogic/marklogic-data-hub)
99
Windows | [![Windows Build status](https://ci.appveyor.com/api/projects/status/kgj0k5na59uhkvbv?svg=true)](https://ci.appveyor.com/project/paxtonhare/marklogic-data-hub)
1010

1111
# MarkLogic Data Hub
@@ -47,7 +47,7 @@ Alternatively you can include the jar file as a build dependency in your Java pr
4747
**Gradle**
4848

4949
```groovy
50-
compile('com.marklogic:marklogic-data-hub:1.1.0')
50+
compile('com.marklogic:marklogic-data-hub:1.1.1')
5151
```
5252

5353
**Maven**
@@ -56,15 +56,15 @@ compile('com.marklogic:marklogic-data-hub:1.1.0')
5656
<dependency>
5757
<groupId>com.marklogic</groupId>
5858
<artifactId>marklogic-data-hub</artifactId>
59-
<version>1.1.0</version>
59+
<version>1.1.1</version>
6060
<type>pom</type>
6161
</dependency>
6262
```
6363

6464
**Ivy**
6565

6666
```xml
67-
<dependency org='com.marklogic' name='marklogic-data-hub' rev='1.1.0'>
67+
<dependency org='com.marklogic' name='marklogic-data-hub' rev='1.1.1'>
6868
<artifact name='$AID' ext='pom'></artifact>
6969
</dependency>
7070
```
@@ -75,14 +75,14 @@ If you prefer to use gradle for all of your hub interactions then you can includ
7575

7676
```groovy
7777
plugins {
78-
id 'com.marklogic.ml-data-hub' version '1.1.0'
78+
id 'com.marklogic.ml-data-hub' version '1.1.1'
7979
}
8080
```
8181

8282
Now you have full access to the Data Hub tasks. To see all available tasks run:
8383

8484
```bash
85-
gradle tasks
85+
./gradlew tasks
8686
```
8787

8888
# Building From Source

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.1.0'
7+
id 'com.marklogic.ml-data-hub' version '1.1.1'
88
}
99

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

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

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version=1.1.0
1+
version=1.1.1

marklogic-data-hub/src/main/resources/scaffolding/build_gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins {
33
id 'eclipse'
44
id 'idea'
55
id 'net.saliman.properties' version '1.4.6'
6-
id 'com.marklogic.ml-data-hub' version '1.1.0'
6+
id 'com.marklogic.ml-data-hub' version '1.1.1'
77
}
88

99
repositories {
@@ -12,6 +12,6 @@ repositories {
1212
}
1313

1414
dependencies {
15-
compile 'com.marklogic:marklogic-data-hub:1.1.0'
16-
compile 'com.marklogic:marklogic-xcc:8.0.5'
15+
compile 'com.marklogic:marklogic-data-hub:1.1.1'
16+
compile 'com.marklogic:marklogic-xcc:8.0.6'
1717
}

marklogic-data-hub/src/trace-ui/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "data-hub-quickstart",
3-
"version": "1.1.0",
2+
"name": "trace-ui",
3+
"version": "1.1.1",
44
"license": "APACHE",
55
"homepage": "https://github.com/marklogic/marklogic-data-hub",
66
"angular-cli": {},

ml-data-hub-plugin/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ repositories {
3030
dependencies {
3131
compile gradleApi()
3232
compile project(":marklogic-data-hub")
33-
compile 'com.marklogic:marklogic-xcc:8.0.5'
33+
compile 'com.marklogic:marklogic-xcc:8.0.6'
3434
compile 'com.marklogic:ml-gradle:2.5.0'
3535

3636
testCompile localGroovy()

quick-start/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "data-hub-quickstart",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"license": "APACHE",
55
"homepage": "https://github.com/marklogic/marklogic-data-hub",
66
"angular-cli": {},

0 commit comments

Comments
 (0)