Skip to content

Commit cdf72af

Browse files
authored
Merge pull request #937 from zhicwu/grpc
Upgrade gRPC libs
2 parents bcd4028 + 0d872b3 commit cdf72af

File tree

4 files changed

+16
-6
lines changed

4 files changed

+16
-6
lines changed

.github/workflows/third_party_libs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
version:
77
description: "Release version"
88
required: true
9-
default: "1.0.0"
9+
default: "1.2.0"
1010

1111
jobs:
1212
release:

.github/workflows/timezone.yml

+10
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ jobs:
3434
serverTz: ["Asia/Chongqing", "America/Los_Angeles", "Etc/UTC", "Europe/Berlin", "Europe/Moscow"]
3535
clientTz: ["Asia/Chongqing", "America/Los_Angeles", "Etc/UTC", "Europe/Berlin", "Europe/Moscow"]
3636
fail-fast: false
37+
timeout-minutes: 30
3738
name: "TimeZone(C/S): ${{ matrix.clientTz }} vs. ${{ matrix.serverTz }}"
3839
steps:
3940
- name: Check out Git repository
@@ -67,3 +68,12 @@ jobs:
6768
-DclickhouseVersion=22.3 \
6869
-Duser.timezone=${{ matrix.clientTz }} \
6970
--also-make clean verify
71+
- name: Upload test results
72+
uses: actions/upload-artifact@v2
73+
if: failure()
74+
with:
75+
name: result ${{ github.job }}
76+
path: |
77+
**/target/failsafe-reports
78+
**/target/surefire-reports
79+

pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
<grpc.version>1.45.1</grpc.version>
8888
<gson.version>2.9.0</gson.version>
8989
<httpclient.version>4.5.13</httpclient.version>
90-
<protobuf.version>3.17.3</protobuf.version>
90+
<protobuf.version>3.19.2</protobuf.version>
9191
<lz4.version>1.8.0</lz4.version>
9292
<roaring-bitmap.version>0.9.25</roaring-bitmap.version>
9393
<slf4j.version>2.0.0-alpha5</slf4j.version>
@@ -100,7 +100,7 @@
100100
<mysql-driver.version>8.0.28</mysql-driver.version>
101101
<postgresql-driver.version>42.3.3</postgresql-driver.version>
102102

103-
<repackaged.version>1.1.2</repackaged.version>
103+
<repackaged.version>1.2.0</repackaged.version>
104104

105105
<assembly-plugin.version>3.3.0</assembly-plugin.version>
106106
<compiler-plugin.version>3.8.1</compiler-plugin.version>

third-party-libraries/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -68,14 +68,14 @@
6868
</distributionManagement>
6969

7070
<properties>
71-
<revision>1.1.2</revision>
71+
<revision>1.2.0</revision>
7272
<project.current.year>2022</project.current.year>
7373
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
7474
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
7575
<grpc.version>1.45.1</grpc.version>
7676
<gson.version>2.9.0</gson.version>
7777
<opencensus.version>0.28.3</opencensus.version>
78-
<roaring-bitmap.version>0.9.25</roaring-bitmap.version>
78+
<roaring-bitmap.version>0.9.27</roaring-bitmap.version>
7979
<assembly-plugin.version>3.3.0</assembly-plugin.version>
8080
<deploy-plugin.version>3.0.0-M1</deploy-plugin.version>
8181
<flatten-plugin.version>1.2.7</flatten-plugin.version>
@@ -326,4 +326,4 @@
326326
</build>
327327
</profile>
328328
</profiles>
329-
</project>
329+
</project>

0 commit comments

Comments
 (0)