Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
dad00d0
feat(connectors): implement Redshift Sink Connector with S3 staging
GaneshPatil7517 Jan 13, 2026
c60cccd
fix: resolve CI failures for redshift sink connector
GaneshPatil7517 Jan 13, 2026
8cc7748
fix: correct alphabetical ordering of rust-s3 in DEPENDENCIES.md
GaneshPatil7517 Jan 14, 2026
efae2b0
Merge branch 'master' into feature/redshift-sink-connector
GaneshPatil7517 Jan 14, 2026
043470d
feat(connectors): add integration e2e test for Redshift sink connector
GaneshPatil7517 Jan 14, 2026
5671347
Merge branch 'master' into feature/redshift-sink-connector
GaneshPatil7517 Jan 14, 2026
ffce03c
Merge branch 'master' into feature/redshift-sink-connector
GaneshPatil7517 Jan 14, 2026
db76d46
fix: add missing s3_endpoint field and update DEPENDENCIES.md
GaneshPatil7517 Jan 15, 2026
5e17c19
fix: address Copilot review feedback
GaneshPatil7517 Jan 15, 2026
1e9e9c7
fix(integration): add #[allow(dead_code)] to RedshiftTestSetup struct
GaneshPatil7517 Jan 15, 2026
04c299b
Merge branch 'master' into feature/redshift-sink-connector
GaneshPatil7517 Jan 15, 2026
0a49fba
Update core/connectors/sinks/redshift_sink/src/lib.rs
GaneshPatil7517 Jan 16, 2026
3a18911
Merge branch 'master' into feature/redshift-sink-connector
hubcio Jan 16, 2026
a3d15ff
Merge upstream/master into feature/redshift-sink-connector
GaneshPatil7517 Jan 31, 2026
898b58d
chore: update DEPENDENCIES.md and Cargo.lock after merge
GaneshPatil7517 Jan 31, 2026
67bae8a
fix: add trailing newline and comma to DEPENDENCIES.md
GaneshPatil7517 Jan 31, 2026
8faa335
fix: correct environment variable naming in redshift integration tests
GaneshPatil7517 Jan 31, 2026
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
169 changes: 169 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ members = [
"core/connectors/sinks/iceberg_sink",
"core/connectors/sinks/postgres_sink",
"core/connectors/sinks/quickwit_sink",
"core/connectors/sinks/redshift_sink",
"core/connectors/sinks/stdout_sink",
"core/connectors/sources/elasticsearch_source",
"core/connectors/sources/postgres_source",
Expand Down Expand Up @@ -267,7 +268,7 @@ syn = { version = "2", features = ["full", "extra-traits"] }
sysinfo = "0.38.0"
tempfile = "3.24.0"
test-case = "3.3.1"
testcontainers-modules = { version = "0.14.0", features = ["postgres"] }
testcontainers-modules = { version = "0.14.0", features = ["postgres", "localstack"] }
thiserror = "2.0.18"
tokio = { version = "1.49.0", features = ["full"] }
tokio-rustls = "0.26.4"
Expand Down
Loading
Loading