Skip to content

Commit 492b036

Browse files
authored
NOOP some transport versions (#127037)
We accidentally released the `9_051_0_00` and `9_052_0_00` transport versions to serverless without their backing code. We can't take that back. It's live. You can't unbake the cake. That version of Elasticsearch will claim to be `9_052_0_00` but actually speak `9_050_0_00` code. To make main compatible with that version we're bumping all transport versions in main *past* those numbers. This is a forbidden action. You may not do this. I may not do this. It is not safe. But it is the only way to make the world whole again. In all seriousness, everything will be fine. It's against the rules but sometimes you have to break rules to put things right. We believe some serverless dev environments may break which is sad but it's worth it to bring everything back to sane land.
1 parent 9d5df19 commit 492b036

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

server/src/main/java/org/elasticsearch/TransportVersions.java

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -222,10 +222,14 @@ static TransportVersion def(int id) {
222222
public static final TransportVersion REPO_ANALYSIS_COPY_BLOB = def(9_048_0_00);
223223
public static final TransportVersion AMAZON_BEDROCK_TASK_SETTINGS = def(9_049_0_00);
224224
public static final TransportVersion ESQL_REPORT_SHARD_PARTITIONING = def(9_050_0_00);
225-
public static final TransportVersion ESQL_QUERY_PLANNING_DURATION = def(9_051_0_00);
226-
public static final TransportVersion ESQL_DOCUMENTS_FOUND_AND_VALUES_LOADED = def(9_052_0_00);
227-
public static final TransportVersion BATCHED_QUERY_EXECUTION_DELAYABLE_WRITABLE = def(9_053_0_00);
228-
public static final TransportVersion SEARCH_INCREMENTAL_TOP_DOCS_NULL = def(9_054_0_00);
225+
public static final TransportVersion DEAD_ESQL_QUERY_PLANNING_DURATION = def(9_051_0_00);
226+
public static final TransportVersion DEAD_ESQL_DOCUMENTS_FOUND_AND_VALUES_LOADED = def(9_052_0_00);
227+
public static final TransportVersion DEAD_BATCHED_QUERY_EXECUTION_DELAYABLE_WRITABLE = def(9_053_0_00);
228+
public static final TransportVersion DEAD_SEARCH_INCREMENTAL_TOP_DOCS_NULL = def(9_054_0_00);
229+
public static final TransportVersion ESQL_QUERY_PLANNING_DURATION = def(9_055_0_00);
230+
public static final TransportVersion ESQL_DOCUMENTS_FOUND_AND_VALUES_LOADED = def(9_056_0_00);
231+
public static final TransportVersion BATCHED_QUERY_EXECUTION_DELAYABLE_WRITABLE = def(9_057_0_00);
232+
public static final TransportVersion SEARCH_INCREMENTAL_TOP_DOCS_NULL = def(9_058_0_00);
229233

230234
/*
231235
* STOP! READ THIS FIRST! No, really,

0 commit comments

Comments
 (0)