Skip to content

Commit

Permalink
Upgrade kafka client to 3.8.0 and spring kafka test (#2740)
Browse files Browse the repository at this point in the history
* Upgrade kafka client and spring kafka test

* 🤖 Auto-update API types for TypeScript usage

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
muralibasani and github-actions[bot] authored Dec 20, 2024
1 parent b3aa9a6 commit ead899d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
4 changes: 2 additions & 2 deletions cluster-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
<java.version>17</java.version>
<!-- the list is sorted-->
<apache.commons.lang.version>3.17.0</apache.commons.lang.version>
<kafka.version>3.7.1</kafka.version>
<kafka.version>3.8.0</kafka.version>
<mockserver.version>5.15.0</mockserver.version>
<spring-kafka-test.version>3.2.4</spring-kafka-test.version>
<spring-kafka-test.version>3.3.0</spring-kafka-test.version>
</properties>

<dependencies>
Expand Down
4 changes: 2 additions & 2 deletions coral/types/api.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2735,7 +2735,7 @@ export type components = {
/** Format: int32 */
topicpartitions: number;
replicationfactor: string;
description: string;
description?: string;
advancedTopicConfigEntries?: components["schemas"]["TopicConfigEntry"][];
/** Format: int32 */
teamId?: number;
Expand Down Expand Up @@ -2960,7 +2960,7 @@ export type components = {
/** Format: int32 */
topicpartitions: number;
replicationfactor: string;
description: string;
description?: string;
advancedTopicConfigEntries?: components["schemas"]["TopicConfigEntry"][];
/** Format: int32 */
teamId?: number;
Expand Down
6 changes: 4 additions & 2 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6004,7 +6004,7 @@
"type" : "string"
}
},
"required" : [ "description", "environment", "replicationfactor", "requestOperationType", "topicname", "topicpartitions" ]
"required" : [ "environment", "replicationfactor", "requestOperationType", "topicname", "topicpartitions" ]
},
"KwTenantModel" : {
"properties" : {
Expand Down Expand Up @@ -6658,7 +6658,7 @@
"type" : "string"
}
},
"required" : [ "description", "environment", "replicationfactor", "requestOperationType", "topicname", "topicpartitions" ]
"required" : [ "environment", "replicationfactor", "requestOperationType", "topicname", "topicpartitions" ]
},
"TopicDeleteRequestModel" : {
"properties" : {
Expand Down Expand Up @@ -6713,6 +6713,8 @@
},
"description" : {
"type" : "string",
"maxLength" : 100,
"minLength" : 1,
"pattern" : "^[a-zA-Z 0-9_.,-]{3,}$"
},
"teamId" : {
Expand Down

0 comments on commit ead899d

Please sign in to comment.