This is an automated email from the ASF dual-hosted git repository.
lhotari pushed a change to branch branch-4.0
in repository https://gitbox.apache.org/repos/asf/pulsar.git
from dbbb37d36c9 [fix][broker] Fix regex matching of namespace name which
might contain a regex char (#25136)
new 4e5bf4d1b91 [fix][broker] Avoid split non-existent bundle (#25031)
new 00def717814 [fix][fn] complete flushAsync before closeAsync in
ProducerCache and wait for completion in closing the cache (#25140)
new f909e1c87fe [fix][proxy] Fix memory leaks in ParserProxyHandler
(#25142)
new f0080199935 [fix][admin] Fix offload policy incompatible issue.
(#25149)
new ccaa970361e [fix][ml] Retry offload reads when
OffloadReadHandleClosedException is encountered (#25148)
new 98c21c43973 [fix][sec] Upgrade vertx to address CVE-2026-1002 (#25152)
new 174a42401f8 [fix][broker] Fence reset cursor by timestamp to avoid
concurrent timestamp-based position lookups (#25151)
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 | 10 +-
.../bookkeeper/mledger/impl/ManagedLedgerImpl.java | 5 +
.../mledger/impl/cache/RangeEntryCacheImpl.java | 36 ++++--
.../impl/cache/RangeEntryCacheImplTest.java | 100 ++++++++++++++++
pom.xml | 2 +-
.../broker/admin/impl/PersistentTopicsBase.java | 6 +-
.../loadbalance/impl/ModularLoadManagerImpl.java | 21 +++-
.../service/persistent/PersistentSubscription.java | 23 +++-
.../pulsar/common/naming/NamespaceBundles.java | 2 +-
.../pulsar/broker/admin/TopicPoliciesTest.java | 38 ++++++-
.../impl/ModularLoadManagerImplTest.java | 54 +++++++++
.../broker/service/SubscriptionSeekTest.java | 62 ++++++++++
.../pulsar/functions/instance/ProducerCache.java | 31 ++++-
.../functions/instance/ProducerCacheTest.java | 36 ++++++
.../pulsar/proxy/server/DirectProxyHandler.java | 9 +-
.../pulsar/proxy/server/ParserProxyHandler.java | 126 ++++++++++++++-------
.../apache/pulsar/proxy/server/ProxyService.java | 12 +-
.../apache/pulsar/proxy/server/ProxyStatsTest.java | 58 ++++++++++
18 files changed, 551 insertions(+), 80 deletions(-)
create mode 100644
managed-ledger/src/test/java/org/apache/bookkeeper/mledger/impl/cache/RangeEntryCacheImplTest.java