Skip to content

Commit e310de8

Browse files
authored
[Release] Released for 2024.03.6 (#789)
2 parents 27a0a3a + 3f439fd commit e310de8

File tree

97 files changed

+173
-123
lines changed

Some content is hidden

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

97 files changed

+173
-123
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>2024.03.6-SNAPSHOT</version>
9+
<version>2024.03.6</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

configure/docker/application.properties

Lines changed: 25 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
################################### Basic configure #################################
2-
server.port=9099
2+
server.port=9096
33
# Note: If you need to use IP+ port to facilitate access by external machines, do not set it to localhost, 0.0.0.0 is recommended
44
server.address=0.0.0.0
55
# Fixed serialized data missing for 8 hours
@@ -81,6 +81,7 @@ datacap.openai.token=
8181
# GPT_4_32K_0314
8282
# GPT_4_0613
8383
# GPT_4_32K_0613
84+
# GPT_4O
8485
datacap.openai.model=GPT_35_TURBO_0613
8586
# Access remote API timeout, in seconds
8687
datacap.openai.timeout=30
@@ -118,6 +119,29 @@ datacap.dataset.tableDefaultEngine=MergeTree
118119
################################# Plugin configure #################################
119120
datacap.parser.sql.defaultEngine=Trino
120121

122+
################################# File System configure #################################
123+
# For the file storage type, please refer to datacap-fs-<Type>, which defaults to Local
124+
# ------ Local File System ------ #
125+
datacap.fs.type=Local
126+
datacap.fs.access=
127+
datacap.fs.secret=
128+
datacap.fs.endpoint=
129+
datacap.fs.bucket=
130+
131+
# ------ Qiniu File System ------#
132+
#datacap.fs.type=Qiniu
133+
#datacap.fs.access=
134+
#datacap.fs.secret=
135+
#datacap.fs.endpoint=
136+
#datacap.fs.bucket=
137+
138+
# ------ Ali yun OSS File System ------#
139+
#datacap.fs.type=AliOss
140+
#datacap.fs.access=
141+
#datacap.fs.secret=
142+
#datacap.fs.endpoint=
143+
#datacap.fs.bucket=
144+
121145
################################# Experimental features #################################
122146
# This configuration is used to dynamically increase the total number of rows of returned data in SQL during query, and currently only takes effect for user-directed queries
123147
# If the total number of rows returned is included in the SQL, it will not be automatically incremented
@@ -127,9 +151,3 @@ datacap.experimental.data={user.dir}/data
127151
# The path to upload the user's avatar
128152
# `{username}` Fixed format, currently not supported to modify, this configuration will automatically get the current user name by default
129153
datacap.experimental.avatarPath={username}/avatar/
130-
# For the file storage type, please refer to datacap-fs-<Type>, which defaults to Local
131-
datacap.experimental.fs.type=Local
132-
datacap.experimental.fs.access=
133-
datacap.experimental.fs.secret=
134-
datacap.experimental.fs.endpoint=
135-
datacap.experimental.fs.bucket=

configure/schema/datacap.sql

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1087,6 +1087,7 @@ CREATE TABLE `datacap_source_query` (
10871087
`code` varchar(100) DEFAULT NULL,
10881088
`name` varchar(100) DEFAULT NULL,
10891089
`home` varchar(500) DEFAULT NULL,
1090+
`format` varchar(100) DEFAULT 'Json',
10901091
PRIMARY KEY (`id`),
10911092
FULLTEXT KEY `full_text_index_for_content` (`content`)
10921093
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
@@ -1230,4 +1231,4 @@ UNLOCK TABLES;
12301231
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
12311232
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
12321233

1233-
-- Dump completed on 2024-06-05 8:50:14
1234+
-- Dump completed on 2024-06-19 20:03:24

core/datacap-captcha/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>2024.03.6-SNAPSHOT</version>
9+
<version>2024.03.6</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>2024.03.6-SNAPSHOT</version>
9+
<version>2024.03.6</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>2024.03.6-SNAPSHOT</version>
9+
<version>2024.03.6</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

core/datacap-security/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>2024.03.6-SNAPSHOT</version>
9+
<version>2024.03.6</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>2024.03.6-SNAPSHOT</version>
8+
<version>2024.03.6</version>
99
<relativePath>../../pom.xml</relativePath>
1010
</parent>
1111
<modelVersion>4.0.0</modelVersion>

core/datacap-service/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>2024.03.6-SNAPSHOT</version>
9+
<version>2024.03.6</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

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>2024.03.6-SNAPSHOT</version>
8+
<version>2024.03.6</version>
99
<relativePath>../../pom.xml</relativePath>
1010
</parent>
1111
<modelVersion>4.0.0</modelVersion>

0 commit comments

Comments
 (0)