This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/go_modules/golang.org/x/text-0.3.8 in repository https://gitbox.apache.org/repos/asf/pulsar-client-go.git
discard d782f14 Bump golang.org/x/text from 0.3.7 to 0.3.8 add e2ea255 [feat][txn]Implement transactionCoordinatorClient (#953) add d60bff6 Fix flaky Key_Shared subscription related tests (#970) add 13843e9 [perf] Support batch index ACK and max number of messages in batch (#967) add 5fa431d [feat] Support memory limit for producer. (#955) add 42ded0d Optimize performance by passing MessageID implementations by pointers (#968) add 73d0886 Fix license information for go-rate (#975) add 48b7d01 Fix nack backoff policy logic (#974) add 75d2df3 [PIP-165] Auto release idle connections (#963) add c595677 Athenz auth provider supports Copper Argos (#960) add 96bc58f [fix] Fix data race in checkAndCleanIdleConnections (#981) add d98c4f1 [refactor]: Refactor the toTrackingMessageID() (#972) add 07f97d9 [fix] Setup rate limiter for TestChunksEnqueueFailed to reduce flaky (#982) add 6985521 fix: prevent rpc client panic on rpc response if `ProducerReady` is nil (#973) add 5277f3f Fix ack grouping tracker is duplicate method will be blocked. (#986) add e269c42 [feat] Expose the chunk config of consumer to the reader (#987) add 352c463 Optimize batch index ACK performance (#988) add bcbac9f [perf]: More precise producer rate limiter (#989) add aed83e8 Bump golang.org/x/text from 0.3.7 to 0.3.8 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 (d782f14) \ N -- N -- N refs/heads/dependabot/go_modules/golang.org/x/text-0.3.8 (aed83e8) 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. No new revisions were added by this update. Summary of changes: Makefile | 2 +- distribution/LICENSE.bin.txt | 3 - go.mod | 1 + go.sum | 1 + integration-tests/conf/standalone.conf | 29 +- perf/perf-consumer.go | 13 +- perf/perf-producer.go | 37 ++- pulsar/ack_grouping_tracker.go | 304 +++++++++------------ pulsar/ack_grouping_tracker_test.go | 78 ++++-- pulsar/auth/athenz.go | 177 ++++++++---- pulsar/auth/athenz_test.go | 145 +++++++++- pulsar/client.go | 10 + pulsar/client_impl.go | 35 ++- pulsar/client_impl_test.go | 152 ++++++++++- pulsar/consumer_impl.go | 35 ++- pulsar/consumer_multitopic.go | 16 +- pulsar/consumer_partition.go | 212 +++++++------- pulsar/consumer_partition_test.go | 23 +- pulsar/consumer_regex.go | 23 +- pulsar/consumer_test.go | 4 +- pulsar/error.go | 12 + pulsar/helper_for_test.go | 7 + pulsar/impl_message.go | 114 ++++---- pulsar/impl_message_bench_test.go | 49 ---- pulsar/impl_message_test.go | 14 +- pulsar/internal/channel_cond.go | 76 ++++++ ...namespace_name_test.go => channel_cond_test.go} | 37 ++- pulsar/internal/commands.go | 11 + pulsar/internal/connection.go | 61 ++++- pulsar/internal/connection_pool.go | 34 ++- .../internal/{namespace_name_test.go => helper.go} | 19 +- pulsar/internal/memory_limit_controller.go | 101 +++++++ pulsar/internal/memory_limit_controller_test.go | 184 +++++++++++++ pulsar/internal/rpc_client.go | 2 +- pulsar/message.go | 8 - pulsar/message_chunking_test.go | 12 +- pulsar/negative_acks_tracker.go | 2 +- pulsar/negative_acks_tracker_test.go | 16 +- pulsar/producer_partition.go | 78 ++++-- pulsar/producer_test.go | 134 ++++++++- pulsar/reader.go | 10 + pulsar/reader_impl.go | 89 +++--- pulsar/reader_test.go | 39 +++ pulsar/{internal/closable.go => transaction.go} | 7 +- pulsar/transaction_coordinator_client.go | 199 ++++++++++++++ pulsar/transaction_test.go | 98 +++++++ scripts/pulsar-test-service-start.sh | 14 +- 47 files changed, 2063 insertions(+), 664 deletions(-) delete mode 100644 pulsar/impl_message_bench_test.go create mode 100644 pulsar/internal/channel_cond.go copy pulsar/internal/{namespace_name_test.go => channel_cond_test.go} (60%) copy pulsar/internal/{namespace_name_test.go => helper.go} (68%) create mode 100644 pulsar/internal/memory_limit_controller.go create mode 100644 pulsar/internal/memory_limit_controller_test.go copy pulsar/{internal/closable.go => transaction.go} (91%) create mode 100644 pulsar/transaction_coordinator_client.go create mode 100644 pulsar/transaction_test.go