Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Redpanda Migrator versions #2893

Merged
merged 1 commit into from
Sep 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ component_type_dropdown::[]

A Redpanda Migrator input using the https://github.com/twmb/franz-go[Franz Kafka client library^].

Introduced in version 4.35.0.
Introduced in version 4.37.0.


[tabs]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ component_type_dropdown::[]

A Redpanda Migrator output using the https://github.com/twmb/franz-go[Franz Kafka client library^].

Introduced in version 4.35.0.
Introduced in version 4.37.0.


[tabs]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ component_type_dropdown::[]

Redpanda Migrator consumer group offsets output using the https://github.com/twmb/franz-go[Franz Kafka client library^].

Introduced in version 4.35.0.
Introduced in version 4.37.0.


[tabs]
Expand Down
2 changes: 1 addition & 1 deletion internal/impl/kafka/enterprise/redpanda_migrator_input.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ func redpandaMigratorInputConfig() *service.ConfigSpec {
return service.NewConfigSpec().
Beta().
Categories("Services").
Version("4.35.0").
Version("4.37.0").
Summary(`A Redpanda Migrator input using the https://github.com/twmb/franz-go[Franz Kafka client library^].`).
Description(`
Reads a batch of messages from a Kafka broker and waits for the output to acknowledge the writes before updating the Kafka consumer group offset.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ func redpandaMigratorOffsetsOutputConfig() *service.ConfigSpec {
return service.NewConfigSpec().
Beta().
Categories("Services").
Version("4.35.0").
Version("4.37.0").
Summary("Redpanda Migrator consumer group offsets output using the https://github.com/twmb/franz-go[Franz Kafka client library^].").
// TODO
Description("This output can be used in combination with the `kafka_franz` input that is configured to read the `__consumer_offsets` topic.").
Expand Down
2 changes: 1 addition & 1 deletion internal/impl/kafka/enterprise/redpanda_migrator_output.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ func redpandaMigratorOutputConfig() *service.ConfigSpec {
return service.NewConfigSpec().
Beta().
Categories("Services").
Version("4.35.0").
Version("4.37.0").
Summary("A Redpanda Migrator output using the https://github.com/twmb/franz-go[Franz Kafka client library^].").
Description(`
Writes a batch of messages to a Kafka broker and waits for acknowledgement before propagating it back to the input.
Expand Down
10 changes: 5 additions & 5 deletions internal/plugins/info.csv
Original file line number Diff line number Diff line change
Expand Up @@ -190,11 +190,11 @@ redis_script ,processor ,Redis Script ,4.11.0 ,certif
redis_streams ,input ,Redis Streams ,0.0.0 ,certified ,n ,y ,y
redis_streams ,output ,Redis Streams ,0.0.0 ,certified ,n ,y ,y
redpanda_data_transform ,processor ,redpanda_data_transform ,4.31.0 ,certified ,n ,n ,n
redpanda_migrator ,input ,redpanda_migrator ,4.38.0 ,enterprise ,n ,y ,y
redpanda_migrator ,output ,redpanda_migrator ,4.38.0 ,enterprise ,n ,y ,y
redpanda_migrator_bundle ,input ,redpanda_migrator_bundle ,4.38.0 ,enterprise ,n ,y ,y
redpanda_migrator_bundle ,output ,redpanda_migrator_bundle ,4.38.0 ,enterprise ,n ,y ,y
redpanda_migrator_offsets ,output ,redpanda_migrator_offsets ,4.38.0 ,enterprise ,n ,y ,y
redpanda_migrator ,input ,redpanda_migrator ,4.37.0 ,enterprise ,n ,y ,y
redpanda_migrator ,output ,redpanda_migrator ,4.37.0 ,enterprise ,n ,y ,y
redpanda_migrator_bundle ,input ,redpanda_migrator_bundle ,4.37.0 ,enterprise ,n ,y ,y
redpanda_migrator_bundle ,output ,redpanda_migrator_bundle ,4.37.0 ,enterprise ,n ,y ,y
redpanda_migrator_offsets ,output ,redpanda_migrator_offsets ,4.37.0 ,enterprise ,n ,y ,y
reject ,output ,reject ,0.0.0 ,certified ,n ,y ,y
reject_errored ,output ,reject_errored ,0.0.0 ,certified ,n ,y ,y
resource ,input ,resource ,0.0.0 ,certified ,n ,y ,y
Expand Down
Loading