File tree 6 files changed +11
-14
lines changed
serializer/seata-serializer-protobuf
6 files changed +11
-14
lines changed Original file line number Diff line number Diff line change @@ -114,6 +114,7 @@ Add changes here for all PR submitted to the 2.x branch.
114
114
- [[ #6750 ] ( https://github.com/apache/incubator-seata/pull/6750 )] increase spring autoconfigure module unit test converage
115
115
- [[ #6773 ] ( https://github.com/apache/incubator-seata/pull/6773 )] fix the wrong code coverage from codecov icon in default branch
116
116
- [[ #6821 ] ( https://github.com/apache/incubator-seata/pull/6821 )] fix the test case assertions
117
+ - [[ #6803 ] ( https://github.com/apache/incubator-seata/pull/6803 )] optimize: compilation and packaging for the ARM64 architecture
117
118
118
119
119
120
Thanks to these contributors for their code commits. Please report an unintended omission.
@@ -148,6 +149,7 @@ Thanks to these contributors for their code commits. Please report an unintended
148
149
- [ xiaoxiangyeyu0] ( https://github.com/xiaoxiangyeyu0 )
149
150
- [ LegGasai] ( https://github.com/LegGasai )
150
151
- [ yangli-stu] ( https://github.com/yangli-stu )
152
+ - [ heliang666s] ( https://github.com/heliang666s )
151
153
152
154
153
155
Also, we receive many valuable issues, questions and advices from our community. Thanks for you all.
Original file line number Diff line number Diff line change 98
98
- [[ #6779 ] ( https://github.com/apache/incubator-seata/pull/6779 )] 在config模块中使用curator替代zkclient
99
99
- [[ #6831 ] ( https://github.com/apache/incubator-seata/pull/6831 )] 在registry模块中使用curator替代zkclient
100
100
101
+ - [[ #6803 ] ( https://github.com/apache/incubator-seata/pull/6803 )] 优化 ARM64 架构的编译打包
101
102
102
103
### refactor:
103
104
149
150
- [ xiaoxiangyeyu0] ( https://github.com/xiaoxiangyeyu0 )
150
151
- [ LegGasai] ( https://github.com/LegGasai )
151
152
- [ yangli-stu] ( https://github.com/yangli-stu )
153
+ - [ heliang666s] ( https://github.com/heliang666s )
154
+
152
155
153
156
154
157
同时,我们收到了社区反馈的很多有价值的issue和建议,非常感谢大家。
Original file line number Diff line number Diff line change 78
78
<sofa .hessian.version>4.0.3</sofa .hessian.version>
79
79
<sofa .bolt.version>1.6.7</sofa .bolt.version>
80
80
81
- <protobuf .version>3.16.3 </protobuf .version>
82
- <grpc .version>1.27.1 </grpc .version>
81
+ <protobuf .version>3.25.4 </protobuf .version>
82
+ <grpc .version>1.66.0 </grpc .version>
83
83
<kryo .version>5.4.0</kryo .version>
84
84
<kryo-serializers .version>0.45</kryo-serializers .version>
85
85
<hessian .version>4.0.63</hessian .version>
Original file line number Diff line number Diff line change 32
32
<name >seata-grpc ${project.version} </name >
33
33
<description >gRPC integration for Seata built with Maven</description >
34
34
35
-
36
35
<dependencies >
37
36
<dependency >
38
37
<groupId >${project.groupId} </groupId >
83
82
<groupId >org.xolstice.maven.plugins</groupId >
84
83
<artifactId >protobuf-maven-plugin</artifactId >
85
84
<configuration >
86
- <protocArtifact >com.google.protobuf:protoc:3.11.0 :exe:${os.detected.classifier} </protocArtifact >
85
+ <protocArtifact >com.google.protobuf:protoc:3.25.4 :exe:${os.detected.classifier} </protocArtifact >
87
86
<pluginId >grpc-java</pluginId >
88
- <pluginArtifact >io.grpc:protoc-gen-grpc-java:1.27.1 :exe:${os.detected.classifier} </pluginArtifact >
87
+ <pluginArtifact >io.grpc:protoc-gen-grpc-java:1.66.0 :exe:${os.detected.classifier} </pluginArtifact >
89
88
</configuration >
90
89
<executions >
91
90
<execution >
98
97
</plugin >
99
98
</plugins >
100
99
</build >
101
-
100
+
102
101
</project >
Original file line number Diff line number Diff line change 218
218
<maven .git-commit-id.skip>false</maven .git-commit-id.skip>
219
219
</properties >
220
220
</profile >
221
- <!-- profile: arrch64 -->
222
- <profile >
223
- <id >arrch64</id >
224
- <properties >
225
- <os .detected.classifier>osx-x86_64</os .detected.classifier>
226
- </properties >
227
- </profile >
228
221
<!-- profile: checkstyle -->
229
222
<profile >
230
223
<id >checkstyle</id >
Original file line number Diff line number Diff line change 57
57
<configuration >
58
58
<protoSourceRoot >${project.basedir} /src/main/resources/protobuf/org/apache/seata/protocol/transcation/</protoSourceRoot >
59
59
<protocArtifact >
60
- com.google.protobuf:protoc:3.11.0 :exe:${os.detected.classifier}
60
+ com.google.protobuf:protoc:3.25.4 :exe:${os.detected.classifier}
61
61
</protocArtifact >
62
62
</configuration >
63
63
<executions >
You can’t perform that action at this time.
0 commit comments