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

16250 Destination Redis: Add SSH support #17951

Merged
merged 6 commits into from
Oct 17, 2022

Conversation

suhomud
Copy link
Contributor

@suhomud suhomud commented Oct 13, 2022

What

SSH tunneling support for Destination Redis

How

  • modified RedisDestination to return SshWrappedDestination instead
  • New integration tests cover password and key authentication

Recommended reading order

🚨 User Impact 🚨

User can use SSH tunneling

@suhomud suhomud requested a review from a team as a code owner October 13, 2022 14:37
@github-actions github-actions bot added the area/connectors Connector related issues label Oct 13, 2022
@github-actions
Copy link
Contributor

NOTE ⚠️ Changes in this PR affect the following connectors. Make sure to run corresponding integration tests:

  • source-db2-strict-encrypt
  • destination-mariadb-columnstore
  • source-sftp
  • source-mssql
  • destination-s3
  • source-postgres-strict-encrypt
  • destination-gcs
  • source-e2e-test-cloud
  • destination-clickhouse-strict-encrypt
  • source-postgres
  • destination-mssql-strict-encrypt
  • destination-elasticsearch
  • source-jdbc
  • destination-pulsar
  • destination-oracle
  • source-clickhouse-strict-encrypt
  • destination-mysql-strict-encrypt
  • source-relational-db
  • source-alloydb-strict-encrypt
  • source-snowflake
  • destination-kinesis
  • source-cockroachdb-strict-encrypt
  • destination-cassandra
  • destination-mqtt
  • destination-postgres-strict-encrypt
  • destination-bigquery
  • destination-kafka
  • destination-keen
  • destination-csv
  • destination-bigquery-denormalized
  • source-mysql-strict-encrypt
  • source-elasticsearch
  • source-e2e-test
  • source-alloydb
  • destination-local-json
  • source-bigquery
  • destination-redis
  • source-cockroachdb
  • destination-databricks
  • source-clickhouse
  • source-oracle
  • destination-oracle-strict-encrypt
  • source-tidb
  • destination-e2e-test
  • source-oracle-strict-encrypt
  • destination-azure-blob-storage
  • source-redshift
  • destination-dynamodb
  • destination-pubsub
  • destination-meilisearch
  • destination-mongodb
  • source-mongodb-strict-encrypt
  • destination-jdbc
  • destination-dev-null
  • destination-redshift
  • destination-postgres
  • destination-rockset
  • source-db2
  • destination-tidb
  • source-mysql
  • source-mssql-strict-encrypt
  • destination-clickhouse
  • destination-snowflake
  • destination-elasticsearch-strict-encrypt
  • destination-mssql
  • destination-scylla
  • source-mongodb-v2
  • destination-mongodb-strict-encrypt
  • destination-mysql
  • destination-r2
  • source-kafka
  • source-scaffold-java-jdbc

@suhomud
Copy link
Contributor Author

suhomud commented Oct 13, 2022

/test connector=connectors/destination-redis

🕑 connectors/destination-redis https://github.com/airbytehq/airbyte/actions/runs/3243310465
❌ connectors/destination-redis https://github.com/airbytehq/airbyte/actions/runs/3243310465
🐛 https://gradle.com/s/gwq4oqsshvcvu

Build Failed

Test summary info:

Could not find result summary

@suhomud suhomud linked an issue Oct 13, 2022 that may be closed by this pull request
@suhomud
Copy link
Contributor Author

suhomud commented Oct 14, 2022

/test connector=connectors/destination-redis

🕑 connectors/destination-redis https://github.com/airbytehq/airbyte/actions/runs/3248976910
✅ connectors/destination-redis https://github.com/airbytehq/airbyte/actions/runs/3248976910
No Python unittests run

Build Passed

Test summary info:

All Passed

@github-actions
Copy link
Contributor

