This is an automated email from the ASF dual-hosted git repository.
lhotari pushed a change to branch branch-3.2
in repository https://gitbox.apache.org/repos/asf/pulsar.git
from 97afd308a57 [fix][broker] Fix ResourceGroups loading (#21781)
new 148a4fdf128 [improve][admin] Fix the `createMissingPartitions` doesn't
response correctly (#22311)
new 164c8752583 [fix][client]Fixed getting an incorrect `maxMessageSize`
value when accessing multiple clusters in the same process (#22306)
new 4b6b2d8f069 [improve][misc] Upgrade Netty version to 4.1.105.Final
(#21923)
new ce9ce60f242 [improve][misc] Include native epoll library for Netty for
arm64 (#22319)
new 599f8162243 [fix][ml]Expose ledger timestamp (#22338)
new dbe1fc03cf6 [fix][broker] Fix OpReadEntry.skipCondition NPE issue
(#22367)
new c01f72ef1d0 [fix][client] Consumer lost message ack due to race
condition in acknowledge with batch message (#22353)
The 7 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:
distribution/server/src/assemble/LICENSE.bin.txt | 41 ++++++------
distribution/shell/src/assemble/LICENSE.bin.txt | 39 +++++------
.../mledger/impl/ManagedLedgerFactoryImpl.java | 1 +
.../bookkeeper/mledger/impl/OpReadEntry.java | 2 +-
.../mledger/impl/ManagedLedgerFactoryTest.java | 5 ++
pom.xml | 2 +-
.../broker/admin/impl/PersistentTopicsBase.java | 4 +-
.../pulsar/broker/admin/PersistentTopicsTest.java | 7 ++
.../client/api/SimpleProducerConsumerTest.java | 6 +-
.../client/impl/ProducerMemoryLimitTest.java | 12 ++--
.../pulsar/client/impl/ProducerSemaphoreTest.java | 18 +++--
.../client/impl/AbstractBatchMessageContainer.java | 9 ++-
.../client/impl/BatchMessageContainerImpl.java | 10 +--
.../org/apache/pulsar/client/impl/ClientCnx.java | 3 +-
.../pulsar/client/impl/ConnectionHandler.java | 7 ++
.../apache/pulsar/client/impl/ConsumerImpl.java | 3 +-
.../pulsar/client/impl/MessageIdAdvUtils.java | 19 ++++--
.../PersistentAcknowledgmentsGroupingTracker.java | 18 +++--
.../apache/pulsar/client/impl/ProducerImpl.java | 32 +++++----
.../pulsar/client/impl/MessageIdAdvUtilsTest.java | 76 ++++++++++++++++++++++
pulsar-common/pom.xml | 6 ++
.../org/apache/pulsar/client/api/MessageIdAdv.java | 2 +
22 files changed, 231 insertions(+), 91 deletions(-)
create mode 100644
pulsar-client/src/test/java/org/apache/pulsar/client/impl/MessageIdAdvUtilsTest.java