Releases: airbytehq/airbyte
Airbyte 1.6.0
The Easter Bunny reports a shortage of eggs this year. Airbyte has plenty of new features, though, so we're cracking 🐣 open a new version just for you. Airbyte 1.6 was released on April 11, 2025. We're excited to share new improvements and changes to the Airbyte platform.
🚀 Platform changes
These changes improve Airbyte for everyone.
Connection page dashboard
Connection pages now include a dashboard that visualizes sync successes and failures. This high-level view gives you quick insight into the health of your syncs over hours, days, and weeks. Track down intermittent failures, even after a connection becomes healthy again. With one click, you can get more information about a point in time, and fast access to any problematic sync in your workspace. Learn more >
Schema configuration updates in the connection Timeline
When someone makes a change to a connection's schema, Airbyte now logs an event in the connection's Timeline page. This data can help you understand why sync behaviors or record volumes suddenly changed. Learn more >
Copy JSON from connectors
All connectors now have a Copy JSON button in the Airbyte UI. This button generates a JSON object matching the configuration of that connector. It's ready for use in Airbyte's API and Terraform provider. Learn more >
{
"name": "Airbyte",
"workspaceId": "c0e5b294-2c71-475b-ae9c-6d70b36ff4f4",
"definitionId": "284f6466-3004-4d83-a9b2-e4b36cbbbd41",
"configuration": {
"client_id": "******", // Replace this with your real client ID.
"start_date": "2024-01-01T00:00:00Z",
"client_secret": "******" // Replace this with your real client secret.
}
}
Connector Builder improvements
Airbyte's Connector Builder has new features to target more advanced and complex API sources: asynchronous endpoints, non-REST APIs, new response formats, and more.
Asynchronous streams
The Connector Builder UI now supports asynchronous streams, allowing you to handle scenarios where data extraction happens over multiple steps. Some APIs that handle large datasets or perform resource-intensive operations do not support synchronous requests. By setting up a stream as asynchronous, you can separate creating a request, polling for a response, and downloading the response into distinct steps. Learn more >
GraphQL request body
You can write request bodies as free form GraphQL queries with built-in syntax validation.
Handle CSV, gzip, and ZIP response formats
Airbyte has two new ways to handle API responses in the Connector Builder.
-
CSV decoding: Make requests to sources that respond in CSV format and set expected delimiter and encoding options.
-
Nested decoding. Make requests to sources that respond with compressed
gzip
orzip
files, then set a nested decoding option to handle the unzipped contents within.
Create custom connectors from YAML or Docker images using the API and Terraform
Airbyte's public APIs and Terraform provider have new endpoints and resources you can use to create and update custom connectors using a Connector Builder YAML manifest or Docker image. The following new endpoints are available.
For YAML source definitions:
GET
- /workspaces/{workspaceId}
/definitions/declarative_sources/ - List YAML source definitionsPOST
- /workspaces/{workspaceId}
/definitions/declarative_sources/ - Create YAML source definitionsGET/
- /workspaces/{workspaceId}
/definitions/declarative_sources/{definitionId}
- Get a specific YAML source definitionPUT
- /workspaces/{workspaceId}
/definitions/declarative_sources/{definitionId}
- Update a specific YAML source definitionDELETE
- /workspaces/{workspaceId}
/definitions/declarative_sources/{definitionId}
- Delete a specific YAML source definition
For Docker source definitions:
GET
- /workspaces/{workspaceId}
/definitions/sources/ - List source definitionsPOST
- /workspaces/{workspaceId}
/definitions/sources/ - Create source definitionsGET
- /workspaces/{workspaceId}
/definitions/sources/{definitionId}
- Get a specific source definitionPUT
- /workspaces/{workspaceId}
/definitions/sources/{definitionId}
- Update a specific source definitionDELETE
- /workspaces/{workspaceId}
/definitions/sources/{definitionId}
- Delete a specific source definition
For destination definitions:
GET
/workspaces/{workspaceId}
/definitions/destinations - List destination definitionsPOST
/workspaces/{workspaceId}
/definitions/destinations - Create destination definitionsGET
/workspaces/{workspaceId}
/definitions/destinations/{definitionId}
- Get a specific destination definitionPUT
/workspaces/{workspaceId}
/definitions/destinations/{definitionId}
- Update a specific destination definitionDELETE
/workspaces/{workspaceId}
/definitions/destinations/{definitionId}
- Delete a specific destination definition
You can't use these endpoints to modify Airbyte's public connector definitions. If you're using the Cloud version of Airbyte, you can only create or modify custom connectors using a YAML manifest.
🚀 Self-Managed Enterprise changes
These changes bring new capabilities to Airbyte's Self-Managed Enterprise customers.
⚠️ Breaking Change
Before upgrading from version 1.5.1 or earlier, you must upgrade your service account permissions. If you don't, Airbyte doesn't permit you to begin the upgrade. Learn more.
Deploy Airbyte across multiple regions
Self-Managed Enterprise customers can now build data pipelines across multiple isolated regions (data planes), all governed from a single Airbyte deployment. For each Airbyte workspace, you can select the region where syncs run, ensuring pipelines spin up in specific physical locations. This enables you to meet compliance needs, run across different cloud vendors, and reduce cross-region egress fees. Region and data plane configuration is available via Airbyte's public API, and the Organization Settings page in the UI helps you easily identify the region associated with each workspace. Learn more >
Unique stream prefixes or namespaces are now mandatory
Airbyte now requires that stream identifiers be unique across Airbyte connections that share a destination. You can no longer set multiple connections to sync to the same destination stream.
A common scenario looks like this: you have multiple accounts for the same source API and want to sync all this data to a single table in your destination. Although convenient, doing this carried a risk of data loss as multiple connections clashed with each other while writing to the same table.
After careful consideration, Airbyte has stopped supporting this. You must use a unique prefix for each stream or a unique namespace in each connection. Then, you can combine your tables downstream of Airbyte. Learn more >
Airbyte 1.5.0
Valentine's Day let you down? That's OK. You'll love this. Airbyte 1.5.0 was released on February 20, 2025. We’re excited to share new improvements and changes to the Airbyte platform.
🚀 Platform Changes
These changes improve Airbyte for all Self-Managed users.
Declarative OAuth 2.0 in the connector builder
If you're building a connector to an API and want to authenticate with OAuth, you can now authenticate directly in the Connector Builder. This simplified flow ensures you can start building connectors to APIs that support OAuth without writing code to authenticate yourself and provide Airbyte with tokens. OAuth 2.0 is also supported in the low-code connector development kit (CDK), where you can define your authentication using YAML.
To learn more, see the authentication documentation: No-code Connector Builder | Low-code CDK.
Connection tags
You can now classify your connections with tags. As time goes on, your number of connections tends to increase. This popular classification tool gives you the power to organize connections based on any set of criteria you like, then filter for the ones you want to see. Learn more >
Configure workspace notifications in the API
Use the Airbyte API to view and change email and webhook notification settings in your workspace. Previously, this was only available in Airbyte's user interface.
- List workspaces returns a notifications object with details about each workspace's notification settings.
- Get workspace details returns a notifications object with details about that workspace's notification settings.
- Create a workspace has a notifications object parameter so you can configure notifications when you create the workspace.
- Update a workspace has a notifications object parameter so you can configure notifications later.
Use notifications if you want to be alerted to important events in Airbyte, like failed syncs, schema changes, and mandatory connector upgrades. Learn more about notifications >
Full Refresh - Overwrite + Deduped in the API
Use the API to set "Full Refresh - Overwrite + Deduped" as your sync mode when creating and updating a connection. Previously, this sync mode was only available in Airbyte's user interface.
🚀 Self-Managed Enterprise Changes
These changes bring new capabilities to Airbyte's Self-Managed Enterprise customers.
Mappings in the UI
We introduced mappings in the API in version 1.3, and it's now available in Airbyte's user interface, too. Use mappings to hash, encrypt, and rename fields, and filter rows. You set up mappings on each stream, ensuring your source data arrives in your destination in a more meaningful way. Learn more >
OpenTelemetry (OTel) metrics monitoring
Self-Managed Enterprise now generates a number of crucial metrics about syncs and volumes of data moved. You can configure Airbyte to send telemetry data to an OTel collector endpoint so you can consume these metrics in your downstream monitoring tool of choice. The following metrics are available:
- Sync details
- Sync duration
- Volume of data moved
- API requests
To start sending metrics, update your values.yaml
file with the following configurations. Learn more >
global:
edition: enterprise # This is an enterprise-only feature
metrics:
enabled: true
otlp:
enabled: true
collectorEndpoint: "YOUR_ENDPOINT" # The OTel collector endpoint Airbyte sends metrics to. You configure this endpoint outside of Airbyte as part of your OTel deployment.
Resource allocation on connectors
In Self-Managed Enterprise, you can now define resource allocations for individual connectors as part of that connector's configuration, both in the user interface and the API.
Airbyte's default CPU and memory allocations aren't always appropriate for every situation, and different connectors have different resource requirements. This can make it challenging to run a large number of concurrent syncs. Historically, you had to tweak a number of variables to configure this. Now, you can set CPU and memory allocation when you set up a source or destination, and it applies to all connections using that connector. Learn more >
:::note
Resource allocation can still be set on specific connections, on all connectors of a type using resourceRequirements
, and using environment variables. In cases where resource allocation is defined multiple times, there is an order of precedence. Narrower definitions have higher precedence. From highest to lowest: Connection > Connector > Connector yaml definition > environment variables. See the documentation to learn more about precedence.
:::
🐛 Bug fixes
- Fixed issue #46097. When using AWS Secrets Manager, updating a connector that used secrets caused its secrets to be deleted. For connectors with secrets that were deleted because of the bug, upgrade to 1.5 and then update your connector's secrets. They will persist correctly. For sources/destinations that were not affected, upgrading to 1.5 prevents the issue.
Other Changes
Docusaurus is upgraded to version 3.7. Local docs site builds are a bit faster.
Airbyte 1.4.0
Happy new year! Airbyte version 1.4.0 was released on January 17, 2025. We’re excited to share new improvements and changes to the Airbyte platform.
🚀 Platform Changes
Platform changes improve Airbyte for everyone with a self-managed instance.
Configure the schema refresh rate
At the start of a sync, Airbyte occasionally re-runs schema discovery to detect changes in your source, such as new fields or a change in column type. But running schema discovery has a performance cost, and may not always be necessary before every sync.
You may now use a new toggle, DISCOVER_REFRESH_WINDOW_MINUTES
, to set the minimum number of minutes Airbyte will wait to refresh the schema for your sources. By setting a larger number, you run automatic schema detection less frequently, which can result in gains in sync performance. The default configuration in Airbyte Open Source is 1440
, which refreshes schemas every 24 hours. The lowest interval you can set is 1
, which refreshes schemas before every sync.
worker:
env_vars:
DISCOVER_REFRESH_WINDOW_MINUTES: 1440 # Airbyte automatically refreshes schemas no more than once per day (1440 minutes).
Set this to 0 to disable automatic schema refreshes. All schema refreshes will need to be done manually via the Airbyte UI or API.
worker:
env_vars:
DISCOVER_REFRESH_WINDOW_MINUTES: 0 # Airbyte does not automatically detect schema changes.
Connectors support custom image registries
Connectors can now use custom image registries rather than Airbyte’s public Docker registry. If you configure Airbyte to use a custom image registry, it now automatically uses that registry for connector images as well as platform images. Previously, only platform images supported this. In this example, we set Airbyte’s values.yaml
file to pull all images from GitHub.
global:
image:
registry: ghcr.io/NAMESPACE
You must ensure copies of platform and connector images are available in your custom image registry. Learn how to set up custom image registries.
Custom Docker connectors in your workspace that specify an image using a fully qualified domain name (for example, example.com/airbyte/your-custom-source
) ignore your configured custom image registry and pull images from the domain specified by that connector.
🐛 Bug fixes
-
Reduced resource consumption: Instances of Airbyte running multiple connections at a time now consume fewer resources, thanks to optimizations to the
airbyte-worker
pod. -
Canceled syncs do not rerun until the next scheduled sync: If you previously cancelled an in-progress sync, and the next sync as configured in the connection frequency was behind schedule, Airbyte would immediately start a new sync. In practice, many users had to choose to ‘Cancel Sync’ twice in a row to stop moving data. Airbyte now automatically waits until the next scheduled sync to move data.
-
Reduce rate limit errors from the
airbyte-cron
service: We fixed an issue reported by the community that caused excessive rate limit errors on theairbyte-cron
pod when users scheduled connections using the Airbyte CRON capability. -
Autorecovery for hanging connections: Airbyte now packages a service to detect connections blocked by the unlikely event that a sync becomes stuck, and remains in a perpetual ‘in-progress’ state without moving data. This heartbeat service will detect syncs that are hanging, and automatically create a new job attempt.
Airbyte 1.3.0
It's already December! We are excited to release the following set of improvements and changes.
🚀 Platform Changes
- Improved Log Viewer and Filtering: You can now quickly filter to error or warning logs when needed, as well as by log source - such as the source connector, destination connector, or platform. Together, this allows you to quickly diagnose issues with Airbyte connections if they arise, reducing time to resolution on issues.
- OpenShift Support: Starting today, Airbyte supports deployments to OpenShift. This is the culmination of a journey over much of the past year: we've updated our platform and connectors to be rootless, we've improved pod to pod communication within our platform, and made a wide number of security improvements. To succeed, the user running helm deployment commands needs to be a
cluster-admin
user. Your Kubernetes namespace will also require the following annotations to ensure that all of the Airbyte resources run as UID 1000 and GID 1000. If you run into any edge cases or issues deploying to OpenShift, as always, please let us know by opening a GitHub issue.
openshift.io/sa.scc.supplemental-groups: 1000/1
openshift.io/sa.scc.uid-range: 1000/1
🚀 Self-Managed Enterprise Changes
- Compliance Mappers in Airbyte API: Airbyte Self-Managed Enterprise now supports field hashing, field encryption (with self-managed encryption keys), field renaming and row filtering for connections from a common interface available in the Airbyte API. This functionality is coming soon to the Airbyte UI. To get started, see our API documentation.
Airbyte 1.2.0
Happy Halloween! We are excited to release the following set of improvements and changes.
🚀 Platform Changes
- File Transfers: Airbyte now supports transferring unstructured text data, non-text data and compressed files. This capability is in early access, and currently only available for moving data from the "SFTP Bulk" source to the "S3" destination. Support in the "S3" source is coming soon. File transfers allow you to copy raw files in Airbyte without parsing their contents. Bits are copied into the destination exactly as they appeared in the source. This is recommended for use with unstructured text data, non-text and compressed files. We currently support copying files up to 1GB in size. This is an entirely new way of moving data through Airbyte, as all pre-existing data movement methods involved parsing individual records.
- Custom Image Registry Support: Introduces support for specifying a custom Docker registry from which all platform images are pulled. This should simplify helm chart configurations for users who require images to be pulled from internally approved image repositories. Configuring the following will prefix all docker images with
my-registry.foo.com
. The value provided in theregistry
field must have a trailing slash:
global:
image:
registry: my-registry.foo.com/
- XML Support in the Connector Builder: Airbyte now supports custom API connectors built via the Airbyte Connector Builder which return responses as XML format.
🚀 Self-Managed Enterprise Changes
- Runner RBAC Role: Users provisioned with the 'Runner' role are able to start or stop syncs, and run backfills for individual connections (in the workspaces where they've been granted Runner permissions). Outside of these explicit tasks, users with the 'Runner' role have an entirely read-only experience (Self-Managed Enterprise only).
- Self-Managed Diagnostics: Diagnostics have been expanded to include deployment statistics. Diagnostics can be downloaded through the Organization Settings page. This exports a .zip file which can be easily shared with Airbyte Support (Self-Managed Enterprise only).
- Removing SSO Users: You may now remove SSO users from your Airbyte Organization. This removes them from the list of Organization Members.
Airbyte 1.1.0
🚀 Features
The 1.1.0 release includes the following enhancements and bug fixes.
Platform Releases
-
Adds field hashing for Self-Managed Enterprise
-
Adds the Connection Timeline, replacing the Job History for a connection. For assistance with the migration of existing jobs to the new timeline events, follow our guide.
-
Redesigned the schema tab to improve the selection & deselection of streams and fields. Sync modes, cursor fields, and primary keys are also selected here.
- Custom Docker-based connectors can now be renamed and deleted
Support Experience
- Diagnostics can be downloaded through the Organization Settings page, which will export a JSON file to facilitate sharing with Support. This JSON file includes relevant infrastructure and connection information. (Self-Managed Enterprise only)
Billing & Licenses
- Self-Managed Enterprise users can now view directly in the UI when the license is expiring.
Changelog
See the Full Changelog
Airbyte 1.0
airbyte v1.0.0
Official launch page: https://airbyte.com/v1
This page includes new features and improvements to the Airbyte products we're excited to share as a part of the 1.0 release. Airbyte v1.0 contains many improvements and additions to enhance the reliability, scalability, and uses of Airbyte.
Moving forward, Airbyte will release official new platform versions on a monthly cadence, with the associated changelog.
Ease of deployment
-
abctl
is the easiest, quickest way to get started with Airbyte Self-managed. See our quickstart docs for more details. -
Native authentication by email and password is available so that any instance of Airbyte is secure by default.
Proven Reliability
-
Automatic detection of dropped records ensures data is passed without fail through the Airbyte platform.
-
Enhanced our notification suite to enable webhook integrations and added more contextual information about sync failures or schema changes.
-
Connections now offer rate limited messaging, improved error handling, and live monitoring of ongoing syncs.
-
Many sources, in particular S3, have become faster. With CDK 2.0, the protocol now uses Pydantic V2 and removes the serialization of each record. We also improved Databricks and S3 destinations to enable faster sync speeds, checkpointing, and modernization to our Destinations V2 framework.
Resiliency at Scale
-
Refreshes bring an improved experience to resyncing all of your data again. This enables data to never be deleted from final tables during a historical resyncing of data.
-
Resumable Full Refresh allows for large streams syncing in Full Refresh to sync without failures.
-
Our database sources added resumability to reduce failures and stay resilient when incoming data is inconsistent. We gracefully handle record-level error in the destination field
_airbyte_meta.errrors
for large records or mistyped data. Read more in our typing & deduping documentation. -
Large initial CDC syncs are gracefully handled by consuming WAL and acknowledges logs periodically to ensure disk space is freed in a timely manner.
-
Workloads provide a more scalable and reliable architecture to run sync jobs by separating scheduling and orchestration from data movement tasks. This improvement unlocks more automated management of workloads by managing job spikes and enables horizontal scaling (for Cloud and Enterprise users).
Tackling the long-tail of connectors
-
We launched our connector Marketplace for our community-maintained connectors. Automated testing ensures our connectors stay high quality, and most connectors have been migrated to low/no-code.
-
The Connector Builder seamlessly switches between UI and YAML modes, supports custom components, and contains extensive testing and error handling.
-
AI Assist now builds connectors from scratch for you with just a link to the API docs.
-
Anyone can now contribute new connectors directly from the builder to add a new connector directly to Airbyte's Marketplace. Additionally, connectors can be forked directly from the UI for faster edits, ensuring our connectors stay up-to-date.
-
Airbyte supports writing to several vector store destinations, including pgVector, Pinecone, and Snowflake Cortex.
Self-Managed Enterprise
Self-Managed Enterprise extends on Airbyte 1.0 by introducing new classes of functionality: multitenancy and access management, enterprise source connectors , sensitive data masking and enterprise support – all while data never leaves your infrastructure.
- Support for Okta and OpenID Connect (OIDC) SSO
- Availability of Role-based Access Control and multitenancy
- Columns can now be hashed to protect sensitive data
Announcements
-
To ensure adherence to security best practices, Airbyte is migrating all connectors to non-root versions. It is highly recommended that you upgrade your platform version to v0.63.9 or later before October 2024 to ensure your syncs continue to succeed.
-
As we prepare to deprecate Docker Compose, we published a migration guide for those migrating from Docker Compose to abctl.
v0.64.7
2e62443 [source-postgres/mysql/mssql/mongodb-v2] Use latest CDK to adopt latest apache sshd mina to handle tcpkeepalive requests (#45639)
398a1bb source-buzzsprout contribution from btkcodedev (#45608)
ed214d0 [cdk] upgrade apache mina sshd to 2.13.2 to handle openssh tcpkeepalive request (#45638)
5f93772 [ISSUE_TEMPLATE] replace deprecated docker template for ai-assist (#45629)
6d74db7 change signature of orphanedThreadFilter (#45469)
6469111 [source-mysql-v2] cdk and spec change for ssl (#45351)
v0.64.6
6502f92 🐛 Source Greenhouse: faster check stream (#45625)
4027d0e [docs] add troubleshooting abctl page + move trb. from quickstarts (#45460)
28f8214 🤖 Cut version 5.6.0 of source-declarative-manifest
c5cff57 🤖 minor bump Python CDK to version 5.6.0
199a807 [airbyte-cdk] Decouple request_options_provider from datetime_based_cursor + concurrent_cursor features for low-code (#45413)
v0.64.5
daee3b6 Destination Iceberg: Fix tests to run in airbyte-ci (#45206)
912bc77 docs: add the type: external to the db docs. (#45466)
5cb27b1 source-nylas contribution from topefolorunso (#45093)
86b34f6 source-brevo contribution from btkcodedev (#45382)
1fdd06f source-appfigures contribution from btkcodedev (#45332)
8a4e875 source-shortcut contribution from btkcodedev (#45176)
328fd87 source-survicate contribution from btkcodedev (#45163)
42a26d2 source-buildkite contribution from btkcodedev (#45384)
fa67b6a source-front contribution from btkcodedev (#45387)
37af2f0 source-google-tasks contribution from btkcodedev (#45427)
a85de6f source-picqer contribution from btkcodedev (#45159)
c6530c9 source-teamwork contribution from btkcodedev (#45155)
b6deeb3 source-appcues contribution from btkcodedev (#45102)
368b5c2 source-bitly contribution from topefolorunso (#45071)
891fa03 source-guru contribution from btkcodedev (#45066)
56fcf5e source-canny contribution from pabloescoder (#45588)
f813e93 source-ezofficeinventory contribution from pabloescoder (#45590)
b17df3f Bulk Load CDK: AirbyteType & AirbyteValue, marshaling from json (#45430)
ace4e82 Destination CDK: Make DAT open to disable for iceberg (#45602)
91013e1 Bulk Core/Load CDK: Support for connector-type-specific non-config sp… (#45463)
9ae2cbe ✨ feat(Destination PGVector): new connector (#45428)
bb1adbe ✨ Source GetLago: feat customer usage (#45452)
f6fd017 fix(source-google-search-console): fix request body for report streams by keyword (#45196)
4559c75 🐛Bug(Source hubspot): add missing scope in docs (#45585)
5f2774d 🐙 source-us-census: run up-to-date pipeline [2024-09-14] (#44364)
2c90bca 🐙 source-hubspot: run up-to-date pipeline [2024-09-14] (#45018)
13df95b 🐙 source-chargebee: run up-to-date pipeline [2024-09-14] (#45254)
4a843fa 🐙 source-shopify: run up-to-date pipeline [2024-09-14] (#45255)
3d84c48 🐙 destination-rabbitmq: run up-to-date pipeline [2024-09-14] (#45293)
5642f2c 🐙 source-unleash: run up-to-date pipeline [2024-09-14] (#45295)
917708d 🐙 source-webflow: run up-to-date pipeline [2024-09-14] (#45296)
77e18da 🐙 source-recurly: run up-to-date pipeline [2024-09-14] (#45471)
cd546bd 🐙 source-orb: run up-to-date pipeline [2024-09-14] (#45472)
77db6ec 🐙 source-mixpanel: run up-to-date pipeline [2024-09-14] (#45473)
d052a8a 🐙 source-apple-search-ads: run up-to-date pipeline [2024-09-14] (#45474)
c27f183 🐙 source-younium: run up-to-date pipeline [2024-09-14] (#45475)
107911a 🐙 source-greenhouse: run up-to-date pipeline [2024-09-14] (#45476)
d73fac7 🐙 source-snapchat-marketing: run up-to-date pipeline [2024-09-14] (#45477)
6ed3b11 🐙 source-rki-covid: run up-to-date pipeline [2024-09-14] (#45478)
4ad7c74 🐙 source-apify-dataset: run up-to-date pipeline [2024-09-14] (#45479)
f741b19 🐙 destination-duckdb: run up-to-date pipeline [2024-09-14] (#45480)
2a97f35 🐙 destination-vectara: run up-to-date pipeline [2024-09-14] (#45481)
0db707d 🐙 source-microsoft-dataverse: run up-to-date pipeline [2024-09-14] (#45482)
0d3882f 🐙 source-close-com: run up-to-date pipeline [2024-09-14] (#45483)
fd6a368 🐙 source-yahoo-finance-price: run up-to-date pipeline [2024-09-14] (#45484)
95bef61 🐙 source-zenloop: run up-to-date pipeline [2024-09-14] (#45485)
50021cc 🐙 source-fastbill: run up-to-date pipeline [2024-09-14] (#45486)
deb0b1e 🐙 source-pocket: run up-to-date pipeline [2024-09-14] (#45487)
b953c55 🐙 source-tiktok-marketing: run up-to-date pipeline [2024-09-14] (#45488)
98aa7dc 🐙 destination-snowflake-cortex: run up-to-date pipeline [2024-09-14] (#45489)
0099c63 🐙 destination-pinecone: run up-to-date pipeline [2024-09-14] (#45490)
1f721c1 🐙 destination-typesense: run up-to-date pipeline [2024-09-14] (#45491)
c43c6e8 🐙 source-gcs: run up-to-date pipeline [2024-09-14] (#45492)
d7295a6 🐙 source-kyve: run up-to-date pipeline [2024-09-14] (#45493)
40e66aa 🐙 source-convex: run up-to-date pipeline [2024-09-14] (#45494)
b077a60 🐙 source-hardcoded-records: run up-to-date pipeline [2024-09-14] (#45496)
61ea043 🐙 source-google-ads: run up-to-date pipeline [2024-09-14] (#45497)
3699c5b 🐙 destination-astra: run up-to-date pipeline [2024-09-14] (#45498)
45a2692 🐙 source-file: run up-to-date pipeline [2024-09-14] (#45499)
ca4cf51 🐙 source-salesloft: run up-to-date pipeline [2024-09-14] (#45500)
0f4cda0 🐙 source-amplitude: run up-to-date pipeline [2024-09-14] (#45501)
7eeddee 🐙 source-outbrain-amplify: run up-to-date pipeline [2024-09-14] (#45502)
254cb86 🐙 source-google-analytics-data-api: run up-to-date pipeline [2024-09-14] (#45503)
42d24dd 🐙 source-s3: run up-to-date pipeline [2024-09-14] (#45504)
7cdb490 🐙 source-firebase-realtime-database: run up-to-date pipeline [2024-09-14] (#45505)
a636bb5 🐙 source-partnerstack: run up-to-date pipeline [2024-09-14] (#45506)
9cf4b7f 🐙 source-n8n: run up-to-date pipeline [2024-09-14] (#45507)
3726570 🐙 source-flexport: run up-to-date pipeline [2024-09-14] (#45508)
63d1366 🐙 source-pardot: run up-to-date pipeline [2024-09-14] (#45509)
aa1455d 🐙 source-appsflyer: run up-to-date pipeline [2024-09-14] (#45510)
6bef8c9 🐙 source-adjust: run up-to-date pipeline [2024-09-14] (#45511)
54ee166 🐙 source-instatus: run up-to-date pipeline [2024-09-14] (#45514)
fb3220e 🐙 source-public-apis: run up-to-date pipeline [2024-09-14] (#45515)
d29ebda 🐙 destination-xata: run up-to-date pipeline [2024-09-14] (#45516)
190c68f 🐙 source-quickbooks: run up-to-date pipeline [2024-09-14] (#45517)
73d8073 🐙 source-iterable: run up-to-date pipeline [2024-09-14] (#45518)
f119e43 🐙 source-surveymonkey: run up-to-date pipeline [2024-09-14] (#45519)
9379f40 🐙 source-recharge: run up-to-date pipeline [2024-09-14] (#45520)
2172303 🐙 source-qonto: run up-to-date pipeline [2024-09-14] (#45521)
3c5f50a 🐙 source-freshcaller: run up-to-date pipeline [2024-09-14] (#45522)
0a86081 🐙 source-zoom: run up-to-date pipeline [2024-09-14] (#45523)
cb7626c 🐙 source-zendesk-talk: run up-to-date pipeline [2024-09-14] (#45524)
bc1d01c 🐙 source-sendgrid: run up-to-date pipeline [2024-09-14] (#45525)
0b76f31 🐙 destination-qdrant: run up-to-date pipeline [2024-09-14] (#45526)
bb3bcbc 🐙 source-qualaroo: run up-to-date pipeline [2024-09-14] (#45527)
1514b27 🐙 source-onesignal: run up-to-date pipeline [2024-09-14] (#45528)
6a00964 🐙 source-gridly: run up-to-date pipeline [2024-09-14] (#45529)
43787d6 🐙 source-klaviyo: run up-to-date pipeline [2024-09-14] (#45530)
0c65ad4 🐙 destination-databend: run up-to-date pipeline [2024-09-14] (#45531)
6402d34 🐙 source-linkedin-ads: run up-to-date pipeline [2024-09-14] (#45532)
a1e2808 🐙 destination-aws-datalake: run up-to-date pipeline [2024-09-14] (#45533)
c97e92a 🐙 source-woocommerce: run up-to-date pipeline [2024-09-14] (#45534)
29afd09 🐙 source-postmarkapp: run up-to-date pipeline [2024-09-14] (#45535)
2e5b925 🐙 source-yandex-metrica: run up-to-date pipeline [2024-09-14] (#45536)
bd4ea25 🐙 source-harvest: run up-to-date pipeline [2024-09-14] (#45537)
cb59367 🐙 source-rss: run up-to-date pipeline [2024-09-14] (#45538)
c6f2a32 🐙 source-bigcommerce: run up-to-date pipeline [2024-09-14] (#45539)
0f81a1e 🐙 source-google-directory: run up-to-date pipeline [2024-09-14] (#45540)
728e9ee 🐙 source-gnews: run up-to-date pipeline [2024-09-14] (#45541)
178efe9 🐙 source-bamboo-hr: run up-to-date pipeline [2024-09-14] (#45542)
e1d41b9 🐙 source-okta: run up-to-date pipeline [2024-09-14] (#45543)
fedec7e 🐙 source-azure-table: run up-to-date pipeline [2024-09-14] (#45544)
35ce98e 🐙 source-genesys: run up-to-date pipeline [2024-09-14] (#45545)
7db5473 🐙 source-zendesk-sunshine: run up-to-date pipeline [2024-09-14] (#45546)
85bd41f 🐙 source-asana: run up-to-date pipeline [2024-09-14] (#45547)
938d188 🐙 source-amazon-ads: run up-to-date pipeline [2024-09-14] (#45548)
b92992c 🐙 source-commcare: run up-to-date pipeline [2024-09-14] (#45549)
151f55e 🐙 source-square: run up-to-date pipeline [2024-09-14] (#45550)
f58d91d 🐙 source-surveycto: run up-to-date pipeline [2024-09-14] (#45551)
8b8e2f0 🐙 source-commercetools: run up-to-date pipeline [2024-09-14] (#45552)
cb4d131 🐙 source-alpha-vantage: run up-to-date pipeline [2024-09-14] (#45554)
c4f68f2 🐙 source-braintree: run up-to-date pipeline [2024-09-14] (#45555)
06decd3 🐙 source-pipedrive: run up-to-date pipeline [2024-09-14] (#45556)
a4a1ab8 🐙 source-github: run up-to-date pipeline [2024-09-14] (#45557)
d1e98a9 🐙 source-trustpilot: run up-to-date pipeline [2024-09-14] (#45558)
20f739c 🐙 source-tplcentral: run up-to-date pipeline [2024-09-14] (#45559)
37359fb 🐙 destination-weaviate: run up-to-date pipeline [2024-09-14] (#45560)
85457a1 🐙 source-zendesk-support: run up-to-date pipeline [2024-09-14] (#45561)
e5cd6de 🐙 destination-firebolt: run up-to-date pipeline [2024-09-14] (#45562)
7d1e65a 🐙 source-facebook-pages: run up-to-date pipeline [2024-09-14] (#45563)
fae0a8c 🐙 source-looker: run up-to-date pipeline [2024-09-14] (#45564)
054510c 🐙 source-jina-ai-reader: run up-to-date pipeline [2024-09-14] (#45565)
2a55f49 🐙 source-pinterest: run up-to-date pipeline [2024-09-14] (#45566)
44b18a1 🐙 source-faker: run up-to-date pipeline [2024-09-14] (#45567)
1e9ff52 🐙 destination-timeplus: run up-to-date pipeline [2024-09-14] (#45568)
f3453c7 🐙 source-kyriba: run up-to-date pipeline [2024-09-14] (#45569)
f0bc43e 🐙 source-posthog: run up-to-date pipeline [2024-09-14] (#45570)
efa3a05 🐙 source-linnworks: run up-to-date pipeline [2024-09-14] (#45571)
781a41c 🐙 source-firebolt: run up-to-date pipeline [2024-09-14] (#45572)
490d24e 🐙 destination-milvus: run up-to-date pipeline [2024-09-14] (#45573)
579574b 🐙 source-aws-cloudtrail: run up-to-date pipeline [2024-09-14] (...