kevin-wu24 commented on code in PR #23235:
URL: https://github.com/apache/kafka/pull/23235#discussion_r3876942519


##########
server-common/src/main/java/org/apache/kafka/server/common/MetadataVersion.java:
##########
@@ -124,21 +124,22 @@ public enum MetadataVersion {
     // BrokerRegistrationChangeRecord and RegisterBrokerRecord are updated
     IBP_4_3_IV0(30, "4.3", "IV0", true),
 
-    //
-    // NOTE: MetadataVersions after this point are unstable and may be changed.
-    // If users attempt to use an unstable MetadataVersion, they will get an 
error unless
-    // they have set the configuration unstable.feature.versions.enable=true.
-    // Please move this comment when updating the LATEST_PRODUCTION constant.
-    //
-
     // IBP_4_4_IV0 enables dead-letter queue support for share groups 
(KIP-1191).
     IBP_4_4_IV0(31, "4.4", "IV0", false),
 
     // Add support for CIDR-based ACL host patterns (KIP-1276).
     IBP_4_4_IV1(32, "4.4", "IV1", true),
 
     // Add support for controller unregistration (KIP-1312).
-    IBP_4_4_IV2(33, "4.4", "IV2", true);
+    IBP_4_4_IV2(33, "4.4", "IV2", true),
+
+    //
+    // NOTE: MetadataVersions after this point are unstable and may be changed.
+    // If users attempt to use an unstable MetadataVersion, they will get an 
error unless
+    // they have set the configuration unstable.feature.versions.enable=true.
+    // Please move this comment when updating the LATEST_PRODUCTION constant.
+    //
+    IBP_4_5_IV0(34, "4.5", "IV0", false);

Review Comment:
   Is it correct to add an unstable MV here? This will make a `IBP_4_5_IV0` 
enum value for MV get put in as part of the 4.4 release right? That doesn't 
seem right.
   
   cc @AndrewJSchofield @chia7712 



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to