Skip to content

Commit bab5c0c

Browse files
committed
prepping 2.0.0-alpha.1
1 parent aa4895d commit bab5c0c

File tree

11 files changed

+68
-16
lines changed

11 files changed

+68
-16
lines changed

CHANGELOG.md

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

3-
## [v1.0.1](https://github.com/marklogic/marklogic-data-hub/tree/v1.0.1)
3+
## [v2.0.1-alpha.1](https://github.com/marklogic/marklogic-data-hub/tree/v2.0.1-alpha.1)
44

5+
[Full Changelog](https://github.com/marklogic/marklogic-data-hub/compare/v1.0.2...v2.0.1-alpha.1)
6+
7+
**Implemented enhancements:**
8+
9+
- Visual entity type model editor [\#286](https://github.com/marklogic/marklogic-data-hub/issues/286)
10+
11+
## [v1.0.2](https://github.com/marklogic/marklogic-data-hub/tree/v1.0.2) (2016-11-22)
12+
[Full Changelog](https://github.com/marklogic/marklogic-data-hub/compare/v1.0.1...v1.0.2)
13+
14+
**Fixed bugs:**
15+
16+
- mlcp load from QuickStart GUI not loading data [\#331](https://github.com/marklogic/marklogic-data-hub/issues/331)
17+
18+
**Closed issues:**
19+
20+
- Possible typo on wiki page [\#333](https://github.com/marklogic/marklogic-data-hub/issues/333)
21+
- Tutorial instruction - create entity "Employees" instead of "Employee" [\#330](https://github.com/marklogic/marklogic-data-hub/issues/330)
22+
- mlcp job is not getting run + console log button not showing [\#329](https://github.com/marklogic/marklogic-data-hub/issues/329)
23+
- Error Extension hubstats does not exist. [\#328](https://github.com/marklogic/marklogic-data-hub/issues/328)
24+
25+
## [v1.0.1](https://github.com/marklogic/marklogic-data-hub/tree/v1.0.1) (2016-11-08)
526
[Full Changelog](https://github.com/marklogic/marklogic-data-hub/compare/v1.0.0...v1.0.1)
627

728
**Fixed bugs:**

README.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,19 @@
22

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

88
# MarkLogic Data Hub
99

10+
## WARNING!!!! This is the the 2.0 branch of The MarkLogic Data Hub Framework. The 2.0 version is only compatible with MarkLogic 9.0 which is currently in Early Access and not generally available.
11+
1012
Go from nothing to Enterprise Data Hub in a matter of minutes.
1113

1214
This project allows you to deploy a skeleton Data Hub into MarkLogic. With some basic configuration you will be running an Enterprise Data Hub in no time.
1315

16+
17+
1418
# Getting Started
1519

1620
###TL;DR
@@ -36,7 +40,7 @@ Alternatively you can include the jar file as a build dependency in your Java pr
3640
**Gradle**
3741

3842
```groovy
39-
compile('com.marklogic:marklogic-data-hub:1.0.1')
43+
compile('com.marklogic:marklogic-data-hub:2.0.0-alpha.1')
4044
```
4145

4246
**Maven**
@@ -45,15 +49,15 @@ compile('com.marklogic:marklogic-data-hub:1.0.1')
4549
<dependency>
4650
<groupId>com.marklogic</groupId>
4751
<artifactId>marklogic-data-hub</artifactId>
48-
<version>1.0.1</version>
52+
<version>2.0.0-alpha.1</version>
4953
<type>pom</type>
5054
</dependency>
5155
```
5256

5357
**Ivy**
5458

5559
```xml
56-
<dependency org='com.marklogic' name='marklogic-data-hub' rev='1.0.1'>
60+
<dependency org='com.marklogic' name='marklogic-data-hub' rev='2.0.0-alpha.1'>
5761
<artifact name='$AID' ext='pom'></artifact>
5862
</dependency>
5963
```
@@ -64,7 +68,7 @@ If you prefer to use gradle for all of your hub interactions then you can includ
6468

6569
```groovy
6670
plugins {
67-
id 'com.marklogic.ml-data-hub' version '1.0.1'
71+
id 'com.marklogic.ml-data-hub' version '2.0.0-alpha.1'
6872
}
6973
```
7074

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

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

1515
dependencies {
16-
compile 'com.marklogic:marklogic-data-hub:1.0.1'
16+
compile 'com.marklogic:marklogic-data-hub:2.0.0-alpha.1'
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'

marklogic-data-hub/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,6 @@ hubProjectDir=examples/hr-hub
3636
mlReplaceTokensInModules=true
3737
mlUseRoxyTokenPrefix=false
3838

39-
version=1.0.1
39+
version=2.0.0-alpha.1
4040

4141

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

Lines changed: 2 additions & 2 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.0.1'
6+
id 'com.marklogic.ml-data-hub' version '2.0.0-alpha.1'
77
}
88

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

1414
dependencies {
15-
compile 'com.marklogic:marklogic-data-hub:1.0.1'
15+
compile 'com.marklogic:marklogic-data-hub:2.0.0-alpha.1'
1616
compile 'com.marklogic:marklogic-xcc:8.0.5'
1717
}

marklogic-data-hub/src/trace-ui/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.0.1",
3+
"version": "2.0.0-alpha.1",
44
"license": "APACHE",
55
"homepage": "https://github.com/marklogic/marklogic-data-hub",
66
"scripts": {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version=1.0.1
1+
version=2.0.0-alpha.1
22
group=com.marklogic

quick-start/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version=1.0.1
1+
version=2.0.0-alpha.1

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.0.1",
3+
"version": "2.0.0-alpha.1",
44
"license": "APACHE",
55
"homepage": "https://github.com/marklogic/marklogic-data-hub",
66
"angular-cli": {},

quick-start/src/main/ui/app/entity-modeler/entity-modeler.component.html

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<div class="tools-container">
2-
<button class="tools-toggler" mdl-button mdl-button-type="mini-fab" mdl-colored="primary" mdl-ripple (click)="toolsVisible = !toolsVisible">
2+
<button class="tools-toggler" [ngClass]="{'none' : (!entities || entities.length === 0)}" mdl-button mdl-button-type="mini-fab" mdl-colored="primary" mdl-ripple (click)="toolsVisible = !toolsVisible">
33
<i class="fa fa-wrench"></i>
44
</button>
55
<div class="tools" *ngIf="toolsVisible">
@@ -13,6 +13,9 @@
1313
</div>
1414
</div>
1515
<div class="entities">
16+
<div class="none" *ngIf="!entities || entities.length === 0">
17+
You don't have any entities yet. Click the Wrench Icon to get started.
18+
</div>
1619
<svg #svgRoot *ngIf="entities">
1720
<g class="nodes" [attr.transform]="mainTransform">
1821
<g #entityDef *ngFor="let entity of entities"

0 commit comments

Comments
 (0)