feat(kafka): flexibilize kafka bindings for clientId/groupId#646
Open
ivangsa wants to merge 2 commits into
Open
feat(kafka): flexibilize kafka bindings for clientId/groupId#646ivangsa wants to merge 2 commits into
ivangsa wants to merge 2 commits into
Conversation
Adds new 0.6.0 schema files for the Kafka binding. server.json is a version bump; channel.json, operation.json, and message.json include new fields per the following issues in asyncapi/bindings: operation.json: - transactional (boolean): marks producer as transactional (closes asyncapi/bindings#301) - isolationLevel (string enum): consumer isolation level (closes asyncapi/bindings#301) - errorTopics (object): retry and DLQ topic provisioning (closes asyncapi/bindings#299) - principal (string): Kafka principal for ACL documentation (closes asyncapi/bindings#302) channel.json: - topicConfiguration.min.insync.replicas (integer): min in-sync replicas (closes asyncapi/bindings#292) - envServerOverrides (object): per-server partial channel binding overrides (closes asyncapi/bindings#292) message.json: - compatibility (string enum): schema registry compatibility mode (closes asyncapi/bindings#304) Wires 0.6.0 into the core binding dispatch logic: - definitions/3.0.0 and definitions/3.1.0 for channel, operation, server, and message BindingsObject — latest ref updated to 0.6.0, new if/then block added for const: 0.6.0, enum extended to include 0.6.0 Registers all four 0.6.0 schema files in test/ajv-schemes.js and extends the Kafka binding test suites to cover the new fields and bindingVersion validation.
ivangsa
requested review from
GreenRover,
Pakisan,
asyncapi-bot-eve,
char0n,
dalelane,
derberg,
fmvilas,
jonaslagoni and
lbroudoux
as code owners
June 4, 2026 14:52
ivangsa
force-pushed
the
feature/kafka-bindings-clientId
branch
from
June 29, 2026 08:11
a5ff8ce to
88f2201
Compare
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



NOTE: this PR is stacked on #645
Description
Implements [FEATURE] Kafka operations: allow groupId and clientId to be a string or array of strings
asyncapi/bindings#303
adding support for plain values in
clientIdandgroupIdRelated issue(s)
Fixes asyncapi/bindings#303