Skip to content

Commit 5f18740

Browse files
authored
[Release] Released for 1.4.0 (#204)
2 parents bebea25 + be7a548 commit 5f18740

File tree

56 files changed

+251
-58
lines changed

Some content is hidden

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

56 files changed

+251
-58
lines changed

assets/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>incubator-datacap</artifactId>
9-
<version>1.4.0-SNAPSHOT</version>
9+
<version>1.4.0</version>
1010
</parent>
1111

1212
<groupId>io.edurt.datacap</groupId>

client/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.client</groupId>
88
<artifactId>datacap-client</artifactId>
9-
<version>1.4.0-SNAPSHOT</version>
9+
<version>1.4.0</version>
1010
</parent>
1111

1212
<artifactId>datacap-client-cli</artifactId>

client/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>incubator-datacap</artifactId>
9-
<version>1.4.0-SNAPSHOT</version>
9+
<version>1.4.0</version>
1010
</parent>
1111

1212
<groupId>io.edurt.datacap.client</groupId>

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>incubator-datacap</artifactId>
9-
<version>1.4.0-SNAPSHOT</version>
9+
<version>1.4.0</version>
1010
</parent>
1111

1212
<groupId>io.edurt.datacap.common</groupId>

configure/pom.xml

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

dist/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>incubator-datacap</artifactId>
9-
<version>1.4.0-SNAPSHOT</version>
9+
<version>1.4.0</version>
1010
</parent>
1111

1212
<groupId>io.edurt.datacap</groupId>

docs/docs/download.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ The current Trino release is version <img src="https://img.shields.io/github/v/r
2727

2828
<br />
2929

30-
[datacap-server-1.3.0.tar.gz](https://repo1.maven.org/maven2/io/edurt/datacap/datacap-server/1.3.0/datacap-server-1.3.0-release.tar.gz){ .md-button .md-button-primary }
30+
[datacap-server-1.4.0.tar.gz](https://repo1.maven.org/maven2/io/edurt/datacap/datacap-server/1.4.0/datacap-server-1.4.0-release.tar.gz){ .md-button .md-button-primary }
3131

3232
- :material-more: __More package__
3333

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
!!! note
2+
3+
To upgrade the software version `v1.4.0`, we need to go to the official website or the binary package distribution site to download the latest binary file of the software.
4+
5+
For details of `v1.4.0` release, please [click](../../release/1.4.0.md)
6+
7+
#### Require
8+
9+
!!! danger
10+
11+
Please take care to back up the current running service before updating
12+
13+
- Stop server
14+
15+
```bash
16+
cd datacap
17+
./bin/shutdown.sh
18+
```
19+
20+
- Backing up the current service
21+
22+
```bash
23+
mv datacap datacap.bak
24+
```
25+
26+
- Decompress binaries
27+
28+
```bash
29+
tar -xvzf datacap-server-1.3.0-release.tar.gz
30+
```
31+
32+
#### Update schema
33+
34+
- Connect to the My SQL server and execute the following script file
35+
36+
```bash
37+
cd schema/1.4.0
38+
source update.sql
39+
```
40+
41+
#### Update server
42+
43+
- Copy the service configuration file
44+
45+
```bash
46+
cp -r -i datacap.bak/configure datacap/
47+
```
48+
49+
- Restarting the Service
50+
51+
```bash
52+
cd datacap
53+
./bin/restart.sh
54+
```

docs/docs/release/1.4.0.md

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
!!! note
2+
3+
The current release involves several major updates.
4+
5+
:tada: :tada: :tada: :tada: :tada: :tada: **DataCap is released** :tada: :tada: :tada: :tada: :tada: :tada:
6+
7+
| Release Version | Release Time |
8+
|:---------------:|:------------:|
9+
| `1.4.0` | `2023-01-31` |
10+
11+
#### General
12+
13+
---
14+
15+
- Fixed restart script
16+
- Supports monitor process
17+
- Do not modify the default system SQL template
18+
- Fixed plugin template by name
19+
- Support user login log
20+
- Refactoring plug-in configuration extraction mode
21+
22+
#### Experimental
23+
24+
---
25+
26+
- Support data source manager
27+
- Add client cli
28+
29+
#### Web
30+
31+
---
32+
33+
- Plug-in ICONS are displayed based on the plug-in type
34+
- Optimize editor auto prompt
35+
- Support watermark
36+
- Templates are not supported for adding data sources
37+
- Fixed footer link
38+
39+
#### Plugins
40+
41+
---
42+
43+
- Support snowflake for jdbc
44+
- Support ydb for jdbc
45+
46+
#### Docs
47+
48+
---
49+
50+
- Refactor some docs
51+
52+
#### Redis (Native)
53+
54+
---
55+
56+
- Fixed command multiple parameters
57+
58+
#### Contributors
59+
60+
---
61+
62+
!!! danger
63+
64+
Many thanks to the following contributors for contributing to the source code of this release
65+
66+
In no particular order
67+
68+
| GitHub ID |
69+
|:--------------:|
70+
| @qianmoQ |
71+
| @hometownglory |

docs/mkdocs.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ theme:
1515
icon:
1616
logo: material/open-source-initiative
1717
favicon: material/open-source-initiative
18-
include_search_page: false
18+
include_search_page: true
1919
search_index_only: true
2020
language: en
2121
features:
2222
- content.code.annotate
2323
- content.tabs.link
24-
- navigation.expand
24+
# - navigation.expand
2525
- navigation.indexes
2626
- navigation.sections
2727
- navigation.tabs
@@ -101,20 +101,21 @@ plugins:
101101
- git-authors
102102
- redirects:
103103
redirect_maps:
104-
release-latest.md: release/1.3.0.md
104+
release-latest.md: release/1.4.0.md
105105

106106
nav:
107107
- Home: index.md
108108
- Documentation:
109109
- Installation: reference/get_started/install.md
110110
- Query: reference/get_started/query.md
111-
- History: reference/get_started/history.md
112111
- User Manager:
113112
- Basic:
114113
- DataSource: reference/admin/datasource/home.md
115114
- Snippet: reference/admin/snippet/home.md
116115
- Monitor:
117116
- Processor: reference/admin/processor/home.md
117+
- History:
118+
- Query History: reference/get_started/history.md
118119
- System Setting:
119120
- Basic:
120121
- Functions: reference/admin/functions/home.md
@@ -136,13 +137,15 @@ nav:
136137
- Kylin: reference/database/kylin.md
137138
- Oracle: reference/database/oracle.md
138139
- Update:
140+
- Update to 1.4.0: reference/update/1.4.0.md
139141
- Update to 1.3.0: reference/update/1.3.0.md
140142
- Update to 1.2.0: reference/update/v120.md
141143
- Developer guide:
142144
- Development environment: developer_guide/env.md
143145
- Custom Plugin: developer_guide/plugin.md
144146
- Release Note:
145-
- 1.3.0 (latest): release/1.3.0.md
147+
- 1.4.0 (latest): release/1.4.0.md
148+
- 1.3.0: release/1.3.0.md
146149
- 1.2.0: release/1.2.0.md
147150
- 1.1.0.20221115: release/1.1.0.20221115.md
148151
- 1.0.0.20221015: release/1.0.0.20221015.md

0 commit comments

Comments
 (0)