This is an automated email from the ASF dual-hosted git repository.
schofielaj pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/kafka.git
The following commit(s) were added to refs/heads/trunk by this push:
new d59d39a229e MINOR: fix MetadataRequest and MetadataResponse doc
(#19963)
d59d39a229e is described below
commit d59d39a229ea4ba76ffa9fd4616f216dcf551459
Author: Juha Mynttinen <[email protected]>
AuthorDate: Fri Jun 20 00:06:02 2025 +0300
MINOR: fix MetadataRequest and MetadataResponse doc (#19963)
MetadataRequest and MetadataResponse version 0 is still supported.
Remove from README.md mentioning that they're not supported. It's
unclear how such a mention was ever included in the file. It has always
been there
Reviewers: Andrew Schofield <[email protected]>
---
clients/src/main/resources/common/message/README.md | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/clients/src/main/resources/common/message/README.md
b/clients/src/main/resources/common/message/README.md
index 8c92fd6bc94..435635214f2 100644
--- a/clients/src/main/resources/common/message/README.md
+++ b/clients/src/main/resources/common/message/README.md
@@ -34,9 +34,7 @@ specifies the versions of the protocol that our code
understands. For example,
specifying "0-2" indicates that we understand versions 0, 1, and 2. You must
always specify the highest message version which is supported.
-The only old message versions that are no longer supported are version 0 of
-MetadataRequest and MetadataResponse. In general, since we adopted KIP-97,
-dropping support for old message versions is no longer allowed without a KIP.
+Dropping support for old message versions is no longer allowed without a KIP.
Therefore, please be careful not to increase the lower end of the version
support interval for any message.