Skip to content

Commit 6d4790b

Browse files
authored
Merge pull request #2841 from redpanda-data/add-azure-gcp-cloud
Add azure and gcp components to cloud
2 parents 7ec354c + 7d1b07d commit 6d4790b

File tree

3 files changed

+30
-18
lines changed

3 files changed

+30
-18
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@ Changelog
33

44
All notable changes to this project will be documented in this file.
55

6+
## 4.35.1 - 2024-09-06
7+
8+
### Added
9+
10+
- Azure and GCP components added to cloud builds. (@Jeffail)
11+
12+
### Fixed
13+
14+
- The `kafka_migrator_bundle` input and output no longer require schema registry to be configured. (@mihaitodor)
15+
616
## 4.35.0 - 2024-09-05
717

818
### Added

internal/plugins/info.csv

+18-18
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ aws_s3 ,output ,AWS S3 ,3.36.0 ,certified
2222
aws_sns ,output ,AWS SNS ,3.36.0 ,community ,n ,y ,y
2323
aws_sqs ,input ,AWS SQS ,0.0.0 ,certified ,n ,y ,y
2424
aws_sqs ,output ,AWS SQS ,3.36.0 ,certified ,n ,y ,y
25-
azure_blob_storage ,input ,azure_blob_storage ,3.36.0 ,certified ,n ,n ,n
26-
azure_blob_storage ,output ,azure_blob_storage ,3.36.0 ,certified ,n ,n ,n
27-
azure_cosmosdb ,input ,azure_cosmosdb ,4.25.0 ,certified ,n ,n ,n
28-
azure_cosmosdb ,output ,azure_cosmosdb ,4.25.0 ,certified ,n ,n ,n
29-
azure_cosmosdb ,processor ,azure_cosmosdb ,4.25.0 ,certified ,n ,n ,n
30-
azure_queue_storage ,input ,azure_queue_storage ,3.42.0 ,certified ,n ,n ,n
31-
azure_queue_storage ,output ,azure_queue_storage ,3.36.0 ,certified ,n ,n ,n
32-
azure_table_storage ,input ,azure_table_storage ,4.10.0 ,certified ,n ,n ,n
33-
azure_table_storage ,output ,azure_table_storage ,3.36.0 ,certified ,n ,n ,n
25+
azure_blob_storage ,input ,azure_blob_storage ,3.36.0 ,certified ,n ,y ,y
26+
azure_blob_storage ,output ,azure_blob_storage ,3.36.0 ,certified ,n ,y ,y
27+
azure_cosmosdb ,input ,azure_cosmosdb ,4.25.0 ,certified ,n ,y ,y
28+
azure_cosmosdb ,output ,azure_cosmosdb ,4.25.0 ,certified ,n ,y ,y
29+
azure_cosmosdb ,processor ,azure_cosmosdb ,4.25.0 ,certified ,n ,y ,y
30+
azure_queue_storage ,input ,azure_queue_storage ,3.42.0 ,certified ,n ,y ,y
31+
azure_queue_storage ,output ,azure_queue_storage ,3.36.0 ,certified ,n ,y ,y
32+
azure_table_storage ,input ,azure_table_storage ,4.10.0 ,certified ,n ,y ,y
33+
azure_table_storage ,output ,azure_table_storage ,3.36.0 ,certified ,n ,y ,y
3434
batched ,input ,batched ,4.11.0 ,certified ,n ,y ,y
3535
beanstalkd ,input ,beanstalkd ,4.7.0 ,community ,n ,n ,n
3636
beanstalkd ,output ,beanstalkd ,4.7.0 ,community ,n ,n ,n
@@ -68,15 +68,15 @@ file ,cache ,File ,0.0.0 ,certified
6868
file ,input ,File ,0.0.0 ,certified ,n ,n ,n
6969
file ,output ,File ,0.0.0 ,certified ,n ,n ,n
7070
for_each ,processor ,for_each ,0.0.0 ,certified ,n ,y ,y
71-
gcp_bigquery ,output ,GCP BigQuery ,3.55.0 ,certified ,n ,n ,n
72-
gcp_bigquery_select ,input ,GCP BigQuery ,3.63.0 ,certified ,n ,n ,n
73-
gcp_bigquery_select ,processor ,GCP BigQuery ,3.64.0 ,certified ,n ,n ,n
74-
gcp_cloud_storage ,cache ,GCP Cloud Storage ,0.0.0 ,certified ,n ,n ,n
75-
gcp_cloud_storage ,input ,GCP Cloud Storage ,3.43.0 ,certified ,n ,n ,n
76-
gcp_cloud_storage ,output ,GCP Cloud Storage ,3.43.0 ,certified ,n ,n ,n
77-
gcp_cloudtrace ,tracer ,GCP Cloud Trace ,4.2.0 ,certified ,n ,n ,n
78-
gcp_pubsub ,input ,GCP PubSub ,0.0.0 ,certified ,n ,n ,n
79-
gcp_pubsub ,output ,GCP PubSub ,0.0.0 ,certified ,n ,n ,n
71+
gcp_bigquery ,output ,GCP BigQuery ,3.55.0 ,certified ,n ,y ,y
72+
gcp_bigquery_select ,input ,GCP BigQuery ,3.63.0 ,certified ,n ,y ,y
73+
gcp_bigquery_select ,processor ,GCP BigQuery ,3.64.0 ,certified ,n ,y ,y
74+
gcp_cloud_storage ,cache ,GCP Cloud Storage ,0.0.0 ,certified ,n ,y ,y
75+
gcp_cloud_storage ,input ,GCP Cloud Storage ,3.43.0 ,certified ,n ,y ,y
76+
gcp_cloud_storage ,output ,GCP Cloud Storage ,3.43.0 ,certified ,n ,y ,y
77+
gcp_cloudtrace ,tracer ,GCP Cloud Trace ,4.2.0 ,certified ,n ,y ,y
78+
gcp_pubsub ,input ,GCP PubSub ,0.0.0 ,certified ,n ,y ,y
79+
gcp_pubsub ,output ,GCP PubSub ,0.0.0 ,certified ,n ,y ,y
8080
gcp_vertex_ai_chat ,processor ,GCP Vertex AI ,4.34.0 ,enterprise ,n ,y ,y
8181
generate ,input ,generate ,3.40.0 ,certified ,n ,y ,y
8282
grok ,processor ,grok ,0.0.0 ,community ,n ,n ,n

public/components/cloud/package.go

+2
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,12 @@ import (
1616
_ "github.com/redpanda-data/connect/v4/public/components/avro"
1717
_ "github.com/redpanda-data/connect/v4/public/components/aws"
1818
_ "github.com/redpanda-data/connect/v4/public/components/aws/enterprise"
19+
_ "github.com/redpanda-data/connect/v4/public/components/azure"
1920
_ "github.com/redpanda-data/connect/v4/public/components/changelog"
2021
_ "github.com/redpanda-data/connect/v4/public/components/confluent"
2122
_ "github.com/redpanda-data/connect/v4/public/components/crypto"
2223
_ "github.com/redpanda-data/connect/v4/public/components/dgraph"
24+
_ "github.com/redpanda-data/connect/v4/public/components/gcp"
2325
_ "github.com/redpanda-data/connect/v4/public/components/gcp/enterprise"
2426
_ "github.com/redpanda-data/connect/v4/public/components/io"
2527
_ "github.com/redpanda-data/connect/v4/public/components/kafka"

0 commit comments

Comments
 (0)