NOTE ⚠️ Changes in this PR affect the following connectors. Make sure to run corresponding integration tests:

  • source-mysql
  • source-postgres-strict-encrypt
  • destination-rockset
  • destination-postgres
  • source-db2
  • destination-elasticsearch-strict-encrypt
  • source-db2-strict-encrypt
  • source-mysql-strict-encrypt
  • source-oracle
  • source-e2e-test
  • source-mongodb-strict-encrypt
  • source-alloydb-strict-encrypt
  • destination-redis
  • destination-databricks
  • source-mssql-strict-encrypt
  • destination-mssql
  • destination-bigquery-denormalized
  • destination-mysql
  • destination-meilisearch
  • destination-dev-null
  • destination-mongodb
  • source-mongodb-v2
  • destination-snowflake
  • destination-clickhouse-strict-encrypt
  • destination-scylla
  • source-redshift
  • destination-bigquery
  • destination-postgres-strict-encrypt
  • destination-gcs
  • destination-azure-blob-storage
  • destination-elasticsearch
  • source-sftp
  • source-clickhouse
  • source-jdbc
  • destination-tidb
  • destination-csv
  • destination-local-json
  • destination-dynamodb
  • source-elasticsearch
  • destination-pulsar
  • destination-pubsub
  • source-scaffold-java-jdbc
  • source-relational-db
  • destination-redshift
  • destination-clickhouse
  • source-cockroachdb
  • destination-oracle-strict-encrypt
  • destination-oracle
  • destination-kafka
  • destination-mariadb-columnstore
  • source-cockroachdb-strict-encrypt
  • destination-e2e-test
  • destination-r2
  • source-postgres
  • source-snowflake
  • destination-keen
  • source-e2e-test-cloud
  • destination-cassandra
  • source-kafka
  • source-clickhouse-strict-encrypt
  • destination-mqtt
  • source-bigquery
  • destination-mysql-strict-encrypt
  • destination-s3
  • source-tidb
  • destination-jdbc
  • source-oracle-strict-encrypt
  • source-alloydb
  • destination-mssql-strict-encrypt
  • source-mssql
  • destination-kinesis
  • destination-mongodb-strict-encrypt

Copy link
Contributor

@grishick grishick left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, only one small comment

@@ -78,6 +78,10 @@ public void stopAndCloseContainers(final JdbcDatabaseContainer<?> db) {
db.close();
}

public void stop() {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: to be consistent with stopAndCloseContainers I'd either rename this to stopAndClose or create another version of stopAndCloseContainers with no arguments.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

stopAndClose is fine for me. stopAndCloseContainers looks confusing since we stop only bastion so no containers

@suhomud suhomud requested a review from grishick October 17, 2022 04:12
@github-actions

This comment was marked as duplicate.

@github-actions github-actions bot added the area/documentation Improvements or additions to documentation label Oct 17, 2022
@github-actions
Copy link
Contributor

NOTE ⚠️ Changes in this PR affect the following connectors. Make sure to run corresponding integration tests:

  • source-bigquery
  • destination-kafka
  • source-relational-db
  • destination-postgres
  • source-kafka
  • source-snowflake
  • source-sftp
  • destination-mariadb-columnstore
  • destination-pubsub
  • destination-rockset
  • source-oracle
  • destination-bigquery
  • destination-pulsar
  • source-e2e-test
  • destination-gcs
  • source-jdbc
  • destination-scylla
  • destination-dynamodb
  • source-postgres-strict-encrypt
  • destination-mqtt
  • source-scaffold-java-jdbc
  • destination-tidb
  • source-e2e-test-cloud
  • destination-databricks
  • source-cockroachdb
  • destination-elasticsearch
  • destination-e2e-test
  • destination-postgres-strict-encrypt
  • destination-redis
  • destination-mongodb
  • destination-dev-null
  • destination-mysql
  • destination-oracle-strict-encrypt
  • destination-kinesis
  • destination-meilisearch
  • source-elasticsearch
  • destination-bigquery-denormalized
  • source-mssql
  • source-alloydb
  • destination-mssql-strict-encrypt
  • source-mongodb-strict-encrypt
  • destination-elasticsearch-strict-encrypt
  • source-redshift
  • source-cockroachdb-strict-encrypt
  • source-tidb
  • destination-keen
  • source-mongodb-v2
  • destination-mongodb-strict-encrypt
  • destination-clickhouse-strict-encrypt
  • destination-clickhouse
  • destination-local-json
  • destination-r2
  • source-clickhouse-strict-encrypt
  • destination-azure-blob-storage
  • destination-mysql-strict-encrypt
  • destination-snowflake
  • source-oracle-strict-encrypt
  • destination-s3
  • source-alloydb-strict-encrypt
  • source-postgres
  • destination-mssql
  • source-db2-strict-encrypt
  • destination-cassandra
  • destination-oracle
  • source-mysql
  • source-mssql-strict-encrypt
  • destination-csv
  • destination-jdbc
  • source-clickhouse
  • destination-redshift
  • source-mysql-strict-encrypt
  • source-db2

@suhomud
Copy link
Contributor Author

suhomud commented Oct 17, 2022

/publish connector=connectors/destination-redis

🕑 Publishing the following connectors:
connectors/destination-redis
https://github.com/airbytehq/airbyte/actions/runs/3267382515


Connector Did it publish? Were definitions generated?
connectors/destination-redis

if you have connectors that successfully published but failed definition generation, follow step 4 here ▶️

@github-actions
Copy link
Contributor

NOTE ⚠️ Changes in this PR affect the following connectors. Make sure to run corresponding integration tests:

  • destination-csv
  • source-mysql-strict-encrypt
  • destination-kafka
  • source-db2
  • destination-bigquery-denormalized
  • source-clickhouse
  • destination-e2e-test
  • destination-kinesis
  • source-oracle
  • destination-rockset
  • source-sftp
  • source-mssql
  • destination-s3
  • source-postgres-strict-encrypt
  • destination-mssql-strict-encrypt
  • destination-elasticsearch
  • source-cockroachdb
  • destination-mysql-strict-encrypt
  • destination-r2
  • source-mongodb-strict-encrypt
  • source-bigquery
  • destination-clickhouse
  • source-redshift
  • source-clickhouse-strict-encrypt
  • source-cockroachdb-strict-encrypt
  • destination-mongodb
  • destination-local-json
  • source-oracle-strict-encrypt
  • source-mssql-strict-encrypt
  • source-scaffold-java-jdbc
  • source-db2-strict-encrypt
  • source-e2e-test-cloud
  • destination-pubsub
  • destination-meilisearch
  • destination-azure-blob-storage
  • destination-keen
  • destination-redis
  • source-tidb
  • destination-clickhouse-strict-encrypt
  • destination-pulsar
  • source-alloydb
  • destination-oracle-strict-encrypt
  • destination-mqtt
  • source-mongodb-v2
  • source-jdbc
  • source-e2e-test
  • destination-cassandra
  • source-relational-db
  • destination-dev-null
  • source-snowflake
  • destination-bigquery
  • destination-redshift
  • destination-databricks
  • destination-mariadb-columnstore
  • destination-scylla
  • destination-dynamodb
  • source-kafka
  • destination-gcs
  • destination-postgres-strict-encrypt
  • source-alloydb-strict-encrypt
  • destination-elasticsearch-strict-encrypt
  • destination-oracle
  • destination-jdbc
  • destination-snowflake
  • destination-tidb
  • destination-mysql
  • destination-mongodb-strict-encrypt
  • source-postgres
  • destination-postgres
  • source-mysql
  • source-elasticsearch
  • destination-mssql

@octavia-squidington-iii octavia-squidington-iii temporarily deployed to more-secrets October 17, 2022 18:08 Inactive
@suhomud suhomud merged commit ee2e2b5 into master Oct 17, 2022
@suhomud suhomud deleted the suhomud/16250_redis_destination_shh_support branch October 17, 2022 19:00
YatsukBogdan1 pushed a commit that referenced this pull request Oct 18, 2022
* 16250 Destination Redis: Add SSH support

* 16250 Resolve port issue

* 11679 Bump version

* auto-bump connector version

Co-authored-by: Octavia Squidington III <[email protected]>
YatsukBogdan1 added a commit that referenced this pull request Oct 19, 2022
* Implement ColumnSortButton component

* Updates component name; Moves component to ui/Table folder; Refactors formattedMessageId property into using render content as children directly; Removes minor SortIcon component

* Update airbyte-webapp/src/App.tsx

Co-authored-by: Edmundo Ruiz Ghanem <[email protected]>

* Updates next properties: wasActive -> isActive, lowToLarge -> isAscending

* Skip psql stop in acceptance test for gke (#18023)

* Checks for iterator hasNext element (#18041)

* Checks for iterator hasNext element

* Fix linter with newline

* Add Message Migration to Destination Connection Checks (#17954)

* Add Message Migration to Destination Connection Checks

* Fix test setup

* Update helm release workflow (#18048)

* Update workflow

* Update trigger rules

* fix: Update release workflow with abillity to add tags

* Update workflow

* Remove unused `airbyte-cli` (#18009)

* 🐛  [low-code] $options shouldn't overwrite values that are already defined (#18060)

* fix

* Add missing test

* remove prints

* extract to method

* rename

* Add missing test

* rename

* bump

* Update helm chart comments (#18072)

* Update helm charts (#18073)

* add test

* fix chart.yaml

* 16250 Destination Redis: Add SSH support (#17951)

* 16250 Destination Redis: Add SSH support

* 16250 Resolve port issue

* 11679 Bump version

* auto-bump connector version

Co-authored-by: Octavia Squidington III <[email protected]>

* Bump helm chart version reference to 0.40.20 (#18074)

* Bump helm chart version reference to 0.40.20

* remove binary

Co-authored-by: xpuska513 <[email protected]>
Co-authored-by: Kyryl Skobylko <[email protected]>

* Helm Chart: Create service annotations for airbyte-server (#17932)

* Support annotations for airbyte-server as well, update version and update docs.

* Fix auto-indent.

Co-authored-by: Kyryl Skobylko <[email protected]>

* Bmoric/remove dep server worker (#17894)

* test [ci skip]

* Autogenerated files

* Add missing annotation

* Remove unused json2Schema block from worker

* Move tess

* Missing deps and format

* Fix test build

* TMP

* Add missing dependencies

* PR comments

* Tmp

* [ci skip] Tmp

* Fix acceptance test and add the seed dependency

* Fix build

* For diff

* tmp

* Build pass

* make the worker to be  on the platform only

* fix setting.yaml

* Fix pmd

* Fix Cron

* Add chart

* Fix cron

* Fix server build.gradle

* Fix jar conflict

* PR comments

* Add cron micronaut environemnt

* Updated connector catalog page (#18076)

* Move the port forward outside of the main docker-compose (#17864)

* Bump Airbyte version from 0.40.14 to 0.40.15 (#17970)

Co-authored-by: benmoriceau <[email protected]>

* 🎉 Source Shopify: Add metafield streams (#17962)

* 🎉 Source Shopify: Add metafield streams

* Source Shopify: fix unittest

* Source Shopify: docs update

* Source Shopify: fix backward compatibility test

* Source Shopify: fix schemas

* Source Shopify: fix state filter

* Source Shopify: refactor & optimize

* Source Shopify: fix test privileges

* Source Shopify: fix stream filter

* Source Shopify: fix streams

* Source Shopify: update abnormal state

* Source Shopify: fix abnormal state streams

* Source Shopify: fix streams

* updated methods, formated code

* Source Shopify: typo fix

* auto-bump connector version

Co-authored-by: Oleksandr Bazarnov <[email protected]>
Co-authored-by: Octavia Squidington III <[email protected]>

* fix check for streams that do not use a stream slicer (#18080)

* fix check for streams that do not use a stream slicer

* increment version and changelog before publish

* tolerate database nulls in webhook operation configs (#18084)

* Implement webhook operation in the sync workflow (#18022)

Implements the webhook operation as part of the sync workflow.

- Introduces the new activity implementation
- Updates the various interfaces that pass input to get the relevant configs to the sync workflow
- Hooks the new activity into the sync workflow
- Passes the webhook configs along into the sync workflow job

* Bump helm chart version reference to 0.40.22 (#18077)

* Added new "filters" python file, along with a "hash" filter. This can… (#18000)

* Added new "filters" python file, along with a "hash" filter. This can be extended to include other custom filters in the future.

* Added additional comments

* Moved usage of the hash_obj inside the conditional that confirms it exists

* Moved the hash function call inside a condition to ensure that it exists

* Fixed the application of the salt , so that it does not modify the hash unless it is actually passed in.

* Added unit tests to validate new jinja hash functionality

* Updated unit test to pass numeric value as a float instead of string

* Removed unreferenced import to pytest

* Updated version

* format

* format

* format

* format

* format

Co-authored-by: Alexandre Girard <[email protected]>

* Bump helm chart version reference to 0.40.24 (#18081)

* Bump helm chart version reference to 0.40.24

* Update .gitignore

Co-authored-by: benmoriceau <[email protected]>
Co-authored-by: Kyryl Skobylko <[email protected]>

* SATs: allow new records in a sequential read for full refresh test (#17660)

* SATs: allow new records in a sequential read for full refresh test

* SATs: upd changelog

* SATs: change the output when failing full refresh test

* SATs: upd according to code review

* Source facebook-marketing: remove `pixel` from custom conversions stream (#18045)

* #744 source facebook-marketing: rm pixel from custom conversions stream

* #744 source fb marketing: upd changelog

* #744 source facebook-marketing - add custom_conversions to the test catalog

* auto-bump connector version

Co-authored-by: Octavia Squidington III <[email protected]>

* #17506 fix klaviyo & marketo expected_records (#18101)

Co-authored-by: Edmundo Ruiz Ghanem <[email protected]>
Co-authored-by: terencecho <[email protected]>
Co-authored-by: Ryan Fu <[email protected]>
Co-authored-by: Jimmy Ma <[email protected]>
Co-authored-by: Kyryl Skobylko <[email protected]>
Co-authored-by: Evan Tahler <[email protected]>
Co-authored-by: Alexandre Girard <[email protected]>
Co-authored-by: Yevhen Sukhomud <[email protected]>
Co-authored-by: Octavia Squidington III <[email protected]>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: xpuska513 <[email protected]>
Co-authored-by: Prasanth <[email protected]>
Co-authored-by: Benoit Moriceau <[email protected]>
Co-authored-by: Amruta Ranade <[email protected]>
Co-authored-by: Octavia Squidington III <[email protected]>
Co-authored-by: benmoriceau <[email protected]>
Co-authored-by: Artem Inzhyyants <[email protected]>
Co-authored-by: Oleksandr Bazarnov <[email protected]>
Co-authored-by: Brian Lai <[email protected]>
Co-authored-by: Michael Siega <[email protected]>
Co-authored-by: Alexander Marquardt <[email protected]>
Co-authored-by: Denys Davydov <[email protected]>
jhammarstedt pushed a commit to jhammarstedt/airbyte that referenced this pull request Oct 31, 2022
* 16250 Destination Redis: Add SSH support

* 16250 Resolve port issue

* 11679 Bump version

* auto-bump connector version

Co-authored-by: Octavia Squidington III <[email protected]>
jhammarstedt pushed a commit to jhammarstedt/airbyte that referenced this pull request Oct 31, 2022
* Implement ColumnSortButton component

* Updates component name; Moves component to ui/Table folder; Refactors formattedMessageId property into using render content as children directly; Removes minor SortIcon component

* Update airbyte-webapp/src/App.tsx

Co-authored-by: Edmundo Ruiz Ghanem <[email protected]>

* Updates next properties: wasActive -> isActive, lowToLarge -> isAscending

* Skip psql stop in acceptance test for gke (airbytehq#18023)

* Checks for iterator hasNext element (airbytehq#18041)

* Checks for iterator hasNext element

* Fix linter with newline

* Add Message Migration to Destination Connection Checks (airbytehq#17954)

* Add Message Migration to Destination Connection Checks

* Fix test setup

* Update helm release workflow (airbytehq#18048)

* Update workflow

* Update trigger rules

* fix: Update release workflow with abillity to add tags

* Update workflow

* Remove unused `airbyte-cli` (airbytehq#18009)

* 🐛  [low-code] $options shouldn't overwrite values that are already defined (airbytehq#18060)

* fix

* Add missing test

* remove prints

* extract to method

* rename

* Add missing test

* rename

* bump

* Update helm chart comments (airbytehq#18072)

* Update helm charts (airbytehq#18073)

* add test

* fix chart.yaml

* 16250 Destination Redis: Add SSH support (airbytehq#17951)

* 16250 Destination Redis: Add SSH support

* 16250 Resolve port issue

* 11679 Bump version

* auto-bump connector version

Co-authored-by: Octavia Squidington III <[email protected]>

* Bump helm chart version reference to 0.40.20 (airbytehq#18074)

* Bump helm chart version reference to 0.40.20

* remove binary

Co-authored-by: xpuska513 <[email protected]>
Co-authored-by: Kyryl Skobylko <[email protected]>

* Helm Chart: Create service annotations for airbyte-server (airbytehq#17932)

* Support annotations for airbyte-server as well, update version and update docs.

* Fix auto-indent.

Co-authored-by: Kyryl Skobylko <[email protected]>

* Bmoric/remove dep server worker (airbytehq#17894)

* test [ci skip]

* Autogenerated files

* Add missing annotation

* Remove unused json2Schema block from worker

* Move tess

* Missing deps and format

* Fix test build

* TMP

* Add missing dependencies

* PR comments

* Tmp

* [ci skip] Tmp

* Fix acceptance test and add the seed dependency

* Fix build

* For diff

* tmp

* Build pass

* make the worker to be  on the platform only

* fix setting.yaml

* Fix pmd

* Fix Cron

* Add chart

* Fix cron

* Fix server build.gradle

* Fix jar conflict

* PR comments

* Add cron micronaut environemnt

* Updated connector catalog page (airbytehq#18076)

* Move the port forward outside of the main docker-compose (airbytehq#17864)

* Bump Airbyte version from 0.40.14 to 0.40.15 (airbytehq#17970)

Co-authored-by: benmoriceau <[email protected]>

* 🎉 Source Shopify: Add metafield streams (airbytehq#17962)

* 🎉 Source Shopify: Add metafield streams

* Source Shopify: fix unittest

* Source Shopify: docs update

* Source Shopify: fix backward compatibility test

* Source Shopify: fix schemas

* Source Shopify: fix state filter

* Source Shopify: refactor & optimize

* Source Shopify: fix test privileges

* Source Shopify: fix stream filter

* Source Shopify: fix streams

* Source Shopify: update abnormal state

* Source Shopify: fix abnormal state streams

* Source Shopify: fix streams

* updated methods, formated code

* Source Shopify: typo fix

* auto-bump connector version

Co-authored-by: Oleksandr Bazarnov <[email protected]>
Co-authored-by: Octavia Squidington III <[email protected]>

* fix check for streams that do not use a stream slicer (airbytehq#18080)

* fix check for streams that do not use a stream slicer

* increment version and changelog before publish

* tolerate database nulls in webhook operation configs (airbytehq#18084)

* Implement webhook operation in the sync workflow (airbytehq#18022)

Implements the webhook operation as part of the sync workflow.

- Introduces the new activity implementation
- Updates the various interfaces that pass input to get the relevant configs to the sync workflow
- Hooks the new activity into the sync workflow
- Passes the webhook configs along into the sync workflow job

* Bump helm chart version reference to 0.40.22 (airbytehq#18077)

* Added new "filters" python file, along with a "hash" filter. This can… (airbytehq#18000)

* Added new "filters" python file, along with a "hash" filter. This can be extended to include other custom filters in the future.

* Added additional comments

* Moved usage of the hash_obj inside the conditional that confirms it exists

* Moved the hash function call inside a condition to ensure that it exists

* Fixed the application of the salt , so that it does not modify the hash unless it is actually passed in.

* Added unit tests to validate new jinja hash functionality

* Updated unit test to pass numeric value as a float instead of string

* Removed unreferenced import to pytest

* Updated version

* format

* format

* format

* format

* format

Co-authored-by: Alexandre Girard <[email protected]>

* Bump helm chart version reference to 0.40.24 (airbytehq#18081)

* Bump helm chart version reference to 0.40.24

* Update .gitignore

Co-authored-by: benmoriceau <[email protected]>
Co-authored-by: Kyryl Skobylko <[email protected]>

* SATs: allow new records in a sequential read for full refresh test (airbytehq#17660)

* SATs: allow new records in a sequential read for full refresh test

* SATs: upd changelog

* SATs: change the output when failing full refresh test

* SATs: upd according to code review

* Source facebook-marketing: remove `pixel` from custom conversions stream (airbytehq#18045)

* airbytehq#744 source facebook-marketing: rm pixel from custom conversions stream

* airbytehq#744 source fb marketing: upd changelog

* airbytehq#744 source facebook-marketing - add custom_conversions to the test catalog

* auto-bump connector version

Co-authored-by: Octavia Squidington III <[email protected]>

* #17506 fix klaviyo & marketo expected_records (airbytehq#18101)

Co-authored-by: Edmundo Ruiz Ghanem <[email protected]>
Co-authored-by: terencecho <[email protected]>
Co-authored-by: Ryan Fu <[email protected]>
Co-authored-by: Jimmy Ma <[email protected]>
Co-authored-by: Kyryl Skobylko <[email protected]>
Co-authored-by: Evan Tahler <[email protected]>
Co-authored-by: Alexandre Girard <[email protected]>
Co-authored-by: Yevhen Sukhomud <[email protected]>
Co-authored-by: Octavia Squidington III <[email protected]>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: xpuska513 <[email protected]>
Co-authored-by: Prasanth <[email protected]>
Co-authored-by: Benoit Moriceau <[email protected]>
Co-authored-by: Amruta Ranade <[email protected]>
Co-authored-by: Octavia Squidington III <[email protected]>
Co-authored-by: benmoriceau <[email protected]>
Co-authored-by: Artem Inzhyyants <[email protected]>
Co-authored-by: Oleksandr Bazarnov <[email protected]>
Co-authored-by: Brian Lai <[email protected]>
Co-authored-by: Michael Siega <[email protected]>
Co-authored-by: Alexander Marquardt <[email protected]>
Co-authored-by: Denys Davydov <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/connectors Connector related issues area/documentation Improvements or additions to documentation connectors/destination/redis
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Add SSH tunneling ability to Redis Destination connector
4 participants