This is an automated email from the ASF dual-hosted git repository.
aaronai pushed a change to branch java_dev
in repository https://gitbox.apache.org/repos/asf/rocketmq-clients.git
omit 9d176f6 [maven-release-plugin] prepare for next development iteration
omit 62413f9 [maven-release-plugin] prepare release
rocketmq-client-java-5.0.0
add ac0667f Ajust bazel options
add cc3cccf Polish NOTICE (#124)
add 21d60f4 Release java client 5.0.0 (#125)
add 034d51f Revert "Release java client 5.0.0 (#125)"
add db03197 [maven-release-plugin] prepare release
rocketmq-client-java-5.0.0
add 6fcff32 [maven-release-plugin] prepare for next development iteration
add 64eb7b9 Test GitHub Action Secrets (#123)
add 14956ec Add misspell check action (#126)
add 6395d04 Fix typos (#128)
add e2a2fb5 Support codecov (#129)
add 923cb40 Remove coverage from readme
new 4c4a1a0 Delete redundant test of cpp
new c3b99b0 WIP
new 60e25dc WIP
new 896d753 Add remote cache
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (9d176f6)
\
N -- N -- N refs/heads/java_dev (896d753)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.github/workflows/cpp_build.yml | 27 +++-
.github/workflows/cpp_coverage.yml | 23 +++
.github/workflows/java_coverage.yml | 31 +++++
.../{license-checker.yaml => license_checker.yaml} | 3 +-
.github/workflows/misspell_check.yaml | 18 +++
NOTICE | 8 --
cpp/.bazelrc | 9 +-
cpp/examples/ExampleProducer.cpp | 3 +-
cpp/proto/apache/rocketmq/v2/definition.proto | 2 +-
cpp/source/base/tests/AssignmentTest.cpp | 5 +-
cpp/source/base/tests/BUILD.bazel | 70 +++++-----
cpp/source/base/tests/ConfigurationTest.cpp | 54 -------
cpp/source/base/tests/MessageBuilderTest.cpp | 56 --------
cpp/source/base/tests/MessageQueueTest.cpp | 38 -----
cpp/source/base/tests/MixAllTest.cpp | 38 -----
cpp/source/base/tests/RetryPolicyTest.cpp | 38 -----
cpp/source/concurrent/tests/BUILD.bazel | 26 ----
cpp/source/concurrent/tests/CountdownLatchTest.cpp | 72 ----------
cpp/source/rocketmq/ProducerImpl.cpp | 2 +-
cpp/source/rocketmq/tests/BUILD.bazel | 46 ------
cpp/source/rocketmq/tests/ClientImplTest.cpp | 36 -----
cpp/source/rocketmq/tests/SendContextTest.cpp | 33 -----
cpp/source/rocketmq/tests/TimeTest.cpp | 31 -----
cpp/source/stats/tests/BUILD.bazel | 28 ----
cpp/source/stats/tests/PublishStatsTest.cpp | 155 ---------------------
.../Protos/apache/rocketmq/v2/definition.proto | 2 +-
docs/design.md | 4 +-
docs/workflow.md | 2 +-
golang/protocol/v2/definition.pb.go | 2 +-
java/pom.xml | 42 ++++++
rust/proto/apache/rocketmq/v2/definition.proto | 2 +-
31 files changed, 194 insertions(+), 712 deletions(-)
create mode 100644 .github/workflows/cpp_coverage.yml
create mode 100644 .github/workflows/java_coverage.yml
rename .github/workflows/{license-checker.yaml => license_checker.yaml} (93%)
create mode 100644 .github/workflows/misspell_check.yaml
delete mode 100644 cpp/source/base/tests/ConfigurationTest.cpp
delete mode 100644 cpp/source/base/tests/MessageBuilderTest.cpp
delete mode 100644 cpp/source/base/tests/MessageQueueTest.cpp
delete mode 100644 cpp/source/base/tests/MixAllTest.cpp
delete mode 100644 cpp/source/base/tests/RetryPolicyTest.cpp
delete mode 100644 cpp/source/concurrent/tests/BUILD.bazel
delete mode 100644 cpp/source/concurrent/tests/CountdownLatchTest.cpp
delete mode 100644 cpp/source/rocketmq/tests/BUILD.bazel
delete mode 100644 cpp/source/rocketmq/tests/ClientImplTest.cpp
delete mode 100644 cpp/source/rocketmq/tests/SendContextTest.cpp
delete mode 100644 cpp/source/rocketmq/tests/TimeTest.cpp
delete mode 100644 cpp/source/stats/tests/BUILD.bazel
delete mode 100644 cpp/source/stats/tests/PublishStatsTest.cpp