File tree 6 files changed +44
-37
lines changed
hive-server2-jdbc-driver-thin
hive-server2-jdbc-driver-uber
6 files changed +44
-37
lines changed Original file line number Diff line number Diff line change @@ -61,28 +61,7 @@ More background at https://lists.apache.org/thread/63lr45kyh78s64spwsjxjy8zdyzpr
61
61
62
62
## Release Note
63
63
64
- ### 1.1.0
65
-
66
- Provides built-in GraalVM Reachability Metadata.
67
- Build from ` apache/hive:rel/release-4.0.0 ` .
68
-
69
- ```
70
- io.github.linghengqian:hive-server2-jdbc-driver-thin:1.1.0
71
-
72
- io.github.linghengqian:hive-server2-jdbc-driver-uber:1.1.0
73
- ```
74
-
75
- ### 1.0.0
76
-
77
- This is the first ` Thin JAR ` build and an accompanying, intuitive ` Uber JAR ` build for the HiveServer2 JDBC driver from
78
- ` apache/hive:rel/release-4.0.0 ` .
79
- Fixed all class conflicts.
80
-
81
- ```
82
- io.github.linghengqian:hive-server2-jdbc-driver-thin:1.0.0
83
-
84
- io.github.linghengqian:hive-server2-jdbc-driver-uber:1.0.0
85
- ```
64
+ Refer to [ CHANGELOG] ( ./doc/CHANGELOG.md ) .
86
65
87
66
## Contributing
88
67
Original file line number Diff line number Diff line change
1
+ # Release Note
2
+
3
+ ### 1.2.0
4
+
5
+ Keep in sync with the Zookeeper Client version of ` org.apache.hive.shims:hive-shims-common:4.0.0 ` .
6
+ Tip: ` apache/hive:master ` is using ` org.apache.zookeeper:zookeeper:3.8.4 ` ,
7
+ while ` apache/hive:rel/release-4.0.0 ` is using ` org.apache.zookeeper:zookeeper:3.8.3 ` .
8
+ Build from ` apache/hive:rel/release-4.0.0 ` .
9
+
10
+ ```
11
+ io.github.linghengqian:hive-server2-jdbc-driver-thin:1.2.0
12
+ io.github.linghengqian:hive-server2-jdbc-driver-uber:1.2.0
13
+ ```
14
+
15
+ ### 1.1.0
16
+
17
+ Provides built-in GraalVM Reachability Metadata.
18
+ Build from ` apache/hive:rel/release-4.0.0 ` .
19
+
20
+ ```
21
+ io.github.linghengqian:hive-server2-jdbc-driver-thin:1.1.0
22
+ io.github.linghengqian:hive-server2-jdbc-driver-uber:1.1.0
23
+ ```
24
+
25
+ ### 1.0.0
26
+
27
+ This is the first ` Thin JAR ` build and an accompanying, intuitive ` Uber JAR ` build for the HiveServer2 JDBC driver from
28
+ ` apache/hive:rel/release-4.0.0 ` .
29
+ Fixed all class conflicts.
30
+
31
+ ```
32
+ io.github.linghengqian:hive-server2-jdbc-driver-thin:1.0.0
33
+ io.github.linghengqian:hive-server2-jdbc-driver-uber:1.0.0
34
+ ```
Original file line number Diff line number Diff line change
1
+ # Contributing
2
+
1
3
Take Ubuntu WSL 22.04.4 as an example.
2
4
It is assumed that ` Git ` is configured, and ` SDKMAN! ` and ` Docker Engine ` are installed.
3
5
Original file line number Diff line number Diff line change 6
6
<parent >
7
7
<groupId >io.github.linghengqian</groupId >
8
8
<artifactId >hive-parent</artifactId >
9
- <version >1.2.0-SNAPSHOT </version >
9
+ <version >1.2.0</version >
10
10
</parent >
11
11
12
12
<artifactId >hive-server2-jdbc-driver-thin</artifactId >
231
231
<groupId >com.google.code.findbugs</groupId >
232
232
<artifactId >*</artifactId >
233
233
</exclusion >
234
- <!--
235
- TODO Fix class conflicts in master branch of apache/hive .
236
- Refer to https://github.com/apache/hive/commit/b09d76e68bfba6be19733d864b3207f95265d11f .
237
- -->
238
- <exclusion >
239
- <groupId >org.apache.zookeeper</groupId >
240
- <artifactId >zookeeper</artifactId >
241
- </exclusion >
242
234
</exclusions >
243
235
</dependency >
244
236
<dependency >
495
487
<artifactId >zookeeper</artifactId >
496
488
</exclusion >
497
489
<!--
498
- TODO Fix class conflicts in master branch of apache/hadoop .
490
+ TODO Fix class conflicts in trunk branch of apache/hadoop .
499
491
Refer to https://github.com/apache/hadoop/blob/release-3.3.6-RC1/hadoop-project/pom.xml#L1244 .
500
492
-->
501
493
<exclusion >
675
667
<version >${commons-text.version} </version >
676
668
</dependency >
677
669
<!--
678
- TODO Fix class conflicts in master branch of apache/hadoop .
670
+ TODO Fix class conflicts in trunk branch of apache/hadoop .
679
671
Refer to https://github.com/apache/hadoop/blob/release-3.3.6-RC1/hadoop-project/pom.xml#L1244 .
680
672
-->
681
673
<dependency >
Original file line number Diff line number Diff line change 6
6
<parent >
7
7
<groupId >io.github.linghengqian</groupId >
8
8
<artifactId >hive-parent</artifactId >
9
- <version >1.2.0-SNAPSHOT </version >
9
+ <version >1.2.0</version >
10
10
</parent >
11
11
12
12
<artifactId >hive-server2-jdbc-driver-uber</artifactId >
249
249
<version >${commons-text.version} </version >
250
250
</dependency >
251
251
<!--
252
- TODO Fix class conflicts in master branch of apache/hadoop .
252
+ TODO Fix class conflicts in trunk branch of apache/hadoop .
253
253
Refer to https://github.com/apache/hadoop/blob/release-3.3.6-RC1/hadoop-project/pom.xml#L1244 .
254
254
-->
255
255
<dependency >
Original file line number Diff line number Diff line change 5
5
<modelVersion >4.0.0</modelVersion >
6
6
<groupId >io.github.linghengqian</groupId >
7
7
<artifactId >hive-parent</artifactId >
8
- <version >1.2.0-SNAPSHOT </version >
8
+ <version >1.2.0</version >
9
9
10
10
<packaging >pom</packaging >
11
11
<name >${project.groupId} :${project.artifactId} </name >
54
54
<slf4j .version>1.7.30</slf4j .version>
55
55
56
56
<!--
57
- TODO Fix class conflicts in master branch of apache/hadoop .
57
+ TODO Fix class conflicts in trunk branch of apache/hadoop .
58
58
Refer to https://github.com/apache/hadoop/blob/release-3.3.6-RC1/hadoop-project/pom.xml#L1244 .
59
59
-->
60
60
<stax2-api .version>4.2.1</stax2-api .version>
You can’t perform that action at this time.
0 commit comments