Skip to content

Commit 6cf61a8

Browse files
authored
[Release] Released for 1.8.0 (#315)
2 parents c04165a + e6cb1a9 commit 6cf61a8

File tree

61 files changed

+298
-96
lines changed

Some content is hidden

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

61 files changed

+298
-96
lines changed

client/datacap-cli/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.edurt.datacap</groupId>
88
<artifactId>datacap</artifactId>
9-
<version>1.8.0-SNAPSHOT</version>
9+
<version>1.8.0</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

core/datacap-common/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.edurt.datacap</groupId>
88
<artifactId>datacap</artifactId>
9-
<version>1.8.0-SNAPSHOT</version>
9+
<version>1.8.0</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

core/datacap-parser/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.edurt.datacap</groupId>
88
<artifactId>datacap</artifactId>
9-
<version>1.8.0-SNAPSHOT</version>
9+
<version>1.8.0</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

core/datacap-server/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>datacap</artifactId>
77
<groupId>io.edurt.datacap</groupId>
8-
<version>1.8.0-SNAPSHOT</version>
8+
<version>1.8.0</version>
99
<relativePath>../../pom.xml</relativePath>
1010
</parent>
1111
<modelVersion>4.0.0</modelVersion>

core/datacap-spi/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>datacap</artifactId>
77
<groupId>io.edurt.datacap</groupId>
8-
<version>1.8.0-SNAPSHOT</version>
8+
<version>1.8.0</version>
99
<relativePath>../../pom.xml</relativePath>
1010
</parent>
1111
<modelVersion>4.0.0</modelVersion>

core/datacap-web/console-fe/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "datacap-fe",
33
"description": "DataCap console",
4-
"version": "1.8.0-SNAPSHOT",
4+
"version": "1.8.0",
55
"private": true,
66
"scripts": {
77
"dev": "vue-cli-service serve",

docs/docs/download.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,18 @@ The current Trino release is version <img src="https://img.shields.io/github/v/r
2727

2828
<br />
2929

30-
[datacap-server-1.7.0.tar.gz](https://repo1.maven.org/maven2/io/edurt/datacap/datacap-server/1.7.0/datacap-server-1.7.0-release.tar.gz){ .md-button .md-button-primary }
31-
30+
[datacap-server-1.8.0.tar.gz](https://repo1.maven.org/maven2/io/edurt/datacap/datacap-server/1.8.0/datacap-server-1.8.0-release.tar.gz){ .md-button .md-button-primary }
31+
32+
- :material-application-outline: __Command line client__
33+
34+
---
35+
36+
You can run queries using the interactive [command line interface](/reference/clients/cli.html).
37+
38+
<br />
39+
40+
[datacap-client-cli-1.8.0.jar](https://repo1.maven.org/maven2/io/edurt/datacap/datacap-client-cli/1.8.0/datacap-client-cli-1.8.0.jar){ .md-button .md-button-primary }
41+
3242
- :material-more: __More package__
3343

3444
---

docs/docs/reference/clients/cli.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
---
22
title: Command line interface
3-
status: new
43
---
54

65
The DataCap CLI provides a terminal-based, interactive shell for running queries. The CLI is a self-executing JAR file, which means it acts like a normal UNIX executable.

docs/docs/reference/connectors/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ This chapter describes the connectors available in DataCap to access data from d
1414

1515
#### Native
1616

17+
[H2 Database](./native/h2.md) <br />
1718
[Apache Kafka](./native/kafka/index.md) <br />
1819
[Aliyun OSS](./native/alioss.md) <br />
1920
[Apache Zookeeper](./native/zookeeper.md) <br />
Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
---
2+
title: H2 Database
3+
status: new
4+
---
5+
6+
<img src="/assets/plugin/h2.png" class="connector-logo" />
7+
8+
#### What is h2 ?
9+
10+
H2 is an embedded database developed in Java that is itself just a class library.
11+
12+
#### Environment
13+
14+
---
15+
16+
!!! note
17+
18+
If you need to use this data source, you need to upgrade the DataCap service to >= `1.8.x`
19+
20+
Support Time: `2023-04-05`
21+
22+
#### Configure
23+
24+
---
25+
26+
!!! note
27+
28+
If your h2 service version requires other special configurations, please refer to modifying the configuration file and restarting the DataCap service.
29+
30+
=== "Configure"
31+
32+
| Field | Required | Default Value |
33+
|:------:|:---------------------------------:|:-------------:|
34+
| `Name` | :material-check-circle: { .red } | - |
35+
36+
=== "Authorization"
37+
38+
| Field | Required | Default Value |
39+
|:----------:|:---------------------------------:|:-------------:|
40+
| `Username` | :material-check-circle: { .red } | - |
41+
| `Password` | :material-close-circle: | - |
42+
43+
=== "Advanced"
44+
45+
| Field | Required | Default Value |
46+
|:----------:|:--------------------------------:|:-------------:|
47+
| `Database` | :material-check-circle: { .red } | |
48+
49+
50+
#### Version (Validation)
51+
52+
---
53+
54+
!!! warning
55+
56+
The online service has not been tested yet, if you have detailed test results, please submit [issues](https://github.com/EdurtIO/datacap/issues/new/choose) to us
57+
58+
- [x] `all`

0 commit comments

Comments
 (0)