KAFKA-17083: Update LATEST_STABLE_METADATA_VERSION in system tests (#16533)

LATEST_PRODUCTION version in MetadataVersion.java was updated in
both #16347 and #16400, but it was left unchanged in the system
tests.

Reviewers: Josep Prat <josep.prat@aiven.io>
This commit is contained in:
Igor Soarez 2024-07-05 21:29:35 +01:00 committed by GitHub
parent 9a7eee6072
commit 1bec3811ad
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 1 deletions

View File

@ -245,6 +245,8 @@ public enum MetadataVersion {
* IT CANNOT BE CHANGED.</strong>
*/
public static final MetadataVersion LATEST_PRODUCTION = IBP_3_8_IV0;
// If you change the value above please also update
// LATEST_STABLE_METADATA_VERSION version in tests/kafkatest/version.py
/**
* An array containing all of the MetadataVersion entries.

View File

@ -125,7 +125,7 @@ DEV_BRANCH = KafkaVersion("dev")
DEV_VERSION = KafkaVersion("3.8.0-SNAPSHOT")
# This should match the LATEST_PRODUCTION version defined in MetadataVersion.java
LATEST_STABLE_METADATA_VERSION = "3.7"
LATEST_STABLE_METADATA_VERSION = "3.8"
# 0.8.2.x versions
V_0_8_2_1 = KafkaVersion("0.8.2.1")