Skip to content

Commit 3101dec

Browse files
committed
Release v1.2.0
1 parent e3188db commit 3101dec

File tree

6 files changed

+44
-37
lines changed

6 files changed

+44
-37
lines changed

README.md

+1-22
Original file line numberDiff line numberDiff line change
@@ -61,28 +61,7 @@ More background at https://lists.apache.org/thread/63lr45kyh78s64spwsjxjy8zdyzpr
6161

6262
## Release Note
6363

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) .
8665

8766
## Contributing
8867

doc/CHANGELOG.md

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
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+
```

doc/CONTRIBUTING.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Contributing
2+
13
Take Ubuntu WSL 22.04.4 as an example.
24
It is assumed that `Git` is configured, and `SDKMAN!` and `Docker Engine` are installed.
35

hive-server2-jdbc-driver-thin/pom.xml

+3-11
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.github.linghengqian</groupId>
88
<artifactId>hive-parent</artifactId>
9-
<version>1.2.0-SNAPSHOT</version>
9+
<version>1.2.0</version>
1010
</parent>
1111

1212
<artifactId>hive-server2-jdbc-driver-thin</artifactId>
@@ -231,14 +231,6 @@
231231
<groupId>com.google.code.findbugs</groupId>
232232
<artifactId>*</artifactId>
233233
</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>
242234
</exclusions>
243235
</dependency>
244236
<dependency>
@@ -495,7 +487,7 @@
495487
<artifactId>zookeeper</artifactId>
496488
</exclusion>
497489
<!--
498-
TODO Fix class conflicts in master branch of apache/hadoop .
490+
TODO Fix class conflicts in trunk branch of apache/hadoop .
499491
Refer to https://github.com/apache/hadoop/blob/release-3.3.6-RC1/hadoop-project/pom.xml#L1244 .
500492
-->
501493
<exclusion>
@@ -675,7 +667,7 @@
675667
<version>${commons-text.version}</version>
676668
</dependency>
677669
<!--
678-
TODO Fix class conflicts in master branch of apache/hadoop .
670+
TODO Fix class conflicts in trunk branch of apache/hadoop .
679671
Refer to https://github.com/apache/hadoop/blob/release-3.3.6-RC1/hadoop-project/pom.xml#L1244 .
680672
-->
681673
<dependency>

hive-server2-jdbc-driver-uber/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.github.linghengqian</groupId>
88
<artifactId>hive-parent</artifactId>
9-
<version>1.2.0-SNAPSHOT</version>
9+
<version>1.2.0</version>
1010
</parent>
1111

1212
<artifactId>hive-server2-jdbc-driver-uber</artifactId>
@@ -249,7 +249,7 @@
249249
<version>${commons-text.version}</version>
250250
</dependency>
251251
<!--
252-
TODO Fix class conflicts in master branch of apache/hadoop .
252+
TODO Fix class conflicts in trunk branch of apache/hadoop .
253253
Refer to https://github.com/apache/hadoop/blob/release-3.3.6-RC1/hadoop-project/pom.xml#L1244 .
254254
-->
255255
<dependency>

pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>io.github.linghengqian</groupId>
77
<artifactId>hive-parent</artifactId>
8-
<version>1.2.0-SNAPSHOT</version>
8+
<version>1.2.0</version>
99

1010
<packaging>pom</packaging>
1111
<name>${project.groupId}:${project.artifactId}</name>
@@ -54,7 +54,7 @@
5454
<slf4j.version>1.7.30</slf4j.version>
5555

5656
<!--
57-
TODO Fix class conflicts in master branch of apache/hadoop .
57+
TODO Fix class conflicts in trunk branch of apache/hadoop .
5858
Refer to https://github.com/apache/hadoop/blob/release-3.3.6-RC1/hadoop-project/pom.xml#L1244 .
5959
-->
6060
<stax2-api.version>4.2.1</stax2-api.version>

0 commit comments

Comments
 (0)