From 351ebd30de2507e09d08e60cb12cad04a27a21e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A9lanie=20Vistry?= Date: Fri, 24 Apr 2026 11:46:41 +0200 Subject: [PATCH 01/11] Updated entry-list --- _includes/changelog/entry-list.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/_includes/changelog/entry-list.html b/_includes/changelog/entry-list.html index 597c897c9..6a2015de0 100644 --- a/_includes/changelog/entry-list.html +++ b/_includes/changelog/entry-list.html @@ -111,11 +111,11 @@ - {% if entry.pull-request %} + {% if entry.pull_request %}

- - {{ entry.pull-request | remove: "https://github.com/singer-io/" | remove: "https://github.com/stitchdata/" | replace: "/pull/", " #" | upcase }} + + {{ entry.pull_request | remove: "https://github.com/singer-io/" | remove: "https://github.com/stitchdata/" | replace: "/pull/", " #" | upcase }}

{% endif %} From 9d68917ac376499528ceb5d5b1d49d5dce53f991 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A9lanie=20Vistry?= Date: Fri, 24 Apr 2026 13:10:53 +0200 Subject: [PATCH 02/11] Test: renamed a file --- ...d => 2024-02-20-mambu-v4-update-update-table-to-full-table.md} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename _changelog-files/2024/{2024-02-20-mambu-v4-update-table-full-table.md => 2024-02-20-mambu-v4-update-update-table-to-full-table.md} (100%) diff --git a/_changelog-files/2024/2024-02-20-mambu-v4-update-table-full-table.md b/_changelog-files/2024/2024-02-20-mambu-v4-update-update-table-to-full-table.md similarity index 100% rename from _changelog-files/2024/2024-02-20-mambu-v4-update-table-full-table.md rename to _changelog-files/2024/2024-02-20-mambu-v4-update-update-table-to-full-table.md From ba6053c51970f994d54347683e5136b51fc6a48d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A9lanie=20Vistry?= Date: Fri, 24 Apr 2026 13:14:49 +0200 Subject: [PATCH 03/11] Revert "Updated entry-list" This reverts commit 351ebd30de2507e09d08e60cb12cad04a27a21e6. --- _includes/changelog/entry-list.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/_includes/changelog/entry-list.html b/_includes/changelog/entry-list.html index 6a2015de0..597c897c9 100644 --- a/_includes/changelog/entry-list.html +++ b/_includes/changelog/entry-list.html @@ -111,11 +111,11 @@ - {% if entry.pull_request %} + {% if entry.pull-request %}

- - {{ entry.pull_request | remove: "https://github.com/singer-io/" | remove: "https://github.com/stitchdata/" | replace: "/pull/", " #" | upcase }} + + {{ entry.pull-request | remove: "https://github.com/singer-io/" | remove: "https://github.com/stitchdata/" | replace: "/pull/", " #" | upcase }}

{% endif %} From 46ed3d904a1a7a58e72c9d0808eb1eb80723163d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A9lanie=20Vistry?= Date: Fri, 24 Apr 2026 13:28:37 +0200 Subject: [PATCH 04/11] Updated the changelog script --- scripts/changelog/changelog.py | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/scripts/changelog/changelog.py b/scripts/changelog/changelog.py index 429d5556e..b21b4c5ae 100644 --- a/scripts/changelog/changelog.py +++ b/scripts/changelog/changelog.py @@ -31,6 +31,14 @@ new_feature = ['new version'] removed = ['remove', 'removed', 'removing', 'removal'] +def slugify(text): # Replicate Jekyll's slugify filter to match generated IDs + text = text.lower() + text = text.replace(' ', '-') + text = re.sub(r'[^\w\-]', '', text) # Remove special characters except hyphens and word chars + text = re.sub(r'-+', '-', text) # Replace multiple hyphens with single hyphen + text = text.strip('-') # Strip hyphens from start and end + return text + def createDir(): # Check if the target folder exists and create it if it doesn't if os.path.exists(path) == False: os.makedirs(path) @@ -233,7 +241,6 @@ def getPRsToDocument(): # Find PRs that need to be documented and create draft c # Process PR title pr_title = re.sub(r'\w*-\d*\s?:\s?', '', pr_title) pr_title_for_md_description = pr_title[0].lower() + pr_title[1:] - pr_title_for_md_filename = pr_title.lower().replace(' ', '-').replace(':', '-').replace(',', '-').replace('.', '-').replace('--', '-').replace('/', '-').replace('\'', '-') # Guess the entry type from the PR title entry_type = 'NOT FOUND' @@ -251,9 +258,15 @@ def getPRsToDocument(): # Find PRs that need to be documented and create draft c entry_type = type break - # Create the filename and content of the changelog file and create it - md_filename = f'{path}/{pr_date}-{tap}-v{connection_version}-{pr_title_for_md_filename}.md' - md_text = f'---\ntitle: "{connection_name} (v{connection_version}): {pr_title}"\ncontent-type: "changelog-entry"\ndate: {pr_date}\nentry-type: {entry_type}\nentry-category: integration\nconnection-id: {connection_id}\nconnection-version: {connection_version}\npull-request: "{pr_url}"\n---\n{{{{ site.data.changelog.metadata.single-integration | flatify }}}}\n\nWe\'ve improved our {{{{ this-connection.display_name }}}} (v{{{{ this-connection.this-version }}}}) integration to {pr_title_for_md_description}.' + # Create the YAML title (this matches what goes in the file) + yaml_title = f"{connection_name} (v{connection_version}): {pr_title}" + + # Generate filename by slugifying the full title + date (matching Jekyll's ID generation) + # Jekyll generates: entry.date | date: "%F" | append: "-" | append: entry.title | slugify + entry_id_base = f"{pr_date}-{yaml_title}" + entry_id_slug = slugify(entry_id_base) + md_filename = f'{path}/{entry_id_slug}.md' + md_text = f'---\ntitle: "{yaml_title}"\ncontent-type: "changelog-entry"\ndate: {pr_date}\nentry-type: {entry_type}\nentry-category: integration\nconnection-id: {connection_id}\nconnection-version: {connection_version}\npull-request: "{pr_url}"\n---\n{{{{ site.data.changelog.metadata.single-integration | flatify }}}}\n\nWe\'ve improved our {{{{ this-connection.display_name }}}} (v{{{{ this-connection.this-version }}}}) integration to {pr_title_for_md_description}.' with open(md_filename, 'w') as out: out.write(md_text) From 342d2eb77a360de7f42766fe6a2faa40601a4a49 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A9lanie=20Vistry?= Date: Fri, 24 Apr 2026 13:29:48 +0200 Subject: [PATCH 05/11] Revert "Test: renamed a file" This reverts commit 9d68917ac376499528ceb5d5b1d49d5dce53f991. --- ...ll-table.md => 2024-02-20-mambu-v4-update-table-full-table.md} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename _changelog-files/2024/{2024-02-20-mambu-v4-update-update-table-to-full-table.md => 2024-02-20-mambu-v4-update-table-full-table.md} (100%) diff --git a/_changelog-files/2024/2024-02-20-mambu-v4-update-update-table-to-full-table.md b/_changelog-files/2024/2024-02-20-mambu-v4-update-table-full-table.md similarity index 100% rename from _changelog-files/2024/2024-02-20-mambu-v4-update-update-table-to-full-table.md rename to _changelog-files/2024/2024-02-20-mambu-v4-update-table-full-table.md From b276e4509158d448ad99858c8ef7e6ed98cf8ba9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A9lanie=20Vistry?= Date: Fri, 24 Apr 2026 14:02:48 +0200 Subject: [PATCH 06/11] Updated entry-list --- _includes/changelog/entry-list.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/_includes/changelog/entry-list.html b/_includes/changelog/entry-list.html index 597c897c9..0d340db4e 100644 --- a/_includes/changelog/entry-list.html +++ b/_includes/changelog/entry-list.html @@ -111,11 +111,11 @@ - {% if entry.pull-request %} + {% if entry["pull-request"] %}

- - {{ entry.pull-request | remove: "https://github.com/singer-io/" | remove: "https://github.com/stitchdata/" | replace: "/pull/", " #" | upcase }} + + {{ entry["pull-request"] | remove: "https://github.com/singer-io/" | remove: "https://github.com/stitchdata/" | replace: "/pull/", " #" | upcase }}

{% endif %} From cd9cb5ce252175f45c0a547da17f68528f6975b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A9lanie=20Vistry?= Date: Fri, 24 Apr 2026 14:28:28 +0200 Subject: [PATCH 07/11] Fixing PR links --- .../2017/2017-10-27-facebook-ads-v1-adlabels-fields.md | 2 +- .../2017-11-02-facebook-ads-v1-new-incremental-tables.md | 2 +- .../2017/2017-11-21-salesforce-v1-record-type-handling.md | 2 +- .../2017/2017-12-06-salesforce-v1-primary-key-chunking.md | 2 +- ...17-12-15-facebook-ads-v1-adcreative-field-deprecation.md | 2 +- .../2018/2018-01-18-salesforce-v1-incompatible-objects.md | 2 +- .../2018/2018-01-22-facebook-ads-include-deleted-data.md | 2 +- ...18-03-19-salesforce-v1-contentfolderitem-incompatible.md | 2 +- .../2018-07-11-salesforce-v1-parent-table-chunk-names.md | 2 +- .../2018/2018-08-03-postgresql-v1-pg-10-support.md | 2 +- .../2018-08-21-postgresql-v1-replication-slot-support.md | 2 +- .../2018/2018-08-28-postgresql-schema-name-setting.md | 2 +- ...-07-salesforce-v1-opportunityfield-history-parent-fix.md | 2 +- .../2018/2018-09-19-postgresql-v1-primary-key-discovery.md | 2 +- .../2018/2018-09-19-postgresql-v1-selected-by-default.md | 2 +- .../2018/2018-10-05-mysql-v1-interruptible-full-table.md | 2 +- ...-salesforce-v1-background-operation-result-full-table.md | 2 +- .../2018-12-12-salesforce-v1-bulk-api-date-chunking-fix.md | 2 +- .../2019/2017-10-25-mysql-v1-pks-unsupported-type.md | 2 +- .../2019/2019-01-03-postgresql-v1-bigint-array-support.md | 2 +- .../2019/2019-03-14-mysql-non-auto-pks-interruptible.md | 2 +- .../2019-03-15-salesfoce-v1-remove-changeevent-tables.md | 2 +- ...019-05-06-facebook-ads-v1-relevance-score-deprecation.md | 2 +- .../2019-07-16-salesforce-v1-remove-announcement-object.md | 2 +- .../2019/2019-07-31-facebook-ads-v1-ads-insights-dma.md | 2 +- .../2019-08-27-salesforce-v1-convert-integer-zero-values.md | 2 +- .../2019-08-27-salesforce-v1-remove-sitedetail-object.md | 2 +- .../2019/2019-09-18-mysql-v1-composite-pk-full-table.md | 2 +- .../2019/2019-10-22-postgresql-v1-bigint-data-type-fix.md | 2 +- .../2019/2019-11-20-facebook-ads-v1-adcreative-batch-api.md | 2 +- .../2020-01-06-facebook-ads-video-play-curve-actions.md | 2 +- .../2020/2020-01-27-postgresql-v1-bytea-unsupported.md | 2 +- .../2020/2020-02-27-facebook-ads-v1-api-upgrade-v6.md | 2 +- .../2020-02-27-postgresql-v1-correct-ssl-connections.md | 2 +- _changelog-files/2020/2020-03-03-github-v1-pr-commits.md | 2 +- _changelog-files/2020/2020-03-04-github-v1-new-tables.md | 2 +- ...3-30-salesforce-v1-location-data-unsupported-bulk-api.md | 2 +- .../2020-04-01-salesforce-v1-improved-pk-chunking-errors.md | 2 +- .../2020/2020-04-06-github-v1-new-tables-fields.md | 2 +- .../2020/2020-04-07-google-analytics-v1-premade-reports.md | 2 +- ...2020-04-22-google-analytics-searchkeyword-non-default.md | 2 +- .../2020/2020-04-22-salesforce-v1-loginevent-full-table.md | 2 +- .../2020/2020-05-12-google-analytics-v1-datetime-parsing.md | 2 +- ...20-05-21-google-analytics-v1-retryable-error-handling.md | 2 +- ...6-15-google-analytics-v1-non-retryable-error-messages.md | 2 +- .../2020-06-22-salesforce-v1-removed-datatype-object.md | 2 +- ...020-08-07-google-analytics-v1-less-aggressive-retries.md | 2 +- .../2020/2020-08-13-facebook-ads-v1-api-upgrade-v8.md | 2 +- .../2020-08-20-postgresql-v1-discover-partitioned-tables.md | 2 +- ...-salesforce-v1-remove-networkuserhistoryrecent-object.md | 2 +- ...0-09-18-google-analytics-v1-accountsummaries-profiles.md | 2 +- _changelog-files/2020/2020-12-18-mambu-v1-new-tables.md | 2 +- _changelog-files/2021/2021-02-25-new-stripe-fields.md | 2 +- _changelog-files/2021/2021-02-25-stripe-invoices-bug-fix.md | 2 +- .../2021/2021-02-26-shopify-standardized-shop-errors.md | 2 +- _changelog-files/2021/2021-03-05-xero-datetime-value-fix.md | 2 +- ...021-03-08-facebook-ads-v1-unique-outbound-clicks-data.md | 2 +- .../2021-03-09-adwords-v05-02-2017-common-error-messages.md | 2 +- .../2021-03-10-pendo-v1-accounts-visitors-custom-fields.md | 2 +- .../2021-03-11-salesforce-v1-error-message-formatting.md | 2 +- .../2021/2021-03-11-zuora-v1-aqua-jobs-rate-limit.md | 2 +- .../2021-03-12-mongodb-v2-remove-duplicate-instances.md | 2 +- .../2021-03-12-pendo-v1-ijson-performance-enhancement.md | 2 +- ...1-03-15-zoom-v1-fixed-schema-report-meetings-webinars.md | 2 +- .../2021-03-16-salesforce-v1-operation-too-large-error.md | 2 +- .../2021/2021-03-17-mambu-v1-decimal-validation-fix.md | 2 +- .../2021/2021-03-19-eloqua-v1-email-groups-contacts-data.md | 2 +- ...03-22-salesforce-v1-remove-fieldhistoryarchive-object.md | 2 +- .../2021/2021-03-24-new-feature-integration-changelogs.md | 2 +- .../2021/2021-03-25-sso-azure-active-directory.md | 2 +- .../2021/2021-03-30-postgres-v2-key-incremental-support.md | 2 +- .../2021/2021-03-31-zuora-new-stateful-query.md | 2 +- _changelog-files/2021/2021-04-05-xero-retry-logic.md | 2 +- .../2021/2021-04-06-jira-new-components-table.md | 2 +- .../2021/2021-04-09-klaviyo-critical-error-logging.md | 2 +- .../2021/2021-04-09-xero-error-conditions-features.md | 2 +- ...21-04-13-mailchimp-v1-updated-error-message-campaigns.md | 2 +- _changelog-files/2021/2021-04-13-sso-pingfederate.md | 2 +- .../2021/2021-04-13-xero-v1-increased-currency-precision.md | 2 +- .../2021/2021-04-13-xero-v1-new-quotes-table.md | 2 +- .../2021/2021-04-14-github-v1-new-pull-requests-field.md | 2 +- .../2021/2021-04-14-improved-security-documentation.md | 2 +- ...4-15-pendo-v1-trackevents-source-parameter-correction.md | 2 +- ...15-shopify-v1-definitions-table-customer-field-change.md | 2 +- .../2021/2021-04-15-xero-v1-archived-contacts-config.md | 2 +- _changelog-files/2021/2021-04-16-new-mysql-version-v2.md | 2 +- .../2021/2021-04-16-zendesk-chat-v1-new-agents-field.md | 2 +- ...st-forecast-v1-full-table-rep-assignments-query-logic.md | 2 +- .../2021/2021-04-19-postgres-v2-unsupported-types.md | 2 +- _changelog-files/2021/2021-04-21-mambu-new-v2.md | 2 +- .../2021/2021-04-22-marketo-v1-csv-compatibility.md | 2 +- .../2021/2021-04-22-xero-v1-wait-time-for-rate-limit.md | 2 +- .../2021/2021-04-26-shopify-v1-api-upgrade-04-2021.md | 2 +- ...1-04-26-shopify-v1-transactions-order-refund-features.md | 2 +- _changelog-files/2021/2021-04-29-zuora-v1-enforce-UTC.md | 2 +- .../2021/2021-04-30-facebook-ads-v1-job-timeout-increase.md | 2 +- .../2021-05-06-shopify-v1-remove-build-fields-duplicates.md | 2 +- .../2021-05-13-intercom-v1-companies-endpoint-limitation.md | 2 +- .../2021-05-14-salesforce-extraction-error-reference.md | 2 +- .../2021/2021-05-17-mssql-v1-bugfix-rep-key-quoting.md | 2 +- .../2021/2021-05-17-pendo-v1-anonymous-visitors.md | 2 +- .../2021-05-19-shopify-v1-abandoned-checkouts-validation.md | 2 +- .../2021/2021-05-21-facebook-ads-v1-api-upgrade-v10.md | 2 +- _changelog-files/2021/2021-05-21-typeform-v1-forms-table.md | 2 +- .../2021/2021-05-24-slack-v1-user-profile-data.md | 2 +- .../2021/2021-05-26-pipedrive-v1-improved-error-handling.md | 2 +- .../2021-05-26-pipedrive-v1-organizations-pagination.md | 2 +- .../2021-05-26-pipedrive-v1-remove-delete-logs-table.md | 2 +- .../2021/2021-05-27-docs-parent-child-table-feature.md | 2 +- .../2021/2021-05-27-github-v1-updated-table-docs.md | 2 +- .../2021-05-28-freshdesk-v1-groups-fix-field-data-type.md | 2 +- ...2021-05-28-klaviyo-v1-campaigns-table-field-selection.md | 2 +- .../2021/2021-05-28-shopify-v1-product-status-field.md | 2 +- .../2021/2021-06-01-chargify-v1-component-fields.md | 2 +- .../2021/2021-06-01-chargify-v1-new-transaction-fields.md | 2 +- .../2021/2021-06-03-mambu-v2-custom-field-bug-fix.md | 2 +- .../2021/2021-06-03-recharge-v1-rate-limit-handling.md | 2 +- .../2021/2021-06-07-api-docs-improved-connection-docs.md | 2 +- .../2021/2021-06-07-connect-api-new-destination-guide.md | 2 +- .../2021/2021-06-07-harvest-v2-updated-api-headers.md | 2 +- .../2021-06-08-amazon-s3-csv-duplicate-column-support.md | 2 +- .../2021/2021-06-08-harvest-forecast-sync-endpoints-fix.md | 2 +- .../2021/2021-06-09-chargebee-v1-cf-company-id-bug-fix.md | 2 +- .../2021/2021-06-10-outreach-v1-new-sequence-tables.md | 2 +- .../2021/2021-06-10-square-v1-remove-orders-item-data.md | 2 +- _changelog-files/2021/2021-06-14-chargebee-v1-new-tables.md | 2 +- .../2021/2021-06-16-amazon-s3-csv-type-checking-fix.md | 2 +- .../2021/2021-06-16-docs-integration-versioning-guide.md | 2 +- .../2021/2021-06-16-pipedrive-fix-table-rep-method.md | 2 +- .../2021/2021-06-16-pipedrive-remove-delete-logs.md | 2 +- .../2021/2021-06-17-yotpo-v1-error-refactoring.md | 2 +- .../2021/2021-06-21-campaign-manager-api-upgrade.md | 2 +- .../2021/2021-06-24-shopify-v1-plus-permissions.md | 2 +- .../2021/2021-06-25-toggl-v1-update-base-urls.md | 2 +- ...2021-06-28-facebook-ads-v1-update-country-primary-key.md | 2 +- .../2021/2021-06-28-github-v1-add-error-exception.md | 2 +- .../2021/2021-06-28-outreach-v1-new-name-field.md | 2 +- ...google-search-console-v1-empty-response-error-message.md | 2 +- ...2021-06-30-chargebee-v1-new-jsondecode-error-handling.md | 2 +- .../2021-06-30-chargebee-v1-new-price-tiers-attributes.md | 2 +- .../2021-06-30-chargebee-v1-remove-min-max-properties.md | 2 +- .../2021/2021-07-01-amazon-s3-csv-fix-empty-file-error.md | 2 +- .../2021/2021-07-08-postgresql-cloudsql-now-available.md | 2 +- .../2021-08-11-linkedin-ads-v1-automatic-replication-key.md | 2 +- .../2021/2021-08-12-linkedin-ads-v1-validate-account.md | 2 +- ...08-13-linkedin-ads-v1-error-handling-adcampaignsgroup.md | 2 +- .../2021/2021-09-27-crossbeam-new-integration.md | 2 +- .../2021/2021-10-27-mixpanel-v1-date-time-conversion-fix.md | 2 +- ...-mixpanel-v1-switch-from-multipleof-to-singer-decimal.md | 2 +- .../2021/2021-10-27-mixpanel-v1-timezone-error-message.md | 2 +- .../2021-10-28-salesforce-v1-increase-request-timeout.md | 2 +- ...2021-10-29-typeform-v1-landings-pagination-indexerror.md | 2 +- .../2021/2021-10-29-typeform-v1-landings-pagination.md | 2 +- .../2021-11-01-typeform-v1-retry-chunkedencodingerror.md | 2 +- .../2021/2021-11-02-dynamodb-v1-widen-decimal-precision.md | 2 +- .../2021/2021-11-02-facebook-ads-v1-rety-job-polling.md | 2 +- ...11-03-mambu-v2-new-gl_journal_entries-replication-key.md | 2 +- .../2021/2021-11-09-shopify-v1-new-events-stream.md | 2 +- .../2021/2021-11-29-mambu-v2-audit_trail-duplicates.md | 2 +- .../2021/2021-11-29-mambu-v2-original_account_key-field.md | 2 +- .../2021/2021-11-30-github-v1-parent-field-object.md | 2 +- _changelog-files/2021/2021-11-30-zendesk-v1-5xx-errors.md | 2 +- .../2021/2021-12-01-harvest-v2-request-timeout.md | 2 +- .../2021/2021-12-01-recharge-v1-request-timeout.md | 2 +- .../2021/2021-12-02-github-v1-request-timeout.md | 2 +- .../2021/2021-12-02-klaviyo-v1-request-timeout.md | 2 +- _changelog-files/2021/2021-12-02-zendesk-v1-503-error.md | 2 +- .../2021/2021-12-03-yotpo-v1-request-timeout.md | 2 +- .../2021/2021-12-06-mixpanel-v1-request-timeout.md | 2 +- .../2021/2021-12-07-zendesk-v1-request-timeout.md | 2 +- .../2022-01-05-intercom-v1-added-missing-field-contact.md | 2 +- ...2-01-05-intercom-v1-fix-breaking-changes-and-bookmark.md | 2 +- .../2022/2022-01-05-intercom-v1-improved-logger-messages.md | 2 +- .../2022-01-05-intercom-v1-revert-companies-incremental.md | 2 +- .../2022/2022-01-05-typeform-v1-request-timeout.md | 2 +- .../2022/2022-01-06-google-sheets-v1-error-descriptions.md | 2 +- .../2022/2022-01-10-linkedin-ads-v1-request-timeout.md | 2 +- .../2022/2022-01-10-pendo-v1-events-date-window.md | 2 +- _changelog-files/2022/2022-01-11-sftp-v1-request-timeout.md | 2 +- .../2022/2022-01-13-shopify-v1-request-timeout.md | 2 +- .../2022/2022-01-25-xero-v1-change-endpoint-check-access.md | 2 +- .../2022/2022-01-28-mambu-v2-new-loan-accounts-bookmark.md | 2 +- .../2022-02-02-bing-ads-v2-microsoft-identity-platform.md | 2 +- .../2022/2022-02-11-mambu-v2-journals-missing-entries.md | 2 +- .../2022/2022-02-15-jira-v2-add-request-timeout.md | 2 +- .../2022/2022-02-17-stripe-v1-change-events-date-window.md | 2 +- .../2022/2022-02-23-github-v1-update-team-members-pk.md | 2 +- .../2022/2022-03-01-mambu-v2-misc-updates-bug-fixes.md | 2 +- ...22-03-04-activecampaign-v1-forms-transformation-error.md | 2 +- .../2022/2022-03-04-mambu-v2-new-fields-refactoring.md | 2 +- .../2022/2022-03-22-mambu-v2-refactor-seven-streams.md | 2 +- ...-04-08-mambu-v2-refactoring-additional-fields-streams.md | 2 +- .../2022-04-22-google-ads-v1-table-updates-call-details.md | 2 +- .../2022/2022-04-25-google-ads-v1-labels-table.md | 2 +- .../2022/2022-04-25-pendo-v1-eu-endpoint-support.md | 2 +- .../2022-04-27-zendesk-chat-v1-add-chat-webpath-array.md | 2 +- .../2022/2022-04-28-pendo-v1-integer-string-types.md | 2 +- .../2022/2022-04-29-shopify-v1-fix-mismatched-schema.md | 2 +- .../2022/2022-05-02-closeio-v1-date-window-size.md | 2 +- .../2022-05-09-google-ads-v1-implement-automatic-keys.md | 2 +- .../2022/2022-05-11-google-ads-v1-new-tables-catalog.md | 2 +- .../2022/2022-05-17-typeform-v1-landings-incremental.md | 2 +- .../2022/2022-05-20-jira-v2-date-format-transformation.md | 2 +- _changelog-files/2022/2022-06-01-jira-v2-updated-readme.md | 2 +- .../2022/2022-06-01-yotpo-v1-status-code-500.md | 2 +- _changelog-files/2022/2022-06-15-facebook-v1-api-v13.md | 2 +- ...2022-06-23-linkedin-ads-v1-access-token-configuration.md | 2 +- .../2022-06-25-yotpo-v1-product-endpoint-deprecation.md | 2 +- .../2022/2022-06-30-google-ads-v1-request-timeout-search.md | 2 +- .../2022/2022-07-01-mongodb-v2-pymongo-upgrade.md | 2 +- .../2022-07-05-google-ads-v1-add-configurable-limits.md | 2 +- .../2022/2022-07-20-workday-raas-v1-boolean-fix.md | 2 +- _changelog-files/2022/2022-07-25-stripe-v2-open-beta.md | 2 +- _changelog-files/2022/2022-07-29-new-integrations-dixa.md | 2 +- .../2022-07-29-twitter-ads-v1-resolve-connectionerror.md | 2 +- .../2022/2022-07-30-dixa-v1-expand-activity-logs.md | 2 +- ...09-pipedrive-v1-handle-new-structure-for-users-stream.md | 2 +- .../2022-08-11-codat-v1-update-key-for-company-stream.md | 2 +- .../2022/2022-08-30-recharge-v2-recharge-version-bump.md | 2 +- _changelog-files/2022/2022-09-01-google-sheets-new-v2.md | 2 +- .../2022-09-02-pipedrive-v1-transformation-type-issues.md | 2 +- .../2022/2022-09-08-closeio-v1-future-dated-bookmarks.md | 2 +- ...022-09-08-pendo-v1-default-include-anonymous-visitors.md | 2 +- .../2022-09-12-mambu-v2-deposit-accounts-sorting-field.md | 2 +- .../2022/2022-09-13-hubspot-v2-deals-replication-key.md | 2 +- .../2022/2022-09-20-yotpo-v2-yotpo-version-bump.md | 2 +- .../2022/2022-09-22-stripe-v2-reduce-api-calls.md | 2 +- ...22-09-23-linkedin-ads-v1-check-existing-access-tokens.md | 2 +- .../2022/2022-09-26-recharge-v2-cleanup-customer-table.md | 2 +- .../2022/2022-09-27-mambu-v2-timzone-improvement.md | 2 +- ...22-09-28-trello-v1-cards-table-configurable-parameter.md | 2 +- _changelog-files/2022/2022-09-29-github-v2.md | 2 +- _changelog-files/2022/2022-09-29-typeform-v2.md | 2 +- .../2022/2022-10-07-mambu-v2-timezone-endpoint-downgrade.md | 2 +- _changelog-files/2022/2022-10-20-facebook-v1-api-v14.md | 2 +- ...3-typeform-support-submitted-landings-without-answers.md | 2 +- .../2022/2022-11-16-zendesk-chat-v1-api-fixes-new-fields.md | 2 +- .../2022/2022-11-22-ga4-v1-bad-metrics-unsupported.md | 2 +- .../2022/2022-11-30-shopify-v1-canonicalize-transactions.md | 2 +- .../2022/2022-12-12-dynamodb-v1-reduce-logging-frequency.md | 2 +- _changelog-files/2022/2022-12-12-ga4-v1-new-reports.md | 2 +- .../2022/2022-12-13-ga4-v1-new-field-exclusions.md | 2 +- _changelog-files/2022/2022-12-19-mssql-v1-log4j-update.md | 2 +- .../2022/2022-12-28-shopify-v1-api-upgrade-schema-change.md | 2 +- .../2022/2022-12-30-xero-v1-orders-manual-journal.md | 2 +- .../2023/2023-01-09-pendo-v1-skip-do-not-process.md | 2 +- .../2023/2023-01-31-ga4-v1-new-field-exclusions.md | 2 +- .../2023/2023-01-31-zuora-v1-unsupported-related-objects.md | 2 +- .../2023/2023-02-09-new-integrations-tiktok-ads.md | 2 +- .../2023/2023-02-13-new-integrations-snapchat-ads.md | 2 +- .../2023/2023-02-14-ga4-v1-new-field-exclusions.md | 2 +- .../2023/2023-02-16-helpscout-v1-new-streams.md | 2 +- .../2023/2023-02-16-hubspot-v2-tickets-stream.md | 2 +- .../2023/2023-02-22-doubleclick-campaign-manager-23.md | 2 +- _changelog-files/2023/2023-02-22-google-ads-v1-api-v12.md | 2 +- _changelog-files/2023/2023-02-23-mambu-v4-new-version.md | 2 +- .../2023/2023-02-27-campaign-manager-v1-queued-status.md | 2 +- .../2023/2023-02-28-dynamodb-v1-empty-projections.md | 2 +- .../2023/2023-02-28-ga4-v1-new-field-exclusions.md | 2 +- .../2023/2023-03-09-pipedrive-v1-retry-logic-dealsflow.md | 2 +- _changelog-files/2023/2023-03-15-iterable-v1-beta.md | 2 +- .../2023/2023-03-17-yotpo-v2-deleted-reviews.md | 2 +- .../2023-03-20-twilio-v1-new-fields-stream-bug-fixes.md | 2 +- .../2023/2023-03-21-activecampaign-v1-field-type-update.md | 2 +- .../2023/2023-03-21-activecampaign-v1-new-field.md | 2 +- .../2023-03-22-linkedin-ads-v2-large-number-of-accounts.md | 2 +- .../2023/2023-03-28-pendo-v1-visitor-history.md | 2 +- _changelog-files/2023/2023-03-30-marketo-v2-new-field.md | 2 +- ...23-04-03-dynamodb-v1-error-handling-log-based-streams.md | 2 +- ...023-04-04-google-search-console-v0-no-records-sitemap.md | 2 +- .../2023/2023-04-06-pendo-v1-type-error-accounts-stream.md | 2 +- .../2023-04-11-google-search-console-v1-new-search-types.md | 2 +- .../2023/2023-04-11-linkedin-ads-v2-api-version-update.md | 2 +- .../2023/2023-04-25-pipedrive-v1-deal-fields.md | 2 +- .../2023/2023-04-26-hubspot-v2-bookmarking-strategy.md | 2 +- .../2023-04-26-typeform-v2-missing-form-id-questions.md | 2 +- .../2023/2023-04-27-ga4-v1-new-field-exclusions.md | 2 +- _changelog-files/2023/2023-04-27-google-ads-v1-api-v13.md | 2 +- .../2023/2023-05-09-github-v2-handle-empty-repositories.md | 2 +- .../2023/2023-05-10-ga4-v1-new-field-exclusions.md | 2 +- .../2023/2023-05-10-shopify-v1-bookmarking-strategy.md | 2 +- .../2023-05-11-impact-v1-error-after-connection-edit.md | 2 +- .../2023/2023-05-12-impact-v1-handle-empty-model-id.md | 2 +- .../2023/2023-05-18-ga4-v1-new-field-exclusions.md | 2 +- .../2023-05-23-shopify-v1-backoff-incompleteread-error.md | 2 +- .../2023/2023-05-25-mixpanel-v1-export-events-parameter.md | 2 +- .../2023/2023-05-25-zendesk-v1-increase-sync-limit-users.md | 2 +- .../2023/2023-05-25-zendesk-v1-infinite-loop-users.md | 2 +- .../2023/2023-05-31-typeform-v2-tags-property.md | 2 +- _changelog-files/2023/2023-06-05-zendesk-v2-backoff.md | 2 +- _changelog-files/2023/2023-06-07-pipedrive-v1-backoff.md | 2 +- .../2023/2023-06-08-mailchimp-v1-date-window.md | 2 +- _changelog-files/2023/2023-06-08-tiktok-ads-v0-backoff.md | 2 +- _changelog-files/2023/2023-06-14-zendesk-v2-new-streams.md | 2 +- _changelog-files/2023/2023-06-20-shopify-v1-backoff.md | 2 +- .../2023/2023-06-22-tiktok-ads-v0-sync-from-start-date.md | 2 +- .../2023/2023-07-05-ga4-v1-new-field-exclusions.md | 2 +- .../2023-07-17-chargify-v1-subscriptions-schema-update.md | 2 +- ...chimp-v1-update-email-activity-date-window-validation.md | 2 +- .../2023/2023-07-20-shopify-v1-retries-for-404-error.md | 2 +- _changelog-files/2023/2023-07-20-square-v2.md | 2 +- _changelog-files/2023/2023-07-27-mongodb-v3.md | 2 +- .../2023/2023-07-27-pendo-v1-multiple-apps-support.md | 2 +- .../2023/2023-07-27-pendo-v1-primary-key-changes.md | 2 +- .../2023-08-02-mixpanel-v1-retries-ChunkedEncodingError.md | 2 +- _changelog-files/2023/2023-08-02-pendo-max-record-limit.md | 2 +- _changelog-files/2023/2023-08-03-tiktok-ads-v1.md | 2 +- .../2023/2023-08-09-square-v2-payouts-stream.md | 2 +- .../2023/2023-08-14-ga4-v1-e-commerce-reports-fields.md | 2 +- .../2023/2023-08-14-intacct-v1-match-input-filenames.md | 2 +- _changelog-files/2023/2023-08-14-salesforce-v2.md | 2 +- ...-08-16-facebook-v1-conversion-fields-insights-streams.md | 2 +- .../2023/2023-08-18-ga4-v1-new-field-exclusions.md | 2 +- _changelog-files/2023/2023-08-29-stripe-v3.md | 2 +- .../2023/2023-08-31-ga4-v1-new-field-exclusions.md | 2 +- .../2023/2023-09-06-outreach-v1-request-timeout.md | 2 +- .../2023/2023-09-12-github-v2-remove-files-stats-fields.md | 2 +- .../2023/2023-09-13-facebook-v1-retry-error-503.md | 2 +- _changelog-files/2023/2023-09-14-kustomer-v1-new-fields.md | 2 +- .../2023/2023-09-21-marketo-v2-validation-error.md | 2 +- _changelog-files/2023/2023-09-28-looker-v1-api-upgrade.md | 2 +- _changelog-files/2023/2023-10-03-surveymonkey-v2.md | 2 +- _changelog-files/2023/2023-10-05-mongodb-v3-ssl-issue.md | 2 +- .../2023/2023-10-10-outreach-v1-attribute-fix.md | 2 +- .../2023/2023-10-31-chargebee-v1-add-customer-fields.md | 2 +- .../2023/2023-10-31-chargebee-v1-tax-rate-field-type.md | 2 +- .../2023/2023-11-06-intercom-v2-retry-json-decode.md | 2 +- .../2023/2023-11-07-ga4-v1-new-field-exclusions.md | 2 +- .../2023-11-15-snapchat-ads-v1-datetime-conversion-issue.md | 2 +- _changelog-files/2023/2023-11-29-front-v2.md | 2 +- .../2023/2023-12-12-hubspot-v2-custom-objects.md | 2 +- .../2023/2023-12-13-google-ads-v1-api-upgrade.md | 2 +- ...23-12-13-surveymonkey-v2-heading-simplified_responses.md | 2 +- .../2023-12-15-recharge-v2-retry-chunkedencodingerror.md | 2 +- .../2023/2023-12-18-asana-v2-new-substasks-table.md | 2 +- .../2024/2024-01-10-ga4-v1-new-field-exclusions.md | 2 +- .../2024/2024-01-11-mongodb-v3-session-timeout.md | 2 +- .../2024/2024-01-16-mambu-v4-none-value-support.md | 2 +- .../2024/2024-01-23-hubspot-v2-contact-company-fix.md | 2 +- _changelog-files/2024/2024-01-23-mambu-v2-none-support.md | 2 +- .../2024/2024-01-25-ga4-v1-new-field-exclusions.md | 2 +- .../2024/2024-01-25-recharge-v2-improvement-api-calls.md | 2 +- ...-02-07-amazon-s3-csv-v1-missing-type-info-json-schema.md | 2 +- .../2024-02-14-mongodb-v3-server-not-supporting-sessions.md | 2 +- .../2024/2024-02-20-mambu-v4-update-table-full-table.md | 2 +- .../2024/2024-02-29-shopify-v1-api-upgrade-schema-change.md | 2 +- .../2024/2024-03-06-facebook-v1-sdk-version-upgrade.md | 2 +- .../2024/2024-03-11-github-v2-events-uri-format-removed.md | 2 +- _changelog-files/2024/2024-03-12-google-sheets-new-v3.md | 2 +- .../2024-03-12-salesforce-v2-fix-pk-chunking-condition.md | 2 +- .../2024/2024-04-01-ga4-v1-fix-new-supported-data-type.md | 2 +- .../2024/2024-04-01-ga4-v1-new-field-exclusions.md | 2 +- .../2024/2024-04-15-facebook-v1-summary-param-error.md | 2 +- .../2024-04-15-linkedin-ads-v2-api-upgrade-new-fields.md | 2 +- ...2024-04-29-chargebee-v1-new-field-subscription-schema.md | 2 +- .../2024-05-08-intercom-v2-conversations-schema-update.md | 2 +- ...24-05-08-intercom-v2-conversations-stream-bookmarking.md | 2 +- _changelog-files/2024/2024-05-08-intercom-v2-new-fields.md | 2 +- ...2024-05-13-mambu-v4-fix-date-windowing-pagination-use.md | 2 +- .../2024/2024-05-14-ga4-v1-new-field-exclusions.md | 2 +- .../2024/2024-05-14-mongodb-v3-string-projection.md | 2 +- _changelog-files/2024/2024-05-23-klaviyo-v1-api-update.md | 2 +- _changelog-files/2024/2024-07-23-hubspot-v3-new-version.md | 2 +- .../2024/2024-09-05-activecampaign-v1-update-bounce-logs.md | 2 +- ...2024-09-05-google-sheets-v3-deprecation-file-metadata.md | 2 +- .../2024-10-24-sftp-v2-new-supported-encoding-formats.md | 2 +- .../2024/2024-10-28-hubspot-v3-support-deals-streams.md | 2 +- .../2024/2024-10-29-zendesk-chat-v1-support-subdomain.md | 2 +- .../2024/2024-11-04-square-v2-fix-singer-decimal.md | 2 +- .../2024/2024-11-07-zendesk-v2-improvement-performance.md | 2 +- .../2024-11-20-amazon-s3-csv-v1-fix-missing-documents.md | 2 +- .../2024/2024-11-20-dixa-v1-fix-chunk-length.md | 2 +- .../2024/2024-11-27-zendesk-v2-fix-rate-limit.md | 2 +- _changelog-files/2024/2024-12-04-ga360-6.md | 2 +- _changelog-files/2024/2024-12-10-sendgrid-v1-fix-pytz.md | 2 +- _changelog-files/2024/2024-12-16-impact-v1-start-date.md | 2 +- .../2024/2024-12-18-klaviyo-v1-update-requests.md | 2 +- .../2024/2024-12-18-mongodb-v3-terminaltables-removal.md | 2 +- .../2024/2024-12-19-dynamodb-v1-terminaltables-removal.md | 2 +- .../2024/2024-12-19-sftp-v1-terminaltables-removal.md | 2 +- .../2025/2025-01-06-ga4-fix-metrics-data-incompatibility.md | 2 +- ...25-01-07-amazon-s3-csv-v1-improvement-role-assumption.md | 2 +- .../2025-01-07-dynamodb-v1-improvement-role-assumption.md | 2 +- .../2025/2025-01-07-heap-v1-improvement-role-assumption.md | 2 +- .../2025/2025-01-08-mongodb-v3-pymongo-upgrade.md | 2 +- .../2025-01-09-activecampaign-v1-upgrade-lib-version.md | 2 +- .../2025/2025-01-09-intercom-v2-update-requests-upgrade.md | 2 +- ...025-01-09-microsoft-advertising-v2-stringcase-removal.md | 2 +- .../2025/2025-01-09-typeform-v2-ratelimit-removal.md | 2 +- .../2025/2025-01-09-yotpo-v2-update-requests-upgrade.md | 2 +- .../2025/2025-01-10-zendesk-v2-aiohttp-requests-upgrade.md | 2 +- _changelog-files/2025/2025-01-13-facebook-v1-api-upgrade.md | 2 +- .../2025/2025-01-13-github-v2-new-bookmark-format.md | 2 +- .../2025/2025-01-13-slack-v1-pipefilelock-removal.md | 2 +- .../2025/2025-01-13-zoom-v1-ratelimit-removal.md | 2 +- .../2025/2025-01-16-deputy-v1-update-requests-upgrade.md | 2 +- .../2025/2025-01-16-impact-v1-update-pagesize.md | 2 +- .../2025/2025-01-16-zendesk-chat-v2-bug-fix-timezone.md | 2 +- .../2025/2025-01-20-recharge-v2-multiple-fixes.md | 2 +- .../2025/2025-01-20-recurly-v1-requests-upgrade.md | 2 +- .../2025/2025-01-20-square-v2-roles-stream-removal.md | 2 +- .../2025/2025-01-20-xero-v1-new-fields-credit-notes.md | 2 +- .../2025/2025-01-21-pipedrive-v1-requests-upgrade.md | 2 +- .../2025/2025-01-21-twilio-v1-requests-upgrade.md | 2 +- .../2025/2025-01-21-zuora-v1-requests-upgrade.md | 2 +- .../2025/2025-01-22-klaviyo-v1-api-verison-upgrade.md | 2 +- .../2025/2025-01-23-square-v2-bug-fix-list-object.md | 2 +- .../2025/2025-01-24-shopify-v1-update-migration-graphql.md | 2 +- _changelog-files/2025/2025-01-27-shopify-v1-fix-graphql.md | 2 +- .../2025/2025-01-28-pardot-v1-requests-upgrade.md | 2 +- .../2025/2025-02-05-amazon-s3-csv-add-credentials.md | 2 +- .../2025/2025-02-05-shopify-v1-bookmark-logic.md | 2 +- _changelog-files/2025/2025-02-12-intercom-v2-api-upgrade.md | 2 +- ...make-mp_reserved_insert_id-available-in-export-stream.md | 2 +- ...2025-02-19-linkedin-ads-v2-api-version-upgrade-202501.md | 2 +- ...opify-v3-optimize-shopify-metafields-sync-performance.md | 2 +- ...2-20-hubspot-v3-explicitly-deselect-unselected-fields.md | 2 +- ...-mixpanel-v1-remove-required-false-from-engage-schema.md | 2 +- ...2-25-pipedrive-v1-fix-the-organizations-stream-schema.md | 2 +- ...025-02-25-zuora-v1-add-oauth-option-for-authorization.md | 2 +- ...5-02-26-yotpo-v2-add-backoff-for-connectionreseterror.md | 2 +- ...-ga4-v1-handle-report_definitions-as-lists-or-strings.md | 2 +- ...nt_ids-config-property-as-list-or-json-encoded-string.md | 2 +- .../2025-03-06-ga4-v1-make-report_definitions-optional.md | 2 +- .../2025-03-11-ga360-v1-upgrade-google-cloud-bigquery.md | 2 +- .../2025/2025-03-13-ga4-v1-update-premade-reports.md | 2 +- ...activecampaign-v1-require-https-and-block-private-ips.md | 2 +- .../2025/2025-03-25-ga4-v1-update-field-selection.md | 2 +- ...-migrate-shopify-streams-from-rest-api-to-graphql-api.md | 2 +- ...2025-04-01-ga4-v1-bump-requests-from-2-28-1-to-2-32-3.md | 2 +- .../2025/2025-04-04-shopify-v3-fix-schema-orders.md | 2 +- .../2025-04-09-quickbooks-v2-upgrade-api-minorversion-75.md | 2 +- ...5-recharge-v2-remove-support-of-page-based-pagination.md | 2 +- ...-v3-enhance-tap-with-additional-fields-across-streams.md | 2 +- ...endesk-v2-fix-incremental-extraction-issue-for-macros.md | 2 +- ...sactions-sync-by-fetching-only-updated-parent-objects.md | 2 +- .../2025/2025-04-24-zuora-v1-update-unsupported-fields.md | 2 +- .../2025/2025-04-28-intercom-v2-companies-sync.md | 2 +- .../2025/2025-04-28-mssql-v1-deadlock-error-retry.md | 2 +- ...ambu-v4-upgrade-api-version-to-v2-for-loan_repayments.md | 2 +- ...rror-only-`data`-or-`links`-expected-in-relationships.md | 2 +- ...5-15-twilio-v1-implement-lookback-window-for-messages.md | 2 +- ...talog-driven-dynamic-query-pruning-and-error-handling.md | 2 +- ...-29-shopify-v3-fixes-keyerror-for-abandoned-checkouts.md | 2 +- ...n-'reach'-is-requested-for-breakdown-queries-13-month.md | 2 +- .../2025-06-04-google-ads-v2-upgrade-google-ads-to-v18.md | 2 +- ...hopify-v3-assign-config-provided-value-to-date_window.md | 2 +- ...-shopify-v3-introduce-new-stream-order_shipping_lines.md | 2 +- ...e-cve-2024-47081;-bump-backoff-to-more-recent-version.md | 2 +- ...oqua-v1-bump-singer-python-so-it-can-use-backoff-1-10.md | 2 +- .../2025-06-23-impact-v1-bump-backoff-to-a-newer-version.md | 2 +- ...monkey-v2-bump-dependency-versions-for-3pl-compliance.md | 2 +- ...igcommerce-v1-bump-requests-to-resolve-cve-2024-47081.md | 2 +- .../2025/2025-06-25-recharge-v2-add-plans-stream.md | 2 +- .../2025-07-09-pipedrive-v1-upgrade-api-version-to-v2.md | 2 +- ...5-07-09-shopify-v3--add-new-stream-fulfillment-orders.md | 2 +- ...-retaillocation-and-location-id-(within-fulfillments).md | 2 +- ...pedrive-v1-fix-datetime-conversion-and-nonetype-error.md | 2 +- _changelog-files/2025/2025-07-14-dixa-v1-bump-versions.md | 2 +- .../2025/2025-07-14-dynamodb-v1-bump-versions.md | 2 +- .../2025/2025-07-14-facebook-v1-bump-versions.md | 2 +- .../2025/2025-07-14-frontapp-v2-bump-versions.md | 2 +- .../2025/2025-07-14-fullstory-v1-bump-versions.md | 2 +- _changelog-files/2025/2025-07-14-ga360-v1-bump-versions.md | 2 +- _changelog-files/2025/2025-07-14-ga4-v1-bump-versions.md | 2 +- _changelog-files/2025/2025-07-14-gitlab-v1-bump-versions.md | 2 +- .../2025-07-14-google-search-console-v1-bump-versions.md | 2 +- .../2025/2025-07-14-hubspot-v3-bump-versions.md | 2 +- .../2025/2025-07-14-intercom-v2-bump-versions.md | 2 +- _changelog-files/2025/2025-07-14-jira-v2-bump-versions.md | 2 +- ...025-07-14-klaviyo-v1-bump-dependencies-for-compliance.md | 2 +- .../2025/2025-07-14-linkedin-ads-v2-bump-versions.md | 2 +- ...5-07-14-mailchimp-v1-bump-dependencies-for-compliance.md | 2 +- .../2025/2025-07-14-marketo-v2-bump-versions.md | 2 +- ...o-v2-removes-metadata-from-stream-level-catalog-entry.md | 2 +- .../2025/2025-07-14-mixpanel-v1-bump-versions.md | 2 +- .../2025/2025-07-14-outreach-v1-bump-versions.md | 2 +- _changelog-files/2025/2025-07-14-pardot-v1-bump-versions.md | 2 +- _changelog-files/2025/2025-07-14-pendo-v1-bump-versions.md | 2 +- .../2025/2025-07-14-quickbooks-v2-bump-versions.md | 2 +- .../2025/2025-07-14-recharge-v2-bump-versions.md | 2 +- _changelog-files/2025/2025-07-14-s3-csv-v1-bump-versions.md | 2 +- .../2025/2025-07-14-sailthru-v1-bump-versions.md | 2 +- .../2025/2025-07-14-taboola-v1-bump-versions.md | 2 +- .../2025/2025-07-14-tiktok-ads-v1-bump-versions.md | 2 +- .../2025/2025-07-14-trello-v1-bump-requirement-versions.md | 2 +- _changelog-files/2025/2025-07-14-twilio-v1-bump-versions.md | 2 +- .../2025/2025-07-14-workday-raas-v1-bump-versions.md | 2 +- .../2025/2025-07-14-zendesk-chat-v1-bump-versions.md | 2 +- .../2025/2025-07-14-zendesk-v2-bump-versions.md | 2 +- _changelog-files/2025/2025-07-14-zoom-v2-bump-versions.md | 2 +- .../2025/2025-07-14-zuora-v1-bump-dependencies.md | 2 +- ...2025-07-16-activecampaign-v1-bump-requests-to-v2-32-4.md | 2 +- .../2025/2025-07-16-recurly-v1-bump-dependencies.md | 2 +- .../2025/2025-07-16-toggl-v1-bump-dependencies.md | 2 +- _changelog-files/2025/2025-07-16-xero-v1-bump-versions.md | 2 +- _changelog-files/2025/2025-07-16-yotpo-v2-bump-versions.md | 2 +- .../2025/2025-07-17-appsflyer-v1-bump-versions.md | 2 +- .../2025/2025-07-17-google-ads-v2-bump-versions.md | 2 +- .../2025/2025-07-17-google-sheets-v3-bump-versions.md | 2 +- .../2025/2025-07-17-harvest-v2-bump-versions.md | 2 +- _changelog-files/2025/2025-07-17-sftp-v1-bump-versions.md | 2 +- .../2025/2025-07-17-shopify-v3-bump-versions.md | 2 +- ...7-17-snapchat-ads-v1-bump-dependencies-for-compliance.md | 2 +- .../2025/2025-07-17-snapchat-ads-v1-bump-versions.md | 2 +- .../2025/2025-07-17-typeform-v2-bump-versions.md | 2 +- ...-21-adroll-v1-bump-dependency-versions-for-compliance.md | 2 +- .../2025/2025-07-21-bing-ads-v2-bump-versions.md | 2 +- ...5-07-21-braintree-v1-bump-dependencies-for-compliance.md | 2 +- ...y-v1-bump-dependency-versions-and-add-changelog-entry.md | 2 +- ...025-07-21-closeio-v1-bump-dependencies-for-compliance.md | 2 +- ...5-07-21-dixa-v1-bump-tap-version-and-update-changelog.md | 2 +- ...nset-projects-projectcards-and-projectcolumns-streams.md | 2 +- .../2025/2025-07-21-helpscout-v1-bump-versions.md | 2 +- .../2025/2025-07-21-iterable-v1-bump-versions.md | 2 +- ...025-07-21-listrak-v1-bump-dependencies-for-compliance.md | 2 +- .../2025/2025-07-21-mailshake-v1-bump-versions.md | 2 +- ...m-v1-bump-dependency-versions-and-add-changelog-entry.md | 2 +- .../2025/2025-07-21-saasoptics-v1-compliance-changes.md | 2 +- .../2025-07-21-salesforce-v2-bump-requirement-versions.md | 2 +- .../2025/2025-07-21-sendgrid-v1-bump-versions.md | 2 +- ...t-max-size-of-pagination-to-30-for-fullfilment_orders.md | 2 +- ...25-07-23-heap-v1-adds-credentials_cache_path-property.md | 2 +- .../2025-07-28-braintree-v1-circleci-upgrade-swap-to-uv.md | 2 +- .../2025/2025-07-28-s3-csv-v1-sac-27925-circleci-upgrade.md | 2 +- _changelog-files/2025/2025-07-30-amplitude-v1-gl-work.md | 2 +- ...1-google-ads-v2-fail-the-connection-once-every-3-days.md | 2 +- .../2025-07-31-google-ads-v2-upgrade-api-version-to-v20.md | 2 +- ...lication_key-in-last_processed-instead-of-primary_key.md | 2 +- ...eam-standard-graphql-\342\206\222-bulk-api-migration.md" | 2 +- ...xtract-multiple-pages-of-products-for-each-collection.md | 2 +- .../2025/2025-08-11-quickbase-v1-circleci-upgrade.md | 2 +- .../2025/2025-09-02-intercom-v2-update-to-python-3-12.md | 2 +- .../2025-09-03-facebook-v1-upgrade-to-marketing-api-v23.md | 2 +- .../2025-09-03-github-v2-use-python-3-12-in-circleci.md | 2 +- .../2025/2025-09-03-pendo-v1-upgrade-python-to-3-12.md | 2 +- ...quickbooks-v2-upgrade-python-version-used-for-testing.md | 2 +- ...9-04-recurly-v1-upgrade-circleci-build-to-python-3-12.md | 2 +- ...09-04-square-v2-upgrade-circleci-build-to-python-3-12.md | 2 +- .../2025/2025-09-16-activecampaign-v1-python-upgrade.md | 2 +- ...for-multi-account-role-assumption-and-library-updates.md | 2 +- ...tomatic_keys-support-and-bulk-state-persistence-logic.md | 2 +- _changelog-files/2025/2025-09-22-jira-v2-add-metric-tags.md | 2 +- .../2025/2025-09-22-recharge-v2-remove-products-stream.md | 2 +- ...v2-check-for-bad-creds-before-checking-for-rate-limit.md | 2 +- .../2025/2025-10-06-sftp-v1-bump-singer-encodings.md | 2 +- ...og-based-replication-to-support-transactional-records.md | 2 +- ...h-all-visitors-records-and-update-request-params-type.md | 2 +- ...-10-09-quickbooks-v2-update-default-page-size-to-1000.md | 2 +- ...10-10-mambu-v4-replace--users-with--branches-endpoint.md | 2 +- .../2025-10-14-mambu-v4-cancel-upgrade-api-version-to-v2.md | 2 +- ...sk-v2-add-support-for-cursor-pagination--audit-stream.md | 2 +- .../2025/2025-10-15-mambu-v4upgrade-api-version-to-v2 .md | 2 +- .../2025/2025-10-15-pipedrive-v1-extract-deleted-deals.md | 2 +- _changelog-files/2025/2025-10-17-amplitude-v1-gl-work.md | 2 +- ...key-and-forced_replication_method-addition-in-catalog.md | 2 +- _changelog-files/2025/2025-10-17-shopify-v3-gl-work.md | 2 +- .../2025/2025-10-20-s3-csv-v1-add-avro-support-to-tap.md | 2 +- .../2025/2025-10-20-s3-csv-v1-add-parquet-support.md | 2 +- ...factor-jsonl-sampling-syncing-to-use-singer-encodings.md | 2 +- ...22-mongodb-v3-handle-non-finite-values-(nan-infinity).md | 2 +- ...csv-v1-update-_sdc_extra-column-schema-to-be-nullable.md | 2 +- .../2025-10-27-ga4-v1-update-field-exclusions-10-27-25.md | 2 +- .../2025/2025-10-27-heap-v1-add-integration-tests.md | 2 +- .../2025-10-29-gitlab-v1-bug-sac-29290-params-to-headers.md | 2 +- .../2025/2025-10-29-zendesk-v2-update-dependencies.md | 2 +- _changelog-files/2025/2025-11-04-listrak-v1-gl-work.md | 2 +- ...-api-requests-when-search-jql-endpoint-is-unavailable.md | 2 +- ...6-quickbooks-v2-use-batch-queries-to-reduce-api-usage.md | 2 +- ...pify-v3-cleanup-state-file-for-failed-bulk-operations.md | 2 +- ...communicationprofileid-to-unsupported_fields_for_rest.md | 2 +- _changelog-files/2025/2025-11-21-zuora-v1-bump-version.md | 2 +- ...4-appsflyer-v1-tap-refactoring-using-singer-generator.md | 2 +- .../2025/2025-11-24-chargebee-v1-refactor-the-tap.md | 2 +- ...2025-11-26-exacttarget-v1-add-support-for-new-streams.md | 2 +- ...for-`parent-tap-stream-id`-metadata-for-child-streams.md | 2 +- .../2025/2025-11-27-chargebee-v1-python-upgrade-to-3-12.md | 2 +- _changelog-files/2025/2025-11-28-gitlab-v1-gl-work.md | 2 +- ...-hubspot-v4-non-primary-key-fields-should-be-nullable.md | 2 +- ...mpaign-v1-retry-for-the-activecampaign-forbiddenerror.md | 2 +- .../2025/2025-12-03-asana-v2-sac-27555-fix-libraries.md | 2 +- ...3-freshdesk-v1-tap-refactoring-using-singer-generator.md | 2 +- ...s-v3-increase-the-wait-time-while-retrying-on-failure.md | 2 +- ...[sac-28905]--add-parent-tap-stream-id-key-in-metadata.md | 2 +- _changelog-files/2025/2025-12-08-adroll-v1-gl-work.md | 2 +- ...-08-harvest-v2-tap-refactoring-using-singer-generator.md | 2 +- ...2025-12-08-s3-csv-v1-bump-urllib3-from-2-5-0-to-2-6-0.md | 2 +- .../2025/2025-12-09-3plcentral-v1-bump-library-versions.md | 2 +- ...2025-12-09-autopilot-v1-bump-libraries-for-compliance.md | 2 +- .../2025/2025-12-09-circle-ci-v1-library-version-upgrade.md | 2 +- .../2025/2025-12-09-clubspeed-v1-bump-dependencies.md | 2 +- .../2025/2025-12-09-codat-v1-bump-dependencies.md | 2 +- ...t-v1-bump-dependency-versions-for-compliance-failures.md | 2 +- ...-hubspot-v4-retry-the-api-requests-for-all-the-errors.md | 2 +- ...ra-v2-sac-29184-add-bookmarks-to-issues-child-streams.md | 2 +- ...2-09-kustomer-v1-bump-version-for-compliance-failures.md | 2 +- .../2025-12-09-looker-v1-update-libraries-for-compliance.md | 2 +- .../2025/2025-12-09-onfleet-v1-bump-dependencies.md | 2 +- ...25-12-09-ujet-v1-bump-version-for-compliance-failures.md | 2 +- .../2025/2025-12-09-uservoice-v1-bump-dependencies.md | 2 +- ...025-12-10-salesforce-v2-fix-forced-replication-method.md | 2 +- ...ngcommunicationprofile-to-unsupported_fields_for_rest.md | 2 +- ...f-retry-logic-for-shopify-bulk-operations-in-progress.md | 2 +- .../2025-12-18-gitlab-v1-gl-work-updated-config-options.md | 2 +- ...2-18-salesforce-v2-update-libraries-to-latest-version.md | 2 +- .../2025/2025-12-19-workday-raas-v1-library-updates.md | 2 +- .../2025-12-22-stripe-v3-add-transfer_reversals-stream.md | 2 +- ...12-30-exacttarget-v1-schema-enhancements-and-bugfixes.md | 2 +- .../2026-01-05-sftp-v1-upgrade-paramiko-version-to-3-5-1.md | 2 +- ...he-bookmark-value-even-if-the-record-is-not-retrieved.md | 2 +- .../2026/2026-01-07-stripe-v3-update-metadata.md | 2 +- .../2026/2026-01-16-ga4-v1-bump-google-analytics-data.md | 2 +- ...ve-select_fields_by_default-from-required-config-keys.md | 2 +- ...m-v2-update-interrupted-bookmarking-for-conversations.md | 2 +- ...22-quickbase-v1-pr-0--[sac-29640]--aggregated-gl-work.md | 2 +- ...hargebee-v1-write-bookmark-when-no-records-are-synced.md | 2 +- ...23-dixa-v1-update-urllib3-version-from-2-6-0-to-2-6-3.md | 2 +- .../2026/2026-01-23-s3-csv-v1-bump-urllib3-version.md | 2 +- .../2026/2026-01-23-zendesk-v2-bump-aiohttp-version.md | 2 +- ...01-26-google-ads-v2-update-protobuf-version-to-6-33-4.md | 2 +- ...2026-01-27-linkedin-ads-v2-add-`parent-tap-stream-id`.md | 2 +- ...-v3-add-pagination-support-for-fulfillment-line-items.md | 2 +- ...2026-01-28-listrak-v1-bug-fix-for-subscribed-contacts.md | 2 +- ...-v2-bump-dependency-versions-for-twistlock-compliance.md | 2 +- ...-v1-bump-dependency-versions-for-twistlock-compliance.md | 2 +- .../2026/2026-02-10-hubspot-v4-add-new-sub-streams.md | 2 +- ...lesforce-v2-write-bookmark-when-no-records-are-synced.md | 2 +- ...respect-dependencies-and-add-comprehensive-unit-tests.md | 2 +- .../2026/2026-02-18-pipedrive-v1-add-label-ids-in-deals.md | 2 +- .../2026-02-19-frontapp-v2-bookmark-format-validation.md | 2 +- ...026-02-19-salesforce-v2-update-activate-version-state.md | 2 +- ...rent-stream-for-form_submissions-and-list_memberships.md | 2 +- ...-v1-update-singer-python-version-for-clear_offset-fix.md | 2 +- .../2026/2026-02-26-salesforce-v2-deepcopy-raw_state.md | 2 +- .../2026/2026-02-27-heap-v1-standardize-state.md | 2 +- ...2026-03-03-salesforce-v2-fix-key-error-in-build_state.md | 2 +- ...pedrive-v1-update-data-type-for-some-of-schema-fields.md | 2 +- ...mp-to-singer-python-6-8-0-and-use-`versions`-in-state.md | 2 +- ...er-python-to-6-8-0-and-update-tests-to-use-`versions`.md | 2 +- .../2026-03-10-google-ads-v2-bump-protobuf-to-v6-33-5.md | 2 +- ...03-11-mailjet-vNOT FOUND-added-5xx-exception-handling.md | 2 +- ...26-03-12-klaviyo-v1-use-safe-gets-on-state-dictionary.md | 2 +- ...referral-saasquatch-v1-added-tests-and-python-upgrade.md | 2 +- .../2026-03-13-asana-v2-fix-access-token-refresh-issue.md | 2 +- .../2026/2026-03-16-s3-csv-v1-handle-empty-initial-sync.md | 2 +- ...v1-sac-30415-fix-tap_stream_id-when-writing-bookmarks.md | 2 +- ...026-03-30-xero-v1-show-warning-for-deprecated-streams.md | 2 +- .../2026-03-31-quickbase-v1-added-5xx-exception-handling.md | 2 +- .../2026/2026-04-07-ms-teams-v1-library-upgrade.md | 2 +- ...10-mailshake-v1-sac-28753-upgrade-python-dependencies.md | 2 +- ...esk-v2-fix-connection-failure-for-403-forbidden-error.md | 2 +- .../2026-04-13-asana-v2-fix-for-refresh-access-token.md | 2 +- ...hargebee-v1-add-custom_fields-support-for-all-streams.md | 2 +- ...-fix-for-schema-mismatch-and-standard-metadata-format.md | 2 +- _changelog-files/templates/deprecated-integration.md | 2 +- _changelog-files/templates/general-entry.md | 2 +- _changelog-files/templates/integrations-in-beta-list.md | 2 +- _changelog-files/templates/new-integration-data.md | 2 +- _changelog-files/templates/new-integration-version.md | 2 +- _changelog-files/templates/new-integration.md | 2 +- _changelog-files/templates/sunset-integration.md | 2 +- _changelog-files/templates/tapified-integration.md | 2 +- _includes/changelog/entry-list.html | 6 +++--- scripts/changelog/changelog.py | 2 +- 664 files changed, 666 insertions(+), 666 deletions(-) diff --git a/_changelog-files/2017/2017-10-27-facebook-ads-v1-adlabels-fields.md b/_changelog-files/2017/2017-10-27-facebook-ads-v1-adlabels-fields.md index de45c850a..30dc99e8d 100644 --- a/_changelog-files/2017/2017-10-27-facebook-ads-v1-adlabels-fields.md +++ b/_changelog-files/2017/2017-10-27-facebook-ads-v1-adlabels-fields.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "facebook-ads" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-facebook/pull/27" +pull_request: "https://github.com/singer-io/tap-facebook/pull/27" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2017/2017-11-02-facebook-ads-v1-new-incremental-tables.md b/_changelog-files/2017/2017-11-02-facebook-ads-v1-new-incremental-tables.md index 5d9e8bc2d..e4c450dfb 100644 --- a/_changelog-files/2017/2017-11-02-facebook-ads-v1-new-incremental-tables.md +++ b/_changelog-files/2017/2017-11-02-facebook-ads-v1-new-incremental-tables.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: "integration" connection-id: "facebook-ads" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-facebook/pull/29" +pull_request: "https://github.com/singer-io/tap-facebook/pull/29" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2017/2017-11-21-salesforce-v1-record-type-handling.md b/_changelog-files/2017/2017-11-21-salesforce-v1-record-type-handling.md index 1fe03f1c3..3117ebeaf 100644 --- a/_changelog-files/2017/2017-11-21-salesforce-v1-record-type-handling.md +++ b/_changelog-files/2017/2017-11-21-salesforce-v1-record-type-handling.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "salesforce" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-salesforce/pull/12" +pull_request: "https://github.com/singer-io/tap-salesforce/pull/12" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2017/2017-12-06-salesforce-v1-primary-key-chunking.md b/_changelog-files/2017/2017-12-06-salesforce-v1-primary-key-chunking.md index 3d97ce5f1..f79a66563 100644 --- a/_changelog-files/2017/2017-12-06-salesforce-v1-primary-key-chunking.md +++ b/_changelog-files/2017/2017-12-06-salesforce-v1-primary-key-chunking.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "salesforce" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-salesforce/pull/18" +pull_request: "https://github.com/singer-io/tap-salesforce/pull/18" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2017/2017-12-15-facebook-ads-v1-adcreative-field-deprecation.md b/_changelog-files/2017/2017-12-15-facebook-ads-v1-adcreative-field-deprecation.md index 45ae15e1e..ada49f101 100644 --- a/_changelog-files/2017/2017-12-15-facebook-ads-v1-adcreative-field-deprecation.md +++ b/_changelog-files/2017/2017-12-15-facebook-ads-v1-adcreative-field-deprecation.md @@ -6,7 +6,7 @@ entry-type: deprecation entry-category: integration connection-id: "facebook-ads" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-facebook/pull/32" +pull_request: "https://github.com/singer-io/tap-facebook/pull/32" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2018/2018-01-18-salesforce-v1-incompatible-objects.md b/_changelog-files/2018/2018-01-18-salesforce-v1-incompatible-objects.md index c61bf8ab7..29374d5fb 100644 --- a/_changelog-files/2018/2018-01-18-salesforce-v1-incompatible-objects.md +++ b/_changelog-files/2018/2018-01-18-salesforce-v1-incompatible-objects.md @@ -6,7 +6,7 @@ entry-type: removed entry-category: integration connection-id: "salesforce" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-salesforce/pull/34" +pull_request: "https://github.com/singer-io/tap-salesforce/pull/34" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2018/2018-01-22-facebook-ads-include-deleted-data.md b/_changelog-files/2018/2018-01-22-facebook-ads-include-deleted-data.md index 35916c242..a02458a6f 100644 --- a/_changelog-files/2018/2018-01-22-facebook-ads-include-deleted-data.md +++ b/_changelog-files/2018/2018-01-22-facebook-ads-include-deleted-data.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "facebook-ads" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-facebook/pull/34" +pull_request: "https://github.com/singer-io/tap-facebook/pull/34" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2018/2018-03-19-salesforce-v1-contentfolderitem-incompatible.md b/_changelog-files/2018/2018-03-19-salesforce-v1-contentfolderitem-incompatible.md index e10369fde..59a439d5e 100644 --- a/_changelog-files/2018/2018-03-19-salesforce-v1-contentfolderitem-incompatible.md +++ b/_changelog-files/2018/2018-03-19-salesforce-v1-contentfolderitem-incompatible.md @@ -6,7 +6,7 @@ entry-type: removed entry-category: integration connection-id: "salesforce" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-salesforce/pull/44" +pull_request: "https://github.com/singer-io/tap-salesforce/pull/44" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2018/2018-07-11-salesforce-v1-parent-table-chunk-names.md b/_changelog-files/2018/2018-07-11-salesforce-v1-parent-table-chunk-names.md index 458ded36c..eb2ce598b 100644 --- a/_changelog-files/2018/2018-07-11-salesforce-v1-parent-table-chunk-names.md +++ b/_changelog-files/2018/2018-07-11-salesforce-v1-parent-table-chunk-names.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: "salesforce" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-salesforce/pull/51" +pull_request: "https://github.com/singer-io/tap-salesforce/pull/51" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2018/2018-08-03-postgresql-v1-pg-10-support.md b/_changelog-files/2018/2018-08-03-postgresql-v1-pg-10-support.md index e14c73660..bfcab7cb7 100644 --- a/_changelog-files/2018/2018-08-03-postgresql-v1-pg-10-support.md +++ b/_changelog-files/2018/2018-08-03-postgresql-v1-pg-10-support.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: "integration" connection-id: "postgres" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-postgres/pull/15" +pull_request: "https://github.com/singer-io/tap-postgres/pull/15" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2018/2018-08-21-postgresql-v1-replication-slot-support.md b/_changelog-files/2018/2018-08-21-postgresql-v1-replication-slot-support.md index 804312485..e1595e3ff 100644 --- a/_changelog-files/2018/2018-08-21-postgresql-v1-replication-slot-support.md +++ b/_changelog-files/2018/2018-08-21-postgresql-v1-replication-slot-support.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: "integration" connection-id: "postgres" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-postgres/pull/18" +pull_request: "https://github.com/singer-io/tap-postgres/pull/18" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2018/2018-08-28-postgresql-schema-name-setting.md b/_changelog-files/2018/2018-08-28-postgresql-schema-name-setting.md index c9eae5615..379060db3 100644 --- a/_changelog-files/2018/2018-08-28-postgresql-schema-name-setting.md +++ b/_changelog-files/2018/2018-08-28-postgresql-schema-name-setting.md @@ -6,7 +6,7 @@ entry-type: "new-feature" entry-category: "integration" connection-id: "postgres" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-postgres/pull/19" +pull_request: "https://github.com/singer-io/tap-postgres/pull/19" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2018/2018-09-07-salesforce-v1-opportunityfield-history-parent-fix.md b/_changelog-files/2018/2018-09-07-salesforce-v1-opportunityfield-history-parent-fix.md index 94d9b0dce..c72432912 100644 --- a/_changelog-files/2018/2018-09-07-salesforce-v1-opportunityfield-history-parent-fix.md +++ b/_changelog-files/2018/2018-09-07-salesforce-v1-opportunityfield-history-parent-fix.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: "salesforce" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-salesforce/pull/52" +pull_request: "https://github.com/singer-io/tap-salesforce/pull/52" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2018/2018-09-19-postgresql-v1-primary-key-discovery.md b/_changelog-files/2018/2018-09-19-postgresql-v1-primary-key-discovery.md index 5699a88db..c1196aa24 100644 --- a/_changelog-files/2018/2018-09-19-postgresql-v1-primary-key-discovery.md +++ b/_changelog-files/2018/2018-09-19-postgresql-v1-primary-key-discovery.md @@ -6,7 +6,7 @@ entry-type: "bug-fix" entry-category: "integration" connection-id: "postgres" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-postgres/pull/23" +pull_request: "https://github.com/singer-io/tap-postgres/pull/23" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2018/2018-09-19-postgresql-v1-selected-by-default.md b/_changelog-files/2018/2018-09-19-postgresql-v1-selected-by-default.md index 6588331f9..4c3b02f57 100644 --- a/_changelog-files/2018/2018-09-19-postgresql-v1-selected-by-default.md +++ b/_changelog-files/2018/2018-09-19-postgresql-v1-selected-by-default.md @@ -6,7 +6,7 @@ entry-type: "bug-fix" entry-category: "integration" connection-id: "postgres" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-postgres/pull/23" +pull_request: "https://github.com/singer-io/tap-postgres/pull/23" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2018/2018-10-05-mysql-v1-interruptible-full-table.md b/_changelog-files/2018/2018-10-05-mysql-v1-interruptible-full-table.md index 3a3dbc69f..a98c0c96d 100644 --- a/_changelog-files/2018/2018-10-05-mysql-v1-interruptible-full-table.md +++ b/_changelog-files/2018/2018-10-05-mysql-v1-interruptible-full-table.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: "integration" connection-id: "mysql" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-mysql/pull/62" +pull_request: "https://github.com/singer-io/tap-mysql/pull/62" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2018/2018-11-05-salesforce-v1-background-operation-result-full-table.md b/_changelog-files/2018/2018-11-05-salesforce-v1-background-operation-result-full-table.md index c89b465ff..b6205785c 100644 --- a/_changelog-files/2018/2018-11-05-salesforce-v1-background-operation-result-full-table.md +++ b/_changelog-files/2018/2018-11-05-salesforce-v1-background-operation-result-full-table.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "salesforce" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-salesforce/pull/58" +pull_request: "https://github.com/singer-io/tap-salesforce/pull/58" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2018/2018-12-12-salesforce-v1-bulk-api-date-chunking-fix.md b/_changelog-files/2018/2018-12-12-salesforce-v1-bulk-api-date-chunking-fix.md index b007b6547..dfc920f44 100644 --- a/_changelog-files/2018/2018-12-12-salesforce-v1-bulk-api-date-chunking-fix.md +++ b/_changelog-files/2018/2018-12-12-salesforce-v1-bulk-api-date-chunking-fix.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: "salesforce" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-salesforce/pull/60" +pull_request: "https://github.com/singer-io/tap-salesforce/pull/60" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2019/2017-10-25-mysql-v1-pks-unsupported-type.md b/_changelog-files/2019/2017-10-25-mysql-v1-pks-unsupported-type.md index 17aecc366..9d45525f5 100644 --- a/_changelog-files/2019/2017-10-25-mysql-v1-pks-unsupported-type.md +++ b/_changelog-files/2019/2017-10-25-mysql-v1-pks-unsupported-type.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: "integration" connection-id: "mysql" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-mysql/pull/45" +pull_request: "https://github.com/singer-io/tap-mysql/pull/45" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2019/2019-01-03-postgresql-v1-bigint-array-support.md b/_changelog-files/2019/2019-01-03-postgresql-v1-bigint-array-support.md index 8ab42a22d..2004933f3 100644 --- a/_changelog-files/2019/2019-01-03-postgresql-v1-bigint-array-support.md +++ b/_changelog-files/2019/2019-01-03-postgresql-v1-bigint-array-support.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: "integration" connection-id: "postgres" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-postgres/pull/31" +pull_request: "https://github.com/singer-io/tap-postgres/pull/31" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2019/2019-03-14-mysql-non-auto-pks-interruptible.md b/_changelog-files/2019/2019-03-14-mysql-non-auto-pks-interruptible.md index 2fb9ced1b..ca6038462 100644 --- a/_changelog-files/2019/2019-03-14-mysql-non-auto-pks-interruptible.md +++ b/_changelog-files/2019/2019-03-14-mysql-non-auto-pks-interruptible.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: "integration" connection-id: "mysql" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-mysql/pull/89" +pull_request: "https://github.com/singer-io/tap-mysql/pull/89" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2019/2019-03-15-salesfoce-v1-remove-changeevent-tables.md b/_changelog-files/2019/2019-03-15-salesfoce-v1-remove-changeevent-tables.md index 4baa4a127..149c55e57 100644 --- a/_changelog-files/2019/2019-03-15-salesfoce-v1-remove-changeevent-tables.md +++ b/_changelog-files/2019/2019-03-15-salesfoce-v1-remove-changeevent-tables.md @@ -6,7 +6,7 @@ entry-type: removed entry-category: integration connection-id: "salesforce" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-salesforce/pull/62" +pull_request: "https://github.com/singer-io/tap-salesforce/pull/62" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2019/2019-05-06-facebook-ads-v1-relevance-score-deprecation.md b/_changelog-files/2019/2019-05-06-facebook-ads-v1-relevance-score-deprecation.md index ee72d717f..04cd9ec68 100644 --- a/_changelog-files/2019/2019-05-06-facebook-ads-v1-relevance-score-deprecation.md +++ b/_changelog-files/2019/2019-05-06-facebook-ads-v1-relevance-score-deprecation.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "facebook-ads" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-facebook/pull/55" +pull_request: "https://github.com/singer-io/tap-facebook/pull/55" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2019/2019-07-16-salesforce-v1-remove-announcement-object.md b/_changelog-files/2019/2019-07-16-salesforce-v1-remove-announcement-object.md index 8dbe18690..74ca4dd15 100644 --- a/_changelog-files/2019/2019-07-16-salesforce-v1-remove-announcement-object.md +++ b/_changelog-files/2019/2019-07-16-salesforce-v1-remove-announcement-object.md @@ -6,7 +6,7 @@ entry-type: removed entry-category: integration connection-id: "salesforce" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-salesforce/pull/64" +pull_request: "https://github.com/singer-io/tap-salesforce/pull/64" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2019/2019-07-31-facebook-ads-v1-ads-insights-dma.md b/_changelog-files/2019/2019-07-31-facebook-ads-v1-ads-insights-dma.md index 1dc2ac2de..836f66f6b 100644 --- a/_changelog-files/2019/2019-07-31-facebook-ads-v1-ads-insights-dma.md +++ b/_changelog-files/2019/2019-07-31-facebook-ads-v1-ads-insights-dma.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "facebook-ads" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-facebook/pull/64" +pull_request: "https://github.com/singer-io/tap-facebook/pull/64" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2019/2019-08-27-salesforce-v1-convert-integer-zero-values.md b/_changelog-files/2019/2019-08-27-salesforce-v1-convert-integer-zero-values.md index 7054a351e..aa5ed9105 100644 --- a/_changelog-files/2019/2019-08-27-salesforce-v1-convert-integer-zero-values.md +++ b/_changelog-files/2019/2019-08-27-salesforce-v1-convert-integer-zero-values.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "salesforce" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-salesforce/pull/67" +pull_request: "https://github.com/singer-io/tap-salesforce/pull/67" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2019/2019-08-27-salesforce-v1-remove-sitedetail-object.md b/_changelog-files/2019/2019-08-27-salesforce-v1-remove-sitedetail-object.md index cf4318108..c800f1c50 100644 --- a/_changelog-files/2019/2019-08-27-salesforce-v1-remove-sitedetail-object.md +++ b/_changelog-files/2019/2019-08-27-salesforce-v1-remove-sitedetail-object.md @@ -6,7 +6,7 @@ entry-type: removed entry-category: integration connection-id: "salesforce" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-salesforce/pull/68" +pull_request: "https://github.com/singer-io/tap-salesforce/pull/68" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2019/2019-09-18-mysql-v1-composite-pk-full-table.md b/_changelog-files/2019/2019-09-18-mysql-v1-composite-pk-full-table.md index 45dbc0bf0..d23a2bd6e 100644 --- a/_changelog-files/2019/2019-09-18-mysql-v1-composite-pk-full-table.md +++ b/_changelog-files/2019/2019-09-18-mysql-v1-composite-pk-full-table.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: "integration" connection-id: "mysql" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-mysql/pull/108" +pull_request: "https://github.com/singer-io/tap-mysql/pull/108" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2019/2019-10-22-postgresql-v1-bigint-data-type-fix.md b/_changelog-files/2019/2019-10-22-postgresql-v1-bigint-data-type-fix.md index f4b348bde..529a39b4e 100644 --- a/_changelog-files/2019/2019-10-22-postgresql-v1-bigint-data-type-fix.md +++ b/_changelog-files/2019/2019-10-22-postgresql-v1-bigint-data-type-fix.md @@ -6,7 +6,7 @@ entry-type: "bug-fix" entry-category: "integration" connection-id: "postgres" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-postgres/pull/69" +pull_request: "https://github.com/singer-io/tap-postgres/pull/69" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2019/2019-11-20-facebook-ads-v1-adcreative-batch-api.md b/_changelog-files/2019/2019-11-20-facebook-ads-v1-adcreative-batch-api.md index 6e9bea94b..dbc781754 100644 --- a/_changelog-files/2019/2019-11-20-facebook-ads-v1-adcreative-batch-api.md +++ b/_changelog-files/2019/2019-11-20-facebook-ads-v1-adcreative-batch-api.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "facebook-ads" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-facebook/pull/73" +pull_request: "https://github.com/singer-io/tap-facebook/pull/73" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2020/2020-01-06-facebook-ads-video-play-curve-actions.md b/_changelog-files/2020/2020-01-06-facebook-ads-video-play-curve-actions.md index 1bc8a0c4b..a99532fbe 100644 --- a/_changelog-files/2020/2020-01-06-facebook-ads-video-play-curve-actions.md +++ b/_changelog-files/2020/2020-01-06-facebook-ads-video-play-curve-actions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "facebook-ads" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-facebook/pull/80" +pull_request: "https://github.com/singer-io/tap-facebook/pull/80" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2020/2020-01-27-postgresql-v1-bytea-unsupported.md b/_changelog-files/2020/2020-01-27-postgresql-v1-bytea-unsupported.md index 643c8bbbe..daab79d43 100644 --- a/_changelog-files/2020/2020-01-27-postgresql-v1-bytea-unsupported.md +++ b/_changelog-files/2020/2020-01-27-postgresql-v1-bytea-unsupported.md @@ -6,7 +6,7 @@ entry-type: "bug-fix" entry-category: "integration" connection-id: "postgres" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-postgres/pull/76" +pull_request: "https://github.com/singer-io/tap-postgres/pull/76" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2020/2020-02-27-facebook-ads-v1-api-upgrade-v6.md b/_changelog-files/2020/2020-02-27-facebook-ads-v1-api-upgrade-v6.md index 4a85dbb28..3fc33cfea 100644 --- a/_changelog-files/2020/2020-02-27-facebook-ads-v1-api-upgrade-v6.md +++ b/_changelog-files/2020/2020-02-27-facebook-ads-v1-api-upgrade-v6.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: facebook-ads connection-version: 1 -pull-request: "https://github.com/singer-io/tap-facebook/pull/88" +pull_request: "https://github.com/singer-io/tap-facebook/pull/88" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2020/2020-02-27-postgresql-v1-correct-ssl-connections.md b/_changelog-files/2020/2020-02-27-postgresql-v1-correct-ssl-connections.md index f461a7170..7587b1bdd 100644 --- a/_changelog-files/2020/2020-02-27-postgresql-v1-correct-ssl-connections.md +++ b/_changelog-files/2020/2020-02-27-postgresql-v1-correct-ssl-connections.md @@ -6,7 +6,7 @@ entry-type: "bug-fix" entry-category: "integration" connection-id: "postgres" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-postgres/pull/80" +pull_request: "https://github.com/singer-io/tap-postgres/pull/80" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2020/2020-03-03-github-v1-pr-commits.md b/_changelog-files/2020/2020-03-03-github-v1-pr-commits.md index 9f7ec3cb9..4525a971e 100644 --- a/_changelog-files/2020/2020-03-03-github-v1-pr-commits.md +++ b/_changelog-files/2020/2020-03-03-github-v1-pr-commits.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "github" connection-version: 1 -pull-request: "https://github.com/singer-io/tap-github/pull/67" +pull_request: "https://github.com/singer-io/tap-github/pull/67" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2020/2020-03-04-github-v1-new-tables.md b/_changelog-files/2020/2020-03-04-github-v1-new-tables.md index 62e835f94..e9fe8ab3a 100644 --- a/_changelog-files/2020/2020-03-04-github-v1-new-tables.md +++ b/_changelog-files/2020/2020-03-04-github-v1-new-tables.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "github" connection-version: 1 -pull-request: "https://github.com/singer-io/tap-github/pull/70" +pull_request: "https://github.com/singer-io/tap-github/pull/70" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2020/2020-03-30-salesforce-v1-location-data-unsupported-bulk-api.md b/_changelog-files/2020/2020-03-30-salesforce-v1-location-data-unsupported-bulk-api.md index 3059e3299..197a619fa 100644 --- a/_changelog-files/2020/2020-03-30-salesforce-v1-location-data-unsupported-bulk-api.md +++ b/_changelog-files/2020/2020-03-30-salesforce-v1-location-data-unsupported-bulk-api.md @@ -6,7 +6,7 @@ entry-type: removed entry-category: integration connection-id: "salesforce" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-salesforce/pull/75" +pull_request: "https://github.com/singer-io/tap-salesforce/pull/75" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2020/2020-04-01-salesforce-v1-improved-pk-chunking-errors.md b/_changelog-files/2020/2020-04-01-salesforce-v1-improved-pk-chunking-errors.md index 4a7f1931e..3a3e700c3 100644 --- a/_changelog-files/2020/2020-04-01-salesforce-v1-improved-pk-chunking-errors.md +++ b/_changelog-files/2020/2020-04-01-salesforce-v1-improved-pk-chunking-errors.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "salesforce" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-salesforce/pull/76" +pull_request: "https://github.com/singer-io/tap-salesforce/pull/76" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2020/2020-04-06-github-v1-new-tables-fields.md b/_changelog-files/2020/2020-04-06-github-v1-new-tables-fields.md index 0a6c2b507..9012913d6 100644 --- a/_changelog-files/2020/2020-04-06-github-v1-new-tables-fields.md +++ b/_changelog-files/2020/2020-04-06-github-v1-new-tables-fields.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "github" connection-version: 1 -pull-request: "https://github.com/singer-io/tap-github/pull/75" +pull_request: "https://github.com/singer-io/tap-github/pull/75" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2020/2020-04-07-google-analytics-v1-premade-reports.md b/_changelog-files/2020/2020-04-07-google-analytics-v1-premade-reports.md index e6465d458..4f660ed80 100644 --- a/_changelog-files/2020/2020-04-07-google-analytics-v1-premade-reports.md +++ b/_changelog-files/2020/2020-04-07-google-analytics-v1-premade-reports.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "google-analytics" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-google-analytics/pull/16" +pull_request: "https://github.com/singer-io/tap-google-analytics/pull/16" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2020/2020-04-22-google-analytics-searchkeyword-non-default.md b/_changelog-files/2020/2020-04-22-google-analytics-searchkeyword-non-default.md index fa9984bb2..759ff085d 100644 --- a/_changelog-files/2020/2020-04-22-google-analytics-searchkeyword-non-default.md +++ b/_changelog-files/2020/2020-04-22-google-analytics-searchkeyword-non-default.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "google-analytics" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-google-analytics/pull/20" +pull_request: "https://github.com/singer-io/tap-google-analytics/pull/20" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2020/2020-04-22-salesforce-v1-loginevent-full-table.md b/_changelog-files/2020/2020-04-22-salesforce-v1-loginevent-full-table.md index a7f9f6dbe..d4c6ea85f 100644 --- a/_changelog-files/2020/2020-04-22-salesforce-v1-loginevent-full-table.md +++ b/_changelog-files/2020/2020-04-22-salesforce-v1-loginevent-full-table.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "salesforce" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-salesforce/pull/80" +pull_request: "https://github.com/singer-io/tap-salesforce/pull/80" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2020/2020-05-12-google-analytics-v1-datetime-parsing.md b/_changelog-files/2020/2020-05-12-google-analytics-v1-datetime-parsing.md index be6235e5a..186862f40 100644 --- a/_changelog-files/2020/2020-05-12-google-analytics-v1-datetime-parsing.md +++ b/_changelog-files/2020/2020-05-12-google-analytics-v1-datetime-parsing.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: "google-analytics" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-google-analytics/pull/22" +pull_request: "https://github.com/singer-io/tap-google-analytics/pull/22" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2020/2020-05-21-google-analytics-v1-retryable-error-handling.md b/_changelog-files/2020/2020-05-21-google-analytics-v1-retryable-error-handling.md index 2b2a7acbe..191abfb89 100644 --- a/_changelog-files/2020/2020-05-21-google-analytics-v1-retryable-error-handling.md +++ b/_changelog-files/2020/2020-05-21-google-analytics-v1-retryable-error-handling.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "google-analytics" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-google-analytics/pull/24" +pull_request: "https://github.com/singer-io/tap-google-analytics/pull/24" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2020/2020-06-15-google-analytics-v1-non-retryable-error-messages.md b/_changelog-files/2020/2020-06-15-google-analytics-v1-non-retryable-error-messages.md index 7995ba200..26c1033a6 100644 --- a/_changelog-files/2020/2020-06-15-google-analytics-v1-non-retryable-error-messages.md +++ b/_changelog-files/2020/2020-06-15-google-analytics-v1-non-retryable-error-messages.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "google-analytics" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-google-analytics/pull/29" +pull_request: "https://github.com/singer-io/tap-google-analytics/pull/29" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2020/2020-06-22-salesforce-v1-removed-datatype-object.md b/_changelog-files/2020/2020-06-22-salesforce-v1-removed-datatype-object.md index 705881bff..cf359fc57 100644 --- a/_changelog-files/2020/2020-06-22-salesforce-v1-removed-datatype-object.md +++ b/_changelog-files/2020/2020-06-22-salesforce-v1-removed-datatype-object.md @@ -6,7 +6,7 @@ entry-type: removed entry-category: integration connection-id: "salesforce" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-salesforce/pull/84" +pull_request: "https://github.com/singer-io/tap-salesforce/pull/84" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2020/2020-08-07-google-analytics-v1-less-aggressive-retries.md b/_changelog-files/2020/2020-08-07-google-analytics-v1-less-aggressive-retries.md index 5419b3d0a..8c3233bce 100644 --- a/_changelog-files/2020/2020-08-07-google-analytics-v1-less-aggressive-retries.md +++ b/_changelog-files/2020/2020-08-07-google-analytics-v1-less-aggressive-retries.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "google-analytics" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-google-analytics/pull/31" +pull_request: "https://github.com/singer-io/tap-google-analytics/pull/31" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2020/2020-08-13-facebook-ads-v1-api-upgrade-v8.md b/_changelog-files/2020/2020-08-13-facebook-ads-v1-api-upgrade-v8.md index ffc96492a..1dd99c79f 100644 --- a/_changelog-files/2020/2020-08-13-facebook-ads-v1-api-upgrade-v8.md +++ b/_changelog-files/2020/2020-08-13-facebook-ads-v1-api-upgrade-v8.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: facebook-ads connection-version: 1 -pull-request: "https://github.com/singer-io/tap-facebook/pull/103" +pull_request: "https://github.com/singer-io/tap-facebook/pull/103" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2020/2020-08-20-postgresql-v1-discover-partitioned-tables.md b/_changelog-files/2020/2020-08-20-postgresql-v1-discover-partitioned-tables.md index b7b083f64..c40b8134c 100644 --- a/_changelog-files/2020/2020-08-20-postgresql-v1-discover-partitioned-tables.md +++ b/_changelog-files/2020/2020-08-20-postgresql-v1-discover-partitioned-tables.md @@ -6,7 +6,7 @@ entry-type: "bug-fix" entry-category: "integration" connection-id: "postgres" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-postgres/pull/101" +pull_request: "https://github.com/singer-io/tap-postgres/pull/101" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2020/2020-08-26-salesforce-v1-remove-networkuserhistoryrecent-object.md b/_changelog-files/2020/2020-08-26-salesforce-v1-remove-networkuserhistoryrecent-object.md index ed4efbe39..8e5d3951c 100644 --- a/_changelog-files/2020/2020-08-26-salesforce-v1-remove-networkuserhistoryrecent-object.md +++ b/_changelog-files/2020/2020-08-26-salesforce-v1-remove-networkuserhistoryrecent-object.md @@ -6,7 +6,7 @@ entry-type: removed entry-category: integration connection-id: "salesforce" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-salesforce/pull/86" +pull_request: "https://github.com/singer-io/tap-salesforce/pull/86" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2020/2020-09-18-google-analytics-v1-accountsummaries-profiles.md b/_changelog-files/2020/2020-09-18-google-analytics-v1-accountsummaries-profiles.md index 24c313e19..f64feef93 100644 --- a/_changelog-files/2020/2020-09-18-google-analytics-v1-accountsummaries-profiles.md +++ b/_changelog-files/2020/2020-09-18-google-analytics-v1-accountsummaries-profiles.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "google-analytics" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-google-analytics/pull/32" +pull_request: "https://github.com/singer-io/tap-google-analytics/pull/32" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2020/2020-12-18-mambu-v1-new-tables.md b/_changelog-files/2020/2020-12-18-mambu-v1-new-tables.md index 6930ca1cf..1ce0897e0 100644 --- a/_changelog-files/2020/2020-12-18-mambu-v1-new-tables.md +++ b/_changelog-files/2020/2020-12-18-mambu-v1-new-tables.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "mambu" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-mambu/pull/25" +pull_request: "https://github.com/singer-io/tap-mambu/pull/25" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-02-25-new-stripe-fields.md b/_changelog-files/2021/2021-02-25-new-stripe-fields.md index 7c3eb4126..db76154e2 100644 --- a/_changelog-files/2021/2021-02-25-new-stripe-fields.md +++ b/_changelog-files/2021/2021-02-25-new-stripe-fields.md @@ -7,7 +7,7 @@ entry-category: integration connection-id: stripe connection-version: 1 full-connection-version: "1.4.5" -pull-request: "https://github.com/singer-io/tap-stripe/pull/77" +pull_request: "https://github.com/singer-io/tap-stripe/pull/77" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-02-25-stripe-invoices-bug-fix.md b/_changelog-files/2021/2021-02-25-stripe-invoices-bug-fix.md index 179fbadd9..4b2383656 100644 --- a/_changelog-files/2021/2021-02-25-stripe-invoices-bug-fix.md +++ b/_changelog-files/2021/2021-02-25-stripe-invoices-bug-fix.md @@ -7,7 +7,7 @@ entry-category: integration connection-id: stripe connection-version: 1 full-connection-version: "1.4.6" -pull-request: "https://github.com/singer-io/tap-stripe/pull/79" +pull_request: "https://github.com/singer-io/tap-stripe/pull/79" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-02-26-shopify-standardized-shop-errors.md b/_changelog-files/2021/2021-02-26-shopify-standardized-shop-errors.md index e70c16dbf..7dca9538a 100644 --- a/_changelog-files/2021/2021-02-26-shopify-standardized-shop-errors.md +++ b/_changelog-files/2021/2021-02-26-shopify-standardized-shop-errors.md @@ -7,7 +7,7 @@ entry-category: integration connection-id: shopify connection-version: 1 full-connection-version: "1.2.7" -pull-request: "https://github.com/singer-io/tap-shopify/pull/84" +pull_request: "https://github.com/singer-io/tap-shopify/pull/84" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-03-05-xero-datetime-value-fix.md b/_changelog-files/2021/2021-03-05-xero-datetime-value-fix.md index ef6d7af73..165b9ee3d 100644 --- a/_changelog-files/2021/2021-03-05-xero-datetime-value-fix.md +++ b/_changelog-files/2021/2021-03-05-xero-datetime-value-fix.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: xero connection-version: 1 -pull-request: "https://github.com/singer-io/tap-xero/pull/79" +pull_request: "https://github.com/singer-io/tap-xero/pull/79" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-03-08-facebook-ads-v1-unique-outbound-clicks-data.md b/_changelog-files/2021/2021-03-08-facebook-ads-v1-unique-outbound-clicks-data.md index 72e58c2b4..1e9b4c5e4 100644 --- a/_changelog-files/2021/2021-03-08-facebook-ads-v1-unique-outbound-clicks-data.md +++ b/_changelog-files/2021/2021-03-08-facebook-ads-v1-unique-outbound-clicks-data.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "facebook-ads" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-facebook/pull/138" +pull_request: "https://github.com/singer-io/tap-facebook/pull/138" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-03-09-adwords-v05-02-2017-common-error-messages.md b/_changelog-files/2021/2021-03-09-adwords-v05-02-2017-common-error-messages.md index 911d97073..d15763a16 100644 --- a/_changelog-files/2021/2021-03-09-adwords-v05-02-2017-common-error-messages.md +++ b/_changelog-files/2021/2021-03-09-adwords-v05-02-2017-common-error-messages.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: "integration" connection-id: "google-ads" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-adwords/pull/77" +pull_request: "https://github.com/singer-io/tap-adwords/pull/77" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-03-10-pendo-v1-accounts-visitors-custom-fields.md b/_changelog-files/2021/2021-03-10-pendo-v1-accounts-visitors-custom-fields.md index f0e6480ad..4381c90dc 100644 --- a/_changelog-files/2021/2021-03-10-pendo-v1-accounts-visitors-custom-fields.md +++ b/_changelog-files/2021/2021-03-10-pendo-v1-accounts-visitors-custom-fields.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: "integration" connection-id: "pendo" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-pendo/pull/27" +pull_request: "https://github.com/singer-io/tap-pendo/pull/27" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-03-11-salesforce-v1-error-message-formatting.md b/_changelog-files/2021/2021-03-11-salesforce-v1-error-message-formatting.md index 2bc1f5e4f..5cf9812e7 100644 --- a/_changelog-files/2021/2021-03-11-salesforce-v1-error-message-formatting.md +++ b/_changelog-files/2021/2021-03-11-salesforce-v1-error-message-formatting.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: "integration" connection-id: "salesforce" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-salesforce/pull/96" +pull_request: "https://github.com/singer-io/tap-salesforce/pull/96" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-03-11-zuora-v1-aqua-jobs-rate-limit.md b/_changelog-files/2021/2021-03-11-zuora-v1-aqua-jobs-rate-limit.md index 378281223..fec0eb8e9 100644 --- a/_changelog-files/2021/2021-03-11-zuora-v1-aqua-jobs-rate-limit.md +++ b/_changelog-files/2021/2021-03-11-zuora-v1-aqua-jobs-rate-limit.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: "integration" connection-id: "zuora" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-zuora/pull/53" +pull_request: "https://github.com/singer-io/tap-zuora/pull/53" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-03-12-mongodb-v2-remove-duplicate-instances.md b/_changelog-files/2021/2021-03-12-mongodb-v2-remove-duplicate-instances.md index 3d61f2919..9a33e7058 100644 --- a/_changelog-files/2021/2021-03-12-mongodb-v2-remove-duplicate-instances.md +++ b/_changelog-files/2021/2021-03-12-mongodb-v2-remove-duplicate-instances.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: "integration" connection-id: "mongodb" connection-version: "2" -pull-request: "https://github.com/singer-io/tap-mongodb/pull/58" +pull_request: "https://github.com/singer-io/tap-mongodb/pull/58" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-03-12-pendo-v1-ijson-performance-enhancement.md b/_changelog-files/2021/2021-03-12-pendo-v1-ijson-performance-enhancement.md index 04ed500b5..96cc1c3a2 100644 --- a/_changelog-files/2021/2021-03-12-pendo-v1-ijson-performance-enhancement.md +++ b/_changelog-files/2021/2021-03-12-pendo-v1-ijson-performance-enhancement.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: "integration" connection-id: "pendo" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-pendo/pull/28" +pull_request: "https://github.com/singer-io/tap-pendo/pull/28" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-03-15-zoom-v1-fixed-schema-report-meetings-webinars.md b/_changelog-files/2021/2021-03-15-zoom-v1-fixed-schema-report-meetings-webinars.md index 65cdebd99..4aa7cd200 100644 --- a/_changelog-files/2021/2021-03-15-zoom-v1-fixed-schema-report-meetings-webinars.md +++ b/_changelog-files/2021/2021-03-15-zoom-v1-fixed-schema-report-meetings-webinars.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: "integration" connection-id: "zoom" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-zoom/pull/4" +pull_request: "https://github.com/singer-io/tap-zoom/pull/4" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-03-16-salesforce-v1-operation-too-large-error.md b/_changelog-files/2021/2021-03-16-salesforce-v1-operation-too-large-error.md index e29b8919f..abfeb0d1f 100644 --- a/_changelog-files/2021/2021-03-16-salesforce-v1-operation-too-large-error.md +++ b/_changelog-files/2021/2021-03-16-salesforce-v1-operation-too-large-error.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "salesforce" connection-version: 1 -pull-request: "https://github.com/singer-io/tap-salesforce/pull/98" +pull_request: "https://github.com/singer-io/tap-salesforce/pull/98" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-03-17-mambu-v1-decimal-validation-fix.md b/_changelog-files/2021/2021-03-17-mambu-v1-decimal-validation-fix.md index b5c087874..b52a6f3c8 100644 --- a/_changelog-files/2021/2021-03-17-mambu-v1-decimal-validation-fix.md +++ b/_changelog-files/2021/2021-03-17-mambu-v1-decimal-validation-fix.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: "mambu" connection-version: 1 -pull-request: "https://github.com/singer-io/tap-mambu/pull/38" +pull_request: "https://github.com/singer-io/tap-mambu/pull/38" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-03-19-eloqua-v1-email-groups-contacts-data.md b/_changelog-files/2021/2021-03-19-eloqua-v1-email-groups-contacts-data.md index 537fffb2f..43a540687 100644 --- a/_changelog-files/2021/2021-03-19-eloqua-v1-email-groups-contacts-data.md +++ b/_changelog-files/2021/2021-03-19-eloqua-v1-email-groups-contacts-data.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "eloqua" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-eloqua/pull/38" +pull_request: "https://github.com/singer-io/tap-eloqua/pull/38" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-03-22-salesforce-v1-remove-fieldhistoryarchive-object.md b/_changelog-files/2021/2021-03-22-salesforce-v1-remove-fieldhistoryarchive-object.md index 1bca0bca2..350c07b33 100644 --- a/_changelog-files/2021/2021-03-22-salesforce-v1-remove-fieldhistoryarchive-object.md +++ b/_changelog-files/2021/2021-03-22-salesforce-v1-remove-fieldhistoryarchive-object.md @@ -6,7 +6,7 @@ entry-type: removed entry-category: integration connection-id: "salesforce" connection-version: 1 -pull-request: "https://github.com/singer-io/tap-salesforce/pull/101" +pull_request: "https://github.com/singer-io/tap-salesforce/pull/101" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-03-24-new-feature-integration-changelogs.md b/_changelog-files/2021/2021-03-24-new-feature-integration-changelogs.md index 1a5d85aab..0995fba7a 100644 --- a/_changelog-files/2021/2021-03-24-new-feature-integration-changelogs.md +++ b/_changelog-files/2021/2021-03-24-new-feature-integration-changelogs.md @@ -17,7 +17,7 @@ connections: version: "1" - id: "salesforce" version: "1" -pull-request: "https://github.com/stitchdata/docs/pull/620" +pull_request: "https://github.com/stitchdata/docs/pull/620" --- Introducing: Integration changelogs! diff --git a/_changelog-files/2021/2021-03-25-sso-azure-active-directory.md b/_changelog-files/2021/2021-03-25-sso-azure-active-directory.md index f7c66e0ba..f42044d00 100644 --- a/_changelog-files/2021/2021-03-25-sso-azure-active-directory.md +++ b/_changelog-files/2021/2021-03-25-sso-azure-active-directory.md @@ -4,7 +4,7 @@ content-type: "changelog-entry" date: 2021-03-31 entry-type: new-feature entry-category: "account, documentation" -pull-request: "https://github.com/stitchdata/docs/pull/622" +pull_request: "https://github.com/stitchdata/docs/pull/622" --- We've expanded our list of supported Identity Providers to include Microsoft Azure Active Directory (Azure AD)! diff --git a/_changelog-files/2021/2021-03-30-postgres-v2-key-incremental-support.md b/_changelog-files/2021/2021-03-30-postgres-v2-key-incremental-support.md index c50a54f25..9b0948a3b 100644 --- a/_changelog-files/2021/2021-03-30-postgres-v2-key-incremental-support.md +++ b/_changelog-files/2021/2021-03-30-postgres-v2-key-incremental-support.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: postgres connection-version: 2 -pull-request: "https://github.com/stitchdata/docs/pull/624" +pull_request: "https://github.com/stitchdata/docs/pull/624" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-03-31-zuora-new-stateful-query.md b/_changelog-files/2021/2021-03-31-zuora-new-stateful-query.md index dd1245034..777dd9613 100644 --- a/_changelog-files/2021/2021-03-31-zuora-new-stateful-query.md +++ b/_changelog-files/2021/2021-03-31-zuora-new-stateful-query.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: zuora connection-version: 1 -pull-request: "https://github.com/singer-io/tap-zuora/pull/54" +pull_request: "https://github.com/singer-io/tap-zuora/pull/54" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-04-05-xero-retry-logic.md b/_changelog-files/2021/2021-04-05-xero-retry-logic.md index 7f52f45a1..f912992d4 100644 --- a/_changelog-files/2021/2021-04-05-xero-retry-logic.md +++ b/_changelog-files/2021/2021-04-05-xero-retry-logic.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: xero connection-version: 1 -pull-request: "https://github.com/singer-io/tap-xero/pull/83" +pull_request: "https://github.com/singer-io/tap-xero/pull/83" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-04-06-jira-new-components-table.md b/_changelog-files/2021/2021-04-06-jira-new-components-table.md index d5f774f65..777abee1f 100644 --- a/_changelog-files/2021/2021-04-06-jira-new-components-table.md +++ b/_changelog-files/2021/2021-04-06-jira-new-components-table.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: "integration, documentation" connection-id: jira connection-version: 2 -pull-request: "https://github.com/singer-io/tap-jira/pull/59" +pull_request: "https://github.com/singer-io/tap-jira/pull/59" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-04-09-klaviyo-critical-error-logging.md b/_changelog-files/2021/2021-04-09-klaviyo-critical-error-logging.md index 690f25f71..a001f0913 100644 --- a/_changelog-files/2021/2021-04-09-klaviyo-critical-error-logging.md +++ b/_changelog-files/2021/2021-04-09-klaviyo-critical-error-logging.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: klaviyo connection-version: 1 -pull-request: "https://github.com/singer-io/tap-klaviyo/pull/24" +pull_request: "https://github.com/singer-io/tap-klaviyo/pull/24" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-04-09-xero-error-conditions-features.md b/_changelog-files/2021/2021-04-09-xero-error-conditions-features.md index e675b82bd..fdaf1de3b 100644 --- a/_changelog-files/2021/2021-04-09-xero-error-conditions-features.md +++ b/_changelog-files/2021/2021-04-09-xero-error-conditions-features.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: xero connection-version: 1 -pull-request: "https://github.com/singer-io/tap-xero/pull/85" +pull_request: "https://github.com/singer-io/tap-xero/pull/85" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-04-13-mailchimp-v1-updated-error-message-campaigns.md b/_changelog-files/2021/2021-04-13-mailchimp-v1-updated-error-message-campaigns.md index 6236e1a82..d6aad2fbd 100644 --- a/_changelog-files/2021/2021-04-13-mailchimp-v1-updated-error-message-campaigns.md +++ b/_changelog-files/2021/2021-04-13-mailchimp-v1-updated-error-message-campaigns.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mailchimp connection-version: 1 -pull-request: "https://github.com/singer-io/tap-mailchimp/pull/38" +pull_request: "https://github.com/singer-io/tap-mailchimp/pull/38" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-04-13-sso-pingfederate.md b/_changelog-files/2021/2021-04-13-sso-pingfederate.md index d3c1f6132..dd7ccfada 100644 --- a/_changelog-files/2021/2021-04-13-sso-pingfederate.md +++ b/_changelog-files/2021/2021-04-13-sso-pingfederate.md @@ -4,7 +4,7 @@ content-type: "changelog-entry" date: 2021-04-13 entry-type: new-feature entry-category: "account, documentation" -pull-request: "https://github.com/stitchdata/docs/pull/631" +pull_request: "https://github.com/stitchdata/docs/pull/631" --- We've expanded our list of supported Identity Providers to include PingFederate! diff --git a/_changelog-files/2021/2021-04-13-xero-v1-increased-currency-precision.md b/_changelog-files/2021/2021-04-13-xero-v1-increased-currency-precision.md index eb33397cc..868590e39 100644 --- a/_changelog-files/2021/2021-04-13-xero-v1-increased-currency-precision.md +++ b/_changelog-files/2021/2021-04-13-xero-v1-increased-currency-precision.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: xero connection-version: 1 -pull-request: "https://github.com/singer-io/tap-xero/pull/87" +pull_request: "https://github.com/singer-io/tap-xero/pull/87" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-04-13-xero-v1-new-quotes-table.md b/_changelog-files/2021/2021-04-13-xero-v1-new-quotes-table.md index 085e0141c..b900f2fcd 100644 --- a/_changelog-files/2021/2021-04-13-xero-v1-new-quotes-table.md +++ b/_changelog-files/2021/2021-04-13-xero-v1-new-quotes-table.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: "integration, documentation" connection-id: xero connection-version: 1 -pull-request: "https://github.com/singer-io/tap-xero/pull/86" +pull_request: "https://github.com/singer-io/tap-xero/pull/86" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-04-14-github-v1-new-pull-requests-field.md b/_changelog-files/2021/2021-04-14-github-v1-new-pull-requests-field.md index 3823aabaa..53afbcd86 100644 --- a/_changelog-files/2021/2021-04-14-github-v1-new-pull-requests-field.md +++ b/_changelog-files/2021/2021-04-14-github-v1-new-pull-requests-field.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: "integration, documentation" connection-id: github connection-version: 1 -pull-request: "https://github.com/singer-io/tap-github/pull/109" +pull_request: "https://github.com/singer-io/tap-github/pull/109" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-04-14-improved-security-documentation.md b/_changelog-files/2021/2021-04-14-improved-security-documentation.md index 7f8128c7b..ad8a54feb 100644 --- a/_changelog-files/2021/2021-04-14-improved-security-documentation.md +++ b/_changelog-files/2021/2021-04-14-improved-security-documentation.md @@ -4,7 +4,7 @@ content-type: "changelog-entry" date: 2021-04-14 entry-type: improvement entry-category: "documentation, security" -pull-request: "https://github.com/stitchdata/docs/pull/626" +pull_request: "https://github.com/stitchdata/docs/pull/626" --- We've been working hard to improve our security documentation - here's a high-level look at the changes: diff --git a/_changelog-files/2021/2021-04-15-pendo-v1-trackevents-source-parameter-correction.md b/_changelog-files/2021/2021-04-15-pendo-v1-trackevents-source-parameter-correction.md index 53a305be6..56219b93b 100644 --- a/_changelog-files/2021/2021-04-15-pendo-v1-trackevents-source-parameter-correction.md +++ b/_changelog-files/2021/2021-04-15-pendo-v1-trackevents-source-parameter-correction.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: pendo connection-version: 1 -pull-request: "https://github.com/singer-io/tap-pendo/pull/30" +pull_request: "https://github.com/singer-io/tap-pendo/pull/30" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-04-15-shopify-v1-definitions-table-customer-field-change.md b/_changelog-files/2021/2021-04-15-shopify-v1-definitions-table-customer-field-change.md index 714a1118f..d3305f05c 100644 --- a/_changelog-files/2021/2021-04-15-shopify-v1-definitions-table-customer-field-change.md +++ b/_changelog-files/2021/2021-04-15-shopify-v1-definitions-table-customer-field-change.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: shopify connection-version: 1 -pull-request: "https://github.com/singer-io/tap-shopify/pull/94" +pull_request: "https://github.com/singer-io/tap-shopify/pull/94" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-04-15-xero-v1-archived-contacts-config.md b/_changelog-files/2021/2021-04-15-xero-v1-archived-contacts-config.md index 67d7982cf..b337a01bb 100644 --- a/_changelog-files/2021/2021-04-15-xero-v1-archived-contacts-config.md +++ b/_changelog-files/2021/2021-04-15-xero-v1-archived-contacts-config.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: "integration, documentation" connection-id: xero connection-version: 1 -pull-request: "https://github.com/singer-io/tap-xero/pull/84" +pull_request: "https://github.com/singer-io/tap-xero/pull/84" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-04-16-new-mysql-version-v2.md b/_changelog-files/2021/2021-04-16-new-mysql-version-v2.md index c34212cea..35fc8860f 100644 --- a/_changelog-files/2021/2021-04-16-new-mysql-version-v2.md +++ b/_changelog-files/2021/2021-04-16-new-mysql-version-v2.md @@ -6,7 +6,7 @@ entry-type: beta entry-category: integration connection-id: mysql connection-version: 2 -pull-request: "https://github.com/stitchdata/docs/pull/629" +pull_request: "https://github.com/stitchdata/docs/pull/629" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-04-16-zendesk-chat-v1-new-agents-field.md b/_changelog-files/2021/2021-04-16-zendesk-chat-v1-new-agents-field.md index cb067b05f..bb5e8d30b 100644 --- a/_changelog-files/2021/2021-04-16-zendesk-chat-v1-new-agents-field.md +++ b/_changelog-files/2021/2021-04-16-zendesk-chat-v1-new-agents-field.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: zendesk-chat connection-version: 1 -pull-request: "https://github.com/singer-io/tap-zendesk-chat/pull/27" +pull_request: "https://github.com/singer-io/tap-zendesk-chat/pull/27" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-04-19-harvest-forecast-v1-full-table-rep-assignments-query-logic.md b/_changelog-files/2021/2021-04-19-harvest-forecast-v1-full-table-rep-assignments-query-logic.md index b3ab0f84c..99e15685f 100644 --- a/_changelog-files/2021/2021-04-19-harvest-forecast-v1-full-table-rep-assignments-query-logic.md +++ b/_changelog-files/2021/2021-04-19-harvest-forecast-v1-full-table-rep-assignments-query-logic.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: harvest-forecast connection-version: 1 -pull-request: "https://github.com/singer-io/tap-harvest-forecast/pull/17" +pull_request: "https://github.com/singer-io/tap-harvest-forecast/pull/17" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-04-19-postgres-v2-unsupported-types.md b/_changelog-files/2021/2021-04-19-postgres-v2-unsupported-types.md index c160e0e03..747dfc8bf 100644 --- a/_changelog-files/2021/2021-04-19-postgres-v2-unsupported-types.md +++ b/_changelog-files/2021/2021-04-19-postgres-v2-unsupported-types.md @@ -6,7 +6,7 @@ entry-type: removed entry-category: integration connection-id: postgres connection-version: 2 -pull-request: "https://github.com/stitchdata/tap-hp-postgres/pull/73" +pull_request: "https://github.com/stitchdata/tap-hp-postgres/pull/73" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-04-21-mambu-new-v2.md b/_changelog-files/2021/2021-04-21-mambu-new-v2.md index 303ae5b7c..d21b9c99e 100644 --- a/_changelog-files/2021/2021-04-21-mambu-new-v2.md +++ b/_changelog-files/2021/2021-04-21-mambu-new-v2.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: "mambu" connection-version: "2" -pull-request: "https://github.com/singer-io/tap-mambu/pull/43" +pull_request: "https://github.com/singer-io/tap-mambu/pull/43" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-04-22-marketo-v1-csv-compatibility.md b/_changelog-files/2021/2021-04-22-marketo-v1-csv-compatibility.md index 6dd640953..ffae931b0 100644 --- a/_changelog-files/2021/2021-04-22-marketo-v1-csv-compatibility.md +++ b/_changelog-files/2021/2021-04-22-marketo-v1-csv-compatibility.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: marketo connection-version: 1 -pull-request: "https://github.com/singer-io/tap-marketo/pull/73" +pull_request: "https://github.com/singer-io/tap-marketo/pull/73" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-04-22-xero-v1-wait-time-for-rate-limit.md b/_changelog-files/2021/2021-04-22-xero-v1-wait-time-for-rate-limit.md index ff19d2b65..16930bae2 100644 --- a/_changelog-files/2021/2021-04-22-xero-v1-wait-time-for-rate-limit.md +++ b/_changelog-files/2021/2021-04-22-xero-v1-wait-time-for-rate-limit.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: xero connection-version: 1 -pull-request: "https://github.com/singer-io/tap-xero/pull/90" +pull_request: "https://github.com/singer-io/tap-xero/pull/90" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-04-26-shopify-v1-api-upgrade-04-2021.md b/_changelog-files/2021/2021-04-26-shopify-v1-api-upgrade-04-2021.md index 8225de597..fa80884ce 100644 --- a/_changelog-files/2021/2021-04-26-shopify-v1-api-upgrade-04-2021.md +++ b/_changelog-files/2021/2021-04-26-shopify-v1-api-upgrade-04-2021.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: shopify connection-version: 1 -pull-request: "https://github.com/singer-io/tap-shopify/pull/96" +pull_request: "https://github.com/singer-io/tap-shopify/pull/96" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-04-26-shopify-v1-transactions-order-refund-features.md b/_changelog-files/2021/2021-04-26-shopify-v1-transactions-order-refund-features.md index 8584ee7de..8509f5713 100644 --- a/_changelog-files/2021/2021-04-26-shopify-v1-transactions-order-refund-features.md +++ b/_changelog-files/2021/2021-04-26-shopify-v1-transactions-order-refund-features.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: shopify connection-version: 1 -pull-request: "https://github.com/singer-io/tap-shopify/pull/97" +pull_request: "https://github.com/singer-io/tap-shopify/pull/97" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-04-29-zuora-v1-enforce-UTC.md b/_changelog-files/2021/2021-04-29-zuora-v1-enforce-UTC.md index c4f32c708..2c87d1b9a 100644 --- a/_changelog-files/2021/2021-04-29-zuora-v1-enforce-UTC.md +++ b/_changelog-files/2021/2021-04-29-zuora-v1-enforce-UTC.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "zuora" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-zuora/pull/56" +pull_request: "https://github.com/singer-io/tap-zuora/pull/56" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-04-30-facebook-ads-v1-job-timeout-increase.md b/_changelog-files/2021/2021-04-30-facebook-ads-v1-job-timeout-increase.md index b6db8babe..261f41821 100644 --- a/_changelog-files/2021/2021-04-30-facebook-ads-v1-job-timeout-increase.md +++ b/_changelog-files/2021/2021-04-30-facebook-ads-v1-job-timeout-increase.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "facebook-ads" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-facebook/pull/148" +pull_request: "https://github.com/singer-io/tap-facebook/pull/148" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-05-06-shopify-v1-remove-build-fields-duplicates.md b/_changelog-files/2021/2021-05-06-shopify-v1-remove-build-fields-duplicates.md index 4bb86c45a..68179dbaf 100644 --- a/_changelog-files/2021/2021-05-06-shopify-v1-remove-build-fields-duplicates.md +++ b/_changelog-files/2021/2021-05-06-shopify-v1-remove-build-fields-duplicates.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: "shopify" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-shopify/pull/103" +pull_request: "https://github.com/singer-io/tap-shopify/pull/103" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-05-13-intercom-v1-companies-endpoint-limitation.md b/_changelog-files/2021/2021-05-13-intercom-v1-companies-endpoint-limitation.md index 71235186d..4f6747827 100644 --- a/_changelog-files/2021/2021-05-13-intercom-v1-companies-endpoint-limitation.md +++ b/_changelog-files/2021/2021-05-13-intercom-v1-companies-endpoint-limitation.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: "integration, documentation" connection-id: "intercom" connection-version: "1" -pull-request: "" +pull_request: "" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-05-14-salesforce-extraction-error-reference.md b/_changelog-files/2021/2021-05-14-salesforce-extraction-error-reference.md index dd8ff19cc..deef7051c 100644 --- a/_changelog-files/2021/2021-05-14-salesforce-extraction-error-reference.md +++ b/_changelog-files/2021/2021-05-14-salesforce-extraction-error-reference.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: "integration, documentation" connection-id: "salesforce" connection-version: "1" -pull-request: "https://github.com/stitchdata/docs/pull/642" +pull_request: "https://github.com/stitchdata/docs/pull/642" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-05-17-mssql-v1-bugfix-rep-key-quoting.md b/_changelog-files/2021/2021-05-17-mssql-v1-bugfix-rep-key-quoting.md index 7455c5d88..bddb88e08 100644 --- a/_changelog-files/2021/2021-05-17-mssql-v1-bugfix-rep-key-quoting.md +++ b/_changelog-files/2021/2021-05-17-mssql-v1-bugfix-rep-key-quoting.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration, replication connection-id: "mssql" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-mssql/pull/59" +pull_request: "https://github.com/singer-io/tap-mssql/pull/59" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-05-17-pendo-v1-anonymous-visitors.md b/_changelog-files/2021/2021-05-17-pendo-v1-anonymous-visitors.md index 8ae70981f..859ac3ac9 100644 --- a/_changelog-files/2021/2021-05-17-pendo-v1-anonymous-visitors.md +++ b/_changelog-files/2021/2021-05-17-pendo-v1-anonymous-visitors.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "pendo" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-pendo/pull/32" +pull_request: "https://github.com/singer-io/tap-pendo/pull/32" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-05-19-shopify-v1-abandoned-checkouts-validation.md b/_changelog-files/2021/2021-05-19-shopify-v1-abandoned-checkouts-validation.md index 1f4d53979..4e15e54ba 100644 --- a/_changelog-files/2021/2021-05-19-shopify-v1-abandoned-checkouts-validation.md +++ b/_changelog-files/2021/2021-05-19-shopify-v1-abandoned-checkouts-validation.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "shopify" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-shopify/pull/44" +pull_request: "https://github.com/singer-io/tap-shopify/pull/44" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-05-21-facebook-ads-v1-api-upgrade-v10.md b/_changelog-files/2021/2021-05-21-facebook-ads-v1-api-upgrade-v10.md index 31900d289..48f32b4af 100644 --- a/_changelog-files/2021/2021-05-21-facebook-ads-v1-api-upgrade-v10.md +++ b/_changelog-files/2021/2021-05-21-facebook-ads-v1-api-upgrade-v10.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: facebook-ads connection-version: 1 -pull-request: "https://github.com/singer-io/tap-facebook/pull/146" +pull_request: "https://github.com/singer-io/tap-facebook/pull/146" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-05-21-typeform-v1-forms-table.md b/_changelog-files/2021/2021-05-21-typeform-v1-forms-table.md index feecc296e..d8583888c 100644 --- a/_changelog-files/2021/2021-05-21-typeform-v1-forms-table.md +++ b/_changelog-files/2021/2021-05-21-typeform-v1-forms-table.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: typeform connection-version: 1 -pull-request: "https://github.com/singer-io/tap-typeform/pull/29" +pull_request: "https://github.com/singer-io/tap-typeform/pull/29" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-05-24-slack-v1-user-profile-data.md b/_changelog-files/2021/2021-05-24-slack-v1-user-profile-data.md index 8f0eed2a6..86c2cecbf 100644 --- a/_changelog-files/2021/2021-05-24-slack-v1-user-profile-data.md +++ b/_changelog-files/2021/2021-05-24-slack-v1-user-profile-data.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "slack" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-slack/pull/16" +pull_request: "https://github.com/singer-io/tap-slack/pull/16" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-05-26-pipedrive-v1-improved-error-handling.md b/_changelog-files/2021/2021-05-26-pipedrive-v1-improved-error-handling.md index 57981441a..737666c49 100644 --- a/_changelog-files/2021/2021-05-26-pipedrive-v1-improved-error-handling.md +++ b/_changelog-files/2021/2021-05-26-pipedrive-v1-improved-error-handling.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: pipedrive connection-version: 1 -pull-request: "https://github.com/singer-io/tap-pipedrive/pull/99" +pull_request: "https://github.com/singer-io/tap-pipedrive/pull/99" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-05-26-pipedrive-v1-organizations-pagination.md b/_changelog-files/2021/2021-05-26-pipedrive-v1-organizations-pagination.md index e6e707525..74bb120ea 100644 --- a/_changelog-files/2021/2021-05-26-pipedrive-v1-organizations-pagination.md +++ b/_changelog-files/2021/2021-05-26-pipedrive-v1-organizations-pagination.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: pipedrive connection-version: 1 -pull-request: "https://github.com/singer-io/tap-pipedrive/pull/99" +pull_request: "https://github.com/singer-io/tap-pipedrive/pull/99" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-05-26-pipedrive-v1-remove-delete-logs-table.md b/_changelog-files/2021/2021-05-26-pipedrive-v1-remove-delete-logs-table.md index c40535ba4..ac2cdf792 100644 --- a/_changelog-files/2021/2021-05-26-pipedrive-v1-remove-delete-logs-table.md +++ b/_changelog-files/2021/2021-05-26-pipedrive-v1-remove-delete-logs-table.md @@ -6,7 +6,7 @@ entry-type: removed entry-category: integration connection-id: pipedrive connection-version: 1 -pull-request: "https://github.com/singer-io/tap-pipedrive/pull/99" +pull_request: "https://github.com/singer-io/tap-pipedrive/pull/99" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-05-27-docs-parent-child-table-feature.md b/_changelog-files/2021/2021-05-27-docs-parent-child-table-feature.md index 9439be5be..8fd067a83 100644 --- a/_changelog-files/2021/2021-05-27-docs-parent-child-table-feature.md +++ b/_changelog-files/2021/2021-05-27-docs-parent-child-table-feature.md @@ -4,7 +4,7 @@ content-type: "changelog-entry" date: 2021-05-27 entry-type: improvement entry-category: "documentation" -pull-request: "https://github.com/stitchdata/docs/pull/646" +pull_request: "https://github.com/stitchdata/docs/pull/646" --- We've updated the integration schema documentation to include info about parent and child tables. Now you can tell, at a glance, if a table is dependent upon another table for replication: diff --git a/_changelog-files/2021/2021-05-27-github-v1-updated-table-docs.md b/_changelog-files/2021/2021-05-27-github-v1-updated-table-docs.md index eebe3f105..2d2857a0d 100644 --- a/_changelog-files/2021/2021-05-27-github-v1-updated-table-docs.md +++ b/_changelog-files/2021/2021-05-27-github-v1-updated-table-docs.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: "integration, documentation" connection-id: "github" connection-version: 1 -pull-request: "https://github.com/stitchdata/docs/pull/646" +pull_request: "https://github.com/stitchdata/docs/pull/646" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-05-28-freshdesk-v1-groups-fix-field-data-type.md b/_changelog-files/2021/2021-05-28-freshdesk-v1-groups-fix-field-data-type.md index 98cfd9cc9..5be0a6e8e 100644 --- a/_changelog-files/2021/2021-05-28-freshdesk-v1-groups-fix-field-data-type.md +++ b/_changelog-files/2021/2021-05-28-freshdesk-v1-groups-fix-field-data-type.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: freshdesk connection-version: 1 -pull-request: "https://github.com/singer-io/tap-freshdesk/pull/42" +pull_request: "https://github.com/singer-io/tap-freshdesk/pull/42" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-05-28-klaviyo-v1-campaigns-table-field-selection.md b/_changelog-files/2021/2021-05-28-klaviyo-v1-campaigns-table-field-selection.md index 318c389e1..09f03bb84 100644 --- a/_changelog-files/2021/2021-05-28-klaviyo-v1-campaigns-table-field-selection.md +++ b/_changelog-files/2021/2021-05-28-klaviyo-v1-campaigns-table-field-selection.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: klaviyo connection-version: 1 -pull-request: "https://github.com/singer-io/tap-klaviyo/pull/40" +pull_request: "https://github.com/singer-io/tap-klaviyo/pull/40" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-05-28-shopify-v1-product-status-field.md b/_changelog-files/2021/2021-05-28-shopify-v1-product-status-field.md index 94caec3bc..b9c8421ae 100644 --- a/_changelog-files/2021/2021-05-28-shopify-v1-product-status-field.md +++ b/_changelog-files/2021/2021-05-28-shopify-v1-product-status-field.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: shopify connection-version: 1 -pull-request: "https://github.com/singer-io/tap-shopify/pull/108" +pull_request: "https://github.com/singer-io/tap-shopify/pull/108" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-06-01-chargify-v1-component-fields.md b/_changelog-files/2021/2021-06-01-chargify-v1-component-fields.md index cbe2278cd..18124e6f3 100644 --- a/_changelog-files/2021/2021-06-01-chargify-v1-component-fields.md +++ b/_changelog-files/2021/2021-06-01-chargify-v1-component-fields.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: chargify connection-version: 1 -pull-request: "https://github.com/singer-io/tap-chargify/pull/39" +pull_request: "https://github.com/singer-io/tap-chargify/pull/39" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-06-01-chargify-v1-new-transaction-fields.md b/_changelog-files/2021/2021-06-01-chargify-v1-new-transaction-fields.md index c75a70a01..1689cfb43 100644 --- a/_changelog-files/2021/2021-06-01-chargify-v1-new-transaction-fields.md +++ b/_changelog-files/2021/2021-06-01-chargify-v1-new-transaction-fields.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: chargify connection-version: 1 -pull-request: "https://github.com/singer-io/tap-chargify/pull/39" +pull_request: "https://github.com/singer-io/tap-chargify/pull/39" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-06-03-mambu-v2-custom-field-bug-fix.md b/_changelog-files/2021/2021-06-03-mambu-v2-custom-field-bug-fix.md index bfa9a6746..fc24d3e3e 100644 --- a/_changelog-files/2021/2021-06-03-mambu-v2-custom-field-bug-fix.md +++ b/_changelog-files/2021/2021-06-03-mambu-v2-custom-field-bug-fix.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: mambu connection-version: 2 -pull-request: "https://github.com/singer-io/tap-mambu/pull/47" +pull_request: "https://github.com/singer-io/tap-mambu/pull/47" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-06-03-recharge-v1-rate-limit-handling.md b/_changelog-files/2021/2021-06-03-recharge-v1-rate-limit-handling.md index 7623f2558..66ca599ff 100644 --- a/_changelog-files/2021/2021-06-03-recharge-v1-rate-limit-handling.md +++ b/_changelog-files/2021/2021-06-03-recharge-v1-rate-limit-handling.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: recharge connection-version: 1 -pull-request: "https://github.com/singer-io/tap-recharge/pull/8" +pull_request: "https://github.com/singer-io/tap-recharge/pull/8" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-06-07-api-docs-improved-connection-docs.md b/_changelog-files/2021/2021-06-07-api-docs-improved-connection-docs.md index 16048110c..e35a66dfb 100644 --- a/_changelog-files/2021/2021-06-07-api-docs-improved-connection-docs.md +++ b/_changelog-files/2021/2021-06-07-api-docs-improved-connection-docs.md @@ -4,7 +4,7 @@ content-type: "changelog-entry" date: 2021-06-07 entry-type: improvement entry-category: "documentation, connect-api" -pull-request: "https://github.com/stitchdata/docs/pull/649" +pull_request: "https://github.com/stitchdata/docs/pull/649" --- We've moved the documentation for connection property objects out of the Connect API reference and into their own reference: [Destination and Source Connection Property API Reference]({{ site.home | append: site.baseurl | append: site.data.urls.connect.guides.connection-reference }}) diff --git a/_changelog-files/2021/2021-06-07-connect-api-new-destination-guide.md b/_changelog-files/2021/2021-06-07-connect-api-new-destination-guide.md index 077be2d30..026ee91db 100644 --- a/_changelog-files/2021/2021-06-07-connect-api-new-destination-guide.md +++ b/_changelog-files/2021/2021-06-07-connect-api-new-destination-guide.md @@ -4,7 +4,7 @@ content-type: "changelog-entry" date: 2021-06-07 entry-type: new-feature entry-category: "documentation, connect-api" -pull-request: "https://github.com/stitchdata/docs/pull/649" +pull_request: "https://github.com/stitchdata/docs/pull/649" --- We've added a new guide to the Connect API resources! diff --git a/_changelog-files/2021/2021-06-07-harvest-v2-updated-api-headers.md b/_changelog-files/2021/2021-06-07-harvest-v2-updated-api-headers.md index 020ae9fd5..188188e46 100644 --- a/_changelog-files/2021/2021-06-07-harvest-v2-updated-api-headers.md +++ b/_changelog-files/2021/2021-06-07-harvest-v2-updated-api-headers.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: harvest connection-version: 2 -pull-request: "https://github.com/singer-io/tap-harvest/pull/41" +pull_request: "https://github.com/singer-io/tap-harvest/pull/41" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-06-08-amazon-s3-csv-duplicate-column-support.md b/_changelog-files/2021/2021-06-08-amazon-s3-csv-duplicate-column-support.md index e5f6bef02..52c605fb0 100644 --- a/_changelog-files/2021/2021-06-08-amazon-s3-csv-duplicate-column-support.md +++ b/_changelog-files/2021/2021-06-08-amazon-s3-csv-duplicate-column-support.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: "integration, documentation" connection-id: "amazon-s3-csv" connection-version: 1 -pull-request: "https://github.com/singer-io/tap-s3-csv/pull/30" +pull_request: "https://github.com/singer-io/tap-s3-csv/pull/30" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-06-08-harvest-forecast-sync-endpoints-fix.md b/_changelog-files/2021/2021-06-08-harvest-forecast-sync-endpoints-fix.md index aa067be54..192ad6e20 100644 --- a/_changelog-files/2021/2021-06-08-harvest-forecast-sync-endpoints-fix.md +++ b/_changelog-files/2021/2021-06-08-harvest-forecast-sync-endpoints-fix.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: "harvest-forecast" connection-version: 1 -pull-request: "https://github.com/singer-io/tap-harvest-forecast/pull/21" +pull_request: "https://github.com/singer-io/tap-harvest-forecast/pull/21" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-06-09-chargebee-v1-cf-company-id-bug-fix.md b/_changelog-files/2021/2021-06-09-chargebee-v1-cf-company-id-bug-fix.md index 29ef6b215..40cd7fa3c 100644 --- a/_changelog-files/2021/2021-06-09-chargebee-v1-cf-company-id-bug-fix.md +++ b/_changelog-files/2021/2021-06-09-chargebee-v1-cf-company-id-bug-fix.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: "integration" connection-id: "chargebee" connection-version: 1 -pull-request: "https://github.com/singer-io/tap-chargebee/pull/48" +pull_request: "https://github.com/singer-io/tap-chargebee/pull/48" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-06-10-outreach-v1-new-sequence-tables.md b/_changelog-files/2021/2021-06-10-outreach-v1-new-sequence-tables.md index 5990c7478..9dfafa64d 100644 --- a/_changelog-files/2021/2021-06-10-outreach-v1-new-sequence-tables.md +++ b/_changelog-files/2021/2021-06-10-outreach-v1-new-sequence-tables.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: "integration, documentation" connection-id: "outreach" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-outreach/pull/12" +pull_request: "https://github.com/singer-io/tap-outreach/pull/12" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-06-10-square-v1-remove-orders-item-data.md b/_changelog-files/2021/2021-06-10-square-v1-remove-orders-item-data.md index 6ba9bb5bb..fc440a305 100644 --- a/_changelog-files/2021/2021-06-10-square-v1-remove-orders-item-data.md +++ b/_changelog-files/2021/2021-06-10-square-v1-remove-orders-item-data.md @@ -6,7 +6,7 @@ entry-type: removed entry-category: integration connection-id: "square" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-square/pull/104" +pull_request: "https://github.com/singer-io/tap-square/pull/104" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-06-14-chargebee-v1-new-tables.md b/_changelog-files/2021/2021-06-14-chargebee-v1-new-tables.md index 188fb6454..c60507ac5 100644 --- a/_changelog-files/2021/2021-06-14-chargebee-v1-new-tables.md +++ b/_changelog-files/2021/2021-06-14-chargebee-v1-new-tables.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: "integration, documentation" connection-id: "chargebee" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-chargebee/pull/42" +pull_request: "https://github.com/singer-io/tap-chargebee/pull/42" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-06-16-amazon-s3-csv-type-checking-fix.md b/_changelog-files/2021/2021-06-16-amazon-s3-csv-type-checking-fix.md index 322329144..1fde47470 100644 --- a/_changelog-files/2021/2021-06-16-amazon-s3-csv-type-checking-fix.md +++ b/_changelog-files/2021/2021-06-16-amazon-s3-csv-type-checking-fix.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: "amazon-s3-csv" connection-version: 1 -pull-request: "https://github.com/singer-io/tap-s3-csv/pull/35" +pull_request: "https://github.com/singer-io/tap-s3-csv/pull/35" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-06-16-docs-integration-versioning-guide.md b/_changelog-files/2021/2021-06-16-docs-integration-versioning-guide.md index 2f75deb58..ea8d3bcaa 100644 --- a/_changelog-files/2021/2021-06-16-docs-integration-versioning-guide.md +++ b/_changelog-files/2021/2021-06-16-docs-integration-versioning-guide.md @@ -4,7 +4,7 @@ content-type: "changelog-entry" date: 2021-06-16 entry-type: new-feature entry-category: documentation -pull-request: "https://github.com/stitchdata/docs/pull/650" +pull_request: "https://github.com/stitchdata/docs/pull/650" --- After the v2 release of our PostgreSQL integration, we received some questions about how integrations are versioned. Today, we're adding a new resource to the docs to help answer these questions: [Understanding Integration Versioning and Upgrades in Stitch]({{ site.home | append: site.baseurl | append: site.data.urls.integrations.identify-integration-version }}) diff --git a/_changelog-files/2021/2021-06-16-pipedrive-fix-table-rep-method.md b/_changelog-files/2021/2021-06-16-pipedrive-fix-table-rep-method.md index 1f0628770..ac3af9d7e 100644 --- a/_changelog-files/2021/2021-06-16-pipedrive-fix-table-rep-method.md +++ b/_changelog-files/2021/2021-06-16-pipedrive-fix-table-rep-method.md @@ -6,7 +6,7 @@ entry-type: "bug-fix" entry-category: "integration, documentation" connection-id: "pipedrive" connection-version: 1 -pull-request: "https://github.com/singer-io/tap-pipedrive/pull/90" +pull_request: "https://github.com/singer-io/tap-pipedrive/pull/90" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-06-16-pipedrive-remove-delete-logs.md b/_changelog-files/2021/2021-06-16-pipedrive-remove-delete-logs.md index feaa0db6a..85772eff4 100644 --- a/_changelog-files/2021/2021-06-16-pipedrive-remove-delete-logs.md +++ b/_changelog-files/2021/2021-06-16-pipedrive-remove-delete-logs.md @@ -6,7 +6,7 @@ entry-type: "removed" entry-category: "integration, documentation" connection-id: "pipedrive" connection-version: 1 -pull-request: "https://github.com/singer-io/tap-pipedrive/pull/90" +pull_request: "https://github.com/singer-io/tap-pipedrive/pull/90" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-06-17-yotpo-v1-error-refactoring.md b/_changelog-files/2021/2021-06-17-yotpo-v1-error-refactoring.md index 844591b54..172630d09 100644 --- a/_changelog-files/2021/2021-06-17-yotpo-v1-error-refactoring.md +++ b/_changelog-files/2021/2021-06-17-yotpo-v1-error-refactoring.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: "integration" connection-id: "yotpo" connection-version: 1 -pull-request: "https://github.com/singer-io/tap-yotpo/pull/20" +pull_request: "https://github.com/singer-io/tap-yotpo/pull/20" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-06-21-campaign-manager-api-upgrade.md b/_changelog-files/2021/2021-06-21-campaign-manager-api-upgrade.md index 72806caa7..05c8bd163 100644 --- a/_changelog-files/2021/2021-06-21-campaign-manager-api-upgrade.md +++ b/_changelog-files/2021/2021-06-21-campaign-manager-api-upgrade.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: "integration" connection-id: "campaign-manager" connection-version: 1 -pull-request: "https://github.com/singer-io/tap-doubleclick-campaign-manager/pull/20" +pull_request: "https://github.com/singer-io/tap-doubleclick-campaign-manager/pull/20" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-06-24-shopify-v1-plus-permissions.md b/_changelog-files/2021/2021-06-24-shopify-v1-plus-permissions.md index 0bf36a92b..a686ea93c 100644 --- a/_changelog-files/2021/2021-06-24-shopify-v1-plus-permissions.md +++ b/_changelog-files/2021/2021-06-24-shopify-v1-plus-permissions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: "integration, documentation" connection-id: "shopify" connection-version: "1" -pull-request: "https://github.com/stitchdata/docs/pull/644" +pull_request: "https://github.com/stitchdata/docs/pull/644" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-06-25-toggl-v1-update-base-urls.md b/_changelog-files/2021/2021-06-25-toggl-v1-update-base-urls.md index 018d27ae4..f9e1fa53f 100644 --- a/_changelog-files/2021/2021-06-25-toggl-v1-update-base-urls.md +++ b/_changelog-files/2021/2021-06-25-toggl-v1-update-base-urls.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: "integration" connection-id: toggl connection-version: 1 -pull-request: "https://github.com/singer-io/tap-toggl/pull/9" +pull_request: "https://github.com/singer-io/tap-toggl/pull/9" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-06-28-facebook-ads-v1-update-country-primary-key.md b/_changelog-files/2021/2021-06-28-facebook-ads-v1-update-country-primary-key.md index 5d5571aaf..df3958448 100644 --- a/_changelog-files/2021/2021-06-28-facebook-ads-v1-update-country-primary-key.md +++ b/_changelog-files/2021/2021-06-28-facebook-ads-v1-update-country-primary-key.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: "integration" connection-id: "facebook-ads" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-facebook/pull/154" +pull_request: "https://github.com/singer-io/tap-facebook/pull/154" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-06-28-github-v1-add-error-exception.md b/_changelog-files/2021/2021-06-28-github-v1-add-error-exception.md index 720f6ccc7..ef9c4ef41 100644 --- a/_changelog-files/2021/2021-06-28-github-v1-add-error-exception.md +++ b/_changelog-files/2021/2021-06-28-github-v1-add-error-exception.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: "integration" connection-id: "github" connection-version: 1 -pull-request: "https://github.com/singer-io/tap-github/pull/126" +pull_request: "https://github.com/singer-io/tap-github/pull/126" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-06-28-outreach-v1-new-name-field.md b/_changelog-files/2021/2021-06-28-outreach-v1-new-name-field.md index 140a2f84e..f2b4ff770 100644 --- a/_changelog-files/2021/2021-06-28-outreach-v1-new-name-field.md +++ b/_changelog-files/2021/2021-06-28-outreach-v1-new-name-field.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: "integration" connection-id: "outreach" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-outreach/pull/13" +pull_request: "https://github.com/singer-io/tap-outreach/pull/13" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-06-29-google-search-console-v1-empty-response-error-message.md b/_changelog-files/2021/2021-06-29-google-search-console-v1-empty-response-error-message.md index 8deeb3d2c..f1ffdbc4b 100644 --- a/_changelog-files/2021/2021-06-29-google-search-console-v1-empty-response-error-message.md +++ b/_changelog-files/2021/2021-06-29-google-search-console-v1-empty-response-error-message.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: "integration" connection-id: "google-search-console" connection-version: 1 -pull-request: "https://github.com/singer-io/tap-google-search-console/pull/21" +pull_request: "https://github.com/singer-io/tap-google-search-console/pull/21" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-06-30-chargebee-v1-new-jsondecode-error-handling.md b/_changelog-files/2021/2021-06-30-chargebee-v1-new-jsondecode-error-handling.md index 8cab55410..769c7fcc1 100644 --- a/_changelog-files/2021/2021-06-30-chargebee-v1-new-jsondecode-error-handling.md +++ b/_changelog-files/2021/2021-06-30-chargebee-v1-new-jsondecode-error-handling.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: "integration" connection-id: "chargebee" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-chargebee/pull/51/" +pull_request: "https://github.com/singer-io/tap-chargebee/pull/51/" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-06-30-chargebee-v1-new-price-tiers-attributes.md b/_changelog-files/2021/2021-06-30-chargebee-v1-new-price-tiers-attributes.md index c98f4f544..b8c3f0aaf 100644 --- a/_changelog-files/2021/2021-06-30-chargebee-v1-new-price-tiers-attributes.md +++ b/_changelog-files/2021/2021-06-30-chargebee-v1-new-price-tiers-attributes.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: "integration" connection-id: "chargebee" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-chargebee/pull/53" +pull_request: "https://github.com/singer-io/tap-chargebee/pull/53" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-06-30-chargebee-v1-remove-min-max-properties.md b/_changelog-files/2021/2021-06-30-chargebee-v1-remove-min-max-properties.md index 10f870e4d..6b43f64d6 100644 --- a/_changelog-files/2021/2021-06-30-chargebee-v1-remove-min-max-properties.md +++ b/_changelog-files/2021/2021-06-30-chargebee-v1-remove-min-max-properties.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: "integration" connection-id: "chargebee" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-chargebee/pull/45" +pull_request: "https://github.com/singer-io/tap-chargebee/pull/45" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-07-01-amazon-s3-csv-fix-empty-file-error.md b/_changelog-files/2021/2021-07-01-amazon-s3-csv-fix-empty-file-error.md index 5d806af4b..54ed8de8f 100644 --- a/_changelog-files/2021/2021-07-01-amazon-s3-csv-fix-empty-file-error.md +++ b/_changelog-files/2021/2021-07-01-amazon-s3-csv-fix-empty-file-error.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: "integration" connection-id: "amazon-s3-csv" connection-version: 1 -pull-request: "https://github.com/singer-io/tap-s3-csv/pull/38" +pull_request: "https://github.com/singer-io/tap-s3-csv/pull/38" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-07-08-postgresql-cloudsql-now-available.md b/_changelog-files/2021/2021-07-08-postgresql-cloudsql-now-available.md index b96127377..81ea2efb1 100644 --- a/_changelog-files/2021/2021-07-08-postgresql-cloudsql-now-available.md +++ b/_changelog-files/2021/2021-07-08-postgresql-cloudsql-now-available.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: "postgres" connection-version: "2" -# pull-request: "" +# pull_request: "" --- {% assign this-connection = site.database-integrations | find:"key","cloudsql-postgres-integration" %} diff --git a/_changelog-files/2021/2021-08-11-linkedin-ads-v1-automatic-replication-key.md b/_changelog-files/2021/2021-08-11-linkedin-ads-v1-automatic-replication-key.md index 227ed25c4..456caafbc 100644 --- a/_changelog-files/2021/2021-08-11-linkedin-ads-v1-automatic-replication-key.md +++ b/_changelog-files/2021/2021-08-11-linkedin-ads-v1-automatic-replication-key.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: linkedin-ads connection-version: 1 -pull-request: "https://github.com/singer-io/tap-linkedin-ads/pull/33" +pull_request: "https://github.com/singer-io/tap-linkedin-ads/pull/33" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-08-12-linkedin-ads-v1-validate-account.md b/_changelog-files/2021/2021-08-12-linkedin-ads-v1-validate-account.md index bdf1a3f3a..bc11f62fb 100644 --- a/_changelog-files/2021/2021-08-12-linkedin-ads-v1-validate-account.md +++ b/_changelog-files/2021/2021-08-12-linkedin-ads-v1-validate-account.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: linkedin-ads connection-version: 1 -pull-request: "https://github.com/singer-io/tap-linkedin-ads/pull/35" +pull_request: "https://github.com/singer-io/tap-linkedin-ads/pull/35" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-08-13-linkedin-ads-v1-error-handling-adcampaignsgroup.md b/_changelog-files/2021/2021-08-13-linkedin-ads-v1-error-handling-adcampaignsgroup.md index c5e5db1ae..5fb9339c8 100644 --- a/_changelog-files/2021/2021-08-13-linkedin-ads-v1-error-handling-adcampaignsgroup.md +++ b/_changelog-files/2021/2021-08-13-linkedin-ads-v1-error-handling-adcampaignsgroup.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: linkedin-ads connection-version: 1 -pull-request: "https://github.com/singer-io/tap-linkedin-ads/pull/28" +pull_request: "https://github.com/singer-io/tap-linkedin-ads/pull/28" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-09-27-crossbeam-new-integration.md b/_changelog-files/2021/2021-09-27-crossbeam-new-integration.md index 854042390..3108188cc 100644 --- a/_changelog-files/2021/2021-09-27-crossbeam-new-integration.md +++ b/_changelog-files/2021/2021-09-27-crossbeam-new-integration.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: "crossbeam" connection-version: "1" -# pull-request: "" UNCOMMENT IF THERE'S A PR +# pull_request: "" UNCOMMENT IF THERE'S A PR --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-10-27-mixpanel-v1-date-time-conversion-fix.md b/_changelog-files/2021/2021-10-27-mixpanel-v1-date-time-conversion-fix.md index 4d9c449dc..00bc771d8 100644 --- a/_changelog-files/2021/2021-10-27-mixpanel-v1-date-time-conversion-fix.md +++ b/_changelog-files/2021/2021-10-27-mixpanel-v1-date-time-conversion-fix.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: "mixpanel" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-mixpanel/pull/40" +pull_request: "https://github.com/singer-io/tap-mixpanel/pull/40" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-10-27-mixpanel-v1-switch-from-multipleof-to-singer-decimal.md b/_changelog-files/2021/2021-10-27-mixpanel-v1-switch-from-multipleof-to-singer-decimal.md index 1e2822649..2929c3828 100644 --- a/_changelog-files/2021/2021-10-27-mixpanel-v1-switch-from-multipleof-to-singer-decimal.md +++ b/_changelog-files/2021/2021-10-27-mixpanel-v1-switch-from-multipleof-to-singer-decimal.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "mixpanel" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-mixpanel/pull/38" +pull_request: "https://github.com/singer-io/tap-mixpanel/pull/38" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-10-27-mixpanel-v1-timezone-error-message.md b/_changelog-files/2021/2021-10-27-mixpanel-v1-timezone-error-message.md index 559f8ea28..31912d52e 100644 --- a/_changelog-files/2021/2021-10-27-mixpanel-v1-timezone-error-message.md +++ b/_changelog-files/2021/2021-10-27-mixpanel-v1-timezone-error-message.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "mixpanel" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-mixpanel/pull/35" +pull_request: "https://github.com/singer-io/tap-mixpanel/pull/35" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-10-28-salesforce-v1-increase-request-timeout.md b/_changelog-files/2021/2021-10-28-salesforce-v1-increase-request-timeout.md index c6586865e..849d460a2 100644 --- a/_changelog-files/2021/2021-10-28-salesforce-v1-increase-request-timeout.md +++ b/_changelog-files/2021/2021-10-28-salesforce-v1-increase-request-timeout.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "salesforce" connection-version: 1 -pull-request: "https://github.com/singer-io/tap-salesforce/pull/126" +pull_request: "https://github.com/singer-io/tap-salesforce/pull/126" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-10-29-typeform-v1-landings-pagination-indexerror.md b/_changelog-files/2021/2021-10-29-typeform-v1-landings-pagination-indexerror.md index 7169c126c..e3a71f973 100644 --- a/_changelog-files/2021/2021-10-29-typeform-v1-landings-pagination-indexerror.md +++ b/_changelog-files/2021/2021-10-29-typeform-v1-landings-pagination-indexerror.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: typeform connection-version: 1 -pull-request: "https://github.com/singer-io/tap-typeform/pull/51" +pull_request: "https://github.com/singer-io/tap-typeform/pull/51" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-10-29-typeform-v1-landings-pagination.md b/_changelog-files/2021/2021-10-29-typeform-v1-landings-pagination.md index 66f4f3daa..b8c3793d6 100644 --- a/_changelog-files/2021/2021-10-29-typeform-v1-landings-pagination.md +++ b/_changelog-files/2021/2021-10-29-typeform-v1-landings-pagination.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: typeform connection-version: 1 -pull-request: "https://github.com/singer-io/tap-typeform/pull/48" +pull_request: "https://github.com/singer-io/tap-typeform/pull/48" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-11-01-typeform-v1-retry-chunkedencodingerror.md b/_changelog-files/2021/2021-11-01-typeform-v1-retry-chunkedencodingerror.md index f74125600..a37299f48 100644 --- a/_changelog-files/2021/2021-11-01-typeform-v1-retry-chunkedencodingerror.md +++ b/_changelog-files/2021/2021-11-01-typeform-v1-retry-chunkedencodingerror.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: typeform connection-version: 1 -pull-request: "https://github.com/singer-io/tap-typeform/pull/52" +pull_request: "https://github.com/singer-io/tap-typeform/pull/52" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-11-02-dynamodb-v1-widen-decimal-precision.md b/_changelog-files/2021/2021-11-02-dynamodb-v1-widen-decimal-precision.md index 6de3541cf..369039df4 100644 --- a/_changelog-files/2021/2021-11-02-dynamodb-v1-widen-decimal-precision.md +++ b/_changelog-files/2021/2021-11-02-dynamodb-v1-widen-decimal-precision.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: amazon-dynamodb connection-version: 1 -pull-request: "https://github.com/singer-io/tap-dynamodb/pull/33" +pull_request: "https://github.com/singer-io/tap-dynamodb/pull/33" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-11-02-facebook-ads-v1-rety-job-polling.md b/_changelog-files/2021/2021-11-02-facebook-ads-v1-rety-job-polling.md index df40e38aa..be819f72c 100644 --- a/_changelog-files/2021/2021-11-02-facebook-ads-v1-rety-job-polling.md +++ b/_changelog-files/2021/2021-11-02-facebook-ads-v1-rety-job-polling.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "facebook-ads" connection-version: "1" -pull-request: "https://github.com/singer-io/tap-facebook/pull/174" +pull_request: "https://github.com/singer-io/tap-facebook/pull/174" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-11-03-mambu-v2-new-gl_journal_entries-replication-key.md b/_changelog-files/2021/2021-11-03-mambu-v2-new-gl_journal_entries-replication-key.md index 30947be13..cf6aa5274 100644 --- a/_changelog-files/2021/2021-11-03-mambu-v2-new-gl_journal_entries-replication-key.md +++ b/_changelog-files/2021/2021-11-03-mambu-v2-new-gl_journal_entries-replication-key.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "mambu" connection-version: "2" -pull-request: "https://github.com/singer-io/tap-mambu/pull/56" +pull_request: "https://github.com/singer-io/tap-mambu/pull/56" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-11-09-shopify-v1-new-events-stream.md b/_changelog-files/2021/2021-11-09-shopify-v1-new-events-stream.md index 53e69eaf7..4ba0b97f9 100644 --- a/_changelog-files/2021/2021-11-09-shopify-v1-new-events-stream.md +++ b/_changelog-files/2021/2021-11-09-shopify-v1-new-events-stream.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: shopify connection-version: 1 -pull-request: "https://github.com/singer-io/tap-shopify/pull/127" +pull_request: "https://github.com/singer-io/tap-shopify/pull/127" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-11-29-mambu-v2-audit_trail-duplicates.md b/_changelog-files/2021/2021-11-29-mambu-v2-audit_trail-duplicates.md index f531e7986..4d9456079 100644 --- a/_changelog-files/2021/2021-11-29-mambu-v2-audit_trail-duplicates.md +++ b/_changelog-files/2021/2021-11-29-mambu-v2-audit_trail-duplicates.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: "mambu" connection-version: "2" -pull-request: "https://github.com/singer-io/tap-mambu/pull/59" +pull_request: "https://github.com/singer-io/tap-mambu/pull/59" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-11-29-mambu-v2-original_account_key-field.md b/_changelog-files/2021/2021-11-29-mambu-v2-original_account_key-field.md index 91d27cda2..6f4046309 100644 --- a/_changelog-files/2021/2021-11-29-mambu-v2-original_account_key-field.md +++ b/_changelog-files/2021/2021-11-29-mambu-v2-original_account_key-field.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "mambu" connection-version: "2" -pull-request: "https://github.com/singer-io/tap-mambu/pull/60" +pull_request: "https://github.com/singer-io/tap-mambu/pull/60" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-11-30-github-v1-parent-field-object.md b/_changelog-files/2021/2021-11-30-github-v1-parent-field-object.md index b96608b31..36004eec5 100644 --- a/_changelog-files/2021/2021-11-30-github-v1-parent-field-object.md +++ b/_changelog-files/2021/2021-11-30-github-v1-parent-field-object.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: github connection-version: 1 -pull-request: "https://github.com/singer-io/tap-github/pull/149" +pull_request: "https://github.com/singer-io/tap-github/pull/149" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-11-30-zendesk-v1-5xx-errors.md b/_changelog-files/2021/2021-11-30-zendesk-v1-5xx-errors.md index 193feb84d..c23a88061 100644 --- a/_changelog-files/2021/2021-11-30-zendesk-v1-5xx-errors.md +++ b/_changelog-files/2021/2021-11-30-zendesk-v1-5xx-errors.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: zendesk connection-version: 1 -pull-request: "https://github.com/singer-io/tap-zendesk/pull/93" +pull_request: "https://github.com/singer-io/tap-zendesk/pull/93" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-12-01-harvest-v2-request-timeout.md b/_changelog-files/2021/2021-12-01-harvest-v2-request-timeout.md index 6c35bdbf0..5d6686dfa 100644 --- a/_changelog-files/2021/2021-12-01-harvest-v2-request-timeout.md +++ b/_changelog-files/2021/2021-12-01-harvest-v2-request-timeout.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: harvest connection-version: 2 -pull-request: "https://github.com/singer-io/tap-harvest/pull/51" +pull_request: "https://github.com/singer-io/tap-harvest/pull/51" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-12-01-recharge-v1-request-timeout.md b/_changelog-files/2021/2021-12-01-recharge-v1-request-timeout.md index be34f6649..c1c5f9df9 100644 --- a/_changelog-files/2021/2021-12-01-recharge-v1-request-timeout.md +++ b/_changelog-files/2021/2021-12-01-recharge-v1-request-timeout.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: recharge connection-version: 1 -pull-request: "https://github.com/singer-io/tap-recharge/pull/19" +pull_request: "https://github.com/singer-io/tap-recharge/pull/19" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-12-02-github-v1-request-timeout.md b/_changelog-files/2021/2021-12-02-github-v1-request-timeout.md index 8f18d0d4b..e7405925a 100644 --- a/_changelog-files/2021/2021-12-02-github-v1-request-timeout.md +++ b/_changelog-files/2021/2021-12-02-github-v1-request-timeout.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: github connection-version: 1 -pull-request: "https://github.com/singer-io/tap-github/pull/147" +pull_request: "https://github.com/singer-io/tap-github/pull/147" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-12-02-klaviyo-v1-request-timeout.md b/_changelog-files/2021/2021-12-02-klaviyo-v1-request-timeout.md index 4bc14e17d..a30ee5be1 100644 --- a/_changelog-files/2021/2021-12-02-klaviyo-v1-request-timeout.md +++ b/_changelog-files/2021/2021-12-02-klaviyo-v1-request-timeout.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: klaviyo connection-version: 1 -pull-request: "https://github.com/singer-io/tap-klaviyo/pull/47" +pull_request: "https://github.com/singer-io/tap-klaviyo/pull/47" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-12-02-zendesk-v1-503-error.md b/_changelog-files/2021/2021-12-02-zendesk-v1-503-error.md index 0b2a19f08..b60af6da4 100644 --- a/_changelog-files/2021/2021-12-02-zendesk-v1-503-error.md +++ b/_changelog-files/2021/2021-12-02-zendesk-v1-503-error.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: zendesk connection-version: 1 -pull-request: "https://github.com/singer-io/tap-zendesk/pull/95" +pull_request: "https://github.com/singer-io/tap-zendesk/pull/95" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-12-03-yotpo-v1-request-timeout.md b/_changelog-files/2021/2021-12-03-yotpo-v1-request-timeout.md index 978f67383..f7ac89ea7 100644 --- a/_changelog-files/2021/2021-12-03-yotpo-v1-request-timeout.md +++ b/_changelog-files/2021/2021-12-03-yotpo-v1-request-timeout.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: yotpo connection-version: 1 -pull-request: "https://github.com/singer-io/tap-yotpo/pull/23" +pull_request: "https://github.com/singer-io/tap-yotpo/pull/23" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-12-06-mixpanel-v1-request-timeout.md b/_changelog-files/2021/2021-12-06-mixpanel-v1-request-timeout.md index a91e4347a..bc1cf18df 100644 --- a/_changelog-files/2021/2021-12-06-mixpanel-v1-request-timeout.md +++ b/_changelog-files/2021/2021-12-06-mixpanel-v1-request-timeout.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mixpanel connection-version: 1 -pull-request: "https://github.com/singer-io/tap-mixpanel/pull/44" +pull_request: "https://github.com/singer-io/tap-mixpanel/pull/44" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-12-07-zendesk-v1-request-timeout.md b/_changelog-files/2021/2021-12-07-zendesk-v1-request-timeout.md index 833e5d6f9..519ce4c0a 100644 --- a/_changelog-files/2021/2021-12-07-zendesk-v1-request-timeout.md +++ b/_changelog-files/2021/2021-12-07-zendesk-v1-request-timeout.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: zendesk connection-version: 1 -pull-request: "https://github.com/singer-io/tap-zendesk/pull/79" +pull_request: "https://github.com/singer-io/tap-zendesk/pull/79" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-01-05-intercom-v1-added-missing-field-contact.md b/_changelog-files/2022/2022-01-05-intercom-v1-added-missing-field-contact.md index 30d2ccc80..cfb8bf4a3 100644 --- a/_changelog-files/2022/2022-01-05-intercom-v1-added-missing-field-contact.md +++ b/_changelog-files/2022/2022-01-05-intercom-v1-added-missing-field-contact.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: intercom connection-version: 1 -pull-request: "https://github.com/singer-io/tap-intercom/pull/43" +pull_request: "https://github.com/singer-io/tap-intercom/pull/43" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-01-05-intercom-v1-fix-breaking-changes-and-bookmark.md b/_changelog-files/2022/2022-01-05-intercom-v1-fix-breaking-changes-and-bookmark.md index ba3a4b917..b90bee9a8 100644 --- a/_changelog-files/2022/2022-01-05-intercom-v1-fix-breaking-changes-and-bookmark.md +++ b/_changelog-files/2022/2022-01-05-intercom-v1-fix-breaking-changes-and-bookmark.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: intercom connection-version: 1 -pull-request: "https://github.com/singer-io/tap-intercom/pull/45" +pull_request: "https://github.com/singer-io/tap-intercom/pull/45" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-01-05-intercom-v1-improved-logger-messages.md b/_changelog-files/2022/2022-01-05-intercom-v1-improved-logger-messages.md index 84ae1b857..fae85b6b6 100644 --- a/_changelog-files/2022/2022-01-05-intercom-v1-improved-logger-messages.md +++ b/_changelog-files/2022/2022-01-05-intercom-v1-improved-logger-messages.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: intercom connection-version: 1 -pull-request: "https://github.com/singer-io/tap-intercom/pull/46" +pull_request: "https://github.com/singer-io/tap-intercom/pull/46" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-01-05-intercom-v1-revert-companies-incremental.md b/_changelog-files/2022/2022-01-05-intercom-v1-revert-companies-incremental.md index 39a6ec81a..c2e22bdbc 100644 --- a/_changelog-files/2022/2022-01-05-intercom-v1-revert-companies-incremental.md +++ b/_changelog-files/2022/2022-01-05-intercom-v1-revert-companies-incremental.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: intercom connection-version: 1 -pull-request: "https://github.com/singer-io/tap-intercom/pull/44" +pull_request: "https://github.com/singer-io/tap-intercom/pull/44" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-01-05-typeform-v1-request-timeout.md b/_changelog-files/2022/2022-01-05-typeform-v1-request-timeout.md index a2e06917c..9c96f9717 100644 --- a/_changelog-files/2022/2022-01-05-typeform-v1-request-timeout.md +++ b/_changelog-files/2022/2022-01-05-typeform-v1-request-timeout.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: typeform connection-version: 1 -pull-request: "https://github.com/singer-io/tap-typeform/pull/55" +pull_request: "https://github.com/singer-io/tap-typeform/pull/55" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-01-06-google-sheets-v1-error-descriptions.md b/_changelog-files/2022/2022-01-06-google-sheets-v1-error-descriptions.md index 7d9c7a4e5..69be0cd73 100644 --- a/_changelog-files/2022/2022-01-06-google-sheets-v1-error-descriptions.md +++ b/_changelog-files/2022/2022-01-06-google-sheets-v1-error-descriptions.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: google-sheets connection-version: 1 -pull-request: "https://github.com/singer-io/tap-google-sheets/pull/59" +pull_request: "https://github.com/singer-io/tap-google-sheets/pull/59" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-01-10-linkedin-ads-v1-request-timeout.md b/_changelog-files/2022/2022-01-10-linkedin-ads-v1-request-timeout.md index 6081cbbf2..0554f6995 100644 --- a/_changelog-files/2022/2022-01-10-linkedin-ads-v1-request-timeout.md +++ b/_changelog-files/2022/2022-01-10-linkedin-ads-v1-request-timeout.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: linkedin-ads connection-version: 1 -pull-request: "https://github.com/singer-io/tap-linkedin-ads/pull/36" +pull_request: "https://github.com/singer-io/tap-linkedin-ads/pull/36" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-01-10-pendo-v1-events-date-window.md b/_changelog-files/2022/2022-01-10-pendo-v1-events-date-window.md index 19bf03de4..6d0ecda05 100644 --- a/_changelog-files/2022/2022-01-10-pendo-v1-events-date-window.md +++ b/_changelog-files/2022/2022-01-10-pendo-v1-events-date-window.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: pendo connection-version: 1 -pull-request: "https://github.com/singer-io/tap-pendo/pull/89" +pull_request: "https://github.com/singer-io/tap-pendo/pull/89" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-01-11-sftp-v1-request-timeout.md b/_changelog-files/2022/2022-01-11-sftp-v1-request-timeout.md index 521bba587..1bc25a2ac 100644 --- a/_changelog-files/2022/2022-01-11-sftp-v1-request-timeout.md +++ b/_changelog-files/2022/2022-01-11-sftp-v1-request-timeout.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: sftp connection-version: 1 -pull-request: "https://github.com/singer-io/tap-sftp/pull/36" +pull_request: "https://github.com/singer-io/tap-sftp/pull/36" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-01-13-shopify-v1-request-timeout.md b/_changelog-files/2022/2022-01-13-shopify-v1-request-timeout.md index 9883e5436..d779de600 100644 --- a/_changelog-files/2022/2022-01-13-shopify-v1-request-timeout.md +++ b/_changelog-files/2022/2022-01-13-shopify-v1-request-timeout.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: shopify connection-version: 1 -pull-request: "https://github.com/singer-io/tap-shopify/pull/129" +pull_request: "https://github.com/singer-io/tap-shopify/pull/129" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-01-25-xero-v1-change-endpoint-check-access.md b/_changelog-files/2022/2022-01-25-xero-v1-change-endpoint-check-access.md index 460e206f7..db981e59f 100644 --- a/_changelog-files/2022/2022-01-25-xero-v1-change-endpoint-check-access.md +++ b/_changelog-files/2022/2022-01-25-xero-v1-change-endpoint-check-access.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: xero connection-version: 1 -pull-request: "https://github.com/singer-io/tap-xero/pull/98" +pull_request: "https://github.com/singer-io/tap-xero/pull/98" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-01-28-mambu-v2-new-loan-accounts-bookmark.md b/_changelog-files/2022/2022-01-28-mambu-v2-new-loan-accounts-bookmark.md index 300cd2d8e..d2f80542a 100644 --- a/_changelog-files/2022/2022-01-28-mambu-v2-new-loan-accounts-bookmark.md +++ b/_changelog-files/2022/2022-01-28-mambu-v2-new-loan-accounts-bookmark.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mambu connection-version: 2 -pull-request: "https://github.com/singer-io/tap-mambu/pull/62" +pull_request: "https://github.com/singer-io/tap-mambu/pull/62" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-02-02-bing-ads-v2-microsoft-identity-platform.md b/_changelog-files/2022/2022-02-02-bing-ads-v2-microsoft-identity-platform.md index 5f2cf673e..4904df41f 100644 --- a/_changelog-files/2022/2022-02-02-bing-ads-v2-microsoft-identity-platform.md +++ b/_changelog-files/2022/2022-02-02-bing-ads-v2-microsoft-identity-platform.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: bing-ads connection-version: 2 -pull-request: "https://github.com/singer-io/tap-bing-ads/pull/99" +pull_request: "https://github.com/singer-io/tap-bing-ads/pull/99" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-02-11-mambu-v2-journals-missing-entries.md b/_changelog-files/2022/2022-02-11-mambu-v2-journals-missing-entries.md index 67e1bf8fd..d23a29249 100644 --- a/_changelog-files/2022/2022-02-11-mambu-v2-journals-missing-entries.md +++ b/_changelog-files/2022/2022-02-11-mambu-v2-journals-missing-entries.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: mambu connection-version: 2 -pull-request: "https://github.com/singer-io/tap-mambu/pull/66" +pull_request: "https://github.com/singer-io/tap-mambu/pull/66" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-02-15-jira-v2-add-request-timeout.md b/_changelog-files/2022/2022-02-15-jira-v2-add-request-timeout.md index bd036c5da..28ad52e50 100644 --- a/_changelog-files/2022/2022-02-15-jira-v2-add-request-timeout.md +++ b/_changelog-files/2022/2022-02-15-jira-v2-add-request-timeout.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: jira connection-version: 2 -pull-request: "https://github.com/singer-io/tap-jira/pull/71" +pull_request: "https://github.com/singer-io/tap-jira/pull/71" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-02-17-stripe-v1-change-events-date-window.md b/_changelog-files/2022/2022-02-17-stripe-v1-change-events-date-window.md index cf92af7af..0cdc8ad83 100644 --- a/_changelog-files/2022/2022-02-17-stripe-v1-change-events-date-window.md +++ b/_changelog-files/2022/2022-02-17-stripe-v1-change-events-date-window.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: stripe connection-version: 1 -pull-request: "https://github.com/singer-io/tap-stripe/pull/120" +pull_request: "https://github.com/singer-io/tap-stripe/pull/120" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-02-23-github-v1-update-team-members-pk.md b/_changelog-files/2022/2022-02-23-github-v1-update-team-members-pk.md index 22db7531e..ef9d112fa 100644 --- a/_changelog-files/2022/2022-02-23-github-v1-update-team-members-pk.md +++ b/_changelog-files/2022/2022-02-23-github-v1-update-team-members-pk.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: github connection-version: 1 -pull-request: "https://github.com/singer-io/tap-github/pull/157" +pull_request: "https://github.com/singer-io/tap-github/pull/157" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-03-01-mambu-v2-misc-updates-bug-fixes.md b/_changelog-files/2022/2022-03-01-mambu-v2-misc-updates-bug-fixes.md index d1700c828..b67889a90 100644 --- a/_changelog-files/2022/2022-03-01-mambu-v2-misc-updates-bug-fixes.md +++ b/_changelog-files/2022/2022-03-01-mambu-v2-misc-updates-bug-fixes.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mambu connection-version: 2 -pull-request: "https://github.com/singer-io/tap-mambu/pull/68" +pull_request: "https://github.com/singer-io/tap-mambu/pull/68" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-03-04-activecampaign-v1-forms-transformation-error.md b/_changelog-files/2022/2022-03-04-activecampaign-v1-forms-transformation-error.md index a526c54ad..a4aa5d05d 100644 --- a/_changelog-files/2022/2022-03-04-activecampaign-v1-forms-transformation-error.md +++ b/_changelog-files/2022/2022-03-04-activecampaign-v1-forms-transformation-error.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: activecampaign connection-version: 1 -pull-request: "https://github.com/singer-io/tap-activecampaign/pull/22" +pull_request: "https://github.com/singer-io/tap-activecampaign/pull/22" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-03-04-mambu-v2-new-fields-refactoring.md b/_changelog-files/2022/2022-03-04-mambu-v2-new-fields-refactoring.md index 4f854e97d..477f108ff 100644 --- a/_changelog-files/2022/2022-03-04-mambu-v2-new-fields-refactoring.md +++ b/_changelog-files/2022/2022-03-04-mambu-v2-new-fields-refactoring.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mambu connection-version: 2 -pull-request: "https://github.com/singer-io/tap-mambu/pull/70" +pull_request: "https://github.com/singer-io/tap-mambu/pull/70" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-03-22-mambu-v2-refactor-seven-streams.md b/_changelog-files/2022/2022-03-22-mambu-v2-refactor-seven-streams.md index 36dbf0608..bfb38d32f 100644 --- a/_changelog-files/2022/2022-03-22-mambu-v2-refactor-seven-streams.md +++ b/_changelog-files/2022/2022-03-22-mambu-v2-refactor-seven-streams.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mambu connection-version: 2 -pull-request: "https://github.com/singer-io/tap-mambu/pull/72" +pull_request: "https://github.com/singer-io/tap-mambu/pull/72" --- We've refactored seven more of our {{ this-connection.display_name }} (v{{ this-connection.this-version }}) integration streams. See the list below for the streams: diff --git a/_changelog-files/2022/2022-04-08-mambu-v2-refactoring-additional-fields-streams.md b/_changelog-files/2022/2022-04-08-mambu-v2-refactoring-additional-fields-streams.md index 9a5a5c670..b3214ab1e 100644 --- a/_changelog-files/2022/2022-04-08-mambu-v2-refactoring-additional-fields-streams.md +++ b/_changelog-files/2022/2022-04-08-mambu-v2-refactoring-additional-fields-streams.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mambu connection-version: 2 -pull-request: "https://github.com/singer-io/tap-mambu/pull/74" +pull_request: "https://github.com/singer-io/tap-mambu/pull/74" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-04-22-google-ads-v1-table-updates-call-details.md b/_changelog-files/2022/2022-04-22-google-ads-v1-table-updates-call-details.md index 0bf0fbe7b..487684171 100644 --- a/_changelog-files/2022/2022-04-22-google-ads-v1-table-updates-call-details.md +++ b/_changelog-files/2022/2022-04-22-google-ads-v1-table-updates-call-details.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-ads connection-version: 1 -pull-request: "https://github.com/singer-io/tap-google-ads/pull/49" +pull_request: "https://github.com/singer-io/tap-google-ads/pull/49" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-04-25-google-ads-v1-labels-table.md b/_changelog-files/2022/2022-04-25-google-ads-v1-labels-table.md index 595be0d8a..5d27209b8 100644 --- a/_changelog-files/2022/2022-04-25-google-ads-v1-labels-table.md +++ b/_changelog-files/2022/2022-04-25-google-ads-v1-labels-table.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-ads connection-version: 1 -pull-request: "https://github.com/singer-io/tap-google-ads/pull/53" +pull_request: "https://github.com/singer-io/tap-google-ads/pull/53" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-04-25-pendo-v1-eu-endpoint-support.md b/_changelog-files/2022/2022-04-25-pendo-v1-eu-endpoint-support.md index 44983926c..f3ae8086c 100644 --- a/_changelog-files/2022/2022-04-25-pendo-v1-eu-endpoint-support.md +++ b/_changelog-files/2022/2022-04-25-pendo-v1-eu-endpoint-support.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: pendo connection-version: 1 -pull-request: "https://github.com/singer-io/tap-pendo/pull/95" +pull_request: "https://github.com/singer-io/tap-pendo/pull/95" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-04-27-zendesk-chat-v1-add-chat-webpath-array.md b/_changelog-files/2022/2022-04-27-zendesk-chat-v1-add-chat-webpath-array.md index 20acf56b3..c4086a4bd 100644 --- a/_changelog-files/2022/2022-04-27-zendesk-chat-v1-add-chat-webpath-array.md +++ b/_changelog-files/2022/2022-04-27-zendesk-chat-v1-add-chat-webpath-array.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: zendesk-chat connection-version: 1 -pull-request: "https://github.com/singer-io/tap-zendesk-chat/pull/41" +pull_request: "https://github.com/singer-io/tap-zendesk-chat/pull/41" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-04-28-pendo-v1-integer-string-types.md b/_changelog-files/2022/2022-04-28-pendo-v1-integer-string-types.md index 1af231164..3558f34e1 100644 --- a/_changelog-files/2022/2022-04-28-pendo-v1-integer-string-types.md +++ b/_changelog-files/2022/2022-04-28-pendo-v1-integer-string-types.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: pendo connection-version: 1 -pull-request: "https://github.com/singer-io/tap-pendo/pull/97" +pull_request: "https://github.com/singer-io/tap-pendo/pull/97" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-04-29-shopify-v1-fix-mismatched-schema.md b/_changelog-files/2022/2022-04-29-shopify-v1-fix-mismatched-schema.md index 2a2d98106..4bd710d44 100644 --- a/_changelog-files/2022/2022-04-29-shopify-v1-fix-mismatched-schema.md +++ b/_changelog-files/2022/2022-04-29-shopify-v1-fix-mismatched-schema.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: shopify connection-version: 1 -pull-request: "https://github.com/singer-io/tap-shopify/pull/149" +pull_request: "https://github.com/singer-io/tap-shopify/pull/149" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-05-02-closeio-v1-date-window-size.md b/_changelog-files/2022/2022-05-02-closeio-v1-date-window-size.md index 83b79f4be..0c3acfad0 100644 --- a/_changelog-files/2022/2022-05-02-closeio-v1-date-window-size.md +++ b/_changelog-files/2022/2022-05-02-closeio-v1-date-window-size.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: closeio connection-version: 1 -pull-request: "https://github.com/singer-io/tap-closeio/pull/27" +pull_request: "https://github.com/singer-io/tap-closeio/pull/27" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-05-09-google-ads-v1-implement-automatic-keys.md b/_changelog-files/2022/2022-05-09-google-ads-v1-implement-automatic-keys.md index 7de31e2f7..8657d225d 100644 --- a/_changelog-files/2022/2022-05-09-google-ads-v1-implement-automatic-keys.md +++ b/_changelog-files/2022/2022-05-09-google-ads-v1-implement-automatic-keys.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-ads connection-version: 1 -pull-request: "https://github.com/singer-io/tap-google-ads/pull/55" +pull_request: "https://github.com/singer-io/tap-google-ads/pull/55" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-05-11-google-ads-v1-new-tables-catalog.md b/_changelog-files/2022/2022-05-11-google-ads-v1-new-tables-catalog.md index 1e94d2bcc..a5d2322d4 100644 --- a/_changelog-files/2022/2022-05-11-google-ads-v1-new-tables-catalog.md +++ b/_changelog-files/2022/2022-05-11-google-ads-v1-new-tables-catalog.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-ads connection-version: 1 -pull-request: "https://github.com/singer-io/tap-google-ads/pull/58" +pull_request: "https://github.com/singer-io/tap-google-ads/pull/58" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-05-17-typeform-v1-landings-incremental.md b/_changelog-files/2022/2022-05-17-typeform-v1-landings-incremental.md index b6f00f2b3..49144415c 100644 --- a/_changelog-files/2022/2022-05-17-typeform-v1-landings-incremental.md +++ b/_changelog-files/2022/2022-05-17-typeform-v1-landings-incremental.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: typeform connection-version: 1 -pull-request: "https://github.com/singer-io/tap-typeform/pull/58" +pull_request: "https://github.com/singer-io/tap-typeform/pull/58" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-05-20-jira-v2-date-format-transformation.md b/_changelog-files/2022/2022-05-20-jira-v2-date-format-transformation.md index 09916e04c..a6d531287 100644 --- a/_changelog-files/2022/2022-05-20-jira-v2-date-format-transformation.md +++ b/_changelog-files/2022/2022-05-20-jira-v2-date-format-transformation.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: jira connection-version: 2 -pull-request: "https://github.com/singer-io/tap-jira/pull/84" +pull_request: "https://github.com/singer-io/tap-jira/pull/84" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-06-01-jira-v2-updated-readme.md b/_changelog-files/2022/2022-06-01-jira-v2-updated-readme.md index e84260451..e54f8034f 100644 --- a/_changelog-files/2022/2022-06-01-jira-v2-updated-readme.md +++ b/_changelog-files/2022/2022-06-01-jira-v2-updated-readme.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: jira connection-version: 2 -pull-request: "https://github.com/singer-io/tap-jira/pull/88" +pull_request: "https://github.com/singer-io/tap-jira/pull/88" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-06-01-yotpo-v1-status-code-500.md b/_changelog-files/2022/2022-06-01-yotpo-v1-status-code-500.md index 0aff4bb6c..50accacf0 100644 --- a/_changelog-files/2022/2022-06-01-yotpo-v1-status-code-500.md +++ b/_changelog-files/2022/2022-06-01-yotpo-v1-status-code-500.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: yotpo connection-version: 1 -pull-request: "https://github.com/singer-io/tap-yotpo/pull/31" +pull_request: "https://github.com/singer-io/tap-yotpo/pull/31" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-06-15-facebook-v1-api-v13.md b/_changelog-files/2022/2022-06-15-facebook-v1-api-v13.md index 5a0608ad1..739a01bcd 100644 --- a/_changelog-files/2022/2022-06-15-facebook-v1-api-v13.md +++ b/_changelog-files/2022/2022-06-15-facebook-v1-api-v13.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: facebook-ads connection-version: 1 -pull-request: "https://github.com/singer-io/tap-facebook/pull/191" +pull_request: "https://github.com/singer-io/tap-facebook/pull/191" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-06-23-linkedin-ads-v1-access-token-configuration.md b/_changelog-files/2022/2022-06-23-linkedin-ads-v1-access-token-configuration.md index 706347dba..dfc7f9e27 100644 --- a/_changelog-files/2022/2022-06-23-linkedin-ads-v1-access-token-configuration.md +++ b/_changelog-files/2022/2022-06-23-linkedin-ads-v1-access-token-configuration.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: linkedin-ads connection-version: 1 -pull-request: "https://github.com/singer-io/tap-linkedin-ads/pull/43" +pull_request: "https://github.com/singer-io/tap-linkedin-ads/pull/43" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-06-25-yotpo-v1-product-endpoint-deprecation.md b/_changelog-files/2022/2022-06-25-yotpo-v1-product-endpoint-deprecation.md index 9595daa3a..429f0a47b 100644 --- a/_changelog-files/2022/2022-06-25-yotpo-v1-product-endpoint-deprecation.md +++ b/_changelog-files/2022/2022-06-25-yotpo-v1-product-endpoint-deprecation.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: yotpo connection-version: 1 -pull-request: "https://github.com/singer-io/tap-yotpo/pull/33" +pull_request: "https://github.com/singer-io/tap-yotpo/pull/33" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-06-30-google-ads-v1-request-timeout-search.md b/_changelog-files/2022/2022-06-30-google-ads-v1-request-timeout-search.md index 7f78fef3d..620ab89b8 100644 --- a/_changelog-files/2022/2022-06-30-google-ads-v1-request-timeout-search.md +++ b/_changelog-files/2022/2022-06-30-google-ads-v1-request-timeout-search.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-ads connection-version: 1 -pull-request: "https://github.com/singer-io/tap-google-ads/pull/64" +pull_request: "https://github.com/singer-io/tap-google-ads/pull/64" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-07-01-mongodb-v2-pymongo-upgrade.md b/_changelog-files/2022/2022-07-01-mongodb-v2-pymongo-upgrade.md index 5f37cbb25..8d7206e77 100644 --- a/_changelog-files/2022/2022-07-01-mongodb-v2-pymongo-upgrade.md +++ b/_changelog-files/2022/2022-07-01-mongodb-v2-pymongo-upgrade.md @@ -6,6 +6,6 @@ entry-type: improvement entry-category: integration connection-id: mongodb connection-version: 2 -pull-request: "https://github.com/singer-io/tap-mongodb/pull/81" +pull_request: "https://github.com/singer-io/tap-mongodb/pull/81" --- We've upgraded our {{ this-connection.display_name }} (v{{ this-connection.this-version }}) database integration's PyMongo version to 3.12.3! This version supports {{ this-connection.display_name }} `2.6`, `3.0`, `3.2`, `3.4`, `3.6`, `4.0`, `4.2`, `4.4`, and `5.0`. \ No newline at end of file diff --git a/_changelog-files/2022/2022-07-05-google-ads-v1-add-configurable-limits.md b/_changelog-files/2022/2022-07-05-google-ads-v1-add-configurable-limits.md index 77645c49b..ca6c5941e 100644 --- a/_changelog-files/2022/2022-07-05-google-ads-v1-add-configurable-limits.md +++ b/_changelog-files/2022/2022-07-05-google-ads-v1-add-configurable-limits.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-ads connection-version: 1 -pull-request: "https://github.com/singer-io/tap-google-ads/pull/68" +pull_request: "https://github.com/singer-io/tap-google-ads/pull/68" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-07-20-workday-raas-v1-boolean-fix.md b/_changelog-files/2022/2022-07-20-workday-raas-v1-boolean-fix.md index 3d5dd6dac..d1477b124 100644 --- a/_changelog-files/2022/2022-07-20-workday-raas-v1-boolean-fix.md +++ b/_changelog-files/2022/2022-07-20-workday-raas-v1-boolean-fix.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: workday-raas connection-version: 1 -pull-request: "https://github.com/singer-io/tap-workday-raas/pull/10" +pull_request: "https://github.com/singer-io/tap-workday-raas/pull/10" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-07-25-stripe-v2-open-beta.md b/_changelog-files/2022/2022-07-25-stripe-v2-open-beta.md index 0861e548c..34e0a6708 100644 --- a/_changelog-files/2022/2022-07-25-stripe-v2-open-beta.md +++ b/_changelog-files/2022/2022-07-25-stripe-v2-open-beta.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: "stripe" connection-version: "2" -#pull-request: "https://github.com/singer-io/tap-stripe/blob/master/CHANGELOG.md" +#pull_request: "https://github.com/singer-io/tap-stripe/blob/master/CHANGELOG.md" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-07-29-new-integrations-dixa.md b/_changelog-files/2022/2022-07-29-new-integrations-dixa.md index 941a82ffc..58118036b 100644 --- a/_changelog-files/2022/2022-07-29-new-integrations-dixa.md +++ b/_changelog-files/2022/2022-07-29-new-integrations-dixa.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: "dixa" connection-version: "1" -# pull-request: "" UNCOMMENT IF THERE'S A PR +# pull_request: "" UNCOMMENT IF THERE'S A PR --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-07-29-twitter-ads-v1-resolve-connectionerror.md b/_changelog-files/2022/2022-07-29-twitter-ads-v1-resolve-connectionerror.md index d78495407..10e5f25f1 100644 --- a/_changelog-files/2022/2022-07-29-twitter-ads-v1-resolve-connectionerror.md +++ b/_changelog-files/2022/2022-07-29-twitter-ads-v1-resolve-connectionerror.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: twitter-ads connection-version: 1 -pull-request: "https://github.com/singer-io/tap-twitter-ads/pull/32" +pull_request: "https://github.com/singer-io/tap-twitter-ads/pull/32" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-07-30-dixa-v1-expand-activity-logs.md b/_changelog-files/2022/2022-07-30-dixa-v1-expand-activity-logs.md index b99cac3f7..64aa80317 100644 --- a/_changelog-files/2022/2022-07-30-dixa-v1-expand-activity-logs.md +++ b/_changelog-files/2022/2022-07-30-dixa-v1-expand-activity-logs.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: dixa connection-version: 1 -pull-request: "https://github.com/singer-io/tap-dixa/pull/14" +pull_request: "https://github.com/singer-io/tap-dixa/pull/14" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-08-09-pipedrive-v1-handle-new-structure-for-users-stream.md b/_changelog-files/2022/2022-08-09-pipedrive-v1-handle-new-structure-for-users-stream.md index bb6cc84a0..21d366c0b 100644 --- a/_changelog-files/2022/2022-08-09-pipedrive-v1-handle-new-structure-for-users-stream.md +++ b/_changelog-files/2022/2022-08-09-pipedrive-v1-handle-new-structure-for-users-stream.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: pipedrive connection-version: 1 -pull-request: "https://github.com/singer-io/tap-pipedrive/pull/119" +pull_request: "https://github.com/singer-io/tap-pipedrive/pull/119" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-08-11-codat-v1-update-key-for-company-stream.md b/_changelog-files/2022/2022-08-11-codat-v1-update-key-for-company-stream.md index d61a24c01..a47f42b9c 100644 --- a/_changelog-files/2022/2022-08-11-codat-v1-update-key-for-company-stream.md +++ b/_changelog-files/2022/2022-08-11-codat-v1-update-key-for-company-stream.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: codat connection-version: 1 -pull-request: "https://github.com/singer-io/tap-codat/pull/14" +pull_request: "https://github.com/singer-io/tap-codat/pull/14" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-08-30-recharge-v2-recharge-version-bump.md b/_changelog-files/2022/2022-08-30-recharge-v2-recharge-version-bump.md index 87057cef8..929026af9 100644 --- a/_changelog-files/2022/2022-08-30-recharge-v2-recharge-version-bump.md +++ b/_changelog-files/2022/2022-08-30-recharge-v2-recharge-version-bump.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: "recharge" connection-version: "2" -#pull-request: "" +#pull_request: "" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-09-01-google-sheets-new-v2.md b/_changelog-files/2022/2022-09-01-google-sheets-new-v2.md index f11fc0b3b..73c275030 100644 --- a/_changelog-files/2022/2022-09-01-google-sheets-new-v2.md +++ b/_changelog-files/2022/2022-09-01-google-sheets-new-v2.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: "google-sheets" connection-version: "2" -#pull-request: "" +#pull_request: "" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-09-02-pipedrive-v1-transformation-type-issues.md b/_changelog-files/2022/2022-09-02-pipedrive-v1-transformation-type-issues.md index 535b74a24..55079c9a6 100644 --- a/_changelog-files/2022/2022-09-02-pipedrive-v1-transformation-type-issues.md +++ b/_changelog-files/2022/2022-09-02-pipedrive-v1-transformation-type-issues.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: pipedrive connection-version: 1 -pull-request: "https://github.com/singer-io/tap-pipedrive/pull/120" +pull_request: "https://github.com/singer-io/tap-pipedrive/pull/120" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-09-08-closeio-v1-future-dated-bookmarks.md b/_changelog-files/2022/2022-09-08-closeio-v1-future-dated-bookmarks.md index c4aa32776..06f727115 100644 --- a/_changelog-files/2022/2022-09-08-closeio-v1-future-dated-bookmarks.md +++ b/_changelog-files/2022/2022-09-08-closeio-v1-future-dated-bookmarks.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: closeio connection-version: 1 -pull-request: "https://github.com/singer-io/tap-closeio/pull/30" +pull_request: "https://github.com/singer-io/tap-closeio/pull/30" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-09-08-pendo-v1-default-include-anonymous-visitors.md b/_changelog-files/2022/2022-09-08-pendo-v1-default-include-anonymous-visitors.md index 06de69bd2..9d6579418 100644 --- a/_changelog-files/2022/2022-09-08-pendo-v1-default-include-anonymous-visitors.md +++ b/_changelog-files/2022/2022-09-08-pendo-v1-default-include-anonymous-visitors.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: pendo connection-version: 1 -pull-request: "https://github.com/singer-io/tap-pendo/pull/111" +pull_request: "https://github.com/singer-io/tap-pendo/pull/111" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-09-12-mambu-v2-deposit-accounts-sorting-field.md b/_changelog-files/2022/2022-09-12-mambu-v2-deposit-accounts-sorting-field.md index bde062c46..1c4f84940 100644 --- a/_changelog-files/2022/2022-09-12-mambu-v2-deposit-accounts-sorting-field.md +++ b/_changelog-files/2022/2022-09-12-mambu-v2-deposit-accounts-sorting-field.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mambu connection-version: 2 -pull-request: "https://github.com/singer-io/tap-mambu/pull/91" +pull_request: "https://github.com/singer-io/tap-mambu/pull/91" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-09-13-hubspot-v2-deals-replication-key.md b/_changelog-files/2022/2022-09-13-hubspot-v2-deals-replication-key.md index 84402515d..0f8a0aa3a 100644 --- a/_changelog-files/2022/2022-09-13-hubspot-v2-deals-replication-key.md +++ b/_changelog-files/2022/2022-09-13-hubspot-v2-deals-replication-key.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: hubspot connection-version: 2 -pull-request: "https://github.com/singer-io/tap-hubspot/pull/195" +pull_request: "https://github.com/singer-io/tap-hubspot/pull/195" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-09-20-yotpo-v2-yotpo-version-bump.md b/_changelog-files/2022/2022-09-20-yotpo-v2-yotpo-version-bump.md index 2c8f03aec..1f7b58e9d 100644 --- a/_changelog-files/2022/2022-09-20-yotpo-v2-yotpo-version-bump.md +++ b/_changelog-files/2022/2022-09-20-yotpo-v2-yotpo-version-bump.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: "yotpo" connection-version: "2" -#pull-request: "" +#pull_request: "" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-09-22-stripe-v2-reduce-api-calls.md b/_changelog-files/2022/2022-09-22-stripe-v2-reduce-api-calls.md index 37c87c5cb..166e9b897 100644 --- a/_changelog-files/2022/2022-09-22-stripe-v2-reduce-api-calls.md +++ b/_changelog-files/2022/2022-09-22-stripe-v2-reduce-api-calls.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: stripe connection-version: 2 -pull-request: "https://github.com/singer-io/tap-stripe/pull/150" +pull_request: "https://github.com/singer-io/tap-stripe/pull/150" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-09-23-linkedin-ads-v1-check-existing-access-tokens.md b/_changelog-files/2022/2022-09-23-linkedin-ads-v1-check-existing-access-tokens.md index 5e1ee4bb1..7964dd94b 100644 --- a/_changelog-files/2022/2022-09-23-linkedin-ads-v1-check-existing-access-tokens.md +++ b/_changelog-files/2022/2022-09-23-linkedin-ads-v1-check-existing-access-tokens.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: linkedin-ads connection-version: 1 -pull-request: "https://github.com/singer-io/tap-linkedin-ads/pull/50" +pull_request: "https://github.com/singer-io/tap-linkedin-ads/pull/50" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-09-26-recharge-v2-cleanup-customer-table.md b/_changelog-files/2022/2022-09-26-recharge-v2-cleanup-customer-table.md index 84053b86d..4d7cdf007 100644 --- a/_changelog-files/2022/2022-09-26-recharge-v2-cleanup-customer-table.md +++ b/_changelog-files/2022/2022-09-26-recharge-v2-cleanup-customer-table.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: recharge connection-version: 2 -pull-request: "https://github.com/singer-io/tap-recharge/pull/39" +pull_request: "https://github.com/singer-io/tap-recharge/pull/39" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-09-27-mambu-v2-timzone-improvement.md b/_changelog-files/2022/2022-09-27-mambu-v2-timzone-improvement.md index 89d06b83d..8fc774a8e 100644 --- a/_changelog-files/2022/2022-09-27-mambu-v2-timzone-improvement.md +++ b/_changelog-files/2022/2022-09-27-mambu-v2-timzone-improvement.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mambu connection-version: 2 -pull-request: "https://github.com/singer-io/tap-mambu/pull/85" +pull_request: "https://github.com/singer-io/tap-mambu/pull/85" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-09-28-trello-v1-cards-table-configurable-parameter.md b/_changelog-files/2022/2022-09-28-trello-v1-cards-table-configurable-parameter.md index 101defeb1..2d32134d7 100644 --- a/_changelog-files/2022/2022-09-28-trello-v1-cards-table-configurable-parameter.md +++ b/_changelog-files/2022/2022-09-28-trello-v1-cards-table-configurable-parameter.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: trello connection-version: 1 -pull-request: "https://github.com/singer-io/tap-trello/pull/30" +pull_request: "https://github.com/singer-io/tap-trello/pull/30" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-09-29-github-v2.md b/_changelog-files/2022/2022-09-29-github-v2.md index 31eec6644..0f5ac0d06 100644 --- a/_changelog-files/2022/2022-09-29-github-v2.md +++ b/_changelog-files/2022/2022-09-29-github-v2.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: "github" connection-version: "2" -#pull-request: "" +#pull_request: "" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-09-29-typeform-v2.md b/_changelog-files/2022/2022-09-29-typeform-v2.md index 9eae0b669..b40ce4ec2 100644 --- a/_changelog-files/2022/2022-09-29-typeform-v2.md +++ b/_changelog-files/2022/2022-09-29-typeform-v2.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: "typeform" connection-version: "2" -#pull-request: "" +#pull_request: "" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-10-07-mambu-v2-timezone-endpoint-downgrade.md b/_changelog-files/2022/2022-10-07-mambu-v2-timezone-endpoint-downgrade.md index 97822236d..0e5d69830 100644 --- a/_changelog-files/2022/2022-10-07-mambu-v2-timezone-endpoint-downgrade.md +++ b/_changelog-files/2022/2022-10-07-mambu-v2-timezone-endpoint-downgrade.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mambu connection-version: 2 -pull-request: "https://github.com/singer-io/tap-mambu/pull/96" +pull_request: "https://github.com/singer-io/tap-mambu/pull/96" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-10-20-facebook-v1-api-v14.md b/_changelog-files/2022/2022-10-20-facebook-v1-api-v14.md index f3b52821e..7d3f279bf 100644 --- a/_changelog-files/2022/2022-10-20-facebook-v1-api-v14.md +++ b/_changelog-files/2022/2022-10-20-facebook-v1-api-v14.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: facebook-ads connection-version: 1 -pull-request: "https://github.com/singer-io/tap-facebook/pull/201" +pull_request: "https://github.com/singer-io/tap-facebook/pull/201" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-11-03-typeform-support-submitted-landings-without-answers.md b/_changelog-files/2022/2022-11-03-typeform-support-submitted-landings-without-answers.md index c564002e3..75e6936cd 100644 --- a/_changelog-files/2022/2022-11-03-typeform-support-submitted-landings-without-answers.md +++ b/_changelog-files/2022/2022-11-03-typeform-support-submitted-landings-without-answers.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: typeform connection-version: 2 -pull-request: "https://github.com/singer-io/tap-typeform/pull/69" +pull_request: "https://github.com/singer-io/tap-typeform/pull/69" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-11-16-zendesk-chat-v1-api-fixes-new-fields.md b/_changelog-files/2022/2022-11-16-zendesk-chat-v1-api-fixes-new-fields.md index a2a621029..102487a32 100644 --- a/_changelog-files/2022/2022-11-16-zendesk-chat-v1-api-fixes-new-fields.md +++ b/_changelog-files/2022/2022-11-16-zendesk-chat-v1-api-fixes-new-fields.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: zendesk-chat connection-version: 1 -pull-request: "https://github.com/singer-io/tap-zendesk-chat/pull/45" +pull_request: "https://github.com/singer-io/tap-zendesk-chat/pull/45" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-11-22-ga4-v1-bad-metrics-unsupported.md b/_changelog-files/2022/2022-11-22-ga4-v1-bad-metrics-unsupported.md index 4647e8cdd..460792bc8 100644 --- a/_changelog-files/2022/2022-11-22-ga4-v1-bad-metrics-unsupported.md +++ b/_changelog-files/2022/2022-11-22-ga4-v1-bad-metrics-unsupported.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-analytics-4 connection-version: -pull-request: "https://github.com/singer-io/tap-ga4/pull/28" +pull_request: "https://github.com/singer-io/tap-ga4/pull/28" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-11-30-shopify-v1-canonicalize-transactions.md b/_changelog-files/2022/2022-11-30-shopify-v1-canonicalize-transactions.md index 92199a471..5be060451 100644 --- a/_changelog-files/2022/2022-11-30-shopify-v1-canonicalize-transactions.md +++ b/_changelog-files/2022/2022-11-30-shopify-v1-canonicalize-transactions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: shopify connection-version: 1 -pull-request: "https://github.com/singer-io/tap-shopify/pull/156" +pull_request: "https://github.com/singer-io/tap-shopify/pull/156" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-12-12-dynamodb-v1-reduce-logging-frequency.md b/_changelog-files/2022/2022-12-12-dynamodb-v1-reduce-logging-frequency.md index 4018ed737..2b0ea333b 100644 --- a/_changelog-files/2022/2022-12-12-dynamodb-v1-reduce-logging-frequency.md +++ b/_changelog-files/2022/2022-12-12-dynamodb-v1-reduce-logging-frequency.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: amazon-dynamodb connection-version: 1 -pull-request: "https://github.com/singer-io/tap-dynamodb/pull/48" +pull_request: "https://github.com/singer-io/tap-dynamodb/pull/48" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-12-12-ga4-v1-new-reports.md b/_changelog-files/2022/2022-12-12-ga4-v1-new-reports.md index 21edcfb7f..32689f5a7 100644 --- a/_changelog-files/2022/2022-12-12-ga4-v1-new-reports.md +++ b/_changelog-files/2022/2022-12-12-ga4-v1-new-reports.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: google-analytics-4 connection-version: 1 -pull-request: "https://github.com/singer-io/tap-ga4/pull/31" +pull_request: "https://github.com/singer-io/tap-ga4/pull/31" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-12-13-ga4-v1-new-field-exclusions.md b/_changelog-files/2022/2022-12-13-ga4-v1-new-field-exclusions.md index f97b3f751..b1cf81b22 100644 --- a/_changelog-files/2022/2022-12-13-ga4-v1-new-field-exclusions.md +++ b/_changelog-files/2022/2022-12-13-ga4-v1-new-field-exclusions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-analytics-4 connection-version: 1 -pull-request: "https://github.com/singer-io/tap-ga4/pull/38" +pull_request: "https://github.com/singer-io/tap-ga4/pull/38" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-12-19-mssql-v1-log4j-update.md b/_changelog-files/2022/2022-12-19-mssql-v1-log4j-update.md index d5a9b868b..16c537844 100644 --- a/_changelog-files/2022/2022-12-19-mssql-v1-log4j-update.md +++ b/_changelog-files/2022/2022-12-19-mssql-v1-log4j-update.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mssql connection-version: 1 -pull-request: "https://github.com/singer-io/tap-mssql/pull/84" +pull_request: "https://github.com/singer-io/tap-mssql/pull/84" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-12-28-shopify-v1-api-upgrade-schema-change.md b/_changelog-files/2022/2022-12-28-shopify-v1-api-upgrade-schema-change.md index a49e9c1b1..c4484b0cd 100644 --- a/_changelog-files/2022/2022-12-28-shopify-v1-api-upgrade-schema-change.md +++ b/_changelog-files/2022/2022-12-28-shopify-v1-api-upgrade-schema-change.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: shopify connection-version: 1 -pull-request: "https://github.com/singer-io/tap-shopify/pull/157" +pull_request: "https://github.com/singer-io/tap-shopify/pull/157" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-12-30-xero-v1-orders-manual-journal.md b/_changelog-files/2022/2022-12-30-xero-v1-orders-manual-journal.md index fd4d2631a..b227b4a49 100644 --- a/_changelog-files/2022/2022-12-30-xero-v1-orders-manual-journal.md +++ b/_changelog-files/2022/2022-12-30-xero-v1-orders-manual-journal.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: xero connection-version: 1 -pull-request: "https://github.com/singer-io/tap-xero/pull/104" +pull_request: "https://github.com/singer-io/tap-xero/pull/104" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-01-09-pendo-v1-skip-do-not-process.md b/_changelog-files/2023/2023-01-09-pendo-v1-skip-do-not-process.md index e30683ea4..b12120ac5 100644 --- a/_changelog-files/2023/2023-01-09-pendo-v1-skip-do-not-process.md +++ b/_changelog-files/2023/2023-01-09-pendo-v1-skip-do-not-process.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: pendo connection-version: 1 -pull-request: "https://github.com/singer-io/tap-pendo/pull/115" +pull_request: "https://github.com/singer-io/tap-pendo/pull/115" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-01-31-ga4-v1-new-field-exclusions.md b/_changelog-files/2023/2023-01-31-ga4-v1-new-field-exclusions.md index e7e96a6c3..316853d2d 100644 --- a/_changelog-files/2023/2023-01-31-ga4-v1-new-field-exclusions.md +++ b/_changelog-files/2023/2023-01-31-ga4-v1-new-field-exclusions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-analytics-4 connection-version: 1 -pull-request: "https://github.com/singer-io/tap-ga4/pull/39" +pull_request: "https://github.com/singer-io/tap-ga4/pull/39" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-01-31-zuora-v1-unsupported-related-objects.md b/_changelog-files/2023/2023-01-31-zuora-v1-unsupported-related-objects.md index df2af7edd..72f856f69 100644 --- a/_changelog-files/2023/2023-01-31-zuora-v1-unsupported-related-objects.md +++ b/_changelog-files/2023/2023-01-31-zuora-v1-unsupported-related-objects.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: zuora connection-version: 1 -pull-request: "https://github.com/singer-io/tap-zuora/pull/73" +pull_request: "https://github.com/singer-io/tap-zuora/pull/73" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-02-09-new-integrations-tiktok-ads.md b/_changelog-files/2023/2023-02-09-new-integrations-tiktok-ads.md index 3fd2b952c..1f5a47226 100644 --- a/_changelog-files/2023/2023-02-09-new-integrations-tiktok-ads.md +++ b/_changelog-files/2023/2023-02-09-new-integrations-tiktok-ads.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: "tiktok-ads" connection-version: "1" -# pull-request: "" UNCOMMENT IF THERE'S A PR +# pull_request: "" UNCOMMENT IF THERE'S A PR --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-02-13-new-integrations-snapchat-ads.md b/_changelog-files/2023/2023-02-13-new-integrations-snapchat-ads.md index 2c8279bf8..c01895099 100644 --- a/_changelog-files/2023/2023-02-13-new-integrations-snapchat-ads.md +++ b/_changelog-files/2023/2023-02-13-new-integrations-snapchat-ads.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: "snapchat-ads" connection-version: "1" -# pull-request: "" UNCOMMENT IF THERE'S A PR +# pull_request: "" UNCOMMENT IF THERE'S A PR --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-02-14-ga4-v1-new-field-exclusions.md b/_changelog-files/2023/2023-02-14-ga4-v1-new-field-exclusions.md index 56fbf89b8..555e313d1 100644 --- a/_changelog-files/2023/2023-02-14-ga4-v1-new-field-exclusions.md +++ b/_changelog-files/2023/2023-02-14-ga4-v1-new-field-exclusions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-analytics-4 connection-version: 1 -pull-request: "https://github.com/singer-io/tap-ga4/pull/41" +pull_request: "https://github.com/singer-io/tap-ga4/pull/41" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-02-16-helpscout-v1-new-streams.md b/_changelog-files/2023/2023-02-16-helpscout-v1-new-streams.md index 0e906d826..9429ef8f7 100644 --- a/_changelog-files/2023/2023-02-16-helpscout-v1-new-streams.md +++ b/_changelog-files/2023/2023-02-16-helpscout-v1-new-streams.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: helpscout connection-version: 1 -pull-request: "https://github.com/singer-io/tap-helpscout/pull/34" +pull_request: "https://github.com/singer-io/tap-helpscout/pull/34" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-02-16-hubspot-v2-tickets-stream.md b/_changelog-files/2023/2023-02-16-hubspot-v2-tickets-stream.md index b60a2da52..054b734be 100644 --- a/_changelog-files/2023/2023-02-16-hubspot-v2-tickets-stream.md +++ b/_changelog-files/2023/2023-02-16-hubspot-v2-tickets-stream.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: "hubspot" connection-version: "2" -pull-request: "https://github.com/singer-io/tap-hubspot/pull/218" +pull_request: "https://github.com/singer-io/tap-hubspot/pull/218" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-02-22-doubleclick-campaign-manager-23.md b/_changelog-files/2023/2023-02-22-doubleclick-campaign-manager-23.md index c2b7dbe2d..92ce0958f 100644 --- a/_changelog-files/2023/2023-02-22-doubleclick-campaign-manager-23.md +++ b/_changelog-files/2023/2023-02-22-doubleclick-campaign-manager-23.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: campaign-manager connection-version: 1 -pull-request: "https://github.com/singer-io/tap-doubleclick-campaign-manager/pull/23" +pull_request: "https://github.com/singer-io/tap-doubleclick-campaign-manager/pull/23" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-02-22-google-ads-v1-api-v12.md b/_changelog-files/2023/2023-02-22-google-ads-v1-api-v12.md index 630ae97ad..71c347c2c 100644 --- a/_changelog-files/2023/2023-02-22-google-ads-v1-api-v12.md +++ b/_changelog-files/2023/2023-02-22-google-ads-v1-api-v12.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-ads connection-version: 1 -pull-request: "https://github.com/singer-io/tap-google-ads/pull/76" +pull_request: "https://github.com/singer-io/tap-google-ads/pull/76" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-02-23-mambu-v4-new-version.md b/_changelog-files/2023/2023-02-23-mambu-v4-new-version.md index 76292e0cf..5a9ec0293 100644 --- a/_changelog-files/2023/2023-02-23-mambu-v4-new-version.md +++ b/_changelog-files/2023/2023-02-23-mambu-v4-new-version.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: "mambu" connection-version: "4" -pull-request: "https://github.com/singer-io/tap-mambu/pull/102" +pull_request: "https://github.com/singer-io/tap-mambu/pull/102" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-02-27-campaign-manager-v1-queued-status.md b/_changelog-files/2023/2023-02-27-campaign-manager-v1-queued-status.md index 6c29c5447..44f9aa8e3 100644 --- a/_changelog-files/2023/2023-02-27-campaign-manager-v1-queued-status.md +++ b/_changelog-files/2023/2023-02-27-campaign-manager-v1-queued-status.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: campaign-manager connection-version: 1 -pull-request: "https://github.com/singer-io/tap-doubleclick-campaign-manager/pull/27" +pull_request: "https://github.com/singer-io/tap-doubleclick-campaign-manager/pull/27" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-02-28-dynamodb-v1-empty-projections.md b/_changelog-files/2023/2023-02-28-dynamodb-v1-empty-projections.md index 99d0f3953..0b46a86c7 100644 --- a/_changelog-files/2023/2023-02-28-dynamodb-v1-empty-projections.md +++ b/_changelog-files/2023/2023-02-28-dynamodb-v1-empty-projections.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: amazon-dynamodb connection-version: 1 -pull-request: "https://github.com/singer-io/tap-dynamodb/pull/49" +pull_request: "https://github.com/singer-io/tap-dynamodb/pull/49" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-02-28-ga4-v1-new-field-exclusions.md b/_changelog-files/2023/2023-02-28-ga4-v1-new-field-exclusions.md index 475017615..53d2d90af 100644 --- a/_changelog-files/2023/2023-02-28-ga4-v1-new-field-exclusions.md +++ b/_changelog-files/2023/2023-02-28-ga4-v1-new-field-exclusions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-analytics-4 connection-version: 1 -pull-request: "https://github.com/singer-io/tap-ga4/pull/48" +pull_request: "https://github.com/singer-io/tap-ga4/pull/48" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-03-09-pipedrive-v1-retry-logic-dealsflow.md b/_changelog-files/2023/2023-03-09-pipedrive-v1-retry-logic-dealsflow.md index 6c781357d..f073dea03 100644 --- a/_changelog-files/2023/2023-03-09-pipedrive-v1-retry-logic-dealsflow.md +++ b/_changelog-files/2023/2023-03-09-pipedrive-v1-retry-logic-dealsflow.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: pipedrive connection-version: 1 -pull-request: "https://github.com/singer-io/tap-pipedrive/pull/131" +pull_request: "https://github.com/singer-io/tap-pipedrive/pull/131" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-03-15-iterable-v1-beta.md b/_changelog-files/2023/2023-03-15-iterable-v1-beta.md index 15d4f98c0..d85e89d79 100644 --- a/_changelog-files/2023/2023-03-15-iterable-v1-beta.md +++ b/_changelog-files/2023/2023-03-15-iterable-v1-beta.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: iterable-core connection-version: 1 -# pull-request: "" +# pull_request: "" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-03-17-yotpo-v2-deleted-reviews.md b/_changelog-files/2023/2023-03-17-yotpo-v2-deleted-reviews.md index 33b300218..b3371bf06 100644 --- a/_changelog-files/2023/2023-03-17-yotpo-v2-deleted-reviews.md +++ b/_changelog-files/2023/2023-03-17-yotpo-v2-deleted-reviews.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: yotpo connection-version: 2 -pull-request: "https://github.com/singer-io/tap-yotpo/pull/55" +pull_request: "https://github.com/singer-io/tap-yotpo/pull/55" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-03-20-twilio-v1-new-fields-stream-bug-fixes.md b/_changelog-files/2023/2023-03-20-twilio-v1-new-fields-stream-bug-fixes.md index c6aff03db..9d9be51d7 100644 --- a/_changelog-files/2023/2023-03-20-twilio-v1-new-fields-stream-bug-fixes.md +++ b/_changelog-files/2023/2023-03-20-twilio-v1-new-fields-stream-bug-fixes.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: twilio connection-version: 1 -pull-request: "https://github.com/singer-io/tap-twilio/pull/7" +pull_request: "https://github.com/singer-io/tap-twilio/pull/7" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-03-21-activecampaign-v1-field-type-update.md b/_changelog-files/2023/2023-03-21-activecampaign-v1-field-type-update.md index 523590da5..fedcc14e3 100644 --- a/_changelog-files/2023/2023-03-21-activecampaign-v1-field-type-update.md +++ b/_changelog-files/2023/2023-03-21-activecampaign-v1-field-type-update.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: activecampaign connection-version: 1 -pull-request: "https://github.com/singer-io/tap-activecampaign/pull/28" +pull_request: "https://github.com/singer-io/tap-activecampaign/pull/28" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-03-21-activecampaign-v1-new-field.md b/_changelog-files/2023/2023-03-21-activecampaign-v1-new-field.md index ea535cfa3..0c17a4535 100644 --- a/_changelog-files/2023/2023-03-21-activecampaign-v1-new-field.md +++ b/_changelog-files/2023/2023-03-21-activecampaign-v1-new-field.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: activecampaign connection-version: 1 -pull-request: "https://github.com/singer-io/tap-activecampaign/pull/26" +pull_request: "https://github.com/singer-io/tap-activecampaign/pull/26" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-03-22-linkedin-ads-v2-large-number-of-accounts.md b/_changelog-files/2023/2023-03-22-linkedin-ads-v2-large-number-of-accounts.md index bdc4aec9a..e4a696a10 100644 --- a/_changelog-files/2023/2023-03-22-linkedin-ads-v2-large-number-of-accounts.md +++ b/_changelog-files/2023/2023-03-22-linkedin-ads-v2-large-number-of-accounts.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: linkedin-ads connection-version: 2 -pull-request: "https://github.com/singer-io/tap-linkedin-ads/pull/60" +pull_request: "https://github.com/singer-io/tap-linkedin-ads/pull/60" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-03-28-pendo-v1-visitor-history.md b/_changelog-files/2023/2023-03-28-pendo-v1-visitor-history.md index f2b83bb81..498ae7080 100644 --- a/_changelog-files/2023/2023-03-28-pendo-v1-visitor-history.md +++ b/_changelog-files/2023/2023-03-28-pendo-v1-visitor-history.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: pendo connection-version: 1 -pull-request: "https://github.com/singer-io/tap-pendo/pull/119" +pull_request: "https://github.com/singer-io/tap-pendo/pull/119" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-03-30-marketo-v2-new-field.md b/_changelog-files/2023/2023-03-30-marketo-v2-new-field.md index 0a52f6c5f..803299467 100644 --- a/_changelog-files/2023/2023-03-30-marketo-v2-new-field.md +++ b/_changelog-files/2023/2023-03-30-marketo-v2-new-field.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: marketo connection-version: 2 -pull-request: "https://github.com/singer-io/tap-marketo/pull/82" +pull_request: "https://github.com/singer-io/tap-marketo/pull/82" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-04-03-dynamodb-v1-error-handling-log-based-streams.md b/_changelog-files/2023/2023-04-03-dynamodb-v1-error-handling-log-based-streams.md index f14ef5ec4..84dd230c8 100644 --- a/_changelog-files/2023/2023-04-03-dynamodb-v1-error-handling-log-based-streams.md +++ b/_changelog-files/2023/2023-04-03-dynamodb-v1-error-handling-log-based-streams.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: amazon-dynamodb connection-version: 1 -pull-request: "https://github.com/singer-io/tap-dynamodb/pull/50" +pull_request: "https://github.com/singer-io/tap-dynamodb/pull/50" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-04-04-google-search-console-v0-no-records-sitemap.md b/_changelog-files/2023/2023-04-04-google-search-console-v0-no-records-sitemap.md index f65453ab1..84fd14a00 100644 --- a/_changelog-files/2023/2023-04-04-google-search-console-v0-no-records-sitemap.md +++ b/_changelog-files/2023/2023-04-04-google-search-console-v0-no-records-sitemap.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: google-search-console connection-version: 0 -pull-request: "https://github.com/singer-io/tap-google-search-console/pull/38" +pull_request: "https://github.com/singer-io/tap-google-search-console/pull/38" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-04-06-pendo-v1-type-error-accounts-stream.md b/_changelog-files/2023/2023-04-06-pendo-v1-type-error-accounts-stream.md index c5a8fac1e..3111042e7 100644 --- a/_changelog-files/2023/2023-04-06-pendo-v1-type-error-accounts-stream.md +++ b/_changelog-files/2023/2023-04-06-pendo-v1-type-error-accounts-stream.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: pendo connection-version: 1 -pull-request: "https://github.com/singer-io/tap-pendo/pull/122" +pull_request: "https://github.com/singer-io/tap-pendo/pull/122" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-04-11-google-search-console-v1-new-search-types.md b/_changelog-files/2023/2023-04-11-google-search-console-v1-new-search-types.md index f48969042..e08457dd5 100644 --- a/_changelog-files/2023/2023-04-11-google-search-console-v1-new-search-types.md +++ b/_changelog-files/2023/2023-04-11-google-search-console-v1-new-search-types.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-search-console connection-version: 1 -pull-request: "https://github.com/singer-io/tap-google-search-console/pull/39" +pull_request: "https://github.com/singer-io/tap-google-search-console/pull/39" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-04-11-linkedin-ads-v2-api-version-update.md b/_changelog-files/2023/2023-04-11-linkedin-ads-v2-api-version-update.md index 442339c89..552f4653d 100644 --- a/_changelog-files/2023/2023-04-11-linkedin-ads-v2-api-version-update.md +++ b/_changelog-files/2023/2023-04-11-linkedin-ads-v2-api-version-update.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: linkedin-ads connection-version: 2 -pull-request: "https://github.com/singer-io/tap-linkedin-ads/pull/61" +pull_request: "https://github.com/singer-io/tap-linkedin-ads/pull/61" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-04-25-pipedrive-v1-deal-fields.md b/_changelog-files/2023/2023-04-25-pipedrive-v1-deal-fields.md index d3ec750ec..f21d5f2e3 100644 --- a/_changelog-files/2023/2023-04-25-pipedrive-v1-deal-fields.md +++ b/_changelog-files/2023/2023-04-25-pipedrive-v1-deal-fields.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: pipedrive connection-version: 1 -pull-request: "https://github.com/singer-io/tap-pipedrive/pull/134" +pull_request: "https://github.com/singer-io/tap-pipedrive/pull/134" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-04-26-hubspot-v2-bookmarking-strategy.md b/_changelog-files/2023/2023-04-26-hubspot-v2-bookmarking-strategy.md index 0c546326c..1e543494f 100644 --- a/_changelog-files/2023/2023-04-26-hubspot-v2-bookmarking-strategy.md +++ b/_changelog-files/2023/2023-04-26-hubspot-v2-bookmarking-strategy.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: hubspot connection-version: 2 -pull-request: "https://github.com/singer-io/tap-hubspot/pull/226" +pull_request: "https://github.com/singer-io/tap-hubspot/pull/226" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-04-26-typeform-v2-missing-form-id-questions.md b/_changelog-files/2023/2023-04-26-typeform-v2-missing-form-id-questions.md index 4c3c5b7ca..7087900e8 100644 --- a/_changelog-files/2023/2023-04-26-typeform-v2-missing-form-id-questions.md +++ b/_changelog-files/2023/2023-04-26-typeform-v2-missing-form-id-questions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: typeform connection-version: 2 -pull-request: "https://github.com/singer-io/tap-typeform/pull/73" +pull_request: "https://github.com/singer-io/tap-typeform/pull/73" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-04-27-ga4-v1-new-field-exclusions.md b/_changelog-files/2023/2023-04-27-ga4-v1-new-field-exclusions.md index 4c26c5416..9df90215e 100644 --- a/_changelog-files/2023/2023-04-27-ga4-v1-new-field-exclusions.md +++ b/_changelog-files/2023/2023-04-27-ga4-v1-new-field-exclusions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-analytics-4 connection-version: 1 -pull-request: "https://github.com/singer-io/tap-ga4/pull/58" +pull_request: "https://github.com/singer-io/tap-ga4/pull/58" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-04-27-google-ads-v1-api-v13.md b/_changelog-files/2023/2023-04-27-google-ads-v1-api-v13.md index fa9ce3455..5c77a56f3 100644 --- a/_changelog-files/2023/2023-04-27-google-ads-v1-api-v13.md +++ b/_changelog-files/2023/2023-04-27-google-ads-v1-api-v13.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-ads connection-version: 1 -pull-request: "https://github.com/singer-io/tap-google-ads/pull/82" +pull_request: "https://github.com/singer-io/tap-google-ads/pull/82" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-05-09-github-v2-handle-empty-repositories.md b/_changelog-files/2023/2023-05-09-github-v2-handle-empty-repositories.md index 7ad9886ce..c83593bea 100644 --- a/_changelog-files/2023/2023-05-09-github-v2-handle-empty-repositories.md +++ b/_changelog-files/2023/2023-05-09-github-v2-handle-empty-repositories.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: github connection-version: 2 -pull-request: "https://github.com/singer-io/tap-github/pull/187" +pull_request: "https://github.com/singer-io/tap-github/pull/187" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-05-10-ga4-v1-new-field-exclusions.md b/_changelog-files/2023/2023-05-10-ga4-v1-new-field-exclusions.md index b4cfa69c1..307375aa3 100644 --- a/_changelog-files/2023/2023-05-10-ga4-v1-new-field-exclusions.md +++ b/_changelog-files/2023/2023-05-10-ga4-v1-new-field-exclusions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-analytics-4 connection-version: 1 -pull-request: "https://github.com/singer-io/tap-ga4/pull/62" +pull_request: "https://github.com/singer-io/tap-ga4/pull/62" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-05-10-shopify-v1-bookmarking-strategy.md b/_changelog-files/2023/2023-05-10-shopify-v1-bookmarking-strategy.md index 3e05563a4..2e54c5e5e 100644 --- a/_changelog-files/2023/2023-05-10-shopify-v1-bookmarking-strategy.md +++ b/_changelog-files/2023/2023-05-10-shopify-v1-bookmarking-strategy.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: shopify connection-version: 1 -pull-request: "https://github.com/singer-io/tap-shopify/pull/166" +pull_request: "https://github.com/singer-io/tap-shopify/pull/166" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-05-11-impact-v1-error-after-connection-edit.md b/_changelog-files/2023/2023-05-11-impact-v1-error-after-connection-edit.md index 1848845e1..c4a59485d 100644 --- a/_changelog-files/2023/2023-05-11-impact-v1-error-after-connection-edit.md +++ b/_changelog-files/2023/2023-05-11-impact-v1-error-after-connection-edit.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: impact connection-version: 1 -pull-request: "https://github.com/singer-io/tap-impact/pull/22" +pull_request: "https://github.com/singer-io/tap-impact/pull/22" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-05-12-impact-v1-handle-empty-model-id.md b/_changelog-files/2023/2023-05-12-impact-v1-handle-empty-model-id.md index 4da052402..612aa486c 100644 --- a/_changelog-files/2023/2023-05-12-impact-v1-handle-empty-model-id.md +++ b/_changelog-files/2023/2023-05-12-impact-v1-handle-empty-model-id.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: impact connection-version: 1 -pull-request: "https://github.com/singer-io/tap-impact/pull/23" +pull_request: "https://github.com/singer-io/tap-impact/pull/23" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-05-18-ga4-v1-new-field-exclusions.md b/_changelog-files/2023/2023-05-18-ga4-v1-new-field-exclusions.md index 7e9c0d9af..df5012447 100644 --- a/_changelog-files/2023/2023-05-18-ga4-v1-new-field-exclusions.md +++ b/_changelog-files/2023/2023-05-18-ga4-v1-new-field-exclusions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-analytics-4 connection-version: 1 -pull-request: "https://github.com/singer-io/tap-ga4/pull/65" +pull_request: "https://github.com/singer-io/tap-ga4/pull/65" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-05-23-shopify-v1-backoff-incompleteread-error.md b/_changelog-files/2023/2023-05-23-shopify-v1-backoff-incompleteread-error.md index da2b2d851..ec38208b8 100644 --- a/_changelog-files/2023/2023-05-23-shopify-v1-backoff-incompleteread-error.md +++ b/_changelog-files/2023/2023-05-23-shopify-v1-backoff-incompleteread-error.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: shopify connection-version: 1 -pull-request: "https://github.com/singer-io/tap-shopify/pull/144" +pull_request: "https://github.com/singer-io/tap-shopify/pull/144" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-05-25-mixpanel-v1-export-events-parameter.md b/_changelog-files/2023/2023-05-25-mixpanel-v1-export-events-parameter.md index 5a233184a..c6771932b 100644 --- a/_changelog-files/2023/2023-05-25-mixpanel-v1-export-events-parameter.md +++ b/_changelog-files/2023/2023-05-25-mixpanel-v1-export-events-parameter.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: mixpanel connection-version: 1 -pull-request: "https://github.com/singer-io/tap-mixpanel/pull/56" +pull_request: "https://github.com/singer-io/tap-mixpanel/pull/56" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-05-25-zendesk-v1-increase-sync-limit-users.md b/_changelog-files/2023/2023-05-25-zendesk-v1-increase-sync-limit-users.md index ce81f8544..06a649b45 100644 --- a/_changelog-files/2023/2023-05-25-zendesk-v1-increase-sync-limit-users.md +++ b/_changelog-files/2023/2023-05-25-zendesk-v1-increase-sync-limit-users.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: zendesk connection-version: 1 -pull-request: "https://github.com/singer-io/tap-zendesk/pull/127" +pull_request: "https://github.com/singer-io/tap-zendesk/pull/127" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-05-25-zendesk-v1-infinite-loop-users.md b/_changelog-files/2023/2023-05-25-zendesk-v1-infinite-loop-users.md index a77e76a0c..cbb74e3b9 100644 --- a/_changelog-files/2023/2023-05-25-zendesk-v1-infinite-loop-users.md +++ b/_changelog-files/2023/2023-05-25-zendesk-v1-infinite-loop-users.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: zendesk connection-version: 1 -pull-request: "https://github.com/singer-io/tap-zendesk/pull/103" +pull_request: "https://github.com/singer-io/tap-zendesk/pull/103" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-05-31-typeform-v2-tags-property.md b/_changelog-files/2023/2023-05-31-typeform-v2-tags-property.md index 6b8334b43..f7232486f 100644 --- a/_changelog-files/2023/2023-05-31-typeform-v2-tags-property.md +++ b/_changelog-files/2023/2023-05-31-typeform-v2-tags-property.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: typeform connection-version: 2 -pull-request: "https://github.com/singer-io/tap-typeform/pull/75" +pull_request: "https://github.com/singer-io/tap-typeform/pull/75" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-06-05-zendesk-v2-backoff.md b/_changelog-files/2023/2023-06-05-zendesk-v2-backoff.md index 63d13ed37..40aa5d45c 100644 --- a/_changelog-files/2023/2023-06-05-zendesk-v2-backoff.md +++ b/_changelog-files/2023/2023-06-05-zendesk-v2-backoff.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: zendesk connection-version: 2 -pull-request: "https://github.com/singer-io/tap-zendesk/pull/131" +pull_request: "https://github.com/singer-io/tap-zendesk/pull/131" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-06-07-pipedrive-v1-backoff.md b/_changelog-files/2023/2023-06-07-pipedrive-v1-backoff.md index 64f90d996..ed7c23585 100644 --- a/_changelog-files/2023/2023-06-07-pipedrive-v1-backoff.md +++ b/_changelog-files/2023/2023-06-07-pipedrive-v1-backoff.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: pipedrive connection-version: 1 -pull-request: "https://github.com/singer-io/tap-pipedrive/pull/115" +pull_request: "https://github.com/singer-io/tap-pipedrive/pull/115" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-06-08-mailchimp-v1-date-window.md b/_changelog-files/2023/2023-06-08-mailchimp-v1-date-window.md index 01c59aba9..8ea11114e 100644 --- a/_changelog-files/2023/2023-06-08-mailchimp-v1-date-window.md +++ b/_changelog-files/2023/2023-06-08-mailchimp-v1-date-window.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mailchimp connection-version: -pull-request: "https://github.com/singer-io/tap-mailchimp/pull/61" +pull_request: "https://github.com/singer-io/tap-mailchimp/pull/61" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-06-08-tiktok-ads-v0-backoff.md b/_changelog-files/2023/2023-06-08-tiktok-ads-v0-backoff.md index e28c1fae5..f4c586c71 100644 --- a/_changelog-files/2023/2023-06-08-tiktok-ads-v0-backoff.md +++ b/_changelog-files/2023/2023-06-08-tiktok-ads-v0-backoff.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: tiktok-ads connection-version: 0 -pull-request: "https://github.com/singer-io/tap-tiktok-ads/pull/21" +pull_request: "https://github.com/singer-io/tap-tiktok-ads/pull/21" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-06-14-zendesk-v2-new-streams.md b/_changelog-files/2023/2023-06-14-zendesk-v2-new-streams.md index d3185027f..6cdb750dc 100644 --- a/_changelog-files/2023/2023-06-14-zendesk-v2-new-streams.md +++ b/_changelog-files/2023/2023-06-14-zendesk-v2-new-streams.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: zendesk connection-version: 2 -pull-request: "https://github.com/singer-io/tap-zendesk/pull/111" +pull_request: "https://github.com/singer-io/tap-zendesk/pull/111" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-06-20-shopify-v1-backoff.md b/_changelog-files/2023/2023-06-20-shopify-v1-backoff.md index ddc9e3a7d..8d72b0ea7 100644 --- a/_changelog-files/2023/2023-06-20-shopify-v1-backoff.md +++ b/_changelog-files/2023/2023-06-20-shopify-v1-backoff.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: shopify connection-version: 1 -pull-request: "https://github.com/singer-io/tap-shopify/pull/169" +pull_request: "https://github.com/singer-io/tap-shopify/pull/169" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-06-22-tiktok-ads-v0-sync-from-start-date.md b/_changelog-files/2023/2023-06-22-tiktok-ads-v0-sync-from-start-date.md index d21d6a012..fc920ad83 100644 --- a/_changelog-files/2023/2023-06-22-tiktok-ads-v0-sync-from-start-date.md +++ b/_changelog-files/2023/2023-06-22-tiktok-ads-v0-sync-from-start-date.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: tiktok-ads connection-version: 0 -pull-request: "https://github.com/singer-io/tap-tiktok-ads/pull/22" +pull_request: "https://github.com/singer-io/tap-tiktok-ads/pull/22" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-07-05-ga4-v1-new-field-exclusions.md b/_changelog-files/2023/2023-07-05-ga4-v1-new-field-exclusions.md index fd88b36aa..e816de9e2 100644 --- a/_changelog-files/2023/2023-07-05-ga4-v1-new-field-exclusions.md +++ b/_changelog-files/2023/2023-07-05-ga4-v1-new-field-exclusions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-analytics-4 connection-version: 1 -pull-request: "https://github.com/singer-io/tap-ga4/pull/67" +pull_request: "https://github.com/singer-io/tap-ga4/pull/67" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-07-17-chargify-v1-subscriptions-schema-update.md b/_changelog-files/2023/2023-07-17-chargify-v1-subscriptions-schema-update.md index a090f4b6d..4acc76d45 100644 --- a/_changelog-files/2023/2023-07-17-chargify-v1-subscriptions-schema-update.md +++ b/_changelog-files/2023/2023-07-17-chargify-v1-subscriptions-schema-update.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: chargify connection-version: 1 -pull-request: "https://github.com/singer-io/tap-chargify/pull/49" +pull_request: "https://github.com/singer-io/tap-chargify/pull/49" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-07-18-mailchimp-v1-update-email-activity-date-window-validation.md b/_changelog-files/2023/2023-07-18-mailchimp-v1-update-email-activity-date-window-validation.md index b4ad72ae1..fdc45eb3a 100644 --- a/_changelog-files/2023/2023-07-18-mailchimp-v1-update-email-activity-date-window-validation.md +++ b/_changelog-files/2023/2023-07-18-mailchimp-v1-update-email-activity-date-window-validation.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: mailchimp connection-version: 1 -pull-request: "https://github.com/singer-io/tap-mailchimp/pull/62" +pull_request: "https://github.com/singer-io/tap-mailchimp/pull/62" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-07-20-shopify-v1-retries-for-404-error.md b/_changelog-files/2023/2023-07-20-shopify-v1-retries-for-404-error.md index 6196c412b..8791947c7 100644 --- a/_changelog-files/2023/2023-07-20-shopify-v1-retries-for-404-error.md +++ b/_changelog-files/2023/2023-07-20-shopify-v1-retries-for-404-error.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: shopify connection-version: 1 -pull-request: "https://github.com/singer-io/tap-shopify/pull/159" +pull_request: "https://github.com/singer-io/tap-shopify/pull/159" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-07-20-square-v2.md b/_changelog-files/2023/2023-07-20-square-v2.md index a2f5b4bd1..4e5c42e56 100644 --- a/_changelog-files/2023/2023-07-20-square-v2.md +++ b/_changelog-files/2023/2023-07-20-square-v2.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: square connection-version: 2 -pull-request: "https://github.com/singer-io/tap-square/pull/111" +pull_request: "https://github.com/singer-io/tap-square/pull/111" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-07-27-mongodb-v3.md b/_changelog-files/2023/2023-07-27-mongodb-v3.md index 856bd189e..fdcdb190f 100644 --- a/_changelog-files/2023/2023-07-27-mongodb-v3.md +++ b/_changelog-files/2023/2023-07-27-mongodb-v3.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: mongodb connection-version: 3 -pull-request: "https://github.com/singer-io/tap-mongodb/pull/81" +pull_request: "https://github.com/singer-io/tap-mongodb/pull/81" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-07-27-pendo-v1-multiple-apps-support.md b/_changelog-files/2023/2023-07-27-pendo-v1-multiple-apps-support.md index faccc5dc8..bc43d81cc 100644 --- a/_changelog-files/2023/2023-07-27-pendo-v1-multiple-apps-support.md +++ b/_changelog-files/2023/2023-07-27-pendo-v1-multiple-apps-support.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: pendo connection-version: 1 -pull-request: "https://github.com/singer-io/tap-pendo/pull/94" +pull_request: "https://github.com/singer-io/tap-pendo/pull/94" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-07-27-pendo-v1-primary-key-changes.md b/_changelog-files/2023/2023-07-27-pendo-v1-primary-key-changes.md index 785c5da6c..4f8063c57 100644 --- a/_changelog-files/2023/2023-07-27-pendo-v1-primary-key-changes.md +++ b/_changelog-files/2023/2023-07-27-pendo-v1-primary-key-changes.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: pendo connection-version: 1 -pull-request: "https://github.com/singer-io/tap-pendo/pull/88" +pull_request: "https://github.com/singer-io/tap-pendo/pull/88" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-08-02-mixpanel-v1-retries-ChunkedEncodingError.md b/_changelog-files/2023/2023-08-02-mixpanel-v1-retries-ChunkedEncodingError.md index 9a3467135..daa39c8bb 100644 --- a/_changelog-files/2023/2023-08-02-mixpanel-v1-retries-ChunkedEncodingError.md +++ b/_changelog-files/2023/2023-08-02-mixpanel-v1-retries-ChunkedEncodingError.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: mixpanel connection-version: 1 -pull-request: "https://github.com/singer-io/tap-mixpanel/pull/61" +pull_request: "https://github.com/singer-io/tap-mixpanel/pull/61" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-08-02-pendo-max-record-limit.md b/_changelog-files/2023/2023-08-02-pendo-max-record-limit.md index f3416a142..77e945c6f 100644 --- a/_changelog-files/2023/2023-08-02-pendo-max-record-limit.md +++ b/_changelog-files/2023/2023-08-02-pendo-max-record-limit.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: pendo connection-version: 1 -pull-request: "https://github.com/singer-io/tap-pendo/pull/126" +pull_request: "https://github.com/singer-io/tap-pendo/pull/126" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-08-03-tiktok-ads-v1.md b/_changelog-files/2023/2023-08-03-tiktok-ads-v1.md index 9899b4356..0c693f220 100644 --- a/_changelog-files/2023/2023-08-03-tiktok-ads-v1.md +++ b/_changelog-files/2023/2023-08-03-tiktok-ads-v1.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: tiktok-ads connection-version: 1 -pull-request: "https://github.com/singer-io/tap-tiktok-ads/pull/24" +pull_request: "https://github.com/singer-io/tap-tiktok-ads/pull/24" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-08-09-square-v2-payouts-stream.md b/_changelog-files/2023/2023-08-09-square-v2-payouts-stream.md index 537788ba2..1ee18cbc4 100644 --- a/_changelog-files/2023/2023-08-09-square-v2-payouts-stream.md +++ b/_changelog-files/2023/2023-08-09-square-v2-payouts-stream.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: square connection-version: 2 -pull-request: "https://github.com/singer-io/tap-square/pull/109" +pull_request: "https://github.com/singer-io/tap-square/pull/109" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-08-14-ga4-v1-e-commerce-reports-fields.md b/_changelog-files/2023/2023-08-14-ga4-v1-e-commerce-reports-fields.md index 1bafea1ba..4e3afeaec 100644 --- a/_changelog-files/2023/2023-08-14-ga4-v1-e-commerce-reports-fields.md +++ b/_changelog-files/2023/2023-08-14-ga4-v1-e-commerce-reports-fields.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: google-analytics-4 connection-version: 1 -pull-request: "https://github.com/singer-io/tap-ga4/pull/71" +pull_request: "https://github.com/singer-io/tap-ga4/pull/71" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-08-14-intacct-v1-match-input-filenames.md b/_changelog-files/2023/2023-08-14-intacct-v1-match-input-filenames.md index 0bd4d8a24..0afed2d2e 100644 --- a/_changelog-files/2023/2023-08-14-intacct-v1-match-input-filenames.md +++ b/_changelog-files/2023/2023-08-14-intacct-v1-match-input-filenames.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: intaact connection-version: 1 -pull-request: "https://github.com/singer-io/tap-intacct/pull/11" +pull_request: "https://github.com/singer-io/tap-intacct/pull/11" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-08-14-salesforce-v2.md b/_changelog-files/2023/2023-08-14-salesforce-v2.md index 669c999f7..d314cf01a 100644 --- a/_changelog-files/2023/2023-08-14-salesforce-v2.md +++ b/_changelog-files/2023/2023-08-14-salesforce-v2.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: salesforce connection-version: 2 -pull-request: "https://github.com/singer-io/tap-salesforce/pull/163" +pull_request: "https://github.com/singer-io/tap-salesforce/pull/163" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-08-16-facebook-v1-conversion-fields-insights-streams.md b/_changelog-files/2023/2023-08-16-facebook-v1-conversion-fields-insights-streams.md index b853aa34e..b8d3f58a3 100644 --- a/_changelog-files/2023/2023-08-16-facebook-v1-conversion-fields-insights-streams.md +++ b/_changelog-files/2023/2023-08-16-facebook-v1-conversion-fields-insights-streams.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: facebook-ads connection-version: 1 -pull-request: "https://github.com/singer-io/tap-facebook/pull/204" +pull_request: "https://github.com/singer-io/tap-facebook/pull/204" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-08-18-ga4-v1-new-field-exclusions.md b/_changelog-files/2023/2023-08-18-ga4-v1-new-field-exclusions.md index e45db6346..9059d5a2b 100644 --- a/_changelog-files/2023/2023-08-18-ga4-v1-new-field-exclusions.md +++ b/_changelog-files/2023/2023-08-18-ga4-v1-new-field-exclusions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-analytics-4 connection-version: 1 -pull-request: "https://github.com/singer-io/tap-ga4/pull/75" +pull_request: "https://github.com/singer-io/tap-ga4/pull/75" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-08-29-stripe-v3.md b/_changelog-files/2023/2023-08-29-stripe-v3.md index 0792932d8..cb985d6c9 100644 --- a/_changelog-files/2023/2023-08-29-stripe-v3.md +++ b/_changelog-files/2023/2023-08-29-stripe-v3.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: stripe connection-version: 3 -pull-request: "https://github.com/singer-io/tap-stripe/pull/181" +pull_request: "https://github.com/singer-io/tap-stripe/pull/181" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-08-31-ga4-v1-new-field-exclusions.md b/_changelog-files/2023/2023-08-31-ga4-v1-new-field-exclusions.md index 264f7ca3f..dd5b8ce91 100644 --- a/_changelog-files/2023/2023-08-31-ga4-v1-new-field-exclusions.md +++ b/_changelog-files/2023/2023-08-31-ga4-v1-new-field-exclusions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-analytics-4 connection-version: 1 -pull-request: "https://github.com/singer-io/tap-ga4/pull/77" +pull_request: "https://github.com/singer-io/tap-ga4/pull/77" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-09-06-outreach-v1-request-timeout.md b/_changelog-files/2023/2023-09-06-outreach-v1-request-timeout.md index cfc9cbecf..e2eb16d35 100644 --- a/_changelog-files/2023/2023-09-06-outreach-v1-request-timeout.md +++ b/_changelog-files/2023/2023-09-06-outreach-v1-request-timeout.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: outreach connection-version: 1 -pull-request: "https://github.com/singer-io/tap-outreach/pull/30" +pull_request: "https://github.com/singer-io/tap-outreach/pull/30" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-09-12-github-v2-remove-files-stats-fields.md b/_changelog-files/2023/2023-09-12-github-v2-remove-files-stats-fields.md index bc6aa08df..2e7bb914d 100644 --- a/_changelog-files/2023/2023-09-12-github-v2-remove-files-stats-fields.md +++ b/_changelog-files/2023/2023-09-12-github-v2-remove-files-stats-fields.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: github connection-version: 2 -pull-request: "https://github.com/singer-io/tap-github/pull/198" +pull_request: "https://github.com/singer-io/tap-github/pull/198" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-09-13-facebook-v1-retry-error-503.md b/_changelog-files/2023/2023-09-13-facebook-v1-retry-error-503.md index 7c0d22a8c..e70dbaf89 100644 --- a/_changelog-files/2023/2023-09-13-facebook-v1-retry-error-503.md +++ b/_changelog-files/2023/2023-09-13-facebook-v1-retry-error-503.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: facebook-ads connection-version: 1 -pull-request: "https://github.com/singer-io/tap-facebook/pull/226" +pull_request: "https://github.com/singer-io/tap-facebook/pull/226" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-09-14-kustomer-v1-new-fields.md b/_changelog-files/2023/2023-09-14-kustomer-v1-new-fields.md index fdcfdc289..f433c1b17 100644 --- a/_changelog-files/2023/2023-09-14-kustomer-v1-new-fields.md +++ b/_changelog-files/2023/2023-09-14-kustomer-v1-new-fields.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: kustomer connection-version: 1 -pull-request: "https://github.com/singer-io/tap-kustomer/pull/26" +pull_request: "https://github.com/singer-io/tap-kustomer/pull/26" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-09-21-marketo-v2-validation-error.md b/_changelog-files/2023/2023-09-21-marketo-v2-validation-error.md index 856f079f1..58234ebe3 100644 --- a/_changelog-files/2023/2023-09-21-marketo-v2-validation-error.md +++ b/_changelog-files/2023/2023-09-21-marketo-v2-validation-error.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: marketo connection-version: 2 -pull-request: "https://github.com/singer-io/tap-marketo/pull/84" +pull_request: "https://github.com/singer-io/tap-marketo/pull/84" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-09-28-looker-v1-api-upgrade.md b/_changelog-files/2023/2023-09-28-looker-v1-api-upgrade.md index fd782e978..17bec464a 100644 --- a/_changelog-files/2023/2023-09-28-looker-v1-api-upgrade.md +++ b/_changelog-files/2023/2023-09-28-looker-v1-api-upgrade.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: looker connection-version: 1 -pull-request: "https://github.com/singer-io/tap-looker/pull/13" +pull_request: "https://github.com/singer-io/tap-looker/pull/13" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-10-03-surveymonkey-v2.md b/_changelog-files/2023/2023-10-03-surveymonkey-v2.md index b40a79145..93cc9fbd2 100644 --- a/_changelog-files/2023/2023-10-03-surveymonkey-v2.md +++ b/_changelog-files/2023/2023-10-03-surveymonkey-v2.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: surveymonkey connection-version: 2 -pull-request: "https://github.com/singer-io/tap-surveymonkey/pull/27" +pull_request: "https://github.com/singer-io/tap-surveymonkey/pull/27" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-10-05-mongodb-v3-ssl-issue.md b/_changelog-files/2023/2023-10-05-mongodb-v3-ssl-issue.md index e407f8351..edda8deee 100644 --- a/_changelog-files/2023/2023-10-05-mongodb-v3-ssl-issue.md +++ b/_changelog-files/2023/2023-10-05-mongodb-v3-ssl-issue.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: mongodb connection-version: 3 -pull-request: "https://github.com/singer-io/tap-mongodb/pull/107" +pull_request: "https://github.com/singer-io/tap-mongodb/pull/107" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-10-10-outreach-v1-attribute-fix.md b/_changelog-files/2023/2023-10-10-outreach-v1-attribute-fix.md index 12d0394ed..ebbf62a3b 100644 --- a/_changelog-files/2023/2023-10-10-outreach-v1-attribute-fix.md +++ b/_changelog-files/2023/2023-10-10-outreach-v1-attribute-fix.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: outreach connection-version: 1 -pull-request: "https://github.com/singer-io/tap-outreach/pull/32" +pull_request: "https://github.com/singer-io/tap-outreach/pull/32" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-10-31-chargebee-v1-add-customer-fields.md b/_changelog-files/2023/2023-10-31-chargebee-v1-add-customer-fields.md index e27038793..20a6447c0 100644 --- a/_changelog-files/2023/2023-10-31-chargebee-v1-add-customer-fields.md +++ b/_changelog-files/2023/2023-10-31-chargebee-v1-add-customer-fields.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: chargebee connection-version: 1 -pull-request: "https://github.com/singer-io/tap-chargebee/pull/100" +pull_request: "https://github.com/singer-io/tap-chargebee/pull/100" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-10-31-chargebee-v1-tax-rate-field-type.md b/_changelog-files/2023/2023-10-31-chargebee-v1-tax-rate-field-type.md index f99d23db2..1cbf0df27 100644 --- a/_changelog-files/2023/2023-10-31-chargebee-v1-tax-rate-field-type.md +++ b/_changelog-files/2023/2023-10-31-chargebee-v1-tax-rate-field-type.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: chargebee connection-version: 1 -pull-request: "https://github.com/singer-io/tap-chargebee/pull/102" +pull_request: "https://github.com/singer-io/tap-chargebee/pull/102" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-11-06-intercom-v2-retry-json-decode.md b/_changelog-files/2023/2023-11-06-intercom-v2-retry-json-decode.md index b32226f3d..8e8030b18 100644 --- a/_changelog-files/2023/2023-11-06-intercom-v2-retry-json-decode.md +++ b/_changelog-files/2023/2023-11-06-intercom-v2-retry-json-decode.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: intercom connection-version: 2 -pull-request: "https://github.com/singer-io/tap-intercom/pull/66" +pull_request: "https://github.com/singer-io/tap-intercom/pull/66" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-11-07-ga4-v1-new-field-exclusions.md b/_changelog-files/2023/2023-11-07-ga4-v1-new-field-exclusions.md index 5b1594c03..872313a1f 100644 --- a/_changelog-files/2023/2023-11-07-ga4-v1-new-field-exclusions.md +++ b/_changelog-files/2023/2023-11-07-ga4-v1-new-field-exclusions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-analytics-4 connection-version: 1 -pull-request: "https://github.com/singer-io/tap-ga4/pull/92" +pull_request: "https://github.com/singer-io/tap-ga4/pull/92" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-11-15-snapchat-ads-v1-datetime-conversion-issue.md b/_changelog-files/2023/2023-11-15-snapchat-ads-v1-datetime-conversion-issue.md index 95285dfd8..3858342ab 100644 --- a/_changelog-files/2023/2023-11-15-snapchat-ads-v1-datetime-conversion-issue.md +++ b/_changelog-files/2023/2023-11-15-snapchat-ads-v1-datetime-conversion-issue.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: snapchat-ads connection-version: 1 -pull-request: "https://github.com/singer-io/tap-snapchat-ads/pull/28" +pull_request: "https://github.com/singer-io/tap-snapchat-ads/pull/28" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-11-29-front-v2.md b/_changelog-files/2023/2023-11-29-front-v2.md index 9f797e798..1b4d0a0ad 100644 --- a/_changelog-files/2023/2023-11-29-front-v2.md +++ b/_changelog-files/2023/2023-11-29-front-v2.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: frontapp connection-version: 2 -pull-request: "" +pull_request: "" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-12-12-hubspot-v2-custom-objects.md b/_changelog-files/2023/2023-12-12-hubspot-v2-custom-objects.md index e4d60463a..66c128d95 100644 --- a/_changelog-files/2023/2023-12-12-hubspot-v2-custom-objects.md +++ b/_changelog-files/2023/2023-12-12-hubspot-v2-custom-objects.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: hubspot connection-version: 2 -pull-request: "https://github.com/singer-io/tap-hubspot/pull/242" +pull_request: "https://github.com/singer-io/tap-hubspot/pull/242" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-12-13-google-ads-v1-api-upgrade.md b/_changelog-files/2023/2023-12-13-google-ads-v1-api-upgrade.md index 61d8550de..dbe8f6c00 100644 --- a/_changelog-files/2023/2023-12-13-google-ads-v1-api-upgrade.md +++ b/_changelog-files/2023/2023-12-13-google-ads-v1-api-upgrade.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-ads connection-version: 1 -pull-request: "https://github.com/singer-io/tap-google-ads/pull/86" +pull_request: "https://github.com/singer-io/tap-google-ads/pull/86" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-12-13-surveymonkey-v2-heading-simplified_responses.md b/_changelog-files/2023/2023-12-13-surveymonkey-v2-heading-simplified_responses.md index ba7bc8cc5..fa830b6bc 100644 --- a/_changelog-files/2023/2023-12-13-surveymonkey-v2-heading-simplified_responses.md +++ b/_changelog-files/2023/2023-12-13-surveymonkey-v2-heading-simplified_responses.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: surveymonkey connection-version: 2 -pull-request: "https://github.com/singer-io/tap-surveymonkey/pull/29" +pull_request: "https://github.com/singer-io/tap-surveymonkey/pull/29" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-12-15-recharge-v2-retry-chunkedencodingerror.md b/_changelog-files/2023/2023-12-15-recharge-v2-retry-chunkedencodingerror.md index 50d833797..edbaa4bd6 100644 --- a/_changelog-files/2023/2023-12-15-recharge-v2-retry-chunkedencodingerror.md +++ b/_changelog-files/2023/2023-12-15-recharge-v2-retry-chunkedencodingerror.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: recharge connection-version: 2 -pull-request: "https://github.com/singer-io/tap-recharge/pull/42" +pull_request: "https://github.com/singer-io/tap-recharge/pull/42" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-12-18-asana-v2-new-substasks-table.md b/_changelog-files/2023/2023-12-18-asana-v2-new-substasks-table.md index 379c6c1b8..5f856fb4d 100644 --- a/_changelog-files/2023/2023-12-18-asana-v2-new-substasks-table.md +++ b/_changelog-files/2023/2023-12-18-asana-v2-new-substasks-table.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: asana connection-version: 2 -pull-request: "https://github.com/singer-io/tap-asana/pull/56" +pull_request: "https://github.com/singer-io/tap-asana/pull/56" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-01-10-ga4-v1-new-field-exclusions.md b/_changelog-files/2024/2024-01-10-ga4-v1-new-field-exclusions.md index 75be9df5d..221f3bb49 100644 --- a/_changelog-files/2024/2024-01-10-ga4-v1-new-field-exclusions.md +++ b/_changelog-files/2024/2024-01-10-ga4-v1-new-field-exclusions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-analytics-4 connection-version: 1 -pull-request: "https://github.com/singer-io/tap-ga4/pull/97" +pull_request: "https://github.com/singer-io/tap-ga4/pull/97" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-01-11-mongodb-v3-session-timeout.md b/_changelog-files/2024/2024-01-11-mongodb-v3-session-timeout.md index 12fcb8734..3fdf1d673 100644 --- a/_changelog-files/2024/2024-01-11-mongodb-v3-session-timeout.md +++ b/_changelog-files/2024/2024-01-11-mongodb-v3-session-timeout.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: mongodb connection-version: 3 -pull-request: "https://github.com/singer-io/tap-mongodb/pull/110" +pull_request: "https://github.com/singer-io/tap-mongodb/pull/110" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-01-16-mambu-v4-none-value-support.md b/_changelog-files/2024/2024-01-16-mambu-v4-none-value-support.md index 8e2f475e1..ca1bd2e6a 100644 --- a/_changelog-files/2024/2024-01-16-mambu-v4-none-value-support.md +++ b/_changelog-files/2024/2024-01-16-mambu-v4-none-value-support.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mambu connection-version: 4 -pull-request: "https://github.com/singer-io/tap-mambu/pull/109" +pull_request: "https://github.com/singer-io/tap-mambu/pull/109" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-01-23-hubspot-v2-contact-company-fix.md b/_changelog-files/2024/2024-01-23-hubspot-v2-contact-company-fix.md index be80aaaea..42a034d74 100644 --- a/_changelog-files/2024/2024-01-23-hubspot-v2-contact-company-fix.md +++ b/_changelog-files/2024/2024-01-23-hubspot-v2-contact-company-fix.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: hubspot connection-version: 2 -pull-request: "https://github.com/singer-io/tap-hubspot/pull/250" +pull_request: "https://github.com/singer-io/tap-hubspot/pull/250" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-01-23-mambu-v2-none-support.md b/_changelog-files/2024/2024-01-23-mambu-v2-none-support.md index 0e9deb99d..5fbcbbf6f 100644 --- a/_changelog-files/2024/2024-01-23-mambu-v2-none-support.md +++ b/_changelog-files/2024/2024-01-23-mambu-v2-none-support.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mambu connection-version: 4 -pull-request: "https://github.com/singer-io/tap-mambu/pull/110" +pull_request: "https://github.com/singer-io/tap-mambu/pull/110" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-01-25-ga4-v1-new-field-exclusions.md b/_changelog-files/2024/2024-01-25-ga4-v1-new-field-exclusions.md index 0e611832e..4ef0d7e96 100644 --- a/_changelog-files/2024/2024-01-25-ga4-v1-new-field-exclusions.md +++ b/_changelog-files/2024/2024-01-25-ga4-v1-new-field-exclusions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-analytics-4 connection-version: 1 -pull-request: "https://github.com/singer-io/tap-ga4/pull/100" +pull_request: "https://github.com/singer-io/tap-ga4/pull/100" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-01-25-recharge-v2-improvement-api-calls.md b/_changelog-files/2024/2024-01-25-recharge-v2-improvement-api-calls.md index b7190cd48..3f9b63121 100644 --- a/_changelog-files/2024/2024-01-25-recharge-v2-improvement-api-calls.md +++ b/_changelog-files/2024/2024-01-25-recharge-v2-improvement-api-calls.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: recharge connection-version: 2 -pull-request: "https://github.com/singer-io/tap-recharge/pull/43" +pull_request: "https://github.com/singer-io/tap-recharge/pull/43" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-02-07-amazon-s3-csv-v1-missing-type-info-json-schema.md b/_changelog-files/2024/2024-02-07-amazon-s3-csv-v1-missing-type-info-json-schema.md index 668bd1c32..c4f5f82ab 100644 --- a/_changelog-files/2024/2024-02-07-amazon-s3-csv-v1-missing-type-info-json-schema.md +++ b/_changelog-files/2024/2024-02-07-amazon-s3-csv-v1-missing-type-info-json-schema.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: amazon-s3-csv connection-version: 1 -pull-request: "https://github.com/singer-io/tap-s3-csv/pull/62" +pull_request: "https://github.com/singer-io/tap-s3-csv/pull/62" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-02-14-mongodb-v3-server-not-supporting-sessions.md b/_changelog-files/2024/2024-02-14-mongodb-v3-server-not-supporting-sessions.md index a76c4bccd..dabbe92b3 100644 --- a/_changelog-files/2024/2024-02-14-mongodb-v3-server-not-supporting-sessions.md +++ b/_changelog-files/2024/2024-02-14-mongodb-v3-server-not-supporting-sessions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mongodb connection-version: 3 -pull-request: "https://github.com/singer-io/tap-mongodb/pull/112" +pull_request: "https://github.com/singer-io/tap-mongodb/pull/112" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-02-20-mambu-v4-update-table-full-table.md b/_changelog-files/2024/2024-02-20-mambu-v4-update-table-full-table.md index 00be385b4..adf313b96 100644 --- a/_changelog-files/2024/2024-02-20-mambu-v4-update-table-full-table.md +++ b/_changelog-files/2024/2024-02-20-mambu-v4-update-table-full-table.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mambu connection-version: 4 -pull-request: "https://github.com/singer-io/tap-mambu/pull/111" +pull_request: "https://github.com/singer-io/tap-mambu/pull/111" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-02-29-shopify-v1-api-upgrade-schema-change.md b/_changelog-files/2024/2024-02-29-shopify-v1-api-upgrade-schema-change.md index 34538b0e5..118e98670 100644 --- a/_changelog-files/2024/2024-02-29-shopify-v1-api-upgrade-schema-change.md +++ b/_changelog-files/2024/2024-02-29-shopify-v1-api-upgrade-schema-change.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: shopify connection-version: 1 -pull-request: "https://github.com/singer-io/tap-shopify/pull/187" +pull_request: "https://github.com/singer-io/tap-shopify/pull/187" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-03-06-facebook-v1-sdk-version-upgrade.md b/_changelog-files/2024/2024-03-06-facebook-v1-sdk-version-upgrade.md index 3d3b9adef..15e0d7e59 100644 --- a/_changelog-files/2024/2024-03-06-facebook-v1-sdk-version-upgrade.md +++ b/_changelog-files/2024/2024-03-06-facebook-v1-sdk-version-upgrade.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: facebook-ads connection-version: 1 -pull-request: "https://github.com/singer-io/tap-facebook/pull/238" +pull_request: "https://github.com/singer-io/tap-facebook/pull/238" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-03-11-github-v2-events-uri-format-removed.md b/_changelog-files/2024/2024-03-11-github-v2-events-uri-format-removed.md index 063eedb5c..466b0b884 100644 --- a/_changelog-files/2024/2024-03-11-github-v2-events-uri-format-removed.md +++ b/_changelog-files/2024/2024-03-11-github-v2-events-uri-format-removed.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: github connection-version: 2 -pull-request: "https://github.com/singer-io/tap-github/pull/205" +pull_request: "https://github.com/singer-io/tap-github/pull/205" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-03-12-google-sheets-new-v3.md b/_changelog-files/2024/2024-03-12-google-sheets-new-v3.md index bf4099c3d..0b823fd24 100644 --- a/_changelog-files/2024/2024-03-12-google-sheets-new-v3.md +++ b/_changelog-files/2024/2024-03-12-google-sheets-new-v3.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: google-sheets connection-version: 3 -pull-request: "https://github.com/singer-io/tap-google-sheets/pull/95" +pull_request: "https://github.com/singer-io/tap-google-sheets/pull/95" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-03-12-salesforce-v2-fix-pk-chunking-condition.md b/_changelog-files/2024/2024-03-12-salesforce-v2-fix-pk-chunking-condition.md index f549c8773..ac948a2b7 100644 --- a/_changelog-files/2024/2024-03-12-salesforce-v2-fix-pk-chunking-condition.md +++ b/_changelog-files/2024/2024-03-12-salesforce-v2-fix-pk-chunking-condition.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: tap-salesforce connection-version: 2 -pull-request: "https://github.com/singer-io/tap-salesforce/pull/176" +pull_request: "https://github.com/singer-io/tap-salesforce/pull/176" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-04-01-ga4-v1-fix-new-supported-data-type.md b/_changelog-files/2024/2024-04-01-ga4-v1-fix-new-supported-data-type.md index 954ec8891..439d8fcf6 100644 --- a/_changelog-files/2024/2024-04-01-ga4-v1-fix-new-supported-data-type.md +++ b/_changelog-files/2024/2024-04-01-ga4-v1-fix-new-supported-data-type.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: google-analytics-4 connection-version: 1 -pull-request: "https://github.com/singer-io/tap-ga4/pull/102" +pull_request: "https://github.com/singer-io/tap-ga4/pull/102" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-04-01-ga4-v1-new-field-exclusions.md b/_changelog-files/2024/2024-04-01-ga4-v1-new-field-exclusions.md index 423aad383..4402e2a5e 100644 --- a/_changelog-files/2024/2024-04-01-ga4-v1-new-field-exclusions.md +++ b/_changelog-files/2024/2024-04-01-ga4-v1-new-field-exclusions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-analytics-4 connection-version: 1 -pull-request: "https://github.com/singer-io/tap-ga4/pull/101" +pull_request: "https://github.com/singer-io/tap-ga4/pull/101" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-04-15-facebook-v1-summary-param-error.md b/_changelog-files/2024/2024-04-15-facebook-v1-summary-param-error.md index 6a568ee63..1fe212e94 100644 --- a/_changelog-files/2024/2024-04-15-facebook-v1-summary-param-error.md +++ b/_changelog-files/2024/2024-04-15-facebook-v1-summary-param-error.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: facebook-ads connection-version: 1 -pull-request: "https://github.com/singer-io/tap-facebook/pull/239" +pull_request: "https://github.com/singer-io/tap-facebook/pull/239" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-04-15-linkedin-ads-v2-api-upgrade-new-fields.md b/_changelog-files/2024/2024-04-15-linkedin-ads-v2-api-upgrade-new-fields.md index af2a302db..54ff6a3a3 100644 --- a/_changelog-files/2024/2024-04-15-linkedin-ads-v2-api-upgrade-new-fields.md +++ b/_changelog-files/2024/2024-04-15-linkedin-ads-v2-api-upgrade-new-fields.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: linkedin-ads connection-version: 2 -pull-request: "https://github.com/singer-io/tap-linkedin-ads/pull/69" +pull_request: "https://github.com/singer-io/tap-linkedin-ads/pull/69" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-04-29-chargebee-v1-new-field-subscription-schema.md b/_changelog-files/2024/2024-04-29-chargebee-v1-new-field-subscription-schema.md index 5116581d0..b556b0029 100644 --- a/_changelog-files/2024/2024-04-29-chargebee-v1-new-field-subscription-schema.md +++ b/_changelog-files/2024/2024-04-29-chargebee-v1-new-field-subscription-schema.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: chargebee connection-version: 1 -pull-request: "https://github.com/singer-io/tap-chargebee/pull/109" +pull_request: "https://github.com/singer-io/tap-chargebee/pull/109" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-05-08-intercom-v2-conversations-schema-update.md b/_changelog-files/2024/2024-05-08-intercom-v2-conversations-schema-update.md index a2ff1c4bf..372d16eca 100644 --- a/_changelog-files/2024/2024-05-08-intercom-v2-conversations-schema-update.md +++ b/_changelog-files/2024/2024-05-08-intercom-v2-conversations-schema-update.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: intercom connection-version: 2 -pull-request: "https://github.com/singer-io/tap-intercom/pull/71" +pull_request: "https://github.com/singer-io/tap-intercom/pull/71" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-05-08-intercom-v2-conversations-stream-bookmarking.md b/_changelog-files/2024/2024-05-08-intercom-v2-conversations-stream-bookmarking.md index 62dc558a0..5a0c4f8b8 100644 --- a/_changelog-files/2024/2024-05-08-intercom-v2-conversations-stream-bookmarking.md +++ b/_changelog-files/2024/2024-05-08-intercom-v2-conversations-stream-bookmarking.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: intercom connection-version: 2 -pull-request: "https://github.com/singer-io/tap-intercom/pull/73" +pull_request: "https://github.com/singer-io/tap-intercom/pull/73" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-05-08-intercom-v2-new-fields.md b/_changelog-files/2024/2024-05-08-intercom-v2-new-fields.md index b1a94415c..bef2132a8 100644 --- a/_changelog-files/2024/2024-05-08-intercom-v2-new-fields.md +++ b/_changelog-files/2024/2024-05-08-intercom-v2-new-fields.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: intercom connection-version: 2 -pull-request: "https://github.com/singer-io/tap-intercom/pull/70" +pull_request: "https://github.com/singer-io/tap-intercom/pull/70" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-05-13-mambu-v4-fix-date-windowing-pagination-use.md b/_changelog-files/2024/2024-05-13-mambu-v4-fix-date-windowing-pagination-use.md index 3b7a6873f..4566d9d6d 100644 --- a/_changelog-files/2024/2024-05-13-mambu-v4-fix-date-windowing-pagination-use.md +++ b/_changelog-files/2024/2024-05-13-mambu-v4-fix-date-windowing-pagination-use.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: mambu connection-version: 4 -pull-request: "https://github.com/singer-io/tap-mambu/pull/113" +pull_request: "https://github.com/singer-io/tap-mambu/pull/113" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-05-14-ga4-v1-new-field-exclusions.md b/_changelog-files/2024/2024-05-14-ga4-v1-new-field-exclusions.md index da82f2c04..c9654f2df 100644 --- a/_changelog-files/2024/2024-05-14-ga4-v1-new-field-exclusions.md +++ b/_changelog-files/2024/2024-05-14-ga4-v1-new-field-exclusions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-analytics-4 connection-version: 1 -pull-request: "https://github.com/singer-io/tap-ga4/pull/104" +pull_request: "https://github.com/singer-io/tap-ga4/pull/104" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-05-14-mongodb-v3-string-projection.md b/_changelog-files/2024/2024-05-14-mongodb-v3-string-projection.md index 271e45ac4..cdffe8cc4 100644 --- a/_changelog-files/2024/2024-05-14-mongodb-v3-string-projection.md +++ b/_changelog-files/2024/2024-05-14-mongodb-v3-string-projection.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mongodb connection-version: 3 -pull-request: "https://github.com/singer-io/tap-mongodb/pull/94" +pull_request: "https://github.com/singer-io/tap-mongodb/pull/94" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-05-23-klaviyo-v1-api-update.md b/_changelog-files/2024/2024-05-23-klaviyo-v1-api-update.md index 108386643..6dc73bdfd 100644 --- a/_changelog-files/2024/2024-05-23-klaviyo-v1-api-update.md +++ b/_changelog-files/2024/2024-05-23-klaviyo-v1-api-update.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: tap-klaviyo connection-version: 1 -pull-request: "https://github.com/singer-io/tap-klaviyo/pull/67" +pull_request: "https://github.com/singer-io/tap-klaviyo/pull/67" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-07-23-hubspot-v3-new-version.md b/_changelog-files/2024/2024-07-23-hubspot-v3-new-version.md index 0def6ffbd..416bc4716 100644 --- a/_changelog-files/2024/2024-07-23-hubspot-v3-new-version.md +++ b/_changelog-files/2024/2024-07-23-hubspot-v3-new-version.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: hubspot connection-version: 3 -pull-request: "https://github.com/singer-io/tap-hubspot/pull/256" +pull_request: "https://github.com/singer-io/tap-hubspot/pull/256" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-09-05-activecampaign-v1-update-bounce-logs.md b/_changelog-files/2024/2024-09-05-activecampaign-v1-update-bounce-logs.md index 795e42d7c..80a312465 100644 --- a/_changelog-files/2024/2024-09-05-activecampaign-v1-update-bounce-logs.md +++ b/_changelog-files/2024/2024-09-05-activecampaign-v1-update-bounce-logs.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: activecampaign connection-version: 1 -pull-request: "https://github.com/singer-io/tap-activecampaign/pull/42" +pull_request: "https://github.com/singer-io/tap-activecampaign/pull/42" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-09-05-google-sheets-v3-deprecation-file-metadata.md b/_changelog-files/2024/2024-09-05-google-sheets-v3-deprecation-file-metadata.md index 92385a43e..43669c824 100644 --- a/_changelog-files/2024/2024-09-05-google-sheets-v3-deprecation-file-metadata.md +++ b/_changelog-files/2024/2024-09-05-google-sheets-v3-deprecation-file-metadata.md @@ -6,7 +6,7 @@ entry-type: deprecation entry-category: integration connection-id: google-sheets connection-version: 3 -pull-request: "https://github.com/singer-io/tap-google-sheets/pull/96" +pull_request: "https://github.com/singer-io/tap-google-sheets/pull/96" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-10-24-sftp-v2-new-supported-encoding-formats.md b/_changelog-files/2024/2024-10-24-sftp-v2-new-supported-encoding-formats.md index 576e5a03c..9d2a127d0 100644 --- a/_changelog-files/2024/2024-10-24-sftp-v2-new-supported-encoding-formats.md +++ b/_changelog-files/2024/2024-10-24-sftp-v2-new-supported-encoding-formats.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: sftp connection-version: 1 -pull-request: "https://github.com/singer-io/tap-sftp/pull/44" +pull_request: "https://github.com/singer-io/tap-sftp/pull/44" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-10-28-hubspot-v3-support-deals-streams.md b/_changelog-files/2024/2024-10-28-hubspot-v3-support-deals-streams.md index 69af00374..96df7eb66 100644 --- a/_changelog-files/2024/2024-10-28-hubspot-v3-support-deals-streams.md +++ b/_changelog-files/2024/2024-10-28-hubspot-v3-support-deals-streams.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: hubspot connection-version: 3 -pull-request: "https://github.com/singer-io/tap-hubspot/pull/265" +pull_request: "https://github.com/singer-io/tap-hubspot/pull/265" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-10-29-zendesk-chat-v1-support-subdomain.md b/_changelog-files/2024/2024-10-29-zendesk-chat-v1-support-subdomain.md index 6e2c1c8f5..e2adfed41 100644 --- a/_changelog-files/2024/2024-10-29-zendesk-chat-v1-support-subdomain.md +++ b/_changelog-files/2024/2024-10-29-zendesk-chat-v1-support-subdomain.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: zendesk connection-version: 1 -pull-request: "https://github.com/singer-io/tap-zendesk-chat/pull/52" +pull_request: "https://github.com/singer-io/tap-zendesk-chat/pull/52" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-11-04-square-v2-fix-singer-decimal.md b/_changelog-files/2024/2024-11-04-square-v2-fix-singer-decimal.md index 6943dd757..309bea510 100644 --- a/_changelog-files/2024/2024-11-04-square-v2-fix-singer-decimal.md +++ b/_changelog-files/2024/2024-11-04-square-v2-fix-singer-decimal.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: square connection-version: 2 -pull-request: "https://github.com/singer-io/tap-square/pull/120" +pull_request: "https://github.com/singer-io/tap-square/pull/120" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-11-07-zendesk-v2-improvement-performance.md b/_changelog-files/2024/2024-11-07-zendesk-v2-improvement-performance.md index ddebaa33a..291860bff 100644 --- a/_changelog-files/2024/2024-11-07-zendesk-v2-improvement-performance.md +++ b/_changelog-files/2024/2024-11-07-zendesk-v2-improvement-performance.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: zendesk connection-version: 2 -pull-request: "https://github.com/singer-io/tap-zendesk/pull/150" +pull_request: "https://github.com/singer-io/tap-zendesk/pull/150" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-11-20-amazon-s3-csv-v1-fix-missing-documents.md b/_changelog-files/2024/2024-11-20-amazon-s3-csv-v1-fix-missing-documents.md index ee9b48043..06f53b6d5 100644 --- a/_changelog-files/2024/2024-11-20-amazon-s3-csv-v1-fix-missing-documents.md +++ b/_changelog-files/2024/2024-11-20-amazon-s3-csv-v1-fix-missing-documents.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: amazon-s3-csv connection-version: 1 -pull-request: "https://github.com/singer-io/tap-s3-csv/pull/67" +pull_request: "https://github.com/singer-io/tap-s3-csv/pull/67" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-11-20-dixa-v1-fix-chunk-length.md b/_changelog-files/2024/2024-11-20-dixa-v1-fix-chunk-length.md index ed65984ab..186dc3eda 100644 --- a/_changelog-files/2024/2024-11-20-dixa-v1-fix-chunk-length.md +++ b/_changelog-files/2024/2024-11-20-dixa-v1-fix-chunk-length.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: dixa connection-version: 1 -pull-request: "https://github.com/singer-io/tap-dixa/pull/21" +pull_request: "https://github.com/singer-io/tap-dixa/pull/21" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-11-27-zendesk-v2-fix-rate-limit.md b/_changelog-files/2024/2024-11-27-zendesk-v2-fix-rate-limit.md index bc98598c1..d1d03c757 100644 --- a/_changelog-files/2024/2024-11-27-zendesk-v2-fix-rate-limit.md +++ b/_changelog-files/2024/2024-11-27-zendesk-v2-fix-rate-limit.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: zendesk connection-version: 2 -pull-request: "https://github.com/singer-io/tap-zendesk/pull/155" +pull_request: "https://github.com/singer-io/tap-zendesk/pull/155" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-12-04-ga360-6.md b/_changelog-files/2024/2024-12-04-ga360-6.md index 79260bc65..a6899c928 100644 --- a/_changelog-files/2024/2024-12-04-ga360-6.md +++ b/_changelog-files/2024/2024-12-04-ga360-6.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: google-analytics-360 connection-version: 1 -pull-request: "https://github.com/singer-io/tap-ga360/pull/6" +pull_request: "https://github.com/singer-io/tap-ga360/pull/6" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-12-10-sendgrid-v1-fix-pytz.md b/_changelog-files/2024/2024-12-10-sendgrid-v1-fix-pytz.md index 48aca7c3e..c8794ba8a 100644 --- a/_changelog-files/2024/2024-12-10-sendgrid-v1-fix-pytz.md +++ b/_changelog-files/2024/2024-12-10-sendgrid-v1-fix-pytz.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: sendgrid-core connection-version: 1 -pull-request: "https://github.com/singer-io/tap-sendgrid/pull/13" +pull_request: "https://github.com/singer-io/tap-sendgrid/pull/13" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-12-16-impact-v1-start-date.md b/_changelog-files/2024/2024-12-16-impact-v1-start-date.md index 1d246bba3..0073aa4cc 100644 --- a/_changelog-files/2024/2024-12-16-impact-v1-start-date.md +++ b/_changelog-files/2024/2024-12-16-impact-v1-start-date.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: impact connection-version: 1 -pull-request: "https://github.com/singer-io/tap-impact/pull/33" +pull_request: "https://github.com/singer-io/tap-impact/pull/33" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-12-18-klaviyo-v1-update-requests.md b/_changelog-files/2024/2024-12-18-klaviyo-v1-update-requests.md index db3722f51..74843bead 100644 --- a/_changelog-files/2024/2024-12-18-klaviyo-v1-update-requests.md +++ b/_changelog-files/2024/2024-12-18-klaviyo-v1-update-requests.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: klaviyo connection-version: 1 -pull-request: "https://github.com/singer-io/tap-klaviyo/pull/73" +pull_request: "https://github.com/singer-io/tap-klaviyo/pull/73" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-12-18-mongodb-v3-terminaltables-removal.md b/_changelog-files/2024/2024-12-18-mongodb-v3-terminaltables-removal.md index 6c526ac79..d3cd99da0 100644 --- a/_changelog-files/2024/2024-12-18-mongodb-v3-terminaltables-removal.md +++ b/_changelog-files/2024/2024-12-18-mongodb-v3-terminaltables-removal.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mongodb connection-version: 3 -pull-request: "https://github.com/singer-io/tap-mongodb/pull/120" +pull_request: "https://github.com/singer-io/tap-mongodb/pull/120" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-12-19-dynamodb-v1-terminaltables-removal.md b/_changelog-files/2024/2024-12-19-dynamodb-v1-terminaltables-removal.md index 2a4667fbc..99ed4d9c1 100644 --- a/_changelog-files/2024/2024-12-19-dynamodb-v1-terminaltables-removal.md +++ b/_changelog-files/2024/2024-12-19-dynamodb-v1-terminaltables-removal.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: amazon-dynamodb connection-version: 1 -pull-request: "https://github.com/singer-io/tap-dynamodb/pull/60" +pull_request: "https://github.com/singer-io/tap-dynamodb/pull/60" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-12-19-sftp-v1-terminaltables-removal.md b/_changelog-files/2024/2024-12-19-sftp-v1-terminaltables-removal.md index 2e7c15268..a3fbd4d86 100644 --- a/_changelog-files/2024/2024-12-19-sftp-v1-terminaltables-removal.md +++ b/_changelog-files/2024/2024-12-19-sftp-v1-terminaltables-removal.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: sftp connection-version: 1 -pull-request: "https://github.com/singer-io/tap-sftp/pull/47" +pull_request: "https://github.com/singer-io/tap-sftp/pull/47" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-01-06-ga4-fix-metrics-data-incompatibility.md b/_changelog-files/2025/2025-01-06-ga4-fix-metrics-data-incompatibility.md index faf2975bb..ebc2676ef 100644 --- a/_changelog-files/2025/2025-01-06-ga4-fix-metrics-data-incompatibility.md +++ b/_changelog-files/2025/2025-01-06-ga4-fix-metrics-data-incompatibility.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: google-analytics-4 connection-version: 1 -pull-request: "https://github.com/singer-io/tap-ga4/pull/106" +pull_request: "https://github.com/singer-io/tap-ga4/pull/106" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-01-07-amazon-s3-csv-v1-improvement-role-assumption.md b/_changelog-files/2025/2025-01-07-amazon-s3-csv-v1-improvement-role-assumption.md index be608f3eb..618ad51cb 100644 --- a/_changelog-files/2025/2025-01-07-amazon-s3-csv-v1-improvement-role-assumption.md +++ b/_changelog-files/2025/2025-01-07-amazon-s3-csv-v1-improvement-role-assumption.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: amazon-s3-csv connection-version: 1 -pull-request: "hhttps://github.com/singer-io/tap-s3-csv/pull/69" +pull_request: "hhttps://github.com/singer-io/tap-s3-csv/pull/69" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-01-07-dynamodb-v1-improvement-role-assumption.md b/_changelog-files/2025/2025-01-07-dynamodb-v1-improvement-role-assumption.md index 508d2ef0a..9c50f3e34 100644 --- a/_changelog-files/2025/2025-01-07-dynamodb-v1-improvement-role-assumption.md +++ b/_changelog-files/2025/2025-01-07-dynamodb-v1-improvement-role-assumption.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: amazon-dynamodb connection-version: 1 -pull-request: "https://github.com/singer-io/tap-dynamodb/pull/59" +pull_request: "https://github.com/singer-io/tap-dynamodb/pull/59" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-01-07-heap-v1-improvement-role-assumption.md b/_changelog-files/2025/2025-01-07-heap-v1-improvement-role-assumption.md index 49eafb3dd..0ce44a7a1 100644 --- a/_changelog-files/2025/2025-01-07-heap-v1-improvement-role-assumption.md +++ b/_changelog-files/2025/2025-01-07-heap-v1-improvement-role-assumption.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: heap connection-version: 1 -pull-request: "https://github.com/singer-io/tap-heap/pull/21" +pull_request: "https://github.com/singer-io/tap-heap/pull/21" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-01-08-mongodb-v3-pymongo-upgrade.md b/_changelog-files/2025/2025-01-08-mongodb-v3-pymongo-upgrade.md index f89737abb..cbb4be40c 100644 --- a/_changelog-files/2025/2025-01-08-mongodb-v3-pymongo-upgrade.md +++ b/_changelog-files/2025/2025-01-08-mongodb-v3-pymongo-upgrade.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mongodb connection-version: 3 -pull-request: "https://github.com/singer-io/tap-mongodb/pull/121" +pull_request: "https://github.com/singer-io/tap-mongodb/pull/121" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-01-09-activecampaign-v1-upgrade-lib-version.md b/_changelog-files/2025/2025-01-09-activecampaign-v1-upgrade-lib-version.md index 6009ad7a6..5dd019fba 100644 --- a/_changelog-files/2025/2025-01-09-activecampaign-v1-upgrade-lib-version.md +++ b/_changelog-files/2025/2025-01-09-activecampaign-v1-upgrade-lib-version.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: activecampaign connection-version: 1 -pull-request: "https://github.com/singer-io/tap-activecampaign/pull/43" +pull_request: "https://github.com/singer-io/tap-activecampaign/pull/43" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-01-09-intercom-v2-update-requests-upgrade.md b/_changelog-files/2025/2025-01-09-intercom-v2-update-requests-upgrade.md index cdbbfaff7..c6cb53c5a 100644 --- a/_changelog-files/2025/2025-01-09-intercom-v2-update-requests-upgrade.md +++ b/_changelog-files/2025/2025-01-09-intercom-v2-update-requests-upgrade.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: intercom connection-version: 2 -pull-request: "https://github.com/singer-io/tap-intercom/pull/62" +pull_request: "https://github.com/singer-io/tap-intercom/pull/62" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-01-09-microsoft-advertising-v2-stringcase-removal.md b/_changelog-files/2025/2025-01-09-microsoft-advertising-v2-stringcase-removal.md index c05fc484f..2535a46da 100644 --- a/_changelog-files/2025/2025-01-09-microsoft-advertising-v2-stringcase-removal.md +++ b/_changelog-files/2025/2025-01-09-microsoft-advertising-v2-stringcase-removal.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: bing-ads connection-version: 2 -pull-request: "https://github.com/singer-io/tap-bing-ads/pull/114" +pull_request: "https://github.com/singer-io/tap-bing-ads/pull/114" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-01-09-typeform-v2-ratelimit-removal.md b/_changelog-files/2025/2025-01-09-typeform-v2-ratelimit-removal.md index 22c412c0a..141cd768d 100644 --- a/_changelog-files/2025/2025-01-09-typeform-v2-ratelimit-removal.md +++ b/_changelog-files/2025/2025-01-09-typeform-v2-ratelimit-removal.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: typeform connection-version: 2 -pull-request: "https://github.com/singer-io/tap-typeform/pull/83" +pull_request: "https://github.com/singer-io/tap-typeform/pull/83" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-01-09-yotpo-v2-update-requests-upgrade.md b/_changelog-files/2025/2025-01-09-yotpo-v2-update-requests-upgrade.md index 143ff6dca..9e0057db7 100644 --- a/_changelog-files/2025/2025-01-09-yotpo-v2-update-requests-upgrade.md +++ b/_changelog-files/2025/2025-01-09-yotpo-v2-update-requests-upgrade.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: yotpo connection-version: 2 -pull-request: "https://github.com/singer-io/tap-intercom/pull/62" +pull_request: "https://github.com/singer-io/tap-intercom/pull/62" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-01-10-zendesk-v2-aiohttp-requests-upgrade.md b/_changelog-files/2025/2025-01-10-zendesk-v2-aiohttp-requests-upgrade.md index 362fa7d73..ebec6a42b 100644 --- a/_changelog-files/2025/2025-01-10-zendesk-v2-aiohttp-requests-upgrade.md +++ b/_changelog-files/2025/2025-01-10-zendesk-v2-aiohttp-requests-upgrade.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: zendesk connection-version: 2 -pull-request: "https://github.com/singer-io/tap-zendesk/pull/157" +pull_request: "https://github.com/singer-io/tap-zendesk/pull/157" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-01-13-facebook-v1-api-upgrade.md b/_changelog-files/2025/2025-01-13-facebook-v1-api-upgrade.md index 943759841..d5b12571b 100644 --- a/_changelog-files/2025/2025-01-13-facebook-v1-api-upgrade.md +++ b/_changelog-files/2025/2025-01-13-facebook-v1-api-upgrade.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: facebook-ads connection-version: 1 -pull-request: "https://github.com/singer-io/tap-facebook/pull/242" +pull_request: "https://github.com/singer-io/tap-facebook/pull/242" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-01-13-github-v2-new-bookmark-format.md b/_changelog-files/2025/2025-01-13-github-v2-new-bookmark-format.md index 45557b249..e185d720b 100644 --- a/_changelog-files/2025/2025-01-13-github-v2-new-bookmark-format.md +++ b/_changelog-files/2025/2025-01-13-github-v2-new-bookmark-format.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: github connection-version: 2 -pull-request: "https://github.com/singer-io/tap-github/pull/212" +pull_request: "https://github.com/singer-io/tap-github/pull/212" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-01-13-slack-v1-pipefilelock-removal.md b/_changelog-files/2025/2025-01-13-slack-v1-pipefilelock-removal.md index 4288eb32b..c76fe4d7e 100644 --- a/_changelog-files/2025/2025-01-13-slack-v1-pipefilelock-removal.md +++ b/_changelog-files/2025/2025-01-13-slack-v1-pipefilelock-removal.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: slack connection-version: 1 -pull-request: "https://github.com/singer-io/tap-slack/pull/22" +pull_request: "https://github.com/singer-io/tap-slack/pull/22" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-01-13-zoom-v1-ratelimit-removal.md b/_changelog-files/2025/2025-01-13-zoom-v1-ratelimit-removal.md index 7f5e637b4..47b4be841 100644 --- a/_changelog-files/2025/2025-01-13-zoom-v1-ratelimit-removal.md +++ b/_changelog-files/2025/2025-01-13-zoom-v1-ratelimit-removal.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: zoom connection-version: 1 -pull-request: "https://github.com/singer-io/tap-zoom/pull/33" +pull_request: "https://github.com/singer-io/tap-zoom/pull/33" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-01-16-deputy-v1-update-requests-upgrade.md b/_changelog-files/2025/2025-01-16-deputy-v1-update-requests-upgrade.md index e6c5e65b0..75475c3e7 100644 --- a/_changelog-files/2025/2025-01-16-deputy-v1-update-requests-upgrade.md +++ b/_changelog-files/2025/2025-01-16-deputy-v1-update-requests-upgrade.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: deputy connection-version: 1 -pull-request: "https://github.com/singer-io/tap-deputy/pull/10" +pull_request: "https://github.com/singer-io/tap-deputy/pull/10" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-01-16-impact-v1-update-pagesize.md b/_changelog-files/2025/2025-01-16-impact-v1-update-pagesize.md index 620314dba..336a4b182 100644 --- a/_changelog-files/2025/2025-01-16-impact-v1-update-pagesize.md +++ b/_changelog-files/2025/2025-01-16-impact-v1-update-pagesize.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: impact connection-version: 1 -pull-request: "https://github.com/singer-io/tap-impact/pull/36" +pull_request: "https://github.com/singer-io/tap-impact/pull/36" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-01-16-zendesk-chat-v2-bug-fix-timezone.md b/_changelog-files/2025/2025-01-16-zendesk-chat-v2-bug-fix-timezone.md index 7ae7b204e..76d4ba809 100644 --- a/_changelog-files/2025/2025-01-16-zendesk-chat-v2-bug-fix-timezone.md +++ b/_changelog-files/2025/2025-01-16-zendesk-chat-v2-bug-fix-timezone.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: zendesk connection-version: 2 -pull-request: "https://github.com/singer-io/tap-zendesk-chat/pull/54" +pull_request: "https://github.com/singer-io/tap-zendesk-chat/pull/54" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-01-20-recharge-v2-multiple-fixes.md b/_changelog-files/2025/2025-01-20-recharge-v2-multiple-fixes.md index 005cc0fdd..2b1007a90 100644 --- a/_changelog-files/2025/2025-01-20-recharge-v2-multiple-fixes.md +++ b/_changelog-files/2025/2025-01-20-recharge-v2-multiple-fixes.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: recharge connection-version: 2 -pull-request: "https://github.com/singer-io/tap-recharge/pull/44" +pull_request: "https://github.com/singer-io/tap-recharge/pull/44" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-01-20-recurly-v1-requests-upgrade.md b/_changelog-files/2025/2025-01-20-recurly-v1-requests-upgrade.md index bb306e2d3..8a2999153 100644 --- a/_changelog-files/2025/2025-01-20-recurly-v1-requests-upgrade.md +++ b/_changelog-files/2025/2025-01-20-recurly-v1-requests-upgrade.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: recurly connection-version: 1 -pull-request: "https://github.com/singer-io/tap-recurly/pull/12" +pull_request: "https://github.com/singer-io/tap-recurly/pull/12" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-01-20-square-v2-roles-stream-removal.md b/_changelog-files/2025/2025-01-20-square-v2-roles-stream-removal.md index 8ca7c8a04..bb9ab5fa2 100644 --- a/_changelog-files/2025/2025-01-20-square-v2-roles-stream-removal.md +++ b/_changelog-files/2025/2025-01-20-square-v2-roles-stream-removal.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: square connection-version: 2 -pull-request: "https://github.com/singer-io/tap-square/pull/121" +pull_request: "https://github.com/singer-io/tap-square/pull/121" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-01-20-xero-v1-new-fields-credit-notes.md b/_changelog-files/2025/2025-01-20-xero-v1-new-fields-credit-notes.md index 607555cf4..326e34f9c 100644 --- a/_changelog-files/2025/2025-01-20-xero-v1-new-fields-credit-notes.md +++ b/_changelog-files/2025/2025-01-20-xero-v1-new-fields-credit-notes.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: xero connection-version: 1 -pull-request: "https://github.com/singer-io/tap-xero/pull/117" +pull_request: "https://github.com/singer-io/tap-xero/pull/117" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-01-21-pipedrive-v1-requests-upgrade.md b/_changelog-files/2025/2025-01-21-pipedrive-v1-requests-upgrade.md index acb054ffb..2e7883389 100644 --- a/_changelog-files/2025/2025-01-21-pipedrive-v1-requests-upgrade.md +++ b/_changelog-files/2025/2025-01-21-pipedrive-v1-requests-upgrade.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: pipedrive connection-version: 1 -pull-request: "https://github.com/singer-io/tap-pipedrive/pull/140" +pull_request: "https://github.com/singer-io/tap-pipedrive/pull/140" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-01-21-twilio-v1-requests-upgrade.md b/_changelog-files/2025/2025-01-21-twilio-v1-requests-upgrade.md index 8365939ae..710443f57 100644 --- a/_changelog-files/2025/2025-01-21-twilio-v1-requests-upgrade.md +++ b/_changelog-files/2025/2025-01-21-twilio-v1-requests-upgrade.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: twilio connection-version: 1 -pull-request: "https://github.com/singer-io/tap-twilio/pull/9" +pull_request: "https://github.com/singer-io/tap-twilio/pull/9" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-01-21-zuora-v1-requests-upgrade.md b/_changelog-files/2025/2025-01-21-zuora-v1-requests-upgrade.md index b456d1c55..9fdfc1799 100644 --- a/_changelog-files/2025/2025-01-21-zuora-v1-requests-upgrade.md +++ b/_changelog-files/2025/2025-01-21-zuora-v1-requests-upgrade.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: zuora connection-version: 1 -pull-request: "https://github.com/singer-io/tap-zuora/pull/77" +pull_request: "https://github.com/singer-io/tap-zuora/pull/77" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-01-22-klaviyo-v1-api-verison-upgrade.md b/_changelog-files/2025/2025-01-22-klaviyo-v1-api-verison-upgrade.md index 4d1444a47..e77285e2e 100644 --- a/_changelog-files/2025/2025-01-22-klaviyo-v1-api-verison-upgrade.md +++ b/_changelog-files/2025/2025-01-22-klaviyo-v1-api-verison-upgrade.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: klaviyo connection-version: 1 -pull-request: "https://github.com/singer-io/tap-klaviyo/pull/74" +pull_request: "https://github.com/singer-io/tap-klaviyo/pull/74" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-01-23-square-v2-bug-fix-list-object.md b/_changelog-files/2025/2025-01-23-square-v2-bug-fix-list-object.md index 59c85aead..a6a12e7b5 100644 --- a/_changelog-files/2025/2025-01-23-square-v2-bug-fix-list-object.md +++ b/_changelog-files/2025/2025-01-23-square-v2-bug-fix-list-object.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: square connection-version: 2 -pull-request: "https://github.com/singer-io/tap-square/pull/124" +pull_request: "https://github.com/singer-io/tap-square/pull/124" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-01-24-shopify-v1-update-migration-graphql.md b/_changelog-files/2025/2025-01-24-shopify-v1-update-migration-graphql.md index 2ad0c41aa..727433c83 100644 --- a/_changelog-files/2025/2025-01-24-shopify-v1-update-migration-graphql.md +++ b/_changelog-files/2025/2025-01-24-shopify-v1-update-migration-graphql.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: shopify connection-version: 1 -pull-request: "https://github.com/singer-io/tap-shopify/pull/193" +pull_request: "https://github.com/singer-io/tap-shopify/pull/193" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-01-27-shopify-v1-fix-graphql.md b/_changelog-files/2025/2025-01-27-shopify-v1-fix-graphql.md index 7e48bc9fc..e05c6ad9f 100644 --- a/_changelog-files/2025/2025-01-27-shopify-v1-fix-graphql.md +++ b/_changelog-files/2025/2025-01-27-shopify-v1-fix-graphql.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: shopify connection-version: 1 -pull-request: "https://github.com/singer-io/tap-shopify/pull/195" +pull_request: "https://github.com/singer-io/tap-shopify/pull/195" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-01-28-pardot-v1-requests-upgrade.md b/_changelog-files/2025/2025-01-28-pardot-v1-requests-upgrade.md index ec1062ce6..85dd2de55 100644 --- a/_changelog-files/2025/2025-01-28-pardot-v1-requests-upgrade.md +++ b/_changelog-files/2025/2025-01-28-pardot-v1-requests-upgrade.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: pardot connection-version: 1 -pull-request: "https://github.com/singer-io/tap-pardot/pull/45" +pull_request: "https://github.com/singer-io/tap-pardot/pull/45" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-02-05-amazon-s3-csv-add-credentials.md b/_changelog-files/2025/2025-02-05-amazon-s3-csv-add-credentials.md index 8c7a6e028..a7d9a9ea1 100644 --- a/_changelog-files/2025/2025-02-05-amazon-s3-csv-add-credentials.md +++ b/_changelog-files/2025/2025-02-05-amazon-s3-csv-add-credentials.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: amazon-s3-csv connection-version: 1 -pull-request: "https://github.com/singer-io/tap-s3-csv/pull/70" +pull_request: "https://github.com/singer-io/tap-s3-csv/pull/70" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-02-05-shopify-v1-bookmark-logic.md b/_changelog-files/2025/2025-02-05-shopify-v1-bookmark-logic.md index 7e1461330..3bc79ad30 100644 --- a/_changelog-files/2025/2025-02-05-shopify-v1-bookmark-logic.md +++ b/_changelog-files/2025/2025-02-05-shopify-v1-bookmark-logic.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: shopify connection-version: 1 -pull-request: "https://github.com/singer-io/tap-shopify/pull/197" +pull_request: "https://github.com/singer-io/tap-shopify/pull/197" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-02-12-intercom-v2-api-upgrade.md b/_changelog-files/2025/2025-02-12-intercom-v2-api-upgrade.md index 4272c3b93..fa50c9641 100644 --- a/_changelog-files/2025/2025-02-12-intercom-v2-api-upgrade.md +++ b/_changelog-files/2025/2025-02-12-intercom-v2-api-upgrade.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: intercom connection-version: 2 -pull-request: "https://github.com/singer-io/tap-intercom/pull/76" +pull_request: "https://github.com/singer-io/tap-intercom/pull/76" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-02-17-mixpanel-v1-make-mp_reserved_insert_id-available-in-export-stream.md b/_changelog-files/2025/2025-02-17-mixpanel-v1-make-mp_reserved_insert_id-available-in-export-stream.md index 96801fc36..0043e6a9d 100644 --- a/_changelog-files/2025/2025-02-17-mixpanel-v1-make-mp_reserved_insert_id-available-in-export-stream.md +++ b/_changelog-files/2025/2025-02-17-mixpanel-v1-make-mp_reserved_insert_id-available-in-export-stream.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mixpanel connection-version: 1 -pull-request: "https://github.com/singer-io/tap-mixpanel/pull/64" +pull_request: "https://github.com/singer-io/tap-mixpanel/pull/64" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-02-19-linkedin-ads-v2-api-version-upgrade-202501.md b/_changelog-files/2025/2025-02-19-linkedin-ads-v2-api-version-upgrade-202501.md index 2f047ae00..0160249a7 100644 --- a/_changelog-files/2025/2025-02-19-linkedin-ads-v2-api-version-upgrade-202501.md +++ b/_changelog-files/2025/2025-02-19-linkedin-ads-v2-api-version-upgrade-202501.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: linkedin-ads connection-version: 2 -pull-request: "https://github.com/singer-io/tap-linkedin-ads/pull/76" +pull_request: "https://github.com/singer-io/tap-linkedin-ads/pull/76" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-02-19-shopify-v3-optimize-shopify-metafields-sync-performance.md b/_changelog-files/2025/2025-02-19-shopify-v3-optimize-shopify-metafields-sync-performance.md index 55f803eab..0733f552a 100644 --- a/_changelog-files/2025/2025-02-19-shopify-v3-optimize-shopify-metafields-sync-performance.md +++ b/_changelog-files/2025/2025-02-19-shopify-v3-optimize-shopify-metafields-sync-performance.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: shopify connection-version: 3 -pull-request: "https://github.com/singer-io/tap-shopify/pull/200" +pull_request: "https://github.com/singer-io/tap-shopify/pull/200" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-02-20-hubspot-v3-explicitly-deselect-unselected-fields.md b/_changelog-files/2025/2025-02-20-hubspot-v3-explicitly-deselect-unselected-fields.md index a979bc92f..1865822ea 100644 --- a/_changelog-files/2025/2025-02-20-hubspot-v3-explicitly-deselect-unselected-fields.md +++ b/_changelog-files/2025/2025-02-20-hubspot-v3-explicitly-deselect-unselected-fields.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: hubspot connection-version: 3 -pull-request: "https://github.com/singer-io/tap-hubspot/pull/266" +pull_request: "https://github.com/singer-io/tap-hubspot/pull/266" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-02-20-mixpanel-v1-remove-required-false-from-engage-schema.md b/_changelog-files/2025/2025-02-20-mixpanel-v1-remove-required-false-from-engage-schema.md index d8ed902d7..f154d82e9 100644 --- a/_changelog-files/2025/2025-02-20-mixpanel-v1-remove-required-false-from-engage-schema.md +++ b/_changelog-files/2025/2025-02-20-mixpanel-v1-remove-required-false-from-engage-schema.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mixpanel connection-version: 1 -pull-request: "https://github.com/singer-io/tap-mixpanel/pull/65" +pull_request: "https://github.com/singer-io/tap-mixpanel/pull/65" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-02-25-pipedrive-v1-fix-the-organizations-stream-schema.md b/_changelog-files/2025/2025-02-25-pipedrive-v1-fix-the-organizations-stream-schema.md index 7ead9c94c..fa98e2fc2 100644 --- a/_changelog-files/2025/2025-02-25-pipedrive-v1-fix-the-organizations-stream-schema.md +++ b/_changelog-files/2025/2025-02-25-pipedrive-v1-fix-the-organizations-stream-schema.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: pipedrive connection-version: 1 -pull-request: "https://github.com/singer-io/tap-pipedrive/pull/142" +pull_request: "https://github.com/singer-io/tap-pipedrive/pull/142" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-02-25-zuora-v1-add-oauth-option-for-authorization.md b/_changelog-files/2025/2025-02-25-zuora-v1-add-oauth-option-for-authorization.md index 5f4dbf8ea..205c0ced5 100644 --- a/_changelog-files/2025/2025-02-25-zuora-v1-add-oauth-option-for-authorization.md +++ b/_changelog-files/2025/2025-02-25-zuora-v1-add-oauth-option-for-authorization.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: zuora connection-version: 1 -pull-request: "https://github.com/singer-io/tap-zuora/pull/79" +pull_request: "https://github.com/singer-io/tap-zuora/pull/79" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-02-26-yotpo-v2-add-backoff-for-connectionreseterror.md b/_changelog-files/2025/2025-02-26-yotpo-v2-add-backoff-for-connectionreseterror.md index 8242da75b..845314d41 100644 --- a/_changelog-files/2025/2025-02-26-yotpo-v2-add-backoff-for-connectionreseterror.md +++ b/_changelog-files/2025/2025-02-26-yotpo-v2-add-backoff-for-connectionreseterror.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: yotpo connection-version: 2 -pull-request: "https://github.com/singer-io/tap-yotpo/pull/59" +pull_request: "https://github.com/singer-io/tap-yotpo/pull/59" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-02-28-ga4-v1-handle-report_definitions-as-lists-or-strings.md b/_changelog-files/2025/2025-02-28-ga4-v1-handle-report_definitions-as-lists-or-strings.md index 343a0f4e2..cf1e75a65 100644 --- a/_changelog-files/2025/2025-02-28-ga4-v1-handle-report_definitions-as-lists-or-strings.md +++ b/_changelog-files/2025/2025-02-28-ga4-v1-handle-report_definitions-as-lists-or-strings.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-analytics-4 connection-version: 1 -pull-request: "https://github.com/singer-io/tap-ga4/pull/107" +pull_request: "https://github.com/singer-io/tap-ga4/pull/107" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-02-28-snapchat-ads-v1-handle-org_account_ids-config-property-as-list-or-json-encoded-string.md b/_changelog-files/2025/2025-02-28-snapchat-ads-v1-handle-org_account_ids-config-property-as-list-or-json-encoded-string.md index 7276eca60..6ab337870 100644 --- a/_changelog-files/2025/2025-02-28-snapchat-ads-v1-handle-org_account_ids-config-property-as-list-or-json-encoded-string.md +++ b/_changelog-files/2025/2025-02-28-snapchat-ads-v1-handle-org_account_ids-config-property-as-list-or-json-encoded-string.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: snapchat-ads connection-version: 1 -pull-request: "https://github.com/singer-io/tap-snapchat-ads/pull/30" +pull_request: "https://github.com/singer-io/tap-snapchat-ads/pull/30" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-03-06-ga4-v1-make-report_definitions-optional.md b/_changelog-files/2025/2025-03-06-ga4-v1-make-report_definitions-optional.md index feb55f9c8..7bed30aab 100644 --- a/_changelog-files/2025/2025-03-06-ga4-v1-make-report_definitions-optional.md +++ b/_changelog-files/2025/2025-03-06-ga4-v1-make-report_definitions-optional.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-analytics-4 connection-version: 1 -pull-request: "https://github.com/singer-io/tap-ga4/pull/109" +pull_request: "https://github.com/singer-io/tap-ga4/pull/109" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-03-11-ga360-v1-upgrade-google-cloud-bigquery.md b/_changelog-files/2025/2025-03-11-ga360-v1-upgrade-google-cloud-bigquery.md index dc43cc8c7..459d9cbf5 100644 --- a/_changelog-files/2025/2025-03-11-ga360-v1-upgrade-google-cloud-bigquery.md +++ b/_changelog-files/2025/2025-03-11-ga360-v1-upgrade-google-cloud-bigquery.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-analytics-360 connection-version: 1 -pull-request: "https://github.com/singer-io/tap-ga360/pull/7" +pull_request: "https://github.com/singer-io/tap-ga360/pull/7" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-03-13-ga4-v1-update-premade-reports.md b/_changelog-files/2025/2025-03-13-ga4-v1-update-premade-reports.md index c31c2cec7..3ed1c9c7b 100644 --- a/_changelog-files/2025/2025-03-13-ga4-v1-update-premade-reports.md +++ b/_changelog-files/2025/2025-03-13-ga4-v1-update-premade-reports.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-analytics-4 connection-version: 1 -pull-request: "https://github.com/singer-io/tap-ga4/pull/110" +pull_request: "https://github.com/singer-io/tap-ga4/pull/110" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-03-18-activecampaign-v1-require-https-and-block-private-ips.md b/_changelog-files/2025/2025-03-18-activecampaign-v1-require-https-and-block-private-ips.md index 47e849a65..9eaa77e6c 100644 --- a/_changelog-files/2025/2025-03-18-activecampaign-v1-require-https-and-block-private-ips.md +++ b/_changelog-files/2025/2025-03-18-activecampaign-v1-require-https-and-block-private-ips.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: activecampaign connection-version: 1 -pull-request: "https://github.com/singer-io/tap-activecampaign/pull/44" +pull_request: "https://github.com/singer-io/tap-activecampaign/pull/44" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-03-25-ga4-v1-update-field-selection.md b/_changelog-files/2025/2025-03-25-ga4-v1-update-field-selection.md index b97f3afcb..294db24e7 100644 --- a/_changelog-files/2025/2025-03-25-ga4-v1-update-field-selection.md +++ b/_changelog-files/2025/2025-03-25-ga4-v1-update-field-selection.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-analytics-4 connection-version: 1 -pull-request: "https://github.com/singer-io/tap-ga4/pull/108" +pull_request: "https://github.com/singer-io/tap-ga4/pull/108" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-03-28-shopify-v3-migrate-shopify-streams-from-rest-api-to-graphql-api.md b/_changelog-files/2025/2025-03-28-shopify-v3-migrate-shopify-streams-from-rest-api-to-graphql-api.md index f74ffc935..edce6f549 100644 --- a/_changelog-files/2025/2025-03-28-shopify-v3-migrate-shopify-streams-from-rest-api-to-graphql-api.md +++ b/_changelog-files/2025/2025-03-28-shopify-v3-migrate-shopify-streams-from-rest-api-to-graphql-api.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: shopify connection-version: 3 -pull-request: "https://github.com/singer-io/tap-shopify/pull/201" +pull_request: "https://github.com/singer-io/tap-shopify/pull/201" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-04-01-ga4-v1-bump-requests-from-2-28-1-to-2-32-3.md b/_changelog-files/2025/2025-04-01-ga4-v1-bump-requests-from-2-28-1-to-2-32-3.md index f9c2fd72a..5238daef6 100644 --- a/_changelog-files/2025/2025-04-01-ga4-v1-bump-requests-from-2-28-1-to-2-32-3.md +++ b/_changelog-files/2025/2025-04-01-ga4-v1-bump-requests-from-2-28-1-to-2-32-3.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-analytics-4 connection-version: 1 -pull-request: "https://github.com/singer-io/tap-ga4/pull/112" +pull_request: "https://github.com/singer-io/tap-ga4/pull/112" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-04-04-shopify-v3-fix-schema-orders.md b/_changelog-files/2025/2025-04-04-shopify-v3-fix-schema-orders.md index 1a12e9c21..7d7f4c8de 100644 --- a/_changelog-files/2025/2025-04-04-shopify-v3-fix-schema-orders.md +++ b/_changelog-files/2025/2025-04-04-shopify-v3-fix-schema-orders.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: shopify connection-version: 3 -pull-request: "https://github.com/singer-io/tap-shopify/pull/208" +pull_request: "https://github.com/singer-io/tap-shopify/pull/208" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-04-09-quickbooks-v2-upgrade-api-minorversion-75.md b/_changelog-files/2025/2025-04-09-quickbooks-v2-upgrade-api-minorversion-75.md index ca116e2ef..b21d70314 100644 --- a/_changelog-files/2025/2025-04-09-quickbooks-v2-upgrade-api-minorversion-75.md +++ b/_changelog-files/2025/2025-04-09-quickbooks-v2-upgrade-api-minorversion-75.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: quickbooks connection-version: 2 -pull-request: "https://github.com/singer-io/tap-quickbooks/pull/74" +pull_request: "https://github.com/singer-io/tap-quickbooks/pull/74" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-04-15-recharge-v2-remove-support-of-page-based-pagination.md b/_changelog-files/2025/2025-04-15-recharge-v2-remove-support-of-page-based-pagination.md index 86f04a153..6c02dc950 100644 --- a/_changelog-files/2025/2025-04-15-recharge-v2-remove-support-of-page-based-pagination.md +++ b/_changelog-files/2025/2025-04-15-recharge-v2-remove-support-of-page-based-pagination.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: recharge connection-version: 2 -pull-request: "https://github.com/singer-io/tap-recharge/pull/45" +pull_request: "https://github.com/singer-io/tap-recharge/pull/45" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-04-16-shopify-v3-enhance-tap-with-additional-fields-across-streams.md b/_changelog-files/2025/2025-04-16-shopify-v3-enhance-tap-with-additional-fields-across-streams.md index 1e2e04b20..bd35389ce 100644 --- a/_changelog-files/2025/2025-04-16-shopify-v3-enhance-tap-with-additional-fields-across-streams.md +++ b/_changelog-files/2025/2025-04-16-shopify-v3-enhance-tap-with-additional-fields-across-streams.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: shopify connection-version: 3 -pull-request: "https://github.com/singer-io/tap-shopify/pull/209" +pull_request: "https://github.com/singer-io/tap-shopify/pull/209" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-04-16-zendesk-v2-fix-incremental-extraction-issue-for-macros.md b/_changelog-files/2025/2025-04-16-zendesk-v2-fix-incremental-extraction-issue-for-macros.md index ce05f3e57..f490367b7 100644 --- a/_changelog-files/2025/2025-04-16-zendesk-v2-fix-incremental-extraction-issue-for-macros.md +++ b/_changelog-files/2025/2025-04-16-zendesk-v2-fix-incremental-extraction-issue-for-macros.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: zendesk connection-version: 2 -pull-request: "https://github.com/singer-io/tap-zendesk/pull/158" +pull_request: "https://github.com/singer-io/tap-zendesk/pull/158" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-04-24-shopify-v3-optimize-refund-and-transactions-sync-by-fetching-only-updated-parent-objects.md b/_changelog-files/2025/2025-04-24-shopify-v3-optimize-refund-and-transactions-sync-by-fetching-only-updated-parent-objects.md index f59f99f88..e25e719f6 100644 --- a/_changelog-files/2025/2025-04-24-shopify-v3-optimize-refund-and-transactions-sync-by-fetching-only-updated-parent-objects.md +++ b/_changelog-files/2025/2025-04-24-shopify-v3-optimize-refund-and-transactions-sync-by-fetching-only-updated-parent-objects.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: shopify connection-version: 3 -pull-request: "https://github.com/singer-io/tap-shopify/pull/212" +pull_request: "https://github.com/singer-io/tap-shopify/pull/212" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-04-24-zuora-v1-update-unsupported-fields.md b/_changelog-files/2025/2025-04-24-zuora-v1-update-unsupported-fields.md index da1d7ae1f..bc526f7c5 100644 --- a/_changelog-files/2025/2025-04-24-zuora-v1-update-unsupported-fields.md +++ b/_changelog-files/2025/2025-04-24-zuora-v1-update-unsupported-fields.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: zuora connection-version: 1 -pull-request: "https://github.com/singer-io/tap-zuora/pull/81" +pull_request: "https://github.com/singer-io/tap-zuora/pull/81" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-04-28-intercom-v2-companies-sync.md b/_changelog-files/2025/2025-04-28-intercom-v2-companies-sync.md index 66880da70..7e05d3e3b 100644 --- a/_changelog-files/2025/2025-04-28-intercom-v2-companies-sync.md +++ b/_changelog-files/2025/2025-04-28-intercom-v2-companies-sync.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: intercom connection-version: 2 -pull-request: "https://github.com/singer-io/tap-intercom/pull/77" +pull_request: "https://github.com/singer-io/tap-intercom/pull/77" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-04-28-mssql-v1-deadlock-error-retry.md b/_changelog-files/2025/2025-04-28-mssql-v1-deadlock-error-retry.md index db557841c..700b15ed4 100644 --- a/_changelog-files/2025/2025-04-28-mssql-v1-deadlock-error-retry.md +++ b/_changelog-files/2025/2025-04-28-mssql-v1-deadlock-error-retry.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: mssql connection-version: 1 -pull-request: "https://github.com/singer-io/tap-mssql/pull/91" +pull_request: "https://github.com/singer-io/tap-mssql/pull/91" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-05-06-mambu-v4-upgrade-api-version-to-v2-for-loan_repayments.md b/_changelog-files/2025/2025-05-06-mambu-v4-upgrade-api-version-to-v2-for-loan_repayments.md index 56bc7a01b..8cf1eda09 100644 --- a/_changelog-files/2025/2025-05-06-mambu-v4-upgrade-api-version-to-v2-for-loan_repayments.md +++ b/_changelog-files/2025/2025-05-06-mambu-v4-upgrade-api-version-to-v2-for-loan_repayments.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mambu connection-version: 4 -pull-request: "https://github.com/singer-io/tap-mambu/pull/123" +pull_request: "https://github.com/singer-io/tap-mambu/pull/123" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-05-06-outreach-v1-fix-for-error-only-`data`-or-`links`-expected-in-relationships.md b/_changelog-files/2025/2025-05-06-outreach-v1-fix-for-error-only-`data`-or-`links`-expected-in-relationships.md index f34aead5e..599fa025a 100644 --- a/_changelog-files/2025/2025-05-06-outreach-v1-fix-for-error-only-`data`-or-`links`-expected-in-relationships.md +++ b/_changelog-files/2025/2025-05-06-outreach-v1-fix-for-error-only-`data`-or-`links`-expected-in-relationships.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: outreach connection-version: 1 -pull-request: "https://github.com/singer-io/tap-outreach/pull/39" +pull_request: "https://github.com/singer-io/tap-outreach/pull/39" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-05-15-twilio-v1-implement-lookback-window-for-messages.md b/_changelog-files/2025/2025-05-15-twilio-v1-implement-lookback-window-for-messages.md index 212807f10..715085b37 100644 --- a/_changelog-files/2025/2025-05-15-twilio-v1-implement-lookback-window-for-messages.md +++ b/_changelog-files/2025/2025-05-15-twilio-v1-implement-lookback-window-for-messages.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: twilio connection-version: 1 -pull-request: "https://github.com/singer-io/tap-twilio/pull/10" +pull_request: "https://github.com/singer-io/tap-twilio/pull/10" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-05-26-shopify-v3-catalog-driven-dynamic-query-pruning-and-error-handling.md b/_changelog-files/2025/2025-05-26-shopify-v3-catalog-driven-dynamic-query-pruning-and-error-handling.md index 682559c65..b1a1dcb06 100644 --- a/_changelog-files/2025/2025-05-26-shopify-v3-catalog-driven-dynamic-query-pruning-and-error-handling.md +++ b/_changelog-files/2025/2025-05-26-shopify-v3-catalog-driven-dynamic-query-pruning-and-error-handling.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: shopify connection-version: 3 -pull-request: "https://github.com/singer-io/tap-shopify/pull/214" +pull_request: "https://github.com/singer-io/tap-shopify/pull/214" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-05-29-shopify-v3-fixes-keyerror-for-abandoned-checkouts.md b/_changelog-files/2025/2025-05-29-shopify-v3-fixes-keyerror-for-abandoned-checkouts.md index b701361f9..a07ba11e8 100644 --- a/_changelog-files/2025/2025-05-29-shopify-v3-fixes-keyerror-for-abandoned-checkouts.md +++ b/_changelog-files/2025/2025-05-29-shopify-v3-fixes-keyerror-for-abandoned-checkouts.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: shopify connection-version: 3 -pull-request: "https://github.com/singer-io/tap-shopify/pull/218" +pull_request: "https://github.com/singer-io/tap-shopify/pull/218" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-06-04-facebook-v1-adds-warning-when-'reach'-is-requested-for-breakdown-queries-13-month.md b/_changelog-files/2025/2025-06-04-facebook-v1-adds-warning-when-'reach'-is-requested-for-breakdown-queries-13-month.md index 461943a8f..afe5b5749 100644 --- a/_changelog-files/2025/2025-06-04-facebook-v1-adds-warning-when-'reach'-is-requested-for-breakdown-queries-13-month.md +++ b/_changelog-files/2025/2025-06-04-facebook-v1-adds-warning-when-'reach'-is-requested-for-breakdown-queries-13-month.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: facebook-ads connection-version: 1 -pull-request: "https://github.com/singer-io/tap-facebook/pull/245" +pull_request: "https://github.com/singer-io/tap-facebook/pull/245" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-06-04-google-ads-v2-upgrade-google-ads-to-v18.md b/_changelog-files/2025/2025-06-04-google-ads-v2-upgrade-google-ads-to-v18.md index 700ced9a5..318735ae3 100644 --- a/_changelog-files/2025/2025-06-04-google-ads-v2-upgrade-google-ads-to-v18.md +++ b/_changelog-files/2025/2025-06-04-google-ads-v2-upgrade-google-ads-to-v18.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-ads connection-version: 2 -pull-request: "https://github.com/singer-io/tap-google-ads/pull/95" +pull_request: "https://github.com/singer-io/tap-google-ads/pull/95" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-06-05-shopify-v3-assign-config-provided-value-to-date_window.md b/_changelog-files/2025/2025-06-05-shopify-v3-assign-config-provided-value-to-date_window.md index 5d24f341d..9094a0540 100644 --- a/_changelog-files/2025/2025-06-05-shopify-v3-assign-config-provided-value-to-date_window.md +++ b/_changelog-files/2025/2025-06-05-shopify-v3-assign-config-provided-value-to-date_window.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: shopify connection-version: 3 -pull-request: "https://github.com/singer-io/tap-shopify/pull/221" +pull_request: "https://github.com/singer-io/tap-shopify/pull/221" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-06-19-shopify-v3-introduce-new-stream-order_shipping_lines.md b/_changelog-files/2025/2025-06-19-shopify-v3-introduce-new-stream-order_shipping_lines.md index 4da94a59a..b0ad3ed36 100644 --- a/_changelog-files/2025/2025-06-19-shopify-v3-introduce-new-stream-order_shipping_lines.md +++ b/_changelog-files/2025/2025-06-19-shopify-v3-introduce-new-stream-order_shipping_lines.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: shopify connection-version: 3 -pull-request: "https://github.com/singer-io/tap-shopify/pull/213" +pull_request: "https://github.com/singer-io/tap-shopify/pull/213" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-06-23-deputy-v1-bump-requests-to-resolve-cve-2024-47081;-bump-backoff-to-more-recent-version.md b/_changelog-files/2025/2025-06-23-deputy-v1-bump-requests-to-resolve-cve-2024-47081;-bump-backoff-to-more-recent-version.md index a0db8204a..0dd25d109 100644 --- a/_changelog-files/2025/2025-06-23-deputy-v1-bump-requests-to-resolve-cve-2024-47081;-bump-backoff-to-more-recent-version.md +++ b/_changelog-files/2025/2025-06-23-deputy-v1-bump-requests-to-resolve-cve-2024-47081;-bump-backoff-to-more-recent-version.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: deputy connection-version: 1 -pull-request: "https://github.com/singer-io/tap-deputy/pull/11" +pull_request: "https://github.com/singer-io/tap-deputy/pull/11" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-06-23-eloqua-v1-bump-singer-python-so-it-can-use-backoff-1-10.md b/_changelog-files/2025/2025-06-23-eloqua-v1-bump-singer-python-so-it-can-use-backoff-1-10.md index fd803b8d0..0a87c2c4c 100644 --- a/_changelog-files/2025/2025-06-23-eloqua-v1-bump-singer-python-so-it-can-use-backoff-1-10.md +++ b/_changelog-files/2025/2025-06-23-eloqua-v1-bump-singer-python-so-it-can-use-backoff-1-10.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: eloqua connection-version: 1 -pull-request: "https://github.com/singer-io/tap-eloqua/pull/47" +pull_request: "https://github.com/singer-io/tap-eloqua/pull/47" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-06-23-impact-v1-bump-backoff-to-a-newer-version.md b/_changelog-files/2025/2025-06-23-impact-v1-bump-backoff-to-a-newer-version.md index 8b8517548..aed2b450f 100644 --- a/_changelog-files/2025/2025-06-23-impact-v1-bump-backoff-to-a-newer-version.md +++ b/_changelog-files/2025/2025-06-23-impact-v1-bump-backoff-to-a-newer-version.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: impact connection-version: 1 -pull-request: "https://github.com/singer-io/tap-impact/pull/39" +pull_request: "https://github.com/singer-io/tap-impact/pull/39" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-06-23-surveymonkey-v2-bump-dependency-versions-for-3pl-compliance.md b/_changelog-files/2025/2025-06-23-surveymonkey-v2-bump-dependency-versions-for-3pl-compliance.md index 907053db1..0ba584964 100644 --- a/_changelog-files/2025/2025-06-23-surveymonkey-v2-bump-dependency-versions-for-3pl-compliance.md +++ b/_changelog-files/2025/2025-06-23-surveymonkey-v2-bump-dependency-versions-for-3pl-compliance.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: surveymonkey connection-version: 2 -pull-request: "https://github.com/singer-io/tap-surveymonkey/pull/35" +pull_request: "https://github.com/singer-io/tap-surveymonkey/pull/35" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-06-24-bigcommerce-v1-bump-requests-to-resolve-cve-2024-47081.md b/_changelog-files/2025/2025-06-24-bigcommerce-v1-bump-requests-to-resolve-cve-2024-47081.md index e191fc3ea..1cfa25829 100644 --- a/_changelog-files/2025/2025-06-24-bigcommerce-v1-bump-requests-to-resolve-cve-2024-47081.md +++ b/_changelog-files/2025/2025-06-24-bigcommerce-v1-bump-requests-to-resolve-cve-2024-47081.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: bigcommerce connection-version: 1 -pull-request: "https://github.com/singer-io/tap-bigcommerce/pull/22" +pull_request: "https://github.com/singer-io/tap-bigcommerce/pull/22" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-06-25-recharge-v2-add-plans-stream.md b/_changelog-files/2025/2025-06-25-recharge-v2-add-plans-stream.md index 4abd5d474..40e971329 100644 --- a/_changelog-files/2025/2025-06-25-recharge-v2-add-plans-stream.md +++ b/_changelog-files/2025/2025-06-25-recharge-v2-add-plans-stream.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: recharge connection-version: 2 -pull-request: "https://github.com/singer-io/tap-recharge/pull/46" +pull_request: "https://github.com/singer-io/tap-recharge/pull/46" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-09-pipedrive-v1-upgrade-api-version-to-v2.md b/_changelog-files/2025/2025-07-09-pipedrive-v1-upgrade-api-version-to-v2.md index 8cb06afd6..48757ca46 100644 --- a/_changelog-files/2025/2025-07-09-pipedrive-v1-upgrade-api-version-to-v2.md +++ b/_changelog-files/2025/2025-07-09-pipedrive-v1-upgrade-api-version-to-v2.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: pipedrive connection-version: 1 -pull-request: "https://github.com/singer-io/tap-pipedrive/pull/144" +pull_request: "https://github.com/singer-io/tap-pipedrive/pull/144" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-09-shopify-v3--add-new-stream-fulfillment-orders.md b/_changelog-files/2025/2025-07-09-shopify-v3--add-new-stream-fulfillment-orders.md index ef7438855..c83b42659 100644 --- a/_changelog-files/2025/2025-07-09-shopify-v3--add-new-stream-fulfillment-orders.md +++ b/_changelog-files/2025/2025-07-09-shopify-v3--add-new-stream-fulfillment-orders.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: shopify connection-version: 3 -pull-request: "https://github.com/singer-io/tap-shopify/pull/222" +pull_request: "https://github.com/singer-io/tap-shopify/pull/222" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-09-shopify-v3-add-fields-in-orders-stream--retaillocation-and-location-id-(within-fulfillments).md b/_changelog-files/2025/2025-07-09-shopify-v3-add-fields-in-orders-stream--retaillocation-and-location-id-(within-fulfillments).md index d0c229005..0da335c17 100644 --- a/_changelog-files/2025/2025-07-09-shopify-v3-add-fields-in-orders-stream--retaillocation-and-location-id-(within-fulfillments).md +++ b/_changelog-files/2025/2025-07-09-shopify-v3-add-fields-in-orders-stream--retaillocation-and-location-id-(within-fulfillments).md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: shopify connection-version: 3 -pull-request: "https://github.com/singer-io/tap-shopify/pull/219" +pull_request: "https://github.com/singer-io/tap-shopify/pull/219" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-10-pipedrive-v1-fix-datetime-conversion-and-nonetype-error.md b/_changelog-files/2025/2025-07-10-pipedrive-v1-fix-datetime-conversion-and-nonetype-error.md index ec9c8fa0d..1f6615758 100644 --- a/_changelog-files/2025/2025-07-10-pipedrive-v1-fix-datetime-conversion-and-nonetype-error.md +++ b/_changelog-files/2025/2025-07-10-pipedrive-v1-fix-datetime-conversion-and-nonetype-error.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: pipedrive connection-version: 1 -pull-request: "https://github.com/singer-io/tap-pipedrive/pull/146" +pull_request: "https://github.com/singer-io/tap-pipedrive/pull/146" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-dixa-v1-bump-versions.md b/_changelog-files/2025/2025-07-14-dixa-v1-bump-versions.md index 251c10fb1..344d319c2 100644 --- a/_changelog-files/2025/2025-07-14-dixa-v1-bump-versions.md +++ b/_changelog-files/2025/2025-07-14-dixa-v1-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: dixa connection-version: 1 -pull-request: "https://github.com/singer-io/tap-dixa/pull/27" +pull_request: "https://github.com/singer-io/tap-dixa/pull/27" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-dynamodb-v1-bump-versions.md b/_changelog-files/2025/2025-07-14-dynamodb-v1-bump-versions.md index 32bc0fafd..9df9dc4b5 100644 --- a/_changelog-files/2025/2025-07-14-dynamodb-v1-bump-versions.md +++ b/_changelog-files/2025/2025-07-14-dynamodb-v1-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: dynamodb connection-version: 1 -pull-request: "https://github.com/singer-io/tap-dynamodb/pull/61" +pull_request: "https://github.com/singer-io/tap-dynamodb/pull/61" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-facebook-v1-bump-versions.md b/_changelog-files/2025/2025-07-14-facebook-v1-bump-versions.md index dee67fe21..962c0f2a8 100644 --- a/_changelog-files/2025/2025-07-14-facebook-v1-bump-versions.md +++ b/_changelog-files/2025/2025-07-14-facebook-v1-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: facebook-ads connection-version: 1 -pull-request: "https://github.com/singer-io/tap-facebook/pull/247" +pull_request: "https://github.com/singer-io/tap-facebook/pull/247" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-frontapp-v2-bump-versions.md b/_changelog-files/2025/2025-07-14-frontapp-v2-bump-versions.md index b56602779..f60179b27 100644 --- a/_changelog-files/2025/2025-07-14-frontapp-v2-bump-versions.md +++ b/_changelog-files/2025/2025-07-14-frontapp-v2-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: frontapp connection-version: 2 -pull-request: "https://github.com/singer-io/tap-frontapp/pull/31" +pull_request: "https://github.com/singer-io/tap-frontapp/pull/31" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-fullstory-v1-bump-versions.md b/_changelog-files/2025/2025-07-14-fullstory-v1-bump-versions.md index 5de6e87d8..875145c96 100644 --- a/_changelog-files/2025/2025-07-14-fullstory-v1-bump-versions.md +++ b/_changelog-files/2025/2025-07-14-fullstory-v1-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: fullstory connection-version: 1 -pull-request: "https://github.com/singer-io/tap-fullstory/pull/13" +pull_request: "https://github.com/singer-io/tap-fullstory/pull/13" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-ga360-v1-bump-versions.md b/_changelog-files/2025/2025-07-14-ga360-v1-bump-versions.md index 303566bb8..7f50fa13a 100644 --- a/_changelog-files/2025/2025-07-14-ga360-v1-bump-versions.md +++ b/_changelog-files/2025/2025-07-14-ga360-v1-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-analytics-360 connection-version: 1 -pull-request: "https://github.com/singer-io/tap-ga360/pull/8" +pull_request: "https://github.com/singer-io/tap-ga360/pull/8" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-ga4-v1-bump-versions.md b/_changelog-files/2025/2025-07-14-ga4-v1-bump-versions.md index 5f3219b3e..41db49782 100644 --- a/_changelog-files/2025/2025-07-14-ga4-v1-bump-versions.md +++ b/_changelog-files/2025/2025-07-14-ga4-v1-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-analytics-4 connection-version: 1 -pull-request: "https://github.com/singer-io/tap-ga4/pull/113" +pull_request: "https://github.com/singer-io/tap-ga4/pull/113" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-gitlab-v1-bump-versions.md b/_changelog-files/2025/2025-07-14-gitlab-v1-bump-versions.md index 78d507ad1..f64b1ba39 100644 --- a/_changelog-files/2025/2025-07-14-gitlab-v1-bump-versions.md +++ b/_changelog-files/2025/2025-07-14-gitlab-v1-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: gitlab connection-version: 1 -pull-request: "https://github.com/singer-io/tap-gitlab/pull/40" +pull_request: "https://github.com/singer-io/tap-gitlab/pull/40" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-google-search-console-v1-bump-versions.md b/_changelog-files/2025/2025-07-14-google-search-console-v1-bump-versions.md index cdc285b75..fc715d1e5 100644 --- a/_changelog-files/2025/2025-07-14-google-search-console-v1-bump-versions.md +++ b/_changelog-files/2025/2025-07-14-google-search-console-v1-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-search-console connection-version: 1 -pull-request: "https://github.com/singer-io/tap-google-search-console/pull/46" +pull_request: "https://github.com/singer-io/tap-google-search-console/pull/46" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-hubspot-v3-bump-versions.md b/_changelog-files/2025/2025-07-14-hubspot-v3-bump-versions.md index 05579e664..21c775bca 100644 --- a/_changelog-files/2025/2025-07-14-hubspot-v3-bump-versions.md +++ b/_changelog-files/2025/2025-07-14-hubspot-v3-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: hubspot connection-version: 3 -pull-request: "https://github.com/singer-io/tap-hubspot/pull/268" +pull_request: "https://github.com/singer-io/tap-hubspot/pull/268" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-intercom-v2-bump-versions.md b/_changelog-files/2025/2025-07-14-intercom-v2-bump-versions.md index 98544f045..2b9b82e26 100644 --- a/_changelog-files/2025/2025-07-14-intercom-v2-bump-versions.md +++ b/_changelog-files/2025/2025-07-14-intercom-v2-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: intercom connection-version: 2 -pull-request: "https://github.com/singer-io/tap-intercom/pull/80" +pull_request: "https://github.com/singer-io/tap-intercom/pull/80" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-jira-v2-bump-versions.md b/_changelog-files/2025/2025-07-14-jira-v2-bump-versions.md index 7437a49fa..03796b355 100644 --- a/_changelog-files/2025/2025-07-14-jira-v2-bump-versions.md +++ b/_changelog-files/2025/2025-07-14-jira-v2-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: jira connection-version: 2 -pull-request: "https://github.com/singer-io/tap-jira/pull/118" +pull_request: "https://github.com/singer-io/tap-jira/pull/118" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-klaviyo-v1-bump-dependencies-for-compliance.md b/_changelog-files/2025/2025-07-14-klaviyo-v1-bump-dependencies-for-compliance.md index 05803a904..8bebd9508 100644 --- a/_changelog-files/2025/2025-07-14-klaviyo-v1-bump-dependencies-for-compliance.md +++ b/_changelog-files/2025/2025-07-14-klaviyo-v1-bump-dependencies-for-compliance.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: klaviyo connection-version: 1 -pull-request: "https://github.com/singer-io/tap-klaviyo/pull/77" +pull_request: "https://github.com/singer-io/tap-klaviyo/pull/77" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-linkedin-ads-v2-bump-versions.md b/_changelog-files/2025/2025-07-14-linkedin-ads-v2-bump-versions.md index ab17621d1..0ce560c8d 100644 --- a/_changelog-files/2025/2025-07-14-linkedin-ads-v2-bump-versions.md +++ b/_changelog-files/2025/2025-07-14-linkedin-ads-v2-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: linkedin-ads connection-version: 2 -pull-request: "https://github.com/singer-io/tap-linkedin-ads/pull/78" +pull_request: "https://github.com/singer-io/tap-linkedin-ads/pull/78" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-mailchimp-v1-bump-dependencies-for-compliance.md b/_changelog-files/2025/2025-07-14-mailchimp-v1-bump-dependencies-for-compliance.md index e1172b8d3..bece774d5 100644 --- a/_changelog-files/2025/2025-07-14-mailchimp-v1-bump-dependencies-for-compliance.md +++ b/_changelog-files/2025/2025-07-14-mailchimp-v1-bump-dependencies-for-compliance.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mailchimp connection-version: 1 -pull-request: "https://github.com/singer-io/tap-mailchimp/pull/67" +pull_request: "https://github.com/singer-io/tap-mailchimp/pull/67" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-marketo-v2-bump-versions.md b/_changelog-files/2025/2025-07-14-marketo-v2-bump-versions.md index 35fb9b51f..8570112ce 100644 --- a/_changelog-files/2025/2025-07-14-marketo-v2-bump-versions.md +++ b/_changelog-files/2025/2025-07-14-marketo-v2-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: marketo connection-version: 2 -pull-request: "https://github.com/singer-io/tap-marketo/pull/99" +pull_request: "https://github.com/singer-io/tap-marketo/pull/99" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-marketo-v2-removes-metadata-from-stream-level-catalog-entry.md b/_changelog-files/2025/2025-07-14-marketo-v2-removes-metadata-from-stream-level-catalog-entry.md index fcf89df25..ab50b6220 100644 --- a/_changelog-files/2025/2025-07-14-marketo-v2-removes-metadata-from-stream-level-catalog-entry.md +++ b/_changelog-files/2025/2025-07-14-marketo-v2-removes-metadata-from-stream-level-catalog-entry.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: marketo connection-version: 2 -pull-request: "https://github.com/singer-io/tap-marketo/pull/98" +pull_request: "https://github.com/singer-io/tap-marketo/pull/98" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-mixpanel-v1-bump-versions.md b/_changelog-files/2025/2025-07-14-mixpanel-v1-bump-versions.md index ceede03c1..7f0aa3034 100644 --- a/_changelog-files/2025/2025-07-14-mixpanel-v1-bump-versions.md +++ b/_changelog-files/2025/2025-07-14-mixpanel-v1-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mixpanel connection-version: 1 -pull-request: "https://github.com/singer-io/tap-mixpanel/pull/66" +pull_request: "https://github.com/singer-io/tap-mixpanel/pull/66" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-outreach-v1-bump-versions.md b/_changelog-files/2025/2025-07-14-outreach-v1-bump-versions.md index e25fe60ed..4f8431951 100644 --- a/_changelog-files/2025/2025-07-14-outreach-v1-bump-versions.md +++ b/_changelog-files/2025/2025-07-14-outreach-v1-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: outreach connection-version: 1 -pull-request: "https://github.com/singer-io/tap-outreach/pull/40" +pull_request: "https://github.com/singer-io/tap-outreach/pull/40" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-pardot-v1-bump-versions.md b/_changelog-files/2025/2025-07-14-pardot-v1-bump-versions.md index 01ddc8599..5392fbcef 100644 --- a/_changelog-files/2025/2025-07-14-pardot-v1-bump-versions.md +++ b/_changelog-files/2025/2025-07-14-pardot-v1-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: pardot connection-version: 1 -pull-request: "https://github.com/singer-io/tap-pardot/pull/48" +pull_request: "https://github.com/singer-io/tap-pardot/pull/48" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-pendo-v1-bump-versions.md b/_changelog-files/2025/2025-07-14-pendo-v1-bump-versions.md index 674dae3a0..84cd4b2e4 100644 --- a/_changelog-files/2025/2025-07-14-pendo-v1-bump-versions.md +++ b/_changelog-files/2025/2025-07-14-pendo-v1-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: pendo connection-version: 1 -pull-request: "https://github.com/singer-io/tap-pendo/pull/131" +pull_request: "https://github.com/singer-io/tap-pendo/pull/131" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-quickbooks-v2-bump-versions.md b/_changelog-files/2025/2025-07-14-quickbooks-v2-bump-versions.md index 3eb368705..52adbc3a0 100644 --- a/_changelog-files/2025/2025-07-14-quickbooks-v2-bump-versions.md +++ b/_changelog-files/2025/2025-07-14-quickbooks-v2-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: quickbooks connection-version: 2 -pull-request: "https://github.com/singer-io/tap-quickbooks/pull/75" +pull_request: "https://github.com/singer-io/tap-quickbooks/pull/75" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-recharge-v2-bump-versions.md b/_changelog-files/2025/2025-07-14-recharge-v2-bump-versions.md index 476b35c0c..4820ea7e8 100644 --- a/_changelog-files/2025/2025-07-14-recharge-v2-bump-versions.md +++ b/_changelog-files/2025/2025-07-14-recharge-v2-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: recharge connection-version: 2 -pull-request: "https://github.com/singer-io/tap-recharge/pull/47" +pull_request: "https://github.com/singer-io/tap-recharge/pull/47" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-s3-csv-v1-bump-versions.md b/_changelog-files/2025/2025-07-14-s3-csv-v1-bump-versions.md index 264a283fd..c337cfa8d 100644 --- a/_changelog-files/2025/2025-07-14-s3-csv-v1-bump-versions.md +++ b/_changelog-files/2025/2025-07-14-s3-csv-v1-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: s3 connection-version: 1 -pull-request: "https://github.com/singer-io/tap-s3-csv/pull/72" +pull_request: "https://github.com/singer-io/tap-s3-csv/pull/72" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-sailthru-v1-bump-versions.md b/_changelog-files/2025/2025-07-14-sailthru-v1-bump-versions.md index b93c9b4c6..8dd1dbccd 100644 --- a/_changelog-files/2025/2025-07-14-sailthru-v1-bump-versions.md +++ b/_changelog-files/2025/2025-07-14-sailthru-v1-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: sailthru connection-version: 1 -pull-request: "https://github.com/singer-io/tap-sailthru/pull/23" +pull_request: "https://github.com/singer-io/tap-sailthru/pull/23" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-taboola-v1-bump-versions.md b/_changelog-files/2025/2025-07-14-taboola-v1-bump-versions.md index 4a70f4674..5ffc4270d 100644 --- a/_changelog-files/2025/2025-07-14-taboola-v1-bump-versions.md +++ b/_changelog-files/2025/2025-07-14-taboola-v1-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: taboola connection-version: 1 -pull-request: "https://github.com/singer-io/tap-taboola/pull/23" +pull_request: "https://github.com/singer-io/tap-taboola/pull/23" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-tiktok-ads-v1-bump-versions.md b/_changelog-files/2025/2025-07-14-tiktok-ads-v1-bump-versions.md index 69c2d82e8..f103f1678 100644 --- a/_changelog-files/2025/2025-07-14-tiktok-ads-v1-bump-versions.md +++ b/_changelog-files/2025/2025-07-14-tiktok-ads-v1-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: tiktok-ads connection-version: 1 -pull-request: "https://github.com/singer-io/tap-tiktok-ads/pull/30" +pull_request: "https://github.com/singer-io/tap-tiktok-ads/pull/30" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-trello-v1-bump-requirement-versions.md b/_changelog-files/2025/2025-07-14-trello-v1-bump-requirement-versions.md index 9d4227b46..d6a22ae08 100644 --- a/_changelog-files/2025/2025-07-14-trello-v1-bump-requirement-versions.md +++ b/_changelog-files/2025/2025-07-14-trello-v1-bump-requirement-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: trello connection-version: 1 -pull-request: "https://github.com/singer-io/tap-trello/pull/35" +pull_request: "https://github.com/singer-io/tap-trello/pull/35" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-twilio-v1-bump-versions.md b/_changelog-files/2025/2025-07-14-twilio-v1-bump-versions.md index 9007afd7b..661792bd1 100644 --- a/_changelog-files/2025/2025-07-14-twilio-v1-bump-versions.md +++ b/_changelog-files/2025/2025-07-14-twilio-v1-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: twilio connection-version: 1 -pull-request: "https://github.com/singer-io/tap-twilio/pull/12" +pull_request: "https://github.com/singer-io/tap-twilio/pull/12" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-workday-raas-v1-bump-versions.md b/_changelog-files/2025/2025-07-14-workday-raas-v1-bump-versions.md index b995f3f16..2f3d4c912 100644 --- a/_changelog-files/2025/2025-07-14-workday-raas-v1-bump-versions.md +++ b/_changelog-files/2025/2025-07-14-workday-raas-v1-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: workday-raas connection-version: 1 -pull-request: "https://github.com/singer-io/tap-workday-raas/pull/18" +pull_request: "https://github.com/singer-io/tap-workday-raas/pull/18" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-zendesk-chat-v1-bump-versions.md b/_changelog-files/2025/2025-07-14-zendesk-chat-v1-bump-versions.md index a8d9ad986..c03097837 100644 --- a/_changelog-files/2025/2025-07-14-zendesk-chat-v1-bump-versions.md +++ b/_changelog-files/2025/2025-07-14-zendesk-chat-v1-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: zendesk-chat connection-version: 1 -pull-request: "https://github.com/singer-io/tap-zendesk-chat/pull/55" +pull_request: "https://github.com/singer-io/tap-zendesk-chat/pull/55" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-zendesk-v2-bump-versions.md b/_changelog-files/2025/2025-07-14-zendesk-v2-bump-versions.md index 282babd65..6899febcd 100644 --- a/_changelog-files/2025/2025-07-14-zendesk-v2-bump-versions.md +++ b/_changelog-files/2025/2025-07-14-zendesk-v2-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: zendesk connection-version: 2 -pull-request: "https://github.com/singer-io/tap-zendesk/pull/159" +pull_request: "https://github.com/singer-io/tap-zendesk/pull/159" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-zoom-v2-bump-versions.md b/_changelog-files/2025/2025-07-14-zoom-v2-bump-versions.md index c42f636a1..d90828a5e 100644 --- a/_changelog-files/2025/2025-07-14-zoom-v2-bump-versions.md +++ b/_changelog-files/2025/2025-07-14-zoom-v2-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: zoom connection-version: 2 -pull-request: "https://github.com/singer-io/tap-zoom/pull/35" +pull_request: "https://github.com/singer-io/tap-zoom/pull/35" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-zuora-v1-bump-dependencies.md b/_changelog-files/2025/2025-07-14-zuora-v1-bump-dependencies.md index f57de4414..4bc78357f 100644 --- a/_changelog-files/2025/2025-07-14-zuora-v1-bump-dependencies.md +++ b/_changelog-files/2025/2025-07-14-zuora-v1-bump-dependencies.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: zuora connection-version: 1 -pull-request: "https://github.com/singer-io/tap-zuora/pull/82" +pull_request: "https://github.com/singer-io/tap-zuora/pull/82" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-16-activecampaign-v1-bump-requests-to-v2-32-4.md b/_changelog-files/2025/2025-07-16-activecampaign-v1-bump-requests-to-v2-32-4.md index 7d79210e4..1e62cba08 100644 --- a/_changelog-files/2025/2025-07-16-activecampaign-v1-bump-requests-to-v2-32-4.md +++ b/_changelog-files/2025/2025-07-16-activecampaign-v1-bump-requests-to-v2-32-4.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: activecampaign connection-version: 1 -pull-request: "https://github.com/singer-io/tap-activecampaign/pull/46" +pull_request: "https://github.com/singer-io/tap-activecampaign/pull/46" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-16-recurly-v1-bump-dependencies.md b/_changelog-files/2025/2025-07-16-recurly-v1-bump-dependencies.md index 7d2fa9fae..7919eb5b9 100644 --- a/_changelog-files/2025/2025-07-16-recurly-v1-bump-dependencies.md +++ b/_changelog-files/2025/2025-07-16-recurly-v1-bump-dependencies.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: recurly connection-version: 1 -pull-request: "https://github.com/singer-io/tap-recurly/pull/13" +pull_request: "https://github.com/singer-io/tap-recurly/pull/13" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-16-toggl-v1-bump-dependencies.md b/_changelog-files/2025/2025-07-16-toggl-v1-bump-dependencies.md index 56e7f7573..2689c9902 100644 --- a/_changelog-files/2025/2025-07-16-toggl-v1-bump-dependencies.md +++ b/_changelog-files/2025/2025-07-16-toggl-v1-bump-dependencies.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: toggl connection-version: 1 -pull-request: "https://github.com/singer-io/tap-toggl/pull/23" +pull_request: "https://github.com/singer-io/tap-toggl/pull/23" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-16-xero-v1-bump-versions.md b/_changelog-files/2025/2025-07-16-xero-v1-bump-versions.md index 5ef897c9a..dd82cc28a 100644 --- a/_changelog-files/2025/2025-07-16-xero-v1-bump-versions.md +++ b/_changelog-files/2025/2025-07-16-xero-v1-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: xero connection-version: 1 -pull-request: "https://github.com/singer-io/tap-xero/pull/122" +pull_request: "https://github.com/singer-io/tap-xero/pull/122" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-16-yotpo-v2-bump-versions.md b/_changelog-files/2025/2025-07-16-yotpo-v2-bump-versions.md index 52e3790ea..9da4b4cc9 100644 --- a/_changelog-files/2025/2025-07-16-yotpo-v2-bump-versions.md +++ b/_changelog-files/2025/2025-07-16-yotpo-v2-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: yotpo connection-version: 2 -pull-request: "https://github.com/singer-io/tap-yotpo/pull/61" +pull_request: "https://github.com/singer-io/tap-yotpo/pull/61" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-17-appsflyer-v1-bump-versions.md b/_changelog-files/2025/2025-07-17-appsflyer-v1-bump-versions.md index f33d22ac5..4bfe7bb7d 100644 --- a/_changelog-files/2025/2025-07-17-appsflyer-v1-bump-versions.md +++ b/_changelog-files/2025/2025-07-17-appsflyer-v1-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: appsflyer connection-version: 1 -pull-request: "https://github.com/singer-io/tap-appsflyer/pull/49" +pull_request: "https://github.com/singer-io/tap-appsflyer/pull/49" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-17-google-ads-v2-bump-versions.md b/_changelog-files/2025/2025-07-17-google-ads-v2-bump-versions.md index 34c18acd1..e4360f81b 100644 --- a/_changelog-files/2025/2025-07-17-google-ads-v2-bump-versions.md +++ b/_changelog-files/2025/2025-07-17-google-ads-v2-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-ads connection-version: 2 -pull-request: "https://github.com/singer-io/tap-google-ads/pull/96" +pull_request: "https://github.com/singer-io/tap-google-ads/pull/96" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-17-google-sheets-v3-bump-versions.md b/_changelog-files/2025/2025-07-17-google-sheets-v3-bump-versions.md index c5b54d3ee..54060b6e5 100644 --- a/_changelog-files/2025/2025-07-17-google-sheets-v3-bump-versions.md +++ b/_changelog-files/2025/2025-07-17-google-sheets-v3-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-sheets connection-version: 3 -pull-request: "https://github.com/singer-io/tap-google-sheets/pull/98" +pull_request: "https://github.com/singer-io/tap-google-sheets/pull/98" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-17-harvest-v2-bump-versions.md b/_changelog-files/2025/2025-07-17-harvest-v2-bump-versions.md index 1d4a12369..3d8b673f5 100644 --- a/_changelog-files/2025/2025-07-17-harvest-v2-bump-versions.md +++ b/_changelog-files/2025/2025-07-17-harvest-v2-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: harvest connection-version: 2 -pull-request: "https://github.com/singer-io/tap-harvest/pull/66" +pull_request: "https://github.com/singer-io/tap-harvest/pull/66" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-17-sftp-v1-bump-versions.md b/_changelog-files/2025/2025-07-17-sftp-v1-bump-versions.md index 7e2145c66..89c2f6dd6 100644 --- a/_changelog-files/2025/2025-07-17-sftp-v1-bump-versions.md +++ b/_changelog-files/2025/2025-07-17-sftp-v1-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: sftp connection-version: 1 -pull-request: "https://github.com/singer-io/tap-sftp/pull/49" +pull_request: "https://github.com/singer-io/tap-sftp/pull/49" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-17-shopify-v3-bump-versions.md b/_changelog-files/2025/2025-07-17-shopify-v3-bump-versions.md index 96dcbe85a..87b7a90bd 100644 --- a/_changelog-files/2025/2025-07-17-shopify-v3-bump-versions.md +++ b/_changelog-files/2025/2025-07-17-shopify-v3-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: shopify connection-version: 3 -pull-request: "https://github.com/singer-io/tap-shopify/pull/228" +pull_request: "https://github.com/singer-io/tap-shopify/pull/228" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-17-snapchat-ads-v1-bump-dependencies-for-compliance.md b/_changelog-files/2025/2025-07-17-snapchat-ads-v1-bump-dependencies-for-compliance.md index 57da6a42e..c6da72d83 100644 --- a/_changelog-files/2025/2025-07-17-snapchat-ads-v1-bump-dependencies-for-compliance.md +++ b/_changelog-files/2025/2025-07-17-snapchat-ads-v1-bump-dependencies-for-compliance.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: snapchat-ads connection-version: 1 -pull-request: "https://github.com/singer-io/tap-snapchat-ads/pull/31" +pull_request: "https://github.com/singer-io/tap-snapchat-ads/pull/31" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-17-snapchat-ads-v1-bump-versions.md b/_changelog-files/2025/2025-07-17-snapchat-ads-v1-bump-versions.md index 0ea2f08aa..d8b8cf6dd 100644 --- a/_changelog-files/2025/2025-07-17-snapchat-ads-v1-bump-versions.md +++ b/_changelog-files/2025/2025-07-17-snapchat-ads-v1-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: snapchat-ads connection-version: 1 -pull-request: "https://github.com/singer-io/tap-snapchat-ads/pull/32" +pull_request: "https://github.com/singer-io/tap-snapchat-ads/pull/32" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-17-typeform-v2-bump-versions.md b/_changelog-files/2025/2025-07-17-typeform-v2-bump-versions.md index 170e75c58..9a2ad9320 100644 --- a/_changelog-files/2025/2025-07-17-typeform-v2-bump-versions.md +++ b/_changelog-files/2025/2025-07-17-typeform-v2-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: typeform connection-version: 2 -pull-request: "https://github.com/singer-io/tap-typeform/pull/85" +pull_request: "https://github.com/singer-io/tap-typeform/pull/85" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-21-adroll-v1-bump-dependency-versions-for-compliance.md b/_changelog-files/2025/2025-07-21-adroll-v1-bump-dependency-versions-for-compliance.md index e85745d44..5e2e2ca59 100644 --- a/_changelog-files/2025/2025-07-21-adroll-v1-bump-dependency-versions-for-compliance.md +++ b/_changelog-files/2025/2025-07-21-adroll-v1-bump-dependency-versions-for-compliance.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: adroll connection-version: 1 -pull-request: "https://github.com/singer-io/tap-adroll/pull/31" +pull_request: "https://github.com/singer-io/tap-adroll/pull/31" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-21-bing-ads-v2-bump-versions.md b/_changelog-files/2025/2025-07-21-bing-ads-v2-bump-versions.md index 4c4b08312..749268e84 100644 --- a/_changelog-files/2025/2025-07-21-bing-ads-v2-bump-versions.md +++ b/_changelog-files/2025/2025-07-21-bing-ads-v2-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: bing-ads connection-version: 2 -pull-request: "https://github.com/singer-io/tap-bing-ads/pull/119" +pull_request: "https://github.com/singer-io/tap-bing-ads/pull/119" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-21-braintree-v1-bump-dependencies-for-compliance.md b/_changelog-files/2025/2025-07-21-braintree-v1-bump-dependencies-for-compliance.md index 6983bf122..2131d6723 100644 --- a/_changelog-files/2025/2025-07-21-braintree-v1-bump-dependencies-for-compliance.md +++ b/_changelog-files/2025/2025-07-21-braintree-v1-bump-dependencies-for-compliance.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: braintree connection-version: 1 -pull-request: "https://github.com/singer-io/tap-braintree/pull/56" +pull_request: "https://github.com/singer-io/tap-braintree/pull/56" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-21-chargify-v1-bump-dependency-versions-and-add-changelog-entry.md b/_changelog-files/2025/2025-07-21-chargify-v1-bump-dependency-versions-and-add-changelog-entry.md index 27074bb5d..6f33e4fbe 100644 --- a/_changelog-files/2025/2025-07-21-chargify-v1-bump-dependency-versions-and-add-changelog-entry.md +++ b/_changelog-files/2025/2025-07-21-chargify-v1-bump-dependency-versions-and-add-changelog-entry.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: chargify connection-version: 1 -pull-request: "https://github.com/singer-io/tap-chargify/pull/53" +pull_request: "https://github.com/singer-io/tap-chargify/pull/53" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-21-closeio-v1-bump-dependencies-for-compliance.md b/_changelog-files/2025/2025-07-21-closeio-v1-bump-dependencies-for-compliance.md index 20c866a80..d17e99ed5 100644 --- a/_changelog-files/2025/2025-07-21-closeio-v1-bump-dependencies-for-compliance.md +++ b/_changelog-files/2025/2025-07-21-closeio-v1-bump-dependencies-for-compliance.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: closeio connection-version: 1 -pull-request: "https://github.com/singer-io/tap-closeio/pull/42" +pull_request: "https://github.com/singer-io/tap-closeio/pull/42" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-21-dixa-v1-bump-tap-version-and-update-changelog.md b/_changelog-files/2025/2025-07-21-dixa-v1-bump-tap-version-and-update-changelog.md index 58552f2d6..26fa3a9ac 100644 --- a/_changelog-files/2025/2025-07-21-dixa-v1-bump-tap-version-and-update-changelog.md +++ b/_changelog-files/2025/2025-07-21-dixa-v1-bump-tap-version-and-update-changelog.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: dixa connection-version: 1 -pull-request: "https://github.com/singer-io/tap-dixa/pull/28" +pull_request: "https://github.com/singer-io/tap-dixa/pull/28" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-21-github-v2-remove-sunset-projects-projectcards-and-projectcolumns-streams.md b/_changelog-files/2025/2025-07-21-github-v2-remove-sunset-projects-projectcards-and-projectcolumns-streams.md index a92a2b1b6..6b4e2025a 100644 --- a/_changelog-files/2025/2025-07-21-github-v2-remove-sunset-projects-projectcards-and-projectcolumns-streams.md +++ b/_changelog-files/2025/2025-07-21-github-v2-remove-sunset-projects-projectcards-and-projectcolumns-streams.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: github connection-version: 2 -pull-request: "https://github.com/singer-io/tap-github/pull/218" +pull_request: "https://github.com/singer-io/tap-github/pull/218" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-21-helpscout-v1-bump-versions.md b/_changelog-files/2025/2025-07-21-helpscout-v1-bump-versions.md index 3145802f6..7453e4184 100644 --- a/_changelog-files/2025/2025-07-21-helpscout-v1-bump-versions.md +++ b/_changelog-files/2025/2025-07-21-helpscout-v1-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: helpscout connection-version: 1 -pull-request: "https://github.com/singer-io/tap-helpscout/pull/40" +pull_request: "https://github.com/singer-io/tap-helpscout/pull/40" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-21-iterable-v1-bump-versions.md b/_changelog-files/2025/2025-07-21-iterable-v1-bump-versions.md index a1fcfca91..7a53ddf52 100644 --- a/_changelog-files/2025/2025-07-21-iterable-v1-bump-versions.md +++ b/_changelog-files/2025/2025-07-21-iterable-v1-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: iterable-core connection-version: 1 -pull-request: "https://github.com/singer-io/tap-iterable/pull/28" +pull_request: "https://github.com/singer-io/tap-iterable/pull/28" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-21-listrak-v1-bump-dependencies-for-compliance.md b/_changelog-files/2025/2025-07-21-listrak-v1-bump-dependencies-for-compliance.md index fe7c05b77..5c8152546 100644 --- a/_changelog-files/2025/2025-07-21-listrak-v1-bump-dependencies-for-compliance.md +++ b/_changelog-files/2025/2025-07-21-listrak-v1-bump-dependencies-for-compliance.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: listrak connection-version: 1 -pull-request: "https://github.com/singer-io/tap-listrak/pull/22" +pull_request: "https://github.com/singer-io/tap-listrak/pull/22" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-21-mailshake-v1-bump-versions.md b/_changelog-files/2025/2025-07-21-mailshake-v1-bump-versions.md index 73cf0db80..35520ee64 100644 --- a/_changelog-files/2025/2025-07-21-mailshake-v1-bump-versions.md +++ b/_changelog-files/2025/2025-07-21-mailshake-v1-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mailshake connection-version: 1 -pull-request: "https://github.com/singer-io/tap-mailshake/pull/12" +pull_request: "https://github.com/singer-io/tap-mailshake/pull/12" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-21-pepperjam-v1-bump-dependency-versions-and-add-changelog-entry.md b/_changelog-files/2025/2025-07-21-pepperjam-v1-bump-dependency-versions-and-add-changelog-entry.md index 1f52b161c..3b2c26c03 100644 --- a/_changelog-files/2025/2025-07-21-pepperjam-v1-bump-dependency-versions-and-add-changelog-entry.md +++ b/_changelog-files/2025/2025-07-21-pepperjam-v1-bump-dependency-versions-and-add-changelog-entry.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: pepperjam connection-version: 1 -pull-request: "https://github.com/singer-io/tap-pepperjam/pull/10" +pull_request: "https://github.com/singer-io/tap-pepperjam/pull/10" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-21-saasoptics-v1-compliance-changes.md b/_changelog-files/2025/2025-07-21-saasoptics-v1-compliance-changes.md index 583e7daf4..3e04a8f01 100644 --- a/_changelog-files/2025/2025-07-21-saasoptics-v1-compliance-changes.md +++ b/_changelog-files/2025/2025-07-21-saasoptics-v1-compliance-changes.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: saasoptics connection-version: 1 -pull-request: "https://github.com/singer-io/tap-saasoptics/pull/10" +pull_request: "https://github.com/singer-io/tap-saasoptics/pull/10" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-21-salesforce-v2-bump-requirement-versions.md b/_changelog-files/2025/2025-07-21-salesforce-v2-bump-requirement-versions.md index 30741d1d2..9dcb4620b 100644 --- a/_changelog-files/2025/2025-07-21-salesforce-v2-bump-requirement-versions.md +++ b/_changelog-files/2025/2025-07-21-salesforce-v2-bump-requirement-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: salesforce connection-version: 2 -pull-request: "https://github.com/singer-io/tap-salesforce/pull/187" +pull_request: "https://github.com/singer-io/tap-salesforce/pull/187" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-21-sendgrid-v1-bump-versions.md b/_changelog-files/2025/2025-07-21-sendgrid-v1-bump-versions.md index e046250e0..797b20d46 100644 --- a/_changelog-files/2025/2025-07-21-sendgrid-v1-bump-versions.md +++ b/_changelog-files/2025/2025-07-21-sendgrid-v1-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: sendgrid-core connection-version: 1 -pull-request: "https://github.com/singer-io/tap-sendgrid/pull/15" +pull_request: "https://github.com/singer-io/tap-sendgrid/pull/15" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-22-shopify-v3-set-max-size-of-pagination-to-30-for-fullfilment_orders.md b/_changelog-files/2025/2025-07-22-shopify-v3-set-max-size-of-pagination-to-30-for-fullfilment_orders.md index 116072011..74eb334f2 100644 --- a/_changelog-files/2025/2025-07-22-shopify-v3-set-max-size-of-pagination-to-30-for-fullfilment_orders.md +++ b/_changelog-files/2025/2025-07-22-shopify-v3-set-max-size-of-pagination-to-30-for-fullfilment_orders.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: shopify connection-version: 3 -pull-request: "https://github.com/singer-io/tap-shopify/pull/230" +pull_request: "https://github.com/singer-io/tap-shopify/pull/230" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-23-heap-v1-adds-credentials_cache_path-property.md b/_changelog-files/2025/2025-07-23-heap-v1-adds-credentials_cache_path-property.md index cd2244ee0..25f6f9e14 100644 --- a/_changelog-files/2025/2025-07-23-heap-v1-adds-credentials_cache_path-property.md +++ b/_changelog-files/2025/2025-07-23-heap-v1-adds-credentials_cache_path-property.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: heap connection-version: 1 -pull-request: "https://github.com/singer-io/tap-heap/pull/22" +pull_request: "https://github.com/singer-io/tap-heap/pull/22" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-28-braintree-v1-circleci-upgrade-swap-to-uv.md b/_changelog-files/2025/2025-07-28-braintree-v1-circleci-upgrade-swap-to-uv.md index 454b9c3f0..861c04cbb 100644 --- a/_changelog-files/2025/2025-07-28-braintree-v1-circleci-upgrade-swap-to-uv.md +++ b/_changelog-files/2025/2025-07-28-braintree-v1-circleci-upgrade-swap-to-uv.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: braintree connection-version: 1 -pull-request: "https://github.com/singer-io/tap-braintree/pull/57" +pull_request: "https://github.com/singer-io/tap-braintree/pull/57" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-28-s3-csv-v1-sac-27925-circleci-upgrade.md b/_changelog-files/2025/2025-07-28-s3-csv-v1-sac-27925-circleci-upgrade.md index e130a63cd..5cb110295 100644 --- a/_changelog-files/2025/2025-07-28-s3-csv-v1-sac-27925-circleci-upgrade.md +++ b/_changelog-files/2025/2025-07-28-s3-csv-v1-sac-27925-circleci-upgrade.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: s3 connection-version: 1 -pull-request: "https://github.com/singer-io/tap-s3-csv/pull/76" +pull_request: "https://github.com/singer-io/tap-s3-csv/pull/76" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-30-amplitude-v1-gl-work.md b/_changelog-files/2025/2025-07-30-amplitude-v1-gl-work.md index e49cab270..8dbc09d36 100644 --- a/_changelog-files/2025/2025-07-30-amplitude-v1-gl-work.md +++ b/_changelog-files/2025/2025-07-30-amplitude-v1-gl-work.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: amplitude connection-version: 1 -pull-request: "https://github.com/singer-io/tap-amplitude/pull/7" +pull_request: "https://github.com/singer-io/tap-amplitude/pull/7" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-31-google-ads-v2-fail-the-connection-once-every-3-days.md b/_changelog-files/2025/2025-07-31-google-ads-v2-fail-the-connection-once-every-3-days.md index cbc80313f..fd043088e 100644 --- a/_changelog-files/2025/2025-07-31-google-ads-v2-fail-the-connection-once-every-3-days.md +++ b/_changelog-files/2025/2025-07-31-google-ads-v2-fail-the-connection-once-every-3-days.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-ads connection-version: 2 -pull-request: "https://github.com/singer-io/tap-google-ads/pull/100" +pull_request: "https://github.com/singer-io/tap-google-ads/pull/100" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-31-google-ads-v2-upgrade-api-version-to-v20.md b/_changelog-files/2025/2025-07-31-google-ads-v2-upgrade-api-version-to-v20.md index 066696377..16ad1e464 100644 --- a/_changelog-files/2025/2025-07-31-google-ads-v2-upgrade-api-version-to-v20.md +++ b/_changelog-files/2025/2025-07-31-google-ads-v2-upgrade-api-version-to-v20.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-ads connection-version: 2 -pull-request: "https://github.com/singer-io/tap-google-ads/pull/97" +pull_request: "https://github.com/singer-io/tap-google-ads/pull/97" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-31-pendo-v1-use-replication_key-in-last_processed-instead-of-primary_key.md b/_changelog-files/2025/2025-07-31-pendo-v1-use-replication_key-in-last_processed-instead-of-primary_key.md index 4bcc610b8..cd791a23b 100644 --- a/_changelog-files/2025/2025-07-31-pendo-v1-use-replication_key-in-last_processed-instead-of-primary_key.md +++ b/_changelog-files/2025/2025-07-31-pendo-v1-use-replication_key-in-last_processed-instead-of-primary_key.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: pendo connection-version: 1 -pull-request: "https://github.com/singer-io/tap-pendo/pull/133" +pull_request: "https://github.com/singer-io/tap-pendo/pull/133" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git "a/_changelog-files/2025/2025-08-05-shopify-v3-refactor-orders-stream-standard-graphql-\342\206\222-bulk-api-migration.md" "b/_changelog-files/2025/2025-08-05-shopify-v3-refactor-orders-stream-standard-graphql-\342\206\222-bulk-api-migration.md" index 3ec5bb331..320cf3e6f 100644 --- "a/_changelog-files/2025/2025-08-05-shopify-v3-refactor-orders-stream-standard-graphql-\342\206\222-bulk-api-migration.md" +++ "b/_changelog-files/2025/2025-08-05-shopify-v3-refactor-orders-stream-standard-graphql-\342\206\222-bulk-api-migration.md" @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: shopify connection-version: 3 -pull-request: "https://github.com/singer-io/tap-shopify/pull/227" +pull_request: "https://github.com/singer-io/tap-shopify/pull/227" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-08-07-shopify-v3-query-and-extract-multiple-pages-of-products-for-each-collection.md b/_changelog-files/2025/2025-08-07-shopify-v3-query-and-extract-multiple-pages-of-products-for-each-collection.md index cb3c98234..e55020749 100644 --- a/_changelog-files/2025/2025-08-07-shopify-v3-query-and-extract-multiple-pages-of-products-for-each-collection.md +++ b/_changelog-files/2025/2025-08-07-shopify-v3-query-and-extract-multiple-pages-of-products-for-each-collection.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: shopify connection-version: 3 -pull-request: "https://github.com/singer-io/tap-shopify/pull/231" +pull_request: "https://github.com/singer-io/tap-shopify/pull/231" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-08-11-quickbase-v1-circleci-upgrade.md b/_changelog-files/2025/2025-08-11-quickbase-v1-circleci-upgrade.md index 5e9faa731..844abaf65 100644 --- a/_changelog-files/2025/2025-08-11-quickbase-v1-circleci-upgrade.md +++ b/_changelog-files/2025/2025-08-11-quickbase-v1-circleci-upgrade.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: quick-base connection-version: 1 -pull-request: "https://github.com/singer-io/tap-quickbase/pull/27" +pull_request: "https://github.com/singer-io/tap-quickbase/pull/27" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-09-02-intercom-v2-update-to-python-3-12.md b/_changelog-files/2025/2025-09-02-intercom-v2-update-to-python-3-12.md index d5baa705d..711c9276e 100644 --- a/_changelog-files/2025/2025-09-02-intercom-v2-update-to-python-3-12.md +++ b/_changelog-files/2025/2025-09-02-intercom-v2-update-to-python-3-12.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: intercom connection-version: 2 -pull-request: "https://github.com/singer-io/tap-intercom/pull/83" +pull_request: "https://github.com/singer-io/tap-intercom/pull/83" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-09-03-facebook-v1-upgrade-to-marketing-api-v23.md b/_changelog-files/2025/2025-09-03-facebook-v1-upgrade-to-marketing-api-v23.md index 911b29fff..11f7f5e4e 100644 --- a/_changelog-files/2025/2025-09-03-facebook-v1-upgrade-to-marketing-api-v23.md +++ b/_changelog-files/2025/2025-09-03-facebook-v1-upgrade-to-marketing-api-v23.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: facebook-ads connection-version: 1 -pull-request: "https://github.com/singer-io/tap-facebook/pull/255" +pull_request: "https://github.com/singer-io/tap-facebook/pull/255" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-09-03-github-v2-use-python-3-12-in-circleci.md b/_changelog-files/2025/2025-09-03-github-v2-use-python-3-12-in-circleci.md index 58aafdc42..87d9acb73 100644 --- a/_changelog-files/2025/2025-09-03-github-v2-use-python-3-12-in-circleci.md +++ b/_changelog-files/2025/2025-09-03-github-v2-use-python-3-12-in-circleci.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: github connection-version: 2 -pull-request: "https://github.com/singer-io/tap-github/pull/221" +pull_request: "https://github.com/singer-io/tap-github/pull/221" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-09-03-pendo-v1-upgrade-python-to-3-12.md b/_changelog-files/2025/2025-09-03-pendo-v1-upgrade-python-to-3-12.md index 5a020f0cc..052e81f07 100644 --- a/_changelog-files/2025/2025-09-03-pendo-v1-upgrade-python-to-3-12.md +++ b/_changelog-files/2025/2025-09-03-pendo-v1-upgrade-python-to-3-12.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: pendo connection-version: 1 -pull-request: "https://github.com/singer-io/tap-pendo/pull/136" +pull_request: "https://github.com/singer-io/tap-pendo/pull/136" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-09-04-quickbooks-v2-upgrade-python-version-used-for-testing.md b/_changelog-files/2025/2025-09-04-quickbooks-v2-upgrade-python-version-used-for-testing.md index 658e65e4a..92e8c29f6 100644 --- a/_changelog-files/2025/2025-09-04-quickbooks-v2-upgrade-python-version-used-for-testing.md +++ b/_changelog-files/2025/2025-09-04-quickbooks-v2-upgrade-python-version-used-for-testing.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: quickbooks connection-version: 2 -pull-request: "https://github.com/singer-io/tap-quickbooks/pull/78" +pull_request: "https://github.com/singer-io/tap-quickbooks/pull/78" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-09-04-recurly-v1-upgrade-circleci-build-to-python-3-12.md b/_changelog-files/2025/2025-09-04-recurly-v1-upgrade-circleci-build-to-python-3-12.md index 0bca53b3f..8c37413ec 100644 --- a/_changelog-files/2025/2025-09-04-recurly-v1-upgrade-circleci-build-to-python-3-12.md +++ b/_changelog-files/2025/2025-09-04-recurly-v1-upgrade-circleci-build-to-python-3-12.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: recurly connection-version: 1 -pull-request: "https://github.com/singer-io/tap-recurly/pull/16" +pull_request: "https://github.com/singer-io/tap-recurly/pull/16" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-09-04-square-v2-upgrade-circleci-build-to-python-3-12.md b/_changelog-files/2025/2025-09-04-square-v2-upgrade-circleci-build-to-python-3-12.md index 52e29b6bc..ac4ca4891 100644 --- a/_changelog-files/2025/2025-09-04-square-v2-upgrade-circleci-build-to-python-3-12.md +++ b/_changelog-files/2025/2025-09-04-square-v2-upgrade-circleci-build-to-python-3-12.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: square connection-version: 2 -pull-request: "https://github.com/singer-io/tap-square/pull/128" +pull_request: "https://github.com/singer-io/tap-square/pull/128" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-09-16-activecampaign-v1-python-upgrade.md b/_changelog-files/2025/2025-09-16-activecampaign-v1-python-upgrade.md index 4ad54790e..3017cf1a4 100644 --- a/_changelog-files/2025/2025-09-16-activecampaign-v1-python-upgrade.md +++ b/_changelog-files/2025/2025-09-16-activecampaign-v1-python-upgrade.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: activecampaign connection-version: 1 -pull-request: "https://github.com/singer-io/tap-activecampaign/pull/49" +pull_request: "https://github.com/singer-io/tap-activecampaign/pull/49" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-09-17-intacct-v1-implement-refreshable-chained-aws-session-for-multi-account-role-assumption-and-library-updates.md b/_changelog-files/2025/2025-09-17-intacct-v1-implement-refreshable-chained-aws-session-for-multi-account-role-assumption-and-library-updates.md index 8422852e9..5aa156aff 100644 --- a/_changelog-files/2025/2025-09-17-intacct-v1-implement-refreshable-chained-aws-session-for-multi-account-role-assumption-and-library-updates.md +++ b/_changelog-files/2025/2025-09-17-intacct-v1-implement-refreshable-chained-aws-session-for-multi-account-role-assumption-and-library-updates.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: intacct connection-version: 1 -pull-request: "https://github.com/singer-io/tap-intacct/pull/13" +pull_request: "https://github.com/singer-io/tap-intacct/pull/13" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-09-17-shopify-v3-new-automatic_keys-support-and-bulk-state-persistence-logic.md b/_changelog-files/2025/2025-09-17-shopify-v3-new-automatic_keys-support-and-bulk-state-persistence-logic.md index 34ec56896..e3ac7a0f2 100644 --- a/_changelog-files/2025/2025-09-17-shopify-v3-new-automatic_keys-support-and-bulk-state-persistence-logic.md +++ b/_changelog-files/2025/2025-09-17-shopify-v3-new-automatic_keys-support-and-bulk-state-persistence-logic.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: shopify connection-version: 3 -pull-request: "https://github.com/singer-io/tap-shopify/pull/237" +pull_request: "https://github.com/singer-io/tap-shopify/pull/237" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-09-22-jira-v2-add-metric-tags.md b/_changelog-files/2025/2025-09-22-jira-v2-add-metric-tags.md index ee7b88e0b..d33e03af9 100644 --- a/_changelog-files/2025/2025-09-22-jira-v2-add-metric-tags.md +++ b/_changelog-files/2025/2025-09-22-jira-v2-add-metric-tags.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: jira connection-version: 2 -pull-request: "https://github.com/singer-io/tap-jira/pull/129" +pull_request: "https://github.com/singer-io/tap-jira/pull/129" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-09-22-recharge-v2-remove-products-stream.md b/_changelog-files/2025/2025-09-22-recharge-v2-remove-products-stream.md index 39b1756b3..b5033bfd0 100644 --- a/_changelog-files/2025/2025-09-22-recharge-v2-remove-products-stream.md +++ b/_changelog-files/2025/2025-09-22-recharge-v2-remove-products-stream.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: recharge connection-version: 2 -pull-request: "https://github.com/singer-io/tap-recharge/pull/51" +pull_request: "https://github.com/singer-io/tap-recharge/pull/51" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-09-23-github-v2-check-for-bad-creds-before-checking-for-rate-limit.md b/_changelog-files/2025/2025-09-23-github-v2-check-for-bad-creds-before-checking-for-rate-limit.md index 4e5284fb8..b26e1bd43 100644 --- a/_changelog-files/2025/2025-09-23-github-v2-check-for-bad-creds-before-checking-for-rate-limit.md +++ b/_changelog-files/2025/2025-09-23-github-v2-check-for-bad-creds-before-checking-for-rate-limit.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: github connection-version: 2 -pull-request: "https://github.com/singer-io/tap-github/pull/222" +pull_request: "https://github.com/singer-io/tap-github/pull/222" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-10-06-sftp-v1-bump-singer-encodings.md b/_changelog-files/2025/2025-10-06-sftp-v1-bump-singer-encodings.md index b6e9ce343..b9dbb9e26 100644 --- a/_changelog-files/2025/2025-10-06-sftp-v1-bump-singer-encodings.md +++ b/_changelog-files/2025/2025-10-06-sftp-v1-bump-singer-encodings.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: sftp connection-version: 1 -pull-request: "https://github.com/singer-io/tap-sftp/pull/51" +pull_request: "https://github.com/singer-io/tap-sftp/pull/51" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-10-09-mongodb-v3-enhance-log-based-replication-to-support-transactional-records.md b/_changelog-files/2025/2025-10-09-mongodb-v3-enhance-log-based-replication-to-support-transactional-records.md index 43e17f899..031e51f18 100644 --- a/_changelog-files/2025/2025-10-09-mongodb-v3-enhance-log-based-replication-to-support-transactional-records.md +++ b/_changelog-files/2025/2025-10-09-mongodb-v3-enhance-log-based-replication-to-support-transactional-records.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mongodb connection-version: 3 -pull-request: "https://github.com/singer-io/tap-mongodb/pull/119" +pull_request: "https://github.com/singer-io/tap-mongodb/pull/119" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-10-09-pardot-v1-fetch-all-visitors-records-and-update-request-params-type.md b/_changelog-files/2025/2025-10-09-pardot-v1-fetch-all-visitors-records-and-update-request-params-type.md index 36e5476c0..5f509bd21 100644 --- a/_changelog-files/2025/2025-10-09-pardot-v1-fetch-all-visitors-records-and-update-request-params-type.md +++ b/_changelog-files/2025/2025-10-09-pardot-v1-fetch-all-visitors-records-and-update-request-params-type.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: pardot connection-version: 1 -pull-request: "https://github.com/singer-io/tap-pardot/pull/53" +pull_request: "https://github.com/singer-io/tap-pardot/pull/53" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-10-09-quickbooks-v2-update-default-page-size-to-1000.md b/_changelog-files/2025/2025-10-09-quickbooks-v2-update-default-page-size-to-1000.md index 14ba1475b..1dd1c474d 100644 --- a/_changelog-files/2025/2025-10-09-quickbooks-v2-update-default-page-size-to-1000.md +++ b/_changelog-files/2025/2025-10-09-quickbooks-v2-update-default-page-size-to-1000.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: quickbooks connection-version: 2 -pull-request: "https://github.com/singer-io/tap-quickbooks/pull/79" +pull_request: "https://github.com/singer-io/tap-quickbooks/pull/79" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-10-10-mambu-v4-replace--users-with--branches-endpoint.md b/_changelog-files/2025/2025-10-10-mambu-v4-replace--users-with--branches-endpoint.md index 3bea227bf..ad6a49908 100644 --- a/_changelog-files/2025/2025-10-10-mambu-v4-replace--users-with--branches-endpoint.md +++ b/_changelog-files/2025/2025-10-10-mambu-v4-replace--users-with--branches-endpoint.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mambu connection-version: 4 -pull-request: "https://github.com/singer-io/tap-mambu/pull/133" +pull_request: "https://github.com/singer-io/tap-mambu/pull/133" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-10-14-mambu-v4-cancel-upgrade-api-version-to-v2.md b/_changelog-files/2025/2025-10-14-mambu-v4-cancel-upgrade-api-version-to-v2.md index 3dd2e49c2..70ccf792e 100644 --- a/_changelog-files/2025/2025-10-14-mambu-v4-cancel-upgrade-api-version-to-v2.md +++ b/_changelog-files/2025/2025-10-14-mambu-v4-cancel-upgrade-api-version-to-v2.md @@ -6,7 +6,7 @@ entry-type: removed entry-category: integration connection-id: mambu connection-version: 4 -pull-request: "https://github.com/singer-io/tap-mambu/pull/135" +pull_request: "https://github.com/singer-io/tap-mambu/pull/135" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-10-14-zendesk-v2-add-support-for-cursor-pagination--audit-stream.md b/_changelog-files/2025/2025-10-14-zendesk-v2-add-support-for-cursor-pagination--audit-stream.md index 04bcc3355..9f71aafbc 100644 --- a/_changelog-files/2025/2025-10-14-zendesk-v2-add-support-for-cursor-pagination--audit-stream.md +++ b/_changelog-files/2025/2025-10-14-zendesk-v2-add-support-for-cursor-pagination--audit-stream.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: zendesk connection-version: 2 -pull-request: "https://github.com/singer-io/tap-zendesk/pull/163" +pull_request: "https://github.com/singer-io/tap-zendesk/pull/163" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-10-15-mambu-v4upgrade-api-version-to-v2 .md b/_changelog-files/2025/2025-10-15-mambu-v4upgrade-api-version-to-v2 .md index f24861f1d..6bac6f68d 100644 --- a/_changelog-files/2025/2025-10-15-mambu-v4upgrade-api-version-to-v2 .md +++ b/_changelog-files/2025/2025-10-15-mambu-v4upgrade-api-version-to-v2 .md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mambu connection-version: 4 -pull-request: "https://github.com/singer-io/tap-mambu/pull/136" +pull_request: "https://github.com/singer-io/tap-mambu/pull/136" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-10-15-pipedrive-v1-extract-deleted-deals.md b/_changelog-files/2025/2025-10-15-pipedrive-v1-extract-deleted-deals.md index 0d5590927..bb3a51022 100644 --- a/_changelog-files/2025/2025-10-15-pipedrive-v1-extract-deleted-deals.md +++ b/_changelog-files/2025/2025-10-15-pipedrive-v1-extract-deleted-deals.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: pipedrive connection-version: 1 -pull-request: "https://github.com/singer-io/tap-pipedrive/pull/149" +pull_request: "https://github.com/singer-io/tap-pipedrive/pull/149" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-10-17-amplitude-v1-gl-work.md b/_changelog-files/2025/2025-10-17-amplitude-v1-gl-work.md index 85d894c43..58a11421b 100644 --- a/_changelog-files/2025/2025-10-17-amplitude-v1-gl-work.md +++ b/_changelog-files/2025/2025-10-17-amplitude-v1-gl-work.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: amplitude connection-version: 1 -pull-request: "https://github.com/singer-io/tap-amplitude/pull/14" +pull_request: "https://github.com/singer-io/tap-amplitude/pull/14" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-10-17-marketo-v2-replication_key-and-forced_replication_method-addition-in-catalog.md b/_changelog-files/2025/2025-10-17-marketo-v2-replication_key-and-forced_replication_method-addition-in-catalog.md index 53e0a2f01..4fd841027 100644 --- a/_changelog-files/2025/2025-10-17-marketo-v2-replication_key-and-forced_replication_method-addition-in-catalog.md +++ b/_changelog-files/2025/2025-10-17-marketo-v2-replication_key-and-forced_replication_method-addition-in-catalog.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: marketo connection-version: 2 -pull-request: "https://github.com/singer-io/tap-marketo/pull/104" +pull_request: "https://github.com/singer-io/tap-marketo/pull/104" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-10-17-shopify-v3-gl-work.md b/_changelog-files/2025/2025-10-17-shopify-v3-gl-work.md index 25f3f6059..154ca0fe7 100644 --- a/_changelog-files/2025/2025-10-17-shopify-v3-gl-work.md +++ b/_changelog-files/2025/2025-10-17-shopify-v3-gl-work.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: shopify connection-version: 3 -pull-request: "https://github.com/singer-io/tap-shopify/pull/242" +pull_request: "https://github.com/singer-io/tap-shopify/pull/242" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-10-20-s3-csv-v1-add-avro-support-to-tap.md b/_changelog-files/2025/2025-10-20-s3-csv-v1-add-avro-support-to-tap.md index c0bf0e596..55fa73b24 100644 --- a/_changelog-files/2025/2025-10-20-s3-csv-v1-add-avro-support-to-tap.md +++ b/_changelog-files/2025/2025-10-20-s3-csv-v1-add-avro-support-to-tap.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: amazon-s3-csv connection-version: 1 -pull-request: "https://github.com/singer-io/tap-s3-csv/pull/81" +pull_request: "https://github.com/singer-io/tap-s3-csv/pull/81" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-10-20-s3-csv-v1-add-parquet-support.md b/_changelog-files/2025/2025-10-20-s3-csv-v1-add-parquet-support.md index 21b9c58a4..949a67ae5 100644 --- a/_changelog-files/2025/2025-10-20-s3-csv-v1-add-parquet-support.md +++ b/_changelog-files/2025/2025-10-20-s3-csv-v1-add-parquet-support.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: amazon-s3-csv connection-version: 1 -pull-request: "https://github.com/singer-io/tap-s3-csv/pull/80" +pull_request: "https://github.com/singer-io/tap-s3-csv/pull/80" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-10-20-s3-csv-v1-refactor-jsonl-sampling-syncing-to-use-singer-encodings.md b/_changelog-files/2025/2025-10-20-s3-csv-v1-refactor-jsonl-sampling-syncing-to-use-singer-encodings.md index a695a88c7..05cde3f67 100644 --- a/_changelog-files/2025/2025-10-20-s3-csv-v1-refactor-jsonl-sampling-syncing-to-use-singer-encodings.md +++ b/_changelog-files/2025/2025-10-20-s3-csv-v1-refactor-jsonl-sampling-syncing-to-use-singer-encodings.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: amazon-s3-csv connection-version: 1 -pull-request: "https://github.com/singer-io/tap-s3-csv/pull/82" +pull_request: "https://github.com/singer-io/tap-s3-csv/pull/82" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-10-22-mongodb-v3-handle-non-finite-values-(nan-infinity).md b/_changelog-files/2025/2025-10-22-mongodb-v3-handle-non-finite-values-(nan-infinity).md index 97bac5c8f..1778b919d 100644 --- a/_changelog-files/2025/2025-10-22-mongodb-v3-handle-non-finite-values-(nan-infinity).md +++ b/_changelog-files/2025/2025-10-22-mongodb-v3-handle-non-finite-values-(nan-infinity).md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mongodb connection-version: 3 -pull-request: "https://github.com/singer-io/tap-mongodb/pull/129" +pull_request: "https://github.com/singer-io/tap-mongodb/pull/129" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-10-23-s3-csv-v1-update-_sdc_extra-column-schema-to-be-nullable.md b/_changelog-files/2025/2025-10-23-s3-csv-v1-update-_sdc_extra-column-schema-to-be-nullable.md index 2cb39df21..383f274e7 100644 --- a/_changelog-files/2025/2025-10-23-s3-csv-v1-update-_sdc_extra-column-schema-to-be-nullable.md +++ b/_changelog-files/2025/2025-10-23-s3-csv-v1-update-_sdc_extra-column-schema-to-be-nullable.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: amazon-s3-csv connection-version: 1 -pull-request: "https://github.com/singer-io/tap-s3-csv/pull/83" +pull_request: "https://github.com/singer-io/tap-s3-csv/pull/83" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-10-27-ga4-v1-update-field-exclusions-10-27-25.md b/_changelog-files/2025/2025-10-27-ga4-v1-update-field-exclusions-10-27-25.md index 00f1d0da0..e36ea5364 100644 --- a/_changelog-files/2025/2025-10-27-ga4-v1-update-field-exclusions-10-27-25.md +++ b/_changelog-files/2025/2025-10-27-ga4-v1-update-field-exclusions-10-27-25.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-analytics-4 connection-version: 1 -pull-request: "https://github.com/singer-io/tap-ga4/pull/117" +pull_request: "https://github.com/singer-io/tap-ga4/pull/117" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-10-27-heap-v1-add-integration-tests.md b/_changelog-files/2025/2025-10-27-heap-v1-add-integration-tests.md index 56d399217..369860afc 100644 --- a/_changelog-files/2025/2025-10-27-heap-v1-add-integration-tests.md +++ b/_changelog-files/2025/2025-10-27-heap-v1-add-integration-tests.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: heap connection-version: 1 -pull-request: "https://github.com/singer-io/tap-heap/pull/24" +pull_request: "https://github.com/singer-io/tap-heap/pull/24" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-10-29-gitlab-v1-bug-sac-29290-params-to-headers.md b/_changelog-files/2025/2025-10-29-gitlab-v1-bug-sac-29290-params-to-headers.md index aa91573e9..c85318619 100644 --- a/_changelog-files/2025/2025-10-29-gitlab-v1-bug-sac-29290-params-to-headers.md +++ b/_changelog-files/2025/2025-10-29-gitlab-v1-bug-sac-29290-params-to-headers.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: gitlab connection-version: 1 -pull-request: "https://github.com/singer-io/tap-gitlab/pull/44" +pull_request: "https://github.com/singer-io/tap-gitlab/pull/44" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-10-29-zendesk-v2-update-dependencies.md b/_changelog-files/2025/2025-10-29-zendesk-v2-update-dependencies.md index f6386e242..174559be4 100644 --- a/_changelog-files/2025/2025-10-29-zendesk-v2-update-dependencies.md +++ b/_changelog-files/2025/2025-10-29-zendesk-v2-update-dependencies.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: zendesk connection-version: 2 -pull-request: "https://github.com/singer-io/tap-zendesk/pull/177" +pull_request: "https://github.com/singer-io/tap-zendesk/pull/177" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-11-04-listrak-v1-gl-work.md b/_changelog-files/2025/2025-11-04-listrak-v1-gl-work.md index 60ae3bea8..750047c48 100644 --- a/_changelog-files/2025/2025-11-04-listrak-v1-gl-work.md +++ b/_changelog-files/2025/2025-11-04-listrak-v1-gl-work.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: listrak connection-version: 1 -pull-request: "https://github.com/singer-io/tap-listrak/pull/21" +pull_request: "https://github.com/singer-io/tap-listrak/pull/21" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-11-06-jira-v2-add-fallback-for-jira-api-requests-when-search-jql-endpoint-is-unavailable.md b/_changelog-files/2025/2025-11-06-jira-v2-add-fallback-for-jira-api-requests-when-search-jql-endpoint-is-unavailable.md index 79a2e7438..19871c335 100644 --- a/_changelog-files/2025/2025-11-06-jira-v2-add-fallback-for-jira-api-requests-when-search-jql-endpoint-is-unavailable.md +++ b/_changelog-files/2025/2025-11-06-jira-v2-add-fallback-for-jira-api-requests-when-search-jql-endpoint-is-unavailable.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: jira connection-version: 2 -pull-request: "https://github.com/singer-io/tap-jira/pull/131" +pull_request: "https://github.com/singer-io/tap-jira/pull/131" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-11-06-quickbooks-v2-use-batch-queries-to-reduce-api-usage.md b/_changelog-files/2025/2025-11-06-quickbooks-v2-use-batch-queries-to-reduce-api-usage.md index 9ce04c90b..ee61a4514 100644 --- a/_changelog-files/2025/2025-11-06-quickbooks-v2-use-batch-queries-to-reduce-api-usage.md +++ b/_changelog-files/2025/2025-11-06-quickbooks-v2-use-batch-queries-to-reduce-api-usage.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: quickbooks connection-version: 2 -pull-request: "https://github.com/singer-io/tap-quickbooks/pull/80" +pull_request: "https://github.com/singer-io/tap-quickbooks/pull/80" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-11-10-shopify-v3-cleanup-state-file-for-failed-bulk-operations.md b/_changelog-files/2025/2025-11-10-shopify-v3-cleanup-state-file-for-failed-bulk-operations.md index 1e3f16fae..c2f7992ae 100644 --- a/_changelog-files/2025/2025-11-10-shopify-v3-cleanup-state-file-for-failed-bulk-operations.md +++ b/_changelog-files/2025/2025-11-10-shopify-v3-cleanup-state-file-for-failed-bulk-operations.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: shopify connection-version: 3 -pull-request: "https://github.com/singer-io/tap-shopify/pull/244" +pull_request: "https://github.com/singer-io/tap-shopify/pull/244" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-11-19-zuora-v1-add-communicationprofileid-to-unsupported_fields_for_rest.md b/_changelog-files/2025/2025-11-19-zuora-v1-add-communicationprofileid-to-unsupported_fields_for_rest.md index cf8e1c6dc..62cd65650 100644 --- a/_changelog-files/2025/2025-11-19-zuora-v1-add-communicationprofileid-to-unsupported_fields_for_rest.md +++ b/_changelog-files/2025/2025-11-19-zuora-v1-add-communicationprofileid-to-unsupported_fields_for_rest.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: zuora connection-version: 1 -pull-request: "https://github.com/singer-io/tap-zuora/pull/86" +pull_request: "https://github.com/singer-io/tap-zuora/pull/86" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-11-21-zuora-v1-bump-version.md b/_changelog-files/2025/2025-11-21-zuora-v1-bump-version.md index b8f380ec8..4c9abc61f 100644 --- a/_changelog-files/2025/2025-11-21-zuora-v1-bump-version.md +++ b/_changelog-files/2025/2025-11-21-zuora-v1-bump-version.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: zuora connection-version: 1 -pull-request: "https://github.com/singer-io/tap-zuora/pull/87" +pull_request: "https://github.com/singer-io/tap-zuora/pull/87" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-11-24-appsflyer-v1-tap-refactoring-using-singer-generator.md b/_changelog-files/2025/2025-11-24-appsflyer-v1-tap-refactoring-using-singer-generator.md index 933e28a42..5ea10de9f 100644 --- a/_changelog-files/2025/2025-11-24-appsflyer-v1-tap-refactoring-using-singer-generator.md +++ b/_changelog-files/2025/2025-11-24-appsflyer-v1-tap-refactoring-using-singer-generator.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: appsflyer connection-version: 1 -pull-request: "https://github.com/singer-io/tap-appsflyer/pull/47" +pull_request: "https://github.com/singer-io/tap-appsflyer/pull/47" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-11-24-chargebee-v1-refactor-the-tap.md b/_changelog-files/2025/2025-11-24-chargebee-v1-refactor-the-tap.md index 4211f8dee..56b9467d7 100644 --- a/_changelog-files/2025/2025-11-24-chargebee-v1-refactor-the-tap.md +++ b/_changelog-files/2025/2025-11-24-chargebee-v1-refactor-the-tap.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: chargebee connection-version: 1 -pull-request: "https://github.com/singer-io/tap-chargebee/pull/113" +pull_request: "https://github.com/singer-io/tap-chargebee/pull/113" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-11-26-exacttarget-v1-add-support-for-new-streams.md b/_changelog-files/2025/2025-11-26-exacttarget-v1-add-support-for-new-streams.md index 4121d1984..011a2afee 100644 --- a/_changelog-files/2025/2025-11-26-exacttarget-v1-add-support-for-new-streams.md +++ b/_changelog-files/2025/2025-11-26-exacttarget-v1-add-support-for-new-streams.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: salesforce-marketing-cloud connection-version: 1 -pull-request: "https://github.com/singer-io/tap-exacttarget/pull/103" +pull_request: "https://github.com/singer-io/tap-exacttarget/pull/103" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-11-26-twitter-ads-v1-gl-work--library-version-upgrades-+-support-for-`parent-tap-stream-id`-metadata-for-child-streams.md b/_changelog-files/2025/2025-11-26-twitter-ads-v1-gl-work--library-version-upgrades-+-support-for-`parent-tap-stream-id`-metadata-for-child-streams.md index 21a98b56c..1d72b9bcc 100644 --- a/_changelog-files/2025/2025-11-26-twitter-ads-v1-gl-work--library-version-upgrades-+-support-for-`parent-tap-stream-id`-metadata-for-child-streams.md +++ b/_changelog-files/2025/2025-11-26-twitter-ads-v1-gl-work--library-version-upgrades-+-support-for-`parent-tap-stream-id`-metadata-for-child-streams.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: twitter-ads connection-version: 1 -pull-request: "https://github.com/singer-io/tap-twitter-ads/pull/46" +pull_request: "https://github.com/singer-io/tap-twitter-ads/pull/46" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-11-27-chargebee-v1-python-upgrade-to-3-12.md b/_changelog-files/2025/2025-11-27-chargebee-v1-python-upgrade-to-3-12.md index 66037dd74..62b8ee4bf 100644 --- a/_changelog-files/2025/2025-11-27-chargebee-v1-python-upgrade-to-3-12.md +++ b/_changelog-files/2025/2025-11-27-chargebee-v1-python-upgrade-to-3-12.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: chargebee connection-version: 1 -pull-request: "https://github.com/singer-io/tap-chargebee/pull/117" +pull_request: "https://github.com/singer-io/tap-chargebee/pull/117" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-11-28-gitlab-v1-gl-work.md b/_changelog-files/2025/2025-11-28-gitlab-v1-gl-work.md index 570d8ac6d..dd1a5e766 100644 --- a/_changelog-files/2025/2025-11-28-gitlab-v1-gl-work.md +++ b/_changelog-files/2025/2025-11-28-gitlab-v1-gl-work.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: gitlab connection-version: 1 -pull-request: "https://github.com/singer-io/tap-gitlab/pull/37" +pull_request: "https://github.com/singer-io/tap-gitlab/pull/37" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-12-02-hubspot-v4-non-primary-key-fields-should-be-nullable.md b/_changelog-files/2025/2025-12-02-hubspot-v4-non-primary-key-fields-should-be-nullable.md index bcd76227b..c4dbe9df2 100644 --- a/_changelog-files/2025/2025-12-02-hubspot-v4-non-primary-key-fields-should-be-nullable.md +++ b/_changelog-files/2025/2025-12-02-hubspot-v4-non-primary-key-fields-should-be-nullable.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: hubspot connection-version: 4 -pull-request: "https://github.com/singer-io/tap-hubspot/pull/281" +pull_request: "https://github.com/singer-io/tap-hubspot/pull/281" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-12-03-activecampaign-v1-retry-for-the-activecampaign-forbiddenerror.md b/_changelog-files/2025/2025-12-03-activecampaign-v1-retry-for-the-activecampaign-forbiddenerror.md index fe5336eef..7fc39ff2a 100644 --- a/_changelog-files/2025/2025-12-03-activecampaign-v1-retry-for-the-activecampaign-forbiddenerror.md +++ b/_changelog-files/2025/2025-12-03-activecampaign-v1-retry-for-the-activecampaign-forbiddenerror.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: activecampaign connection-version: 1 -pull-request: "https://github.com/singer-io/tap-activecampaign/pull/52" +pull_request: "https://github.com/singer-io/tap-activecampaign/pull/52" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-12-03-asana-v2-sac-27555-fix-libraries.md b/_changelog-files/2025/2025-12-03-asana-v2-sac-27555-fix-libraries.md index dbf848a05..5d2be940f 100644 --- a/_changelog-files/2025/2025-12-03-asana-v2-sac-27555-fix-libraries.md +++ b/_changelog-files/2025/2025-12-03-asana-v2-sac-27555-fix-libraries.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: asana connection-version: 2 -pull-request: "https://github.com/singer-io/tap-asana/pull/61" +pull_request: "https://github.com/singer-io/tap-asana/pull/61" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-12-03-freshdesk-v1-tap-refactoring-using-singer-generator.md b/_changelog-files/2025/2025-12-03-freshdesk-v1-tap-refactoring-using-singer-generator.md index d07c352f5..7aae23c4d 100644 --- a/_changelog-files/2025/2025-12-03-freshdesk-v1-tap-refactoring-using-singer-generator.md +++ b/_changelog-files/2025/2025-12-03-freshdesk-v1-tap-refactoring-using-singer-generator.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: freshdesk connection-version: 1 -pull-request: "https://github.com/singer-io/tap-freshdesk/pull/60" +pull_request: "https://github.com/singer-io/tap-freshdesk/pull/60" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-12-04-google-sheets-v3-increase-the-wait-time-while-retrying-on-failure.md b/_changelog-files/2025/2025-12-04-google-sheets-v3-increase-the-wait-time-while-retrying-on-failure.md index c1576478a..299daa1a3 100644 --- a/_changelog-files/2025/2025-12-04-google-sheets-v3-increase-the-wait-time-while-retrying-on-failure.md +++ b/_changelog-files/2025/2025-12-04-google-sheets-v3-increase-the-wait-time-while-retrying-on-failure.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-sheets connection-version: 3 -pull-request: "https://github.com/singer-io/tap-google-sheets/pull/102" +pull_request: "https://github.com/singer-io/tap-google-sheets/pull/102" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-12-05-zoom-v2-[sac-28905]--add-parent-tap-stream-id-key-in-metadata.md b/_changelog-files/2025/2025-12-05-zoom-v2-[sac-28905]--add-parent-tap-stream-id-key-in-metadata.md index 9e998d0f6..e2e0d21fa 100644 --- a/_changelog-files/2025/2025-12-05-zoom-v2-[sac-28905]--add-parent-tap-stream-id-key-in-metadata.md +++ b/_changelog-files/2025/2025-12-05-zoom-v2-[sac-28905]--add-parent-tap-stream-id-key-in-metadata.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: zoom connection-version: 2 -pull-request: "https://github.com/singer-io/tap-zoom/pull/40" +pull_request: "https://github.com/singer-io/tap-zoom/pull/40" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-12-08-adroll-v1-gl-work.md b/_changelog-files/2025/2025-12-08-adroll-v1-gl-work.md index 4262290fa..ebf75f983 100644 --- a/_changelog-files/2025/2025-12-08-adroll-v1-gl-work.md +++ b/_changelog-files/2025/2025-12-08-adroll-v1-gl-work.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: adroll connection-version: 1 -pull-request: "https://github.com/singer-io/tap-adroll/pull/34" +pull_request: "https://github.com/singer-io/tap-adroll/pull/34" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-12-08-harvest-v2-tap-refactoring-using-singer-generator.md b/_changelog-files/2025/2025-12-08-harvest-v2-tap-refactoring-using-singer-generator.md index e85b3359b..ef3b2ec49 100644 --- a/_changelog-files/2025/2025-12-08-harvest-v2-tap-refactoring-using-singer-generator.md +++ b/_changelog-files/2025/2025-12-08-harvest-v2-tap-refactoring-using-singer-generator.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: harvest connection-version: 2 -pull-request: "https://github.com/singer-io/tap-harvest/pull/64" +pull_request: "https://github.com/singer-io/tap-harvest/pull/64" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-12-08-s3-csv-v1-bump-urllib3-from-2-5-0-to-2-6-0.md b/_changelog-files/2025/2025-12-08-s3-csv-v1-bump-urllib3-from-2-5-0-to-2-6-0.md index c818470c9..7e2737bf3 100644 --- a/_changelog-files/2025/2025-12-08-s3-csv-v1-bump-urllib3-from-2-5-0-to-2-6-0.md +++ b/_changelog-files/2025/2025-12-08-s3-csv-v1-bump-urllib3-from-2-5-0-to-2-6-0.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: s3 connection-version: 1 -pull-request: "https://github.com/singer-io/tap-s3-csv/pull/84" +pull_request: "https://github.com/singer-io/tap-s3-csv/pull/84" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-12-09-3plcentral-v1-bump-library-versions.md b/_changelog-files/2025/2025-12-09-3plcentral-v1-bump-library-versions.md index 89c8c081b..845c179ec 100644 --- a/_changelog-files/2025/2025-12-09-3plcentral-v1-bump-library-versions.md +++ b/_changelog-files/2025/2025-12-09-3plcentral-v1-bump-library-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: 3plcentral connection-version: 1 -pull-request: "https://github.com/singer-io/tap-3plcentral/pull/12" +pull_request: "https://github.com/singer-io/tap-3plcentral/pull/12" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-12-09-autopilot-v1-bump-libraries-for-compliance.md b/_changelog-files/2025/2025-12-09-autopilot-v1-bump-libraries-for-compliance.md index 77c7b9c6d..462be98d7 100644 --- a/_changelog-files/2025/2025-12-09-autopilot-v1-bump-libraries-for-compliance.md +++ b/_changelog-files/2025/2025-12-09-autopilot-v1-bump-libraries-for-compliance.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: autopilot connection-version: 1 -pull-request: "https://github.com/singer-io/tap-autopilot/pull/12" +pull_request: "https://github.com/singer-io/tap-autopilot/pull/12" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-12-09-circle-ci-v1-library-version-upgrade.md b/_changelog-files/2025/2025-12-09-circle-ci-v1-library-version-upgrade.md index a42aa7e8f..63aaf560a 100644 --- a/_changelog-files/2025/2025-12-09-circle-ci-v1-library-version-upgrade.md +++ b/_changelog-files/2025/2025-12-09-circle-ci-v1-library-version-upgrade.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: circle-ci connection-version: 1 -pull-request: "https://github.com/singer-io/tap-circle-ci/pull/20" +pull_request: "https://github.com/singer-io/tap-circle-ci/pull/20" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-12-09-clubspeed-v1-bump-dependencies.md b/_changelog-files/2025/2025-12-09-clubspeed-v1-bump-dependencies.md index b36f16152..4545ad8bc 100644 --- a/_changelog-files/2025/2025-12-09-clubspeed-v1-bump-dependencies.md +++ b/_changelog-files/2025/2025-12-09-clubspeed-v1-bump-dependencies.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: clubspeed connection-version: 1 -pull-request: "https://github.com/singer-io/tap-clubspeed/pull/4" +pull_request: "https://github.com/singer-io/tap-clubspeed/pull/4" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-12-09-codat-v1-bump-dependencies.md b/_changelog-files/2025/2025-12-09-codat-v1-bump-dependencies.md index 45b297d94..deb9714ba 100644 --- a/_changelog-files/2025/2025-12-09-codat-v1-bump-dependencies.md +++ b/_changelog-files/2025/2025-12-09-codat-v1-bump-dependencies.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: codat connection-version: 1 -pull-request: "https://github.com/singer-io/tap-codat/pull/28" +pull_request: "https://github.com/singer-io/tap-codat/pull/28" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-12-09-harvest-forecast-v1-bump-dependency-versions-for-compliance-failures.md b/_changelog-files/2025/2025-12-09-harvest-forecast-v1-bump-dependency-versions-for-compliance-failures.md index b73de54b6..e848e479a 100644 --- a/_changelog-files/2025/2025-12-09-harvest-forecast-v1-bump-dependency-versions-for-compliance-failures.md +++ b/_changelog-files/2025/2025-12-09-harvest-forecast-v1-bump-dependency-versions-for-compliance-failures.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: harvest-forecast connection-version: 1 -pull-request: "https://github.com/singer-io/tap-harvest-forecast/pull/31" +pull_request: "https://github.com/singer-io/tap-harvest-forecast/pull/31" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-12-09-hubspot-v4-retry-the-api-requests-for-all-the-errors.md b/_changelog-files/2025/2025-12-09-hubspot-v4-retry-the-api-requests-for-all-the-errors.md index 0c68d1371..55d2efa2d 100644 --- a/_changelog-files/2025/2025-12-09-hubspot-v4-retry-the-api-requests-for-all-the-errors.md +++ b/_changelog-files/2025/2025-12-09-hubspot-v4-retry-the-api-requests-for-all-the-errors.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: hubspot connection-version: 4 -pull-request: "https://github.com/singer-io/tap-hubspot/pull/282" +pull_request: "https://github.com/singer-io/tap-hubspot/pull/282" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-12-09-jira-v2-sac-29184-add-bookmarks-to-issues-child-streams.md b/_changelog-files/2025/2025-12-09-jira-v2-sac-29184-add-bookmarks-to-issues-child-streams.md index a8fd8b5bd..b8036785e 100644 --- a/_changelog-files/2025/2025-12-09-jira-v2-sac-29184-add-bookmarks-to-issues-child-streams.md +++ b/_changelog-files/2025/2025-12-09-jira-v2-sac-29184-add-bookmarks-to-issues-child-streams.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: jira connection-version: 2 -pull-request: "https://github.com/singer-io/tap-jira/pull/132" +pull_request: "https://github.com/singer-io/tap-jira/pull/132" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-12-09-kustomer-v1-bump-version-for-compliance-failures.md b/_changelog-files/2025/2025-12-09-kustomer-v1-bump-version-for-compliance-failures.md index 4daf0cc20..c0763656b 100644 --- a/_changelog-files/2025/2025-12-09-kustomer-v1-bump-version-for-compliance-failures.md +++ b/_changelog-files/2025/2025-12-09-kustomer-v1-bump-version-for-compliance-failures.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: kustomer connection-version: 1 -pull-request: "https://github.com/singer-io/tap-kustomer/pull/34" +pull_request: "https://github.com/singer-io/tap-kustomer/pull/34" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-12-09-looker-v1-update-libraries-for-compliance.md b/_changelog-files/2025/2025-12-09-looker-v1-update-libraries-for-compliance.md index 8803a7760..e1b0fff6c 100644 --- a/_changelog-files/2025/2025-12-09-looker-v1-update-libraries-for-compliance.md +++ b/_changelog-files/2025/2025-12-09-looker-v1-update-libraries-for-compliance.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: looker connection-version: 1 -pull-request: "https://github.com/singer-io/tap-looker/pull/20" +pull_request: "https://github.com/singer-io/tap-looker/pull/20" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-12-09-onfleet-v1-bump-dependencies.md b/_changelog-files/2025/2025-12-09-onfleet-v1-bump-dependencies.md index 74eda3b53..3d2dcc3e9 100644 --- a/_changelog-files/2025/2025-12-09-onfleet-v1-bump-dependencies.md +++ b/_changelog-files/2025/2025-12-09-onfleet-v1-bump-dependencies.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: onfleet connection-version: 1 -pull-request: "https://github.com/singer-io/tap-onfleet/pull/10" +pull_request: "https://github.com/singer-io/tap-onfleet/pull/10" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-12-09-ujet-v1-bump-version-for-compliance-failures.md b/_changelog-files/2025/2025-12-09-ujet-v1-bump-version-for-compliance-failures.md index 3c5e172ab..33e0bd982 100644 --- a/_changelog-files/2025/2025-12-09-ujet-v1-bump-version-for-compliance-failures.md +++ b/_changelog-files/2025/2025-12-09-ujet-v1-bump-version-for-compliance-failures.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: ujet connection-version: 1 -pull-request: "https://github.com/singer-io/tap-ujet/pull/12" +pull_request: "https://github.com/singer-io/tap-ujet/pull/12" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-12-09-uservoice-v1-bump-dependencies.md b/_changelog-files/2025/2025-12-09-uservoice-v1-bump-dependencies.md index dab138023..b7d5eace2 100644 --- a/_changelog-files/2025/2025-12-09-uservoice-v1-bump-dependencies.md +++ b/_changelog-files/2025/2025-12-09-uservoice-v1-bump-dependencies.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: uservoice connection-version: 1 -pull-request: "https://github.com/singer-io/tap-uservoice/pull/14" +pull_request: "https://github.com/singer-io/tap-uservoice/pull/14" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-12-10-salesforce-v2-fix-forced-replication-method.md b/_changelog-files/2025/2025-12-10-salesforce-v2-fix-forced-replication-method.md index 1fdc5c81e..6f21e5e3f 100644 --- a/_changelog-files/2025/2025-12-10-salesforce-v2-fix-forced-replication-method.md +++ b/_changelog-files/2025/2025-12-10-salesforce-v2-fix-forced-replication-method.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: salesforce connection-version: 2 -pull-request: "https://github.com/singer-io/tap-salesforce/pull/194" +pull_request: "https://github.com/singer-io/tap-salesforce/pull/194" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-12-12-zuora-v1-sac-29405--add-clearingexistingcommunicationprofile-to-unsupported_fields_for_rest.md b/_changelog-files/2025/2025-12-12-zuora-v1-sac-29405--add-clearingexistingcommunicationprofile-to-unsupported_fields_for_rest.md index 86e304745..4d990ac84 100644 --- a/_changelog-files/2025/2025-12-12-zuora-v1-sac-29405--add-clearingexistingcommunicationprofile-to-unsupported_fields_for_rest.md +++ b/_changelog-files/2025/2025-12-12-zuora-v1-sac-29405--add-clearingexistingcommunicationprofile-to-unsupported_fields_for_rest.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: zuora connection-version: 1 -pull-request: "https://github.com/singer-io/tap-zuora/pull/88" +pull_request: "https://github.com/singer-io/tap-zuora/pull/88" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-12-15-shopify-v3-add-exponential-backoff-retry-logic-for-shopify-bulk-operations-in-progress.md b/_changelog-files/2025/2025-12-15-shopify-v3-add-exponential-backoff-retry-logic-for-shopify-bulk-operations-in-progress.md index ba33c7b79..9e3a5310e 100644 --- a/_changelog-files/2025/2025-12-15-shopify-v3-add-exponential-backoff-retry-logic-for-shopify-bulk-operations-in-progress.md +++ b/_changelog-files/2025/2025-12-15-shopify-v3-add-exponential-backoff-retry-logic-for-shopify-bulk-operations-in-progress.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: shopify connection-version: 3 -pull-request: "https://github.com/singer-io/tap-shopify/pull/246" +pull_request: "https://github.com/singer-io/tap-shopify/pull/246" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-12-18-gitlab-v1-gl-work-updated-config-options.md b/_changelog-files/2025/2025-12-18-gitlab-v1-gl-work-updated-config-options.md index c8c968a3f..fa96da090 100644 --- a/_changelog-files/2025/2025-12-18-gitlab-v1-gl-work-updated-config-options.md +++ b/_changelog-files/2025/2025-12-18-gitlab-v1-gl-work-updated-config-options.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: gitlab connection-version: 1 -pull-request: "https://github.com/singer-io/tap-gitlab/pull/46" +pull_request: "https://github.com/singer-io/tap-gitlab/pull/46" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-12-18-salesforce-v2-update-libraries-to-latest-version.md b/_changelog-files/2025/2025-12-18-salesforce-v2-update-libraries-to-latest-version.md index 4f3d8b74c..64e56b6af 100644 --- a/_changelog-files/2025/2025-12-18-salesforce-v2-update-libraries-to-latest-version.md +++ b/_changelog-files/2025/2025-12-18-salesforce-v2-update-libraries-to-latest-version.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: salesforce connection-version: 2 -pull-request: "https://github.com/singer-io/tap-salesforce/pull/195" +pull_request: "https://github.com/singer-io/tap-salesforce/pull/195" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-12-19-workday-raas-v1-library-updates.md b/_changelog-files/2025/2025-12-19-workday-raas-v1-library-updates.md index aa74f44bb..aa4a58d5f 100644 --- a/_changelog-files/2025/2025-12-19-workday-raas-v1-library-updates.md +++ b/_changelog-files/2025/2025-12-19-workday-raas-v1-library-updates.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: workday-raas connection-version: 1 -pull-request: "https://github.com/singer-io/tap-workday-raas/pull/21" +pull_request: "https://github.com/singer-io/tap-workday-raas/pull/21" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-12-22-stripe-v3-add-transfer_reversals-stream.md b/_changelog-files/2025/2025-12-22-stripe-v3-add-transfer_reversals-stream.md index 591de1000..e03d932f0 100644 --- a/_changelog-files/2025/2025-12-22-stripe-v3-add-transfer_reversals-stream.md +++ b/_changelog-files/2025/2025-12-22-stripe-v3-add-transfer_reversals-stream.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: stripe connection-version: 3 -pull-request: "https://github.com/singer-io/tap-stripe/pull/216" +pull_request: "https://github.com/singer-io/tap-stripe/pull/216" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-12-30-exacttarget-v1-schema-enhancements-and-bugfixes.md b/_changelog-files/2025/2025-12-30-exacttarget-v1-schema-enhancements-and-bugfixes.md index bcba7e5b2..88b79e6d4 100644 --- a/_changelog-files/2025/2025-12-30-exacttarget-v1-schema-enhancements-and-bugfixes.md +++ b/_changelog-files/2025/2025-12-30-exacttarget-v1-schema-enhancements-and-bugfixes.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: salesforce-marketing-cloud connection-version: 1 -pull-request: "https://github.com/singer-io/tap-exacttarget/pull/104" +pull_request: "https://github.com/singer-io/tap-exacttarget/pull/104" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-01-05-sftp-v1-upgrade-paramiko-version-to-3-5-1.md b/_changelog-files/2026/2026-01-05-sftp-v1-upgrade-paramiko-version-to-3-5-1.md index 3420c3544..161488b30 100644 --- a/_changelog-files/2026/2026-01-05-sftp-v1-upgrade-paramiko-version-to-3-5-1.md +++ b/_changelog-files/2026/2026-01-05-sftp-v1-upgrade-paramiko-version-to-3-5-1.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: sftp connection-version: 1 -pull-request: "https://github.com/singer-io/tap-sftp/pull/52" +pull_request: "https://github.com/singer-io/tap-sftp/pull/52" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-01-06-shopify-v3-update-the-bookmark-value-even-if-the-record-is-not-retrieved.md b/_changelog-files/2026/2026-01-06-shopify-v3-update-the-bookmark-value-even-if-the-record-is-not-retrieved.md index 0288b1760..f54a819af 100644 --- a/_changelog-files/2026/2026-01-06-shopify-v3-update-the-bookmark-value-even-if-the-record-is-not-retrieved.md +++ b/_changelog-files/2026/2026-01-06-shopify-v3-update-the-bookmark-value-even-if-the-record-is-not-retrieved.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: shopify connection-version: 3 -pull-request: "https://github.com/singer-io/tap-shopify/pull/247" +pull_request: "https://github.com/singer-io/tap-shopify/pull/247" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-01-07-stripe-v3-update-metadata.md b/_changelog-files/2026/2026-01-07-stripe-v3-update-metadata.md index 52f4eb19a..d6a5ca1e8 100644 --- a/_changelog-files/2026/2026-01-07-stripe-v3-update-metadata.md +++ b/_changelog-files/2026/2026-01-07-stripe-v3-update-metadata.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: stripe connection-version: 3 -pull-request: "https://github.com/singer-io/tap-stripe/pull/214" +pull_request: "https://github.com/singer-io/tap-stripe/pull/214" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-01-16-ga4-v1-bump-google-analytics-data.md b/_changelog-files/2026/2026-01-16-ga4-v1-bump-google-analytics-data.md index baddf6f2f..68fbc0ed5 100644 --- a/_changelog-files/2026/2026-01-16-ga4-v1-bump-google-analytics-data.md +++ b/_changelog-files/2026/2026-01-16-ga4-v1-bump-google-analytics-data.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-analytics-4 connection-version: 1 -pull-request: "https://github.com/singer-io/tap-ga4/pull/122" +pull_request: "https://github.com/singer-io/tap-ga4/pull/122" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-01-19-salesforce-v2-remove-select_fields_by_default-from-required-config-keys.md b/_changelog-files/2026/2026-01-19-salesforce-v2-remove-select_fields_by_default-from-required-config-keys.md index 04de8eb02..ac82e3359 100644 --- a/_changelog-files/2026/2026-01-19-salesforce-v2-remove-select_fields_by_default-from-required-config-keys.md +++ b/_changelog-files/2026/2026-01-19-salesforce-v2-remove-select_fields_by_default-from-required-config-keys.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: salesforce connection-version: 2 -pull-request: "https://github.com/singer-io/tap-salesforce/pull/197" +pull_request: "https://github.com/singer-io/tap-salesforce/pull/197" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-01-22-intercom-v2-update-interrupted-bookmarking-for-conversations.md b/_changelog-files/2026/2026-01-22-intercom-v2-update-interrupted-bookmarking-for-conversations.md index 7ac3d7bde..2e0402f93 100644 --- a/_changelog-files/2026/2026-01-22-intercom-v2-update-interrupted-bookmarking-for-conversations.md +++ b/_changelog-files/2026/2026-01-22-intercom-v2-update-interrupted-bookmarking-for-conversations.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: intercom connection-version: 2 -pull-request: "https://github.com/singer-io/tap-intercom/pull/85" +pull_request: "https://github.com/singer-io/tap-intercom/pull/85" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-01-22-quickbase-v1-pr-0--[sac-29640]--aggregated-gl-work.md b/_changelog-files/2026/2026-01-22-quickbase-v1-pr-0--[sac-29640]--aggregated-gl-work.md index 45559adf1..db3aa486f 100644 --- a/_changelog-files/2026/2026-01-22-quickbase-v1-pr-0--[sac-29640]--aggregated-gl-work.md +++ b/_changelog-files/2026/2026-01-22-quickbase-v1-pr-0--[sac-29640]--aggregated-gl-work.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: quick-base connection-version: 1 -pull-request: "https://github.com/singer-io/tap-quickbase/pull/29" +pull_request: "https://github.com/singer-io/tap-quickbase/pull/29" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-01-23-chargebee-v1-write-bookmark-when-no-records-are-synced.md b/_changelog-files/2026/2026-01-23-chargebee-v1-write-bookmark-when-no-records-are-synced.md index 011710140..990938a4b 100644 --- a/_changelog-files/2026/2026-01-23-chargebee-v1-write-bookmark-when-no-records-are-synced.md +++ b/_changelog-files/2026/2026-01-23-chargebee-v1-write-bookmark-when-no-records-are-synced.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: chargebee connection-version: 1 -pull-request: "https://github.com/singer-io/tap-chargebee/pull/120" +pull_request: "https://github.com/singer-io/tap-chargebee/pull/120" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-01-23-dixa-v1-update-urllib3-version-from-2-6-0-to-2-6-3.md b/_changelog-files/2026/2026-01-23-dixa-v1-update-urllib3-version-from-2-6-0-to-2-6-3.md index 8196427b8..3c0b818b8 100644 --- a/_changelog-files/2026/2026-01-23-dixa-v1-update-urllib3-version-from-2-6-0-to-2-6-3.md +++ b/_changelog-files/2026/2026-01-23-dixa-v1-update-urllib3-version-from-2-6-0-to-2-6-3.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: dixa connection-version: 1 -pull-request: "https://github.com/singer-io/tap-dixa/pull/32" +pull_request: "https://github.com/singer-io/tap-dixa/pull/32" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-01-23-s3-csv-v1-bump-urllib3-version.md b/_changelog-files/2026/2026-01-23-s3-csv-v1-bump-urllib3-version.md index 7eeab682f..4f06059fa 100644 --- a/_changelog-files/2026/2026-01-23-s3-csv-v1-bump-urllib3-version.md +++ b/_changelog-files/2026/2026-01-23-s3-csv-v1-bump-urllib3-version.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: s3 connection-version: 1 -pull-request: "https://github.com/singer-io/tap-s3-csv/pull/86" +pull_request: "https://github.com/singer-io/tap-s3-csv/pull/86" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-01-23-zendesk-v2-bump-aiohttp-version.md b/_changelog-files/2026/2026-01-23-zendesk-v2-bump-aiohttp-version.md index d244b32eb..dd91a2f0b 100644 --- a/_changelog-files/2026/2026-01-23-zendesk-v2-bump-aiohttp-version.md +++ b/_changelog-files/2026/2026-01-23-zendesk-v2-bump-aiohttp-version.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: zendesk connection-version: 2 -pull-request: "https://github.com/singer-io/tap-zendesk/pull/178" +pull_request: "https://github.com/singer-io/tap-zendesk/pull/178" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-01-26-google-ads-v2-update-protobuf-version-to-6-33-4.md b/_changelog-files/2026/2026-01-26-google-ads-v2-update-protobuf-version-to-6-33-4.md index 1440cd468..7f6bdbb19 100644 --- a/_changelog-files/2026/2026-01-26-google-ads-v2-update-protobuf-version-to-6-33-4.md +++ b/_changelog-files/2026/2026-01-26-google-ads-v2-update-protobuf-version-to-6-33-4.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-ads connection-version: 2 -pull-request: "https://github.com/singer-io/tap-google-ads/pull/104" +pull_request: "https://github.com/singer-io/tap-google-ads/pull/104" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-01-27-linkedin-ads-v2-add-`parent-tap-stream-id`.md b/_changelog-files/2026/2026-01-27-linkedin-ads-v2-add-`parent-tap-stream-id`.md index 1d2a05f66..b1a312a1e 100644 --- a/_changelog-files/2026/2026-01-27-linkedin-ads-v2-add-`parent-tap-stream-id`.md +++ b/_changelog-files/2026/2026-01-27-linkedin-ads-v2-add-`parent-tap-stream-id`.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: linkedin-ads connection-version: 2 -pull-request: "https://github.com/singer-io/tap-linkedin-ads/pull/82" +pull_request: "https://github.com/singer-io/tap-linkedin-ads/pull/82" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-01-27-shopify-v3-add-pagination-support-for-fulfillment-line-items.md b/_changelog-files/2026/2026-01-27-shopify-v3-add-pagination-support-for-fulfillment-line-items.md index 4c321f747..c66a8c91c 100644 --- a/_changelog-files/2026/2026-01-27-shopify-v3-add-pagination-support-for-fulfillment-line-items.md +++ b/_changelog-files/2026/2026-01-27-shopify-v3-add-pagination-support-for-fulfillment-line-items.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: shopify connection-version: 3 -pull-request: "https://github.com/singer-io/tap-shopify/pull/248" +pull_request: "https://github.com/singer-io/tap-shopify/pull/248" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-01-28-listrak-v1-bug-fix-for-subscribed-contacts.md b/_changelog-files/2026/2026-01-28-listrak-v1-bug-fix-for-subscribed-contacts.md index d1e293868..256db0b2f 100644 --- a/_changelog-files/2026/2026-01-28-listrak-v1-bug-fix-for-subscribed-contacts.md +++ b/_changelog-files/2026/2026-01-28-listrak-v1-bug-fix-for-subscribed-contacts.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: listrak connection-version: 1 -pull-request: "https://github.com/singer-io/tap-listrak/pull/26" +pull_request: "https://github.com/singer-io/tap-listrak/pull/26" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-02-05-frontapp-v2-bump-dependency-versions-for-twistlock-compliance.md b/_changelog-files/2026/2026-02-05-frontapp-v2-bump-dependency-versions-for-twistlock-compliance.md index 429536347..6ad4b6ba7 100644 --- a/_changelog-files/2026/2026-02-05-frontapp-v2-bump-dependency-versions-for-twistlock-compliance.md +++ b/_changelog-files/2026/2026-02-05-frontapp-v2-bump-dependency-versions-for-twistlock-compliance.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: frontapp connection-version: 2 -pull-request: "https://github.com/singer-io/tap-frontapp/pull/37" +pull_request: "https://github.com/singer-io/tap-frontapp/pull/37" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-02-05-mailshake-v1-bump-dependency-versions-for-twistlock-compliance.md b/_changelog-files/2026/2026-02-05-mailshake-v1-bump-dependency-versions-for-twistlock-compliance.md index 6a0e14a0b..610171edd 100644 --- a/_changelog-files/2026/2026-02-05-mailshake-v1-bump-dependency-versions-for-twistlock-compliance.md +++ b/_changelog-files/2026/2026-02-05-mailshake-v1-bump-dependency-versions-for-twistlock-compliance.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mailshake connection-version: 1 -pull-request: "https://github.com/singer-io/tap-mailshake/pull/16" +pull_request: "https://github.com/singer-io/tap-mailshake/pull/16" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-02-10-hubspot-v4-add-new-sub-streams.md b/_changelog-files/2026/2026-02-10-hubspot-v4-add-new-sub-streams.md index 595860505..6612ea37a 100644 --- a/_changelog-files/2026/2026-02-10-hubspot-v4-add-new-sub-streams.md +++ b/_changelog-files/2026/2026-02-10-hubspot-v4-add-new-sub-streams.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: hubspot connection-version: 4 -pull-request: "https://github.com/singer-io/tap-hubspot/pull/284" +pull_request: "https://github.com/singer-io/tap-hubspot/pull/284" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-02-10-salesforce-v2-write-bookmark-when-no-records-are-synced.md b/_changelog-files/2026/2026-02-10-salesforce-v2-write-bookmark-when-no-records-are-synced.md index 0e79fa789..19844f66f 100644 --- a/_changelog-files/2026/2026-02-10-salesforce-v2-write-bookmark-when-no-records-are-synced.md +++ b/_changelog-files/2026/2026-02-10-salesforce-v2-write-bookmark-when-no-records-are-synced.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: salesforce connection-version: 2 -pull-request: "https://github.com/singer-io/tap-salesforce/pull/198" +pull_request: "https://github.com/singer-io/tap-salesforce/pull/198" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-02-18-listrak-v1-fix-stream-sync-logic-to-respect-dependencies-and-add-comprehensive-unit-tests.md b/_changelog-files/2026/2026-02-18-listrak-v1-fix-stream-sync-logic-to-respect-dependencies-and-add-comprehensive-unit-tests.md index f56df4c62..fe3c37f08 100644 --- a/_changelog-files/2026/2026-02-18-listrak-v1-fix-stream-sync-logic-to-respect-dependencies-and-add-comprehensive-unit-tests.md +++ b/_changelog-files/2026/2026-02-18-listrak-v1-fix-stream-sync-logic-to-respect-dependencies-and-add-comprehensive-unit-tests.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: listrak connection-version: 1 -pull-request: "https://github.com/singer-io/tap-listrak/pull/27" +pull_request: "https://github.com/singer-io/tap-listrak/pull/27" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-02-18-pipedrive-v1-add-label-ids-in-deals.md b/_changelog-files/2026/2026-02-18-pipedrive-v1-add-label-ids-in-deals.md index 3f331b246..0e7af87dd 100644 --- a/_changelog-files/2026/2026-02-18-pipedrive-v1-add-label-ids-in-deals.md +++ b/_changelog-files/2026/2026-02-18-pipedrive-v1-add-label-ids-in-deals.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: pipedrive connection-version: 1 -pull-request: "https://github.com/singer-io/tap-pipedrive/pull/151" +pull_request: "https://github.com/singer-io/tap-pipedrive/pull/151" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-02-19-frontapp-v2-bookmark-format-validation.md b/_changelog-files/2026/2026-02-19-frontapp-v2-bookmark-format-validation.md index 0962afd1a..f7a40d3ae 100644 --- a/_changelog-files/2026/2026-02-19-frontapp-v2-bookmark-format-validation.md +++ b/_changelog-files/2026/2026-02-19-frontapp-v2-bookmark-format-validation.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: frontapp connection-version: 2 -pull-request: "https://github.com/singer-io/tap-frontapp/pull/38" +pull_request: "https://github.com/singer-io/tap-frontapp/pull/38" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-02-19-salesforce-v2-update-activate-version-state.md b/_changelog-files/2026/2026-02-19-salesforce-v2-update-activate-version-state.md index 2a0b0df5f..ab2fb8284 100644 --- a/_changelog-files/2026/2026-02-19-salesforce-v2-update-activate-version-state.md +++ b/_changelog-files/2026/2026-02-19-salesforce-v2-update-activate-version-state.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: salesforce connection-version: 2 -pull-request: "https://github.com/singer-io/tap-salesforce/pull/202" +pull_request: "https://github.com/singer-io/tap-salesforce/pull/202" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-02-25-hubspot-v4-add-parent-stream-for-form_submissions-and-list_memberships.md b/_changelog-files/2026/2026-02-25-hubspot-v4-add-parent-stream-for-form_submissions-and-list_memberships.md index 50e5dee4f..5b9c83e42 100644 --- a/_changelog-files/2026/2026-02-25-hubspot-v4-add-parent-stream-for-form_submissions-and-list_memberships.md +++ b/_changelog-files/2026/2026-02-25-hubspot-v4-add-parent-stream-for-form_submissions-and-list_memberships.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: hubspot connection-version: 4 -pull-request: "https://github.com/singer-io/tap-hubspot/pull/290" +pull_request: "https://github.com/singer-io/tap-hubspot/pull/290" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-02-25-xero-v1-update-singer-python-version-for-clear_offset-fix.md b/_changelog-files/2026/2026-02-25-xero-v1-update-singer-python-version-for-clear_offset-fix.md index 2f35b71b7..840d7695b 100644 --- a/_changelog-files/2026/2026-02-25-xero-v1-update-singer-python-version-for-clear_offset-fix.md +++ b/_changelog-files/2026/2026-02-25-xero-v1-update-singer-python-version-for-clear_offset-fix.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: xero connection-version: 1 -pull-request: "https://github.com/singer-io/tap-xero/pull/127" +pull_request: "https://github.com/singer-io/tap-xero/pull/127" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-02-26-salesforce-v2-deepcopy-raw_state.md b/_changelog-files/2026/2026-02-26-salesforce-v2-deepcopy-raw_state.md index 55259579c..10d62a5cf 100644 --- a/_changelog-files/2026/2026-02-26-salesforce-v2-deepcopy-raw_state.md +++ b/_changelog-files/2026/2026-02-26-salesforce-v2-deepcopy-raw_state.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: salesforce connection-version: 2 -pull-request: "https://github.com/singer-io/tap-salesforce/pull/207" +pull_request: "https://github.com/singer-io/tap-salesforce/pull/207" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-02-27-heap-v1-standardize-state.md b/_changelog-files/2026/2026-02-27-heap-v1-standardize-state.md index 7debe4ea4..f21a59054 100644 --- a/_changelog-files/2026/2026-02-27-heap-v1-standardize-state.md +++ b/_changelog-files/2026/2026-02-27-heap-v1-standardize-state.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: heap connection-version: 1 -pull-request: "https://github.com/singer-io/tap-heap/pull/28" +pull_request: "https://github.com/singer-io/tap-heap/pull/28" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-03-03-salesforce-v2-fix-key-error-in-build_state.md b/_changelog-files/2026/2026-03-03-salesforce-v2-fix-key-error-in-build_state.md index 1090708ab..71ebb2b8f 100644 --- a/_changelog-files/2026/2026-03-03-salesforce-v2-fix-key-error-in-build_state.md +++ b/_changelog-files/2026/2026-03-03-salesforce-v2-fix-key-error-in-build_state.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: salesforce connection-version: 2 -pull-request: "https://github.com/singer-io/tap-salesforce/pull/209" +pull_request: "https://github.com/singer-io/tap-salesforce/pull/209" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-03-04-pipedrive-v1-update-data-type-for-some-of-schema-fields.md b/_changelog-files/2026/2026-03-04-pipedrive-v1-update-data-type-for-some-of-schema-fields.md index 481cbb36a..6c9535ff2 100644 --- a/_changelog-files/2026/2026-03-04-pipedrive-v1-update-data-type-for-some-of-schema-fields.md +++ b/_changelog-files/2026/2026-03-04-pipedrive-v1-update-data-type-for-some-of-schema-fields.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: pipedrive connection-version: 1 -pull-request: "https://github.com/singer-io/tap-pipedrive/pull/152" +pull_request: "https://github.com/singer-io/tap-pipedrive/pull/152" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-03-09-google-sheets-v3-bump-to-singer-python-6-8-0-and-use-`versions`-in-state.md b/_changelog-files/2026/2026-03-09-google-sheets-v3-bump-to-singer-python-6-8-0-and-use-`versions`-in-state.md index 7e7069ac2..8c5da3393 100644 --- a/_changelog-files/2026/2026-03-09-google-sheets-v3-bump-to-singer-python-6-8-0-and-use-`versions`-in-state.md +++ b/_changelog-files/2026/2026-03-09-google-sheets-v3-bump-to-singer-python-6-8-0-and-use-`versions`-in-state.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-sheets connection-version: 3 -pull-request: "https://github.com/singer-io/tap-google-sheets/pull/105" +pull_request: "https://github.com/singer-io/tap-google-sheets/pull/105" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-03-09-salesforce-v2-bump-singer-python-to-6-8-0-and-update-tests-to-use-`versions`.md b/_changelog-files/2026/2026-03-09-salesforce-v2-bump-singer-python-to-6-8-0-and-update-tests-to-use-`versions`.md index 5b87801b4..a49607bee 100644 --- a/_changelog-files/2026/2026-03-09-salesforce-v2-bump-singer-python-to-6-8-0-and-update-tests-to-use-`versions`.md +++ b/_changelog-files/2026/2026-03-09-salesforce-v2-bump-singer-python-to-6-8-0-and-update-tests-to-use-`versions`.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: salesforce connection-version: 2 -pull-request: "https://github.com/singer-io/tap-salesforce/pull/210" +pull_request: "https://github.com/singer-io/tap-salesforce/pull/210" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-03-10-google-ads-v2-bump-protobuf-to-v6-33-5.md b/_changelog-files/2026/2026-03-10-google-ads-v2-bump-protobuf-to-v6-33-5.md index df20340ee..d85373f95 100644 --- a/_changelog-files/2026/2026-03-10-google-ads-v2-bump-protobuf-to-v6-33-5.md +++ b/_changelog-files/2026/2026-03-10-google-ads-v2-bump-protobuf-to-v6-33-5.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-ads connection-version: 2 -pull-request: "https://github.com/singer-io/tap-google-ads/pull/105" +pull_request: "https://github.com/singer-io/tap-google-ads/pull/105" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-03-11-mailjet-vNOT FOUND-added-5xx-exception-handling.md b/_changelog-files/2026/2026-03-11-mailjet-vNOT FOUND-added-5xx-exception-handling.md index 644aba1ba..d5e0397dc 100644 --- a/_changelog-files/2026/2026-03-11-mailjet-vNOT FOUND-added-5xx-exception-handling.md +++ b/_changelog-files/2026/2026-03-11-mailjet-vNOT FOUND-added-5xx-exception-handling.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mailjet connection-version: 1 -pull-request: "https://github.com/singer-io/tap-mailjet/pull/8" +pull_request: "https://github.com/singer-io/tap-mailjet/pull/8" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-03-12-klaviyo-v1-use-safe-gets-on-state-dictionary.md b/_changelog-files/2026/2026-03-12-klaviyo-v1-use-safe-gets-on-state-dictionary.md index dfe8953ba..ed6c88437 100644 --- a/_changelog-files/2026/2026-03-12-klaviyo-v1-use-safe-gets-on-state-dictionary.md +++ b/_changelog-files/2026/2026-03-12-klaviyo-v1-use-safe-gets-on-state-dictionary.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: klaviyo connection-version: 1 -pull-request: "https://github.com/singer-io/tap-klaviyo/pull/82" +pull_request: "https://github.com/singer-io/tap-klaviyo/pull/82" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-03-12-referral-saasquatch-v1-added-tests-and-python-upgrade.md b/_changelog-files/2026/2026-03-12-referral-saasquatch-v1-added-tests-and-python-upgrade.md index f9a78b5d4..c55682bf7 100644 --- a/_changelog-files/2026/2026-03-12-referral-saasquatch-v1-added-tests-and-python-upgrade.md +++ b/_changelog-files/2026/2026-03-12-referral-saasquatch-v1-added-tests-and-python-upgrade.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: referral-saasquatch connection-version: 1 -pull-request: "https://github.com/singer-io/tap-referral-saasquatch/pull/23" +pull_request: "https://github.com/singer-io/tap-referral-saasquatch/pull/23" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-03-13-asana-v2-fix-access-token-refresh-issue.md b/_changelog-files/2026/2026-03-13-asana-v2-fix-access-token-refresh-issue.md index 3d33a4238..9ac8d2780 100644 --- a/_changelog-files/2026/2026-03-13-asana-v2-fix-access-token-refresh-issue.md +++ b/_changelog-files/2026/2026-03-13-asana-v2-fix-access-token-refresh-issue.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: asana connection-version: 2 -pull-request: "https://github.com/singer-io/tap-asana/pull/69" +pull_request: "https://github.com/singer-io/tap-asana/pull/69" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-03-16-s3-csv-v1-handle-empty-initial-sync.md b/_changelog-files/2026/2026-03-16-s3-csv-v1-handle-empty-initial-sync.md index 522a4725a..754880b58 100644 --- a/_changelog-files/2026/2026-03-16-s3-csv-v1-handle-empty-initial-sync.md +++ b/_changelog-files/2026/2026-03-16-s3-csv-v1-handle-empty-initial-sync.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: s3 connection-version: 1 -pull-request: "https://github.com/singer-io/tap-s3-csv/pull/87" +pull_request: "https://github.com/singer-io/tap-s3-csv/pull/87" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-03-24-klaviyo-v1-sac-30415-fix-tap_stream_id-when-writing-bookmarks.md b/_changelog-files/2026/2026-03-24-klaviyo-v1-sac-30415-fix-tap_stream_id-when-writing-bookmarks.md index b97adbe3d..04cf7db6a 100644 --- a/_changelog-files/2026/2026-03-24-klaviyo-v1-sac-30415-fix-tap_stream_id-when-writing-bookmarks.md +++ b/_changelog-files/2026/2026-03-24-klaviyo-v1-sac-30415-fix-tap_stream_id-when-writing-bookmarks.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: klaviyo connection-version: 1 -pull-request: "https://github.com/singer-io/tap-klaviyo/pull/83" +pull_request: "https://github.com/singer-io/tap-klaviyo/pull/83" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-03-30-xero-v1-show-warning-for-deprecated-streams.md b/_changelog-files/2026/2026-03-30-xero-v1-show-warning-for-deprecated-streams.md index 051afd766..f8bc59f1b 100644 --- a/_changelog-files/2026/2026-03-30-xero-v1-show-warning-for-deprecated-streams.md +++ b/_changelog-files/2026/2026-03-30-xero-v1-show-warning-for-deprecated-streams.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: xero connection-version: 1 -pull-request: "https://github.com/singer-io/tap-xero/pull/128" +pull_request: "https://github.com/singer-io/tap-xero/pull/128" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-03-31-quickbase-v1-added-5xx-exception-handling.md b/_changelog-files/2026/2026-03-31-quickbase-v1-added-5xx-exception-handling.md index 3f4dc3887..0e1f85e32 100644 --- a/_changelog-files/2026/2026-03-31-quickbase-v1-added-5xx-exception-handling.md +++ b/_changelog-files/2026/2026-03-31-quickbase-v1-added-5xx-exception-handling.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: quick-base connection-version: 1 -pull-request: "https://github.com/singer-io/tap-quickbase/pull/37" +pull_request: "https://github.com/singer-io/tap-quickbase/pull/37" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-04-07-ms-teams-v1-library-upgrade.md b/_changelog-files/2026/2026-04-07-ms-teams-v1-library-upgrade.md index c24dca796..f1bace7cd 100644 --- a/_changelog-files/2026/2026-04-07-ms-teams-v1-library-upgrade.md +++ b/_changelog-files/2026/2026-04-07-ms-teams-v1-library-upgrade.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: ms-teams connection-version: 1 -pull-request: "https://github.com/singer-io/tap-ms-teams/pull/9" +pull_request: "https://github.com/singer-io/tap-ms-teams/pull/9" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-04-10-mailshake-v1-sac-28753-upgrade-python-dependencies.md b/_changelog-files/2026/2026-04-10-mailshake-v1-sac-28753-upgrade-python-dependencies.md index ee3237d2c..91b4bc6bc 100644 --- a/_changelog-files/2026/2026-04-10-mailshake-v1-sac-28753-upgrade-python-dependencies.md +++ b/_changelog-files/2026/2026-04-10-mailshake-v1-sac-28753-upgrade-python-dependencies.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mailshake connection-version: 1 -pull-request: "https://github.com/singer-io/tap-mailshake/pull/17" +pull_request: "https://github.com/singer-io/tap-mailshake/pull/17" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-04-10-zendesk-v2-fix-connection-failure-for-403-forbidden-error.md b/_changelog-files/2026/2026-04-10-zendesk-v2-fix-connection-failure-for-403-forbidden-error.md index 7a92ec329..9a7d27707 100644 --- a/_changelog-files/2026/2026-04-10-zendesk-v2-fix-connection-failure-for-403-forbidden-error.md +++ b/_changelog-files/2026/2026-04-10-zendesk-v2-fix-connection-failure-for-403-forbidden-error.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: zendesk connection-version: 2 -pull-request: "https://github.com/singer-io/tap-zendesk/pull/185" +pull_request: "https://github.com/singer-io/tap-zendesk/pull/185" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-04-13-asana-v2-fix-for-refresh-access-token.md b/_changelog-files/2026/2026-04-13-asana-v2-fix-for-refresh-access-token.md index e968bbe7c..6afc6e54d 100644 --- a/_changelog-files/2026/2026-04-13-asana-v2-fix-for-refresh-access-token.md +++ b/_changelog-files/2026/2026-04-13-asana-v2-fix-for-refresh-access-token.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: asana connection-version: 2 -pull-request: "https://github.com/singer-io/tap-asana/pull/71" +pull_request: "https://github.com/singer-io/tap-asana/pull/71" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-04-16-chargebee-v1-add-custom_fields-support-for-all-streams.md b/_changelog-files/2026/2026-04-16-chargebee-v1-add-custom_fields-support-for-all-streams.md index a509700b7..e4a266f9b 100644 --- a/_changelog-files/2026/2026-04-16-chargebee-v1-add-custom_fields-support-for-all-streams.md +++ b/_changelog-files/2026/2026-04-16-chargebee-v1-add-custom_fields-support-for-all-streams.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: chargebee connection-version: 1 -pull-request: "https://github.com/singer-io/tap-chargebee/pull/123" +pull_request: "https://github.com/singer-io/tap-chargebee/pull/123" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-04-20-ebay-v1-fix-for-schema-mismatch-and-standard-metadata-format.md b/_changelog-files/2026/2026-04-20-ebay-v1-fix-for-schema-mismatch-and-standard-metadata-format.md index 7ca2620a9..254019df3 100644 --- a/_changelog-files/2026/2026-04-20-ebay-v1-fix-for-schema-mismatch-and-standard-metadata-format.md +++ b/_changelog-files/2026/2026-04-20-ebay-v1-fix-for-schema-mismatch-and-standard-metadata-format.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: ebay connection-version: 1 -pull-request: "https://github.com/singer-io/tap-ebay/pull/14" +pull_request: "https://github.com/singer-io/tap-ebay/pull/14" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/templates/deprecated-integration.md b/_changelog-files/templates/deprecated-integration.md index 47a3bd238..24fb8a9c8 100644 --- a/_changelog-files/templates/deprecated-integration.md +++ b/_changelog-files/templates/deprecated-integration.md @@ -6,7 +6,7 @@ entry-type: deprecation entry-category: "integration" connection-id: "" connection-version: "" -# pull-request: "" UNCOMMENT IF THERE'S A PR +# pull_request: "" UNCOMMENT IF THERE'S A PR --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/templates/general-entry.md b/_changelog-files/templates/general-entry.md index bcd1dfdd4..9f6cfbf77 100644 --- a/_changelog-files/templates/general-entry.md +++ b/_changelog-files/templates/general-entry.md @@ -6,6 +6,6 @@ entry-type: new-feature entry-category: connection-id: connection-version: -# pull-request: "" +# pull_request: "" --- {{ site.data.changelog.metadata.single-integration | flatify }} \ No newline at end of file diff --git a/_changelog-files/templates/integrations-in-beta-list.md b/_changelog-files/templates/integrations-in-beta-list.md index 42a326cd0..e28307afa 100644 --- a/_changelog-files/templates/integrations-in-beta-list.md +++ b/_changelog-files/templates/integrations-in-beta-list.md @@ -8,7 +8,7 @@ connections: - id: "" version: copy: | -# pull-request: "" UNCOMMENT IF THERE'S A PR +# pull_request: "" UNCOMMENT IF THERE'S A PR --- Stitch is pleased to announce the release of new integrations into open beta and available to all customers: diff --git a/_changelog-files/templates/new-integration-data.md b/_changelog-files/templates/new-integration-data.md index 5cfcb8977..284904d14 100644 --- a/_changelog-files/templates/new-integration-data.md +++ b/_changelog-files/templates/new-integration-data.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: connection-version: -# pull-request: "" UNCOMMENT IF THERE'S A PR +# pull_request: "" UNCOMMENT IF THERE'S A PR --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/templates/new-integration-version.md b/_changelog-files/templates/new-integration-version.md index 9512c522a..0cf20359c 100644 --- a/_changelog-files/templates/new-integration-version.md +++ b/_changelog-files/templates/new-integration-version.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: "" connection-version: "" -# pull-request: "" UNCOMMENT IF THERE'S A PR +# pull_request: "" UNCOMMENT IF THERE'S A PR --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/templates/new-integration.md b/_changelog-files/templates/new-integration.md index eecc3b65e..8a4bfb68c 100644 --- a/_changelog-files/templates/new-integration.md +++ b/_changelog-files/templates/new-integration.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: "" connection-version: "1" -# pull-request: "" UNCOMMENT IF THERE'S A PR +# pull_request: "" UNCOMMENT IF THERE'S A PR --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/templates/sunset-integration.md b/_changelog-files/templates/sunset-integration.md index f70212262..96373a5af 100644 --- a/_changelog-files/templates/sunset-integration.md +++ b/_changelog-files/templates/sunset-integration.md @@ -6,7 +6,7 @@ entry-type: removed entry-category: "integration" connection-id: "" connection-version: "" -# pull-request: "" UNCOMMENT IF THERE'S A PR +# pull_request: "" UNCOMMENT IF THERE'S A PR --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/templates/tapified-integration.md b/_changelog-files/templates/tapified-integration.md index 15f6a535f..224e54406 100644 --- a/_changelog-files/templates/tapified-integration.md +++ b/_changelog-files/templates/tapified-integration.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: connection-version: "" -# pull-request: "" UNCOMMENT IF THERE'S A PR +# pull_request: "" UNCOMMENT IF THERE'S A PR --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_includes/changelog/entry-list.html b/_includes/changelog/entry-list.html index 0d340db4e..6a2015de0 100644 --- a/_includes/changelog/entry-list.html +++ b/_includes/changelog/entry-list.html @@ -111,11 +111,11 @@ - {% if entry["pull-request"] %} + {% if entry.pull_request %}

- - {{ entry["pull-request"] | remove: "https://github.com/singer-io/" | remove: "https://github.com/stitchdata/" | replace: "/pull/", " #" | upcase }} + + {{ entry.pull_request | remove: "https://github.com/singer-io/" | remove: "https://github.com/stitchdata/" | replace: "/pull/", " #" | upcase }}

{% endif %} diff --git a/scripts/changelog/changelog.py b/scripts/changelog/changelog.py index b21b4c5ae..649edac7b 100644 --- a/scripts/changelog/changelog.py +++ b/scripts/changelog/changelog.py @@ -266,7 +266,7 @@ def getPRsToDocument(): # Find PRs that need to be documented and create draft c entry_id_base = f"{pr_date}-{yaml_title}" entry_id_slug = slugify(entry_id_base) md_filename = f'{path}/{entry_id_slug}.md' - md_text = f'---\ntitle: "{yaml_title}"\ncontent-type: "changelog-entry"\ndate: {pr_date}\nentry-type: {entry_type}\nentry-category: integration\nconnection-id: {connection_id}\nconnection-version: {connection_version}\npull-request: "{pr_url}"\n---\n{{{{ site.data.changelog.metadata.single-integration | flatify }}}}\n\nWe\'ve improved our {{{{ this-connection.display_name }}}} (v{{{{ this-connection.this-version }}}}) integration to {pr_title_for_md_description}.' + md_text = f'---\ntitle: "{yaml_title}"\ncontent-type: "changelog-entry"\ndate: {pr_date}\nentry-type: {entry_type}\nentry-category: integration\nconnection-id: {connection_id}\nconnection-version: {connection_version}\npull_request: "{pr_url}"\n---\n{{{{ site.data.changelog.metadata.single-integration | flatify }}}}\n\nWe\'ve improved our {{{{ this-connection.display_name }}}} (v{{{{ this-connection.this-version }}}}) integration to {pr_title_for_md_description}.' with open(md_filename, 'w') as out: out.write(md_text) From aeb3794b6098baa0ef5c1e36997dd78432fa9a12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A9lanie=20Vistry?= Date: Fri, 24 Apr 2026 14:38:14 +0200 Subject: [PATCH 08/11] Revert "Fixing PR links" This reverts commit cd9cb5ce252175f45c0a547da17f68528f6975b3. --- .../2017/2017-10-27-facebook-ads-v1-adlabels-fields.md | 2 +- .../2017-11-02-facebook-ads-v1-new-incremental-tables.md | 2 +- .../2017/2017-11-21-salesforce-v1-record-type-handling.md | 2 +- .../2017/2017-12-06-salesforce-v1-primary-key-chunking.md | 2 +- ...17-12-15-facebook-ads-v1-adcreative-field-deprecation.md | 2 +- .../2018/2018-01-18-salesforce-v1-incompatible-objects.md | 2 +- .../2018/2018-01-22-facebook-ads-include-deleted-data.md | 2 +- ...18-03-19-salesforce-v1-contentfolderitem-incompatible.md | 2 +- .../2018-07-11-salesforce-v1-parent-table-chunk-names.md | 2 +- .../2018/2018-08-03-postgresql-v1-pg-10-support.md | 2 +- .../2018-08-21-postgresql-v1-replication-slot-support.md | 2 +- .../2018/2018-08-28-postgresql-schema-name-setting.md | 2 +- ...-07-salesforce-v1-opportunityfield-history-parent-fix.md | 2 +- .../2018/2018-09-19-postgresql-v1-primary-key-discovery.md | 2 +- .../2018/2018-09-19-postgresql-v1-selected-by-default.md | 2 +- .../2018/2018-10-05-mysql-v1-interruptible-full-table.md | 2 +- ...-salesforce-v1-background-operation-result-full-table.md | 2 +- .../2018-12-12-salesforce-v1-bulk-api-date-chunking-fix.md | 2 +- .../2019/2017-10-25-mysql-v1-pks-unsupported-type.md | 2 +- .../2019/2019-01-03-postgresql-v1-bigint-array-support.md | 2 +- .../2019/2019-03-14-mysql-non-auto-pks-interruptible.md | 2 +- .../2019-03-15-salesfoce-v1-remove-changeevent-tables.md | 2 +- ...019-05-06-facebook-ads-v1-relevance-score-deprecation.md | 2 +- .../2019-07-16-salesforce-v1-remove-announcement-object.md | 2 +- .../2019/2019-07-31-facebook-ads-v1-ads-insights-dma.md | 2 +- .../2019-08-27-salesforce-v1-convert-integer-zero-values.md | 2 +- .../2019-08-27-salesforce-v1-remove-sitedetail-object.md | 2 +- .../2019/2019-09-18-mysql-v1-composite-pk-full-table.md | 2 +- .../2019/2019-10-22-postgresql-v1-bigint-data-type-fix.md | 2 +- .../2019/2019-11-20-facebook-ads-v1-adcreative-batch-api.md | 2 +- .../2020-01-06-facebook-ads-video-play-curve-actions.md | 2 +- .../2020/2020-01-27-postgresql-v1-bytea-unsupported.md | 2 +- .../2020/2020-02-27-facebook-ads-v1-api-upgrade-v6.md | 2 +- .../2020-02-27-postgresql-v1-correct-ssl-connections.md | 2 +- _changelog-files/2020/2020-03-03-github-v1-pr-commits.md | 2 +- _changelog-files/2020/2020-03-04-github-v1-new-tables.md | 2 +- ...3-30-salesforce-v1-location-data-unsupported-bulk-api.md | 2 +- .../2020-04-01-salesforce-v1-improved-pk-chunking-errors.md | 2 +- .../2020/2020-04-06-github-v1-new-tables-fields.md | 2 +- .../2020/2020-04-07-google-analytics-v1-premade-reports.md | 2 +- ...2020-04-22-google-analytics-searchkeyword-non-default.md | 2 +- .../2020/2020-04-22-salesforce-v1-loginevent-full-table.md | 2 +- .../2020/2020-05-12-google-analytics-v1-datetime-parsing.md | 2 +- ...20-05-21-google-analytics-v1-retryable-error-handling.md | 2 +- ...6-15-google-analytics-v1-non-retryable-error-messages.md | 2 +- .../2020-06-22-salesforce-v1-removed-datatype-object.md | 2 +- ...020-08-07-google-analytics-v1-less-aggressive-retries.md | 2 +- .../2020/2020-08-13-facebook-ads-v1-api-upgrade-v8.md | 2 +- .../2020-08-20-postgresql-v1-discover-partitioned-tables.md | 2 +- ...-salesforce-v1-remove-networkuserhistoryrecent-object.md | 2 +- ...0-09-18-google-analytics-v1-accountsummaries-profiles.md | 2 +- _changelog-files/2020/2020-12-18-mambu-v1-new-tables.md | 2 +- _changelog-files/2021/2021-02-25-new-stripe-fields.md | 2 +- _changelog-files/2021/2021-02-25-stripe-invoices-bug-fix.md | 2 +- .../2021/2021-02-26-shopify-standardized-shop-errors.md | 2 +- _changelog-files/2021/2021-03-05-xero-datetime-value-fix.md | 2 +- ...021-03-08-facebook-ads-v1-unique-outbound-clicks-data.md | 2 +- .../2021-03-09-adwords-v05-02-2017-common-error-messages.md | 2 +- .../2021-03-10-pendo-v1-accounts-visitors-custom-fields.md | 2 +- .../2021-03-11-salesforce-v1-error-message-formatting.md | 2 +- .../2021/2021-03-11-zuora-v1-aqua-jobs-rate-limit.md | 2 +- .../2021-03-12-mongodb-v2-remove-duplicate-instances.md | 2 +- .../2021-03-12-pendo-v1-ijson-performance-enhancement.md | 2 +- ...1-03-15-zoom-v1-fixed-schema-report-meetings-webinars.md | 2 +- .../2021-03-16-salesforce-v1-operation-too-large-error.md | 2 +- .../2021/2021-03-17-mambu-v1-decimal-validation-fix.md | 2 +- .../2021/2021-03-19-eloqua-v1-email-groups-contacts-data.md | 2 +- ...03-22-salesforce-v1-remove-fieldhistoryarchive-object.md | 2 +- .../2021/2021-03-24-new-feature-integration-changelogs.md | 2 +- .../2021/2021-03-25-sso-azure-active-directory.md | 2 +- .../2021/2021-03-30-postgres-v2-key-incremental-support.md | 2 +- .../2021/2021-03-31-zuora-new-stateful-query.md | 2 +- _changelog-files/2021/2021-04-05-xero-retry-logic.md | 2 +- .../2021/2021-04-06-jira-new-components-table.md | 2 +- .../2021/2021-04-09-klaviyo-critical-error-logging.md | 2 +- .../2021/2021-04-09-xero-error-conditions-features.md | 2 +- ...21-04-13-mailchimp-v1-updated-error-message-campaigns.md | 2 +- _changelog-files/2021/2021-04-13-sso-pingfederate.md | 2 +- .../2021/2021-04-13-xero-v1-increased-currency-precision.md | 2 +- .../2021/2021-04-13-xero-v1-new-quotes-table.md | 2 +- .../2021/2021-04-14-github-v1-new-pull-requests-field.md | 2 +- .../2021/2021-04-14-improved-security-documentation.md | 2 +- ...4-15-pendo-v1-trackevents-source-parameter-correction.md | 2 +- ...15-shopify-v1-definitions-table-customer-field-change.md | 2 +- .../2021/2021-04-15-xero-v1-archived-contacts-config.md | 2 +- _changelog-files/2021/2021-04-16-new-mysql-version-v2.md | 2 +- .../2021/2021-04-16-zendesk-chat-v1-new-agents-field.md | 2 +- ...st-forecast-v1-full-table-rep-assignments-query-logic.md | 2 +- .../2021/2021-04-19-postgres-v2-unsupported-types.md | 2 +- _changelog-files/2021/2021-04-21-mambu-new-v2.md | 2 +- .../2021/2021-04-22-marketo-v1-csv-compatibility.md | 2 +- .../2021/2021-04-22-xero-v1-wait-time-for-rate-limit.md | 2 +- .../2021/2021-04-26-shopify-v1-api-upgrade-04-2021.md | 2 +- ...1-04-26-shopify-v1-transactions-order-refund-features.md | 2 +- _changelog-files/2021/2021-04-29-zuora-v1-enforce-UTC.md | 2 +- .../2021/2021-04-30-facebook-ads-v1-job-timeout-increase.md | 2 +- .../2021-05-06-shopify-v1-remove-build-fields-duplicates.md | 2 +- .../2021-05-13-intercom-v1-companies-endpoint-limitation.md | 2 +- .../2021-05-14-salesforce-extraction-error-reference.md | 2 +- .../2021/2021-05-17-mssql-v1-bugfix-rep-key-quoting.md | 2 +- .../2021/2021-05-17-pendo-v1-anonymous-visitors.md | 2 +- .../2021-05-19-shopify-v1-abandoned-checkouts-validation.md | 2 +- .../2021/2021-05-21-facebook-ads-v1-api-upgrade-v10.md | 2 +- _changelog-files/2021/2021-05-21-typeform-v1-forms-table.md | 2 +- .../2021/2021-05-24-slack-v1-user-profile-data.md | 2 +- .../2021/2021-05-26-pipedrive-v1-improved-error-handling.md | 2 +- .../2021-05-26-pipedrive-v1-organizations-pagination.md | 2 +- .../2021-05-26-pipedrive-v1-remove-delete-logs-table.md | 2 +- .../2021/2021-05-27-docs-parent-child-table-feature.md | 2 +- .../2021/2021-05-27-github-v1-updated-table-docs.md | 2 +- .../2021-05-28-freshdesk-v1-groups-fix-field-data-type.md | 2 +- ...2021-05-28-klaviyo-v1-campaigns-table-field-selection.md | 2 +- .../2021/2021-05-28-shopify-v1-product-status-field.md | 2 +- .../2021/2021-06-01-chargify-v1-component-fields.md | 2 +- .../2021/2021-06-01-chargify-v1-new-transaction-fields.md | 2 +- .../2021/2021-06-03-mambu-v2-custom-field-bug-fix.md | 2 +- .../2021/2021-06-03-recharge-v1-rate-limit-handling.md | 2 +- .../2021/2021-06-07-api-docs-improved-connection-docs.md | 2 +- .../2021/2021-06-07-connect-api-new-destination-guide.md | 2 +- .../2021/2021-06-07-harvest-v2-updated-api-headers.md | 2 +- .../2021-06-08-amazon-s3-csv-duplicate-column-support.md | 2 +- .../2021/2021-06-08-harvest-forecast-sync-endpoints-fix.md | 2 +- .../2021/2021-06-09-chargebee-v1-cf-company-id-bug-fix.md | 2 +- .../2021/2021-06-10-outreach-v1-new-sequence-tables.md | 2 +- .../2021/2021-06-10-square-v1-remove-orders-item-data.md | 2 +- _changelog-files/2021/2021-06-14-chargebee-v1-new-tables.md | 2 +- .../2021/2021-06-16-amazon-s3-csv-type-checking-fix.md | 2 +- .../2021/2021-06-16-docs-integration-versioning-guide.md | 2 +- .../2021/2021-06-16-pipedrive-fix-table-rep-method.md | 2 +- .../2021/2021-06-16-pipedrive-remove-delete-logs.md | 2 +- .../2021/2021-06-17-yotpo-v1-error-refactoring.md | 2 +- .../2021/2021-06-21-campaign-manager-api-upgrade.md | 2 +- .../2021/2021-06-24-shopify-v1-plus-permissions.md | 2 +- .../2021/2021-06-25-toggl-v1-update-base-urls.md | 2 +- ...2021-06-28-facebook-ads-v1-update-country-primary-key.md | 2 +- .../2021/2021-06-28-github-v1-add-error-exception.md | 2 +- .../2021/2021-06-28-outreach-v1-new-name-field.md | 2 +- ...google-search-console-v1-empty-response-error-message.md | 2 +- ...2021-06-30-chargebee-v1-new-jsondecode-error-handling.md | 2 +- .../2021-06-30-chargebee-v1-new-price-tiers-attributes.md | 2 +- .../2021-06-30-chargebee-v1-remove-min-max-properties.md | 2 +- .../2021/2021-07-01-amazon-s3-csv-fix-empty-file-error.md | 2 +- .../2021/2021-07-08-postgresql-cloudsql-now-available.md | 2 +- .../2021-08-11-linkedin-ads-v1-automatic-replication-key.md | 2 +- .../2021/2021-08-12-linkedin-ads-v1-validate-account.md | 2 +- ...08-13-linkedin-ads-v1-error-handling-adcampaignsgroup.md | 2 +- .../2021/2021-09-27-crossbeam-new-integration.md | 2 +- .../2021/2021-10-27-mixpanel-v1-date-time-conversion-fix.md | 2 +- ...-mixpanel-v1-switch-from-multipleof-to-singer-decimal.md | 2 +- .../2021/2021-10-27-mixpanel-v1-timezone-error-message.md | 2 +- .../2021-10-28-salesforce-v1-increase-request-timeout.md | 2 +- ...2021-10-29-typeform-v1-landings-pagination-indexerror.md | 2 +- .../2021/2021-10-29-typeform-v1-landings-pagination.md | 2 +- .../2021-11-01-typeform-v1-retry-chunkedencodingerror.md | 2 +- .../2021/2021-11-02-dynamodb-v1-widen-decimal-precision.md | 2 +- .../2021/2021-11-02-facebook-ads-v1-rety-job-polling.md | 2 +- ...11-03-mambu-v2-new-gl_journal_entries-replication-key.md | 2 +- .../2021/2021-11-09-shopify-v1-new-events-stream.md | 2 +- .../2021/2021-11-29-mambu-v2-audit_trail-duplicates.md | 2 +- .../2021/2021-11-29-mambu-v2-original_account_key-field.md | 2 +- .../2021/2021-11-30-github-v1-parent-field-object.md | 2 +- _changelog-files/2021/2021-11-30-zendesk-v1-5xx-errors.md | 2 +- .../2021/2021-12-01-harvest-v2-request-timeout.md | 2 +- .../2021/2021-12-01-recharge-v1-request-timeout.md | 2 +- .../2021/2021-12-02-github-v1-request-timeout.md | 2 +- .../2021/2021-12-02-klaviyo-v1-request-timeout.md | 2 +- _changelog-files/2021/2021-12-02-zendesk-v1-503-error.md | 2 +- .../2021/2021-12-03-yotpo-v1-request-timeout.md | 2 +- .../2021/2021-12-06-mixpanel-v1-request-timeout.md | 2 +- .../2021/2021-12-07-zendesk-v1-request-timeout.md | 2 +- .../2022-01-05-intercom-v1-added-missing-field-contact.md | 2 +- ...2-01-05-intercom-v1-fix-breaking-changes-and-bookmark.md | 2 +- .../2022/2022-01-05-intercom-v1-improved-logger-messages.md | 2 +- .../2022-01-05-intercom-v1-revert-companies-incremental.md | 2 +- .../2022/2022-01-05-typeform-v1-request-timeout.md | 2 +- .../2022/2022-01-06-google-sheets-v1-error-descriptions.md | 2 +- .../2022/2022-01-10-linkedin-ads-v1-request-timeout.md | 2 +- .../2022/2022-01-10-pendo-v1-events-date-window.md | 2 +- _changelog-files/2022/2022-01-11-sftp-v1-request-timeout.md | 2 +- .../2022/2022-01-13-shopify-v1-request-timeout.md | 2 +- .../2022/2022-01-25-xero-v1-change-endpoint-check-access.md | 2 +- .../2022/2022-01-28-mambu-v2-new-loan-accounts-bookmark.md | 2 +- .../2022-02-02-bing-ads-v2-microsoft-identity-platform.md | 2 +- .../2022/2022-02-11-mambu-v2-journals-missing-entries.md | 2 +- .../2022/2022-02-15-jira-v2-add-request-timeout.md | 2 +- .../2022/2022-02-17-stripe-v1-change-events-date-window.md | 2 +- .../2022/2022-02-23-github-v1-update-team-members-pk.md | 2 +- .../2022/2022-03-01-mambu-v2-misc-updates-bug-fixes.md | 2 +- ...22-03-04-activecampaign-v1-forms-transformation-error.md | 2 +- .../2022/2022-03-04-mambu-v2-new-fields-refactoring.md | 2 +- .../2022/2022-03-22-mambu-v2-refactor-seven-streams.md | 2 +- ...-04-08-mambu-v2-refactoring-additional-fields-streams.md | 2 +- .../2022-04-22-google-ads-v1-table-updates-call-details.md | 2 +- .../2022/2022-04-25-google-ads-v1-labels-table.md | 2 +- .../2022/2022-04-25-pendo-v1-eu-endpoint-support.md | 2 +- .../2022-04-27-zendesk-chat-v1-add-chat-webpath-array.md | 2 +- .../2022/2022-04-28-pendo-v1-integer-string-types.md | 2 +- .../2022/2022-04-29-shopify-v1-fix-mismatched-schema.md | 2 +- .../2022/2022-05-02-closeio-v1-date-window-size.md | 2 +- .../2022-05-09-google-ads-v1-implement-automatic-keys.md | 2 +- .../2022/2022-05-11-google-ads-v1-new-tables-catalog.md | 2 +- .../2022/2022-05-17-typeform-v1-landings-incremental.md | 2 +- .../2022/2022-05-20-jira-v2-date-format-transformation.md | 2 +- _changelog-files/2022/2022-06-01-jira-v2-updated-readme.md | 2 +- .../2022/2022-06-01-yotpo-v1-status-code-500.md | 2 +- _changelog-files/2022/2022-06-15-facebook-v1-api-v13.md | 2 +- ...2022-06-23-linkedin-ads-v1-access-token-configuration.md | 2 +- .../2022-06-25-yotpo-v1-product-endpoint-deprecation.md | 2 +- .../2022/2022-06-30-google-ads-v1-request-timeout-search.md | 2 +- .../2022/2022-07-01-mongodb-v2-pymongo-upgrade.md | 2 +- .../2022-07-05-google-ads-v1-add-configurable-limits.md | 2 +- .../2022/2022-07-20-workday-raas-v1-boolean-fix.md | 2 +- _changelog-files/2022/2022-07-25-stripe-v2-open-beta.md | 2 +- _changelog-files/2022/2022-07-29-new-integrations-dixa.md | 2 +- .../2022-07-29-twitter-ads-v1-resolve-connectionerror.md | 2 +- .../2022/2022-07-30-dixa-v1-expand-activity-logs.md | 2 +- ...09-pipedrive-v1-handle-new-structure-for-users-stream.md | 2 +- .../2022-08-11-codat-v1-update-key-for-company-stream.md | 2 +- .../2022/2022-08-30-recharge-v2-recharge-version-bump.md | 2 +- _changelog-files/2022/2022-09-01-google-sheets-new-v2.md | 2 +- .../2022-09-02-pipedrive-v1-transformation-type-issues.md | 2 +- .../2022/2022-09-08-closeio-v1-future-dated-bookmarks.md | 2 +- ...022-09-08-pendo-v1-default-include-anonymous-visitors.md | 2 +- .../2022-09-12-mambu-v2-deposit-accounts-sorting-field.md | 2 +- .../2022/2022-09-13-hubspot-v2-deals-replication-key.md | 2 +- .../2022/2022-09-20-yotpo-v2-yotpo-version-bump.md | 2 +- .../2022/2022-09-22-stripe-v2-reduce-api-calls.md | 2 +- ...22-09-23-linkedin-ads-v1-check-existing-access-tokens.md | 2 +- .../2022/2022-09-26-recharge-v2-cleanup-customer-table.md | 2 +- .../2022/2022-09-27-mambu-v2-timzone-improvement.md | 2 +- ...22-09-28-trello-v1-cards-table-configurable-parameter.md | 2 +- _changelog-files/2022/2022-09-29-github-v2.md | 2 +- _changelog-files/2022/2022-09-29-typeform-v2.md | 2 +- .../2022/2022-10-07-mambu-v2-timezone-endpoint-downgrade.md | 2 +- _changelog-files/2022/2022-10-20-facebook-v1-api-v14.md | 2 +- ...3-typeform-support-submitted-landings-without-answers.md | 2 +- .../2022/2022-11-16-zendesk-chat-v1-api-fixes-new-fields.md | 2 +- .../2022/2022-11-22-ga4-v1-bad-metrics-unsupported.md | 2 +- .../2022/2022-11-30-shopify-v1-canonicalize-transactions.md | 2 +- .../2022/2022-12-12-dynamodb-v1-reduce-logging-frequency.md | 2 +- _changelog-files/2022/2022-12-12-ga4-v1-new-reports.md | 2 +- .../2022/2022-12-13-ga4-v1-new-field-exclusions.md | 2 +- _changelog-files/2022/2022-12-19-mssql-v1-log4j-update.md | 2 +- .../2022/2022-12-28-shopify-v1-api-upgrade-schema-change.md | 2 +- .../2022/2022-12-30-xero-v1-orders-manual-journal.md | 2 +- .../2023/2023-01-09-pendo-v1-skip-do-not-process.md | 2 +- .../2023/2023-01-31-ga4-v1-new-field-exclusions.md | 2 +- .../2023/2023-01-31-zuora-v1-unsupported-related-objects.md | 2 +- .../2023/2023-02-09-new-integrations-tiktok-ads.md | 2 +- .../2023/2023-02-13-new-integrations-snapchat-ads.md | 2 +- .../2023/2023-02-14-ga4-v1-new-field-exclusions.md | 2 +- .../2023/2023-02-16-helpscout-v1-new-streams.md | 2 +- .../2023/2023-02-16-hubspot-v2-tickets-stream.md | 2 +- .../2023/2023-02-22-doubleclick-campaign-manager-23.md | 2 +- _changelog-files/2023/2023-02-22-google-ads-v1-api-v12.md | 2 +- _changelog-files/2023/2023-02-23-mambu-v4-new-version.md | 2 +- .../2023/2023-02-27-campaign-manager-v1-queued-status.md | 2 +- .../2023/2023-02-28-dynamodb-v1-empty-projections.md | 2 +- .../2023/2023-02-28-ga4-v1-new-field-exclusions.md | 2 +- .../2023/2023-03-09-pipedrive-v1-retry-logic-dealsflow.md | 2 +- _changelog-files/2023/2023-03-15-iterable-v1-beta.md | 2 +- .../2023/2023-03-17-yotpo-v2-deleted-reviews.md | 2 +- .../2023-03-20-twilio-v1-new-fields-stream-bug-fixes.md | 2 +- .../2023/2023-03-21-activecampaign-v1-field-type-update.md | 2 +- .../2023/2023-03-21-activecampaign-v1-new-field.md | 2 +- .../2023-03-22-linkedin-ads-v2-large-number-of-accounts.md | 2 +- .../2023/2023-03-28-pendo-v1-visitor-history.md | 2 +- _changelog-files/2023/2023-03-30-marketo-v2-new-field.md | 2 +- ...23-04-03-dynamodb-v1-error-handling-log-based-streams.md | 2 +- ...023-04-04-google-search-console-v0-no-records-sitemap.md | 2 +- .../2023/2023-04-06-pendo-v1-type-error-accounts-stream.md | 2 +- .../2023-04-11-google-search-console-v1-new-search-types.md | 2 +- .../2023/2023-04-11-linkedin-ads-v2-api-version-update.md | 2 +- .../2023/2023-04-25-pipedrive-v1-deal-fields.md | 2 +- .../2023/2023-04-26-hubspot-v2-bookmarking-strategy.md | 2 +- .../2023-04-26-typeform-v2-missing-form-id-questions.md | 2 +- .../2023/2023-04-27-ga4-v1-new-field-exclusions.md | 2 +- _changelog-files/2023/2023-04-27-google-ads-v1-api-v13.md | 2 +- .../2023/2023-05-09-github-v2-handle-empty-repositories.md | 2 +- .../2023/2023-05-10-ga4-v1-new-field-exclusions.md | 2 +- .../2023/2023-05-10-shopify-v1-bookmarking-strategy.md | 2 +- .../2023-05-11-impact-v1-error-after-connection-edit.md | 2 +- .../2023/2023-05-12-impact-v1-handle-empty-model-id.md | 2 +- .../2023/2023-05-18-ga4-v1-new-field-exclusions.md | 2 +- .../2023-05-23-shopify-v1-backoff-incompleteread-error.md | 2 +- .../2023/2023-05-25-mixpanel-v1-export-events-parameter.md | 2 +- .../2023/2023-05-25-zendesk-v1-increase-sync-limit-users.md | 2 +- .../2023/2023-05-25-zendesk-v1-infinite-loop-users.md | 2 +- .../2023/2023-05-31-typeform-v2-tags-property.md | 2 +- _changelog-files/2023/2023-06-05-zendesk-v2-backoff.md | 2 +- _changelog-files/2023/2023-06-07-pipedrive-v1-backoff.md | 2 +- .../2023/2023-06-08-mailchimp-v1-date-window.md | 2 +- _changelog-files/2023/2023-06-08-tiktok-ads-v0-backoff.md | 2 +- _changelog-files/2023/2023-06-14-zendesk-v2-new-streams.md | 2 +- _changelog-files/2023/2023-06-20-shopify-v1-backoff.md | 2 +- .../2023/2023-06-22-tiktok-ads-v0-sync-from-start-date.md | 2 +- .../2023/2023-07-05-ga4-v1-new-field-exclusions.md | 2 +- .../2023-07-17-chargify-v1-subscriptions-schema-update.md | 2 +- ...chimp-v1-update-email-activity-date-window-validation.md | 2 +- .../2023/2023-07-20-shopify-v1-retries-for-404-error.md | 2 +- _changelog-files/2023/2023-07-20-square-v2.md | 2 +- _changelog-files/2023/2023-07-27-mongodb-v3.md | 2 +- .../2023/2023-07-27-pendo-v1-multiple-apps-support.md | 2 +- .../2023/2023-07-27-pendo-v1-primary-key-changes.md | 2 +- .../2023-08-02-mixpanel-v1-retries-ChunkedEncodingError.md | 2 +- _changelog-files/2023/2023-08-02-pendo-max-record-limit.md | 2 +- _changelog-files/2023/2023-08-03-tiktok-ads-v1.md | 2 +- .../2023/2023-08-09-square-v2-payouts-stream.md | 2 +- .../2023/2023-08-14-ga4-v1-e-commerce-reports-fields.md | 2 +- .../2023/2023-08-14-intacct-v1-match-input-filenames.md | 2 +- _changelog-files/2023/2023-08-14-salesforce-v2.md | 2 +- ...-08-16-facebook-v1-conversion-fields-insights-streams.md | 2 +- .../2023/2023-08-18-ga4-v1-new-field-exclusions.md | 2 +- _changelog-files/2023/2023-08-29-stripe-v3.md | 2 +- .../2023/2023-08-31-ga4-v1-new-field-exclusions.md | 2 +- .../2023/2023-09-06-outreach-v1-request-timeout.md | 2 +- .../2023/2023-09-12-github-v2-remove-files-stats-fields.md | 2 +- .../2023/2023-09-13-facebook-v1-retry-error-503.md | 2 +- _changelog-files/2023/2023-09-14-kustomer-v1-new-fields.md | 2 +- .../2023/2023-09-21-marketo-v2-validation-error.md | 2 +- _changelog-files/2023/2023-09-28-looker-v1-api-upgrade.md | 2 +- _changelog-files/2023/2023-10-03-surveymonkey-v2.md | 2 +- _changelog-files/2023/2023-10-05-mongodb-v3-ssl-issue.md | 2 +- .../2023/2023-10-10-outreach-v1-attribute-fix.md | 2 +- .../2023/2023-10-31-chargebee-v1-add-customer-fields.md | 2 +- .../2023/2023-10-31-chargebee-v1-tax-rate-field-type.md | 2 +- .../2023/2023-11-06-intercom-v2-retry-json-decode.md | 2 +- .../2023/2023-11-07-ga4-v1-new-field-exclusions.md | 2 +- .../2023-11-15-snapchat-ads-v1-datetime-conversion-issue.md | 2 +- _changelog-files/2023/2023-11-29-front-v2.md | 2 +- .../2023/2023-12-12-hubspot-v2-custom-objects.md | 2 +- .../2023/2023-12-13-google-ads-v1-api-upgrade.md | 2 +- ...23-12-13-surveymonkey-v2-heading-simplified_responses.md | 2 +- .../2023-12-15-recharge-v2-retry-chunkedencodingerror.md | 2 +- .../2023/2023-12-18-asana-v2-new-substasks-table.md | 2 +- .../2024/2024-01-10-ga4-v1-new-field-exclusions.md | 2 +- .../2024/2024-01-11-mongodb-v3-session-timeout.md | 2 +- .../2024/2024-01-16-mambu-v4-none-value-support.md | 2 +- .../2024/2024-01-23-hubspot-v2-contact-company-fix.md | 2 +- _changelog-files/2024/2024-01-23-mambu-v2-none-support.md | 2 +- .../2024/2024-01-25-ga4-v1-new-field-exclusions.md | 2 +- .../2024/2024-01-25-recharge-v2-improvement-api-calls.md | 2 +- ...-02-07-amazon-s3-csv-v1-missing-type-info-json-schema.md | 2 +- .../2024-02-14-mongodb-v3-server-not-supporting-sessions.md | 2 +- .../2024/2024-02-20-mambu-v4-update-table-full-table.md | 2 +- .../2024/2024-02-29-shopify-v1-api-upgrade-schema-change.md | 2 +- .../2024/2024-03-06-facebook-v1-sdk-version-upgrade.md | 2 +- .../2024/2024-03-11-github-v2-events-uri-format-removed.md | 2 +- _changelog-files/2024/2024-03-12-google-sheets-new-v3.md | 2 +- .../2024-03-12-salesforce-v2-fix-pk-chunking-condition.md | 2 +- .../2024/2024-04-01-ga4-v1-fix-new-supported-data-type.md | 2 +- .../2024/2024-04-01-ga4-v1-new-field-exclusions.md | 2 +- .../2024/2024-04-15-facebook-v1-summary-param-error.md | 2 +- .../2024-04-15-linkedin-ads-v2-api-upgrade-new-fields.md | 2 +- ...2024-04-29-chargebee-v1-new-field-subscription-schema.md | 2 +- .../2024-05-08-intercom-v2-conversations-schema-update.md | 2 +- ...24-05-08-intercom-v2-conversations-stream-bookmarking.md | 2 +- _changelog-files/2024/2024-05-08-intercom-v2-new-fields.md | 2 +- ...2024-05-13-mambu-v4-fix-date-windowing-pagination-use.md | 2 +- .../2024/2024-05-14-ga4-v1-new-field-exclusions.md | 2 +- .../2024/2024-05-14-mongodb-v3-string-projection.md | 2 +- _changelog-files/2024/2024-05-23-klaviyo-v1-api-update.md | 2 +- _changelog-files/2024/2024-07-23-hubspot-v3-new-version.md | 2 +- .../2024/2024-09-05-activecampaign-v1-update-bounce-logs.md | 2 +- ...2024-09-05-google-sheets-v3-deprecation-file-metadata.md | 2 +- .../2024-10-24-sftp-v2-new-supported-encoding-formats.md | 2 +- .../2024/2024-10-28-hubspot-v3-support-deals-streams.md | 2 +- .../2024/2024-10-29-zendesk-chat-v1-support-subdomain.md | 2 +- .../2024/2024-11-04-square-v2-fix-singer-decimal.md | 2 +- .../2024/2024-11-07-zendesk-v2-improvement-performance.md | 2 +- .../2024-11-20-amazon-s3-csv-v1-fix-missing-documents.md | 2 +- .../2024/2024-11-20-dixa-v1-fix-chunk-length.md | 2 +- .../2024/2024-11-27-zendesk-v2-fix-rate-limit.md | 2 +- _changelog-files/2024/2024-12-04-ga360-6.md | 2 +- _changelog-files/2024/2024-12-10-sendgrid-v1-fix-pytz.md | 2 +- _changelog-files/2024/2024-12-16-impact-v1-start-date.md | 2 +- .../2024/2024-12-18-klaviyo-v1-update-requests.md | 2 +- .../2024/2024-12-18-mongodb-v3-terminaltables-removal.md | 2 +- .../2024/2024-12-19-dynamodb-v1-terminaltables-removal.md | 2 +- .../2024/2024-12-19-sftp-v1-terminaltables-removal.md | 2 +- .../2025/2025-01-06-ga4-fix-metrics-data-incompatibility.md | 2 +- ...25-01-07-amazon-s3-csv-v1-improvement-role-assumption.md | 2 +- .../2025-01-07-dynamodb-v1-improvement-role-assumption.md | 2 +- .../2025/2025-01-07-heap-v1-improvement-role-assumption.md | 2 +- .../2025/2025-01-08-mongodb-v3-pymongo-upgrade.md | 2 +- .../2025-01-09-activecampaign-v1-upgrade-lib-version.md | 2 +- .../2025/2025-01-09-intercom-v2-update-requests-upgrade.md | 2 +- ...025-01-09-microsoft-advertising-v2-stringcase-removal.md | 2 +- .../2025/2025-01-09-typeform-v2-ratelimit-removal.md | 2 +- .../2025/2025-01-09-yotpo-v2-update-requests-upgrade.md | 2 +- .../2025/2025-01-10-zendesk-v2-aiohttp-requests-upgrade.md | 2 +- _changelog-files/2025/2025-01-13-facebook-v1-api-upgrade.md | 2 +- .../2025/2025-01-13-github-v2-new-bookmark-format.md | 2 +- .../2025/2025-01-13-slack-v1-pipefilelock-removal.md | 2 +- .../2025/2025-01-13-zoom-v1-ratelimit-removal.md | 2 +- .../2025/2025-01-16-deputy-v1-update-requests-upgrade.md | 2 +- .../2025/2025-01-16-impact-v1-update-pagesize.md | 2 +- .../2025/2025-01-16-zendesk-chat-v2-bug-fix-timezone.md | 2 +- .../2025/2025-01-20-recharge-v2-multiple-fixes.md | 2 +- .../2025/2025-01-20-recurly-v1-requests-upgrade.md | 2 +- .../2025/2025-01-20-square-v2-roles-stream-removal.md | 2 +- .../2025/2025-01-20-xero-v1-new-fields-credit-notes.md | 2 +- .../2025/2025-01-21-pipedrive-v1-requests-upgrade.md | 2 +- .../2025/2025-01-21-twilio-v1-requests-upgrade.md | 2 +- .../2025/2025-01-21-zuora-v1-requests-upgrade.md | 2 +- .../2025/2025-01-22-klaviyo-v1-api-verison-upgrade.md | 2 +- .../2025/2025-01-23-square-v2-bug-fix-list-object.md | 2 +- .../2025/2025-01-24-shopify-v1-update-migration-graphql.md | 2 +- _changelog-files/2025/2025-01-27-shopify-v1-fix-graphql.md | 2 +- .../2025/2025-01-28-pardot-v1-requests-upgrade.md | 2 +- .../2025/2025-02-05-amazon-s3-csv-add-credentials.md | 2 +- .../2025/2025-02-05-shopify-v1-bookmark-logic.md | 2 +- _changelog-files/2025/2025-02-12-intercom-v2-api-upgrade.md | 2 +- ...make-mp_reserved_insert_id-available-in-export-stream.md | 2 +- ...2025-02-19-linkedin-ads-v2-api-version-upgrade-202501.md | 2 +- ...opify-v3-optimize-shopify-metafields-sync-performance.md | 2 +- ...2-20-hubspot-v3-explicitly-deselect-unselected-fields.md | 2 +- ...-mixpanel-v1-remove-required-false-from-engage-schema.md | 2 +- ...2-25-pipedrive-v1-fix-the-organizations-stream-schema.md | 2 +- ...025-02-25-zuora-v1-add-oauth-option-for-authorization.md | 2 +- ...5-02-26-yotpo-v2-add-backoff-for-connectionreseterror.md | 2 +- ...-ga4-v1-handle-report_definitions-as-lists-or-strings.md | 2 +- ...nt_ids-config-property-as-list-or-json-encoded-string.md | 2 +- .../2025-03-06-ga4-v1-make-report_definitions-optional.md | 2 +- .../2025-03-11-ga360-v1-upgrade-google-cloud-bigquery.md | 2 +- .../2025/2025-03-13-ga4-v1-update-premade-reports.md | 2 +- ...activecampaign-v1-require-https-and-block-private-ips.md | 2 +- .../2025/2025-03-25-ga4-v1-update-field-selection.md | 2 +- ...-migrate-shopify-streams-from-rest-api-to-graphql-api.md | 2 +- ...2025-04-01-ga4-v1-bump-requests-from-2-28-1-to-2-32-3.md | 2 +- .../2025/2025-04-04-shopify-v3-fix-schema-orders.md | 2 +- .../2025-04-09-quickbooks-v2-upgrade-api-minorversion-75.md | 2 +- ...5-recharge-v2-remove-support-of-page-based-pagination.md | 2 +- ...-v3-enhance-tap-with-additional-fields-across-streams.md | 2 +- ...endesk-v2-fix-incremental-extraction-issue-for-macros.md | 2 +- ...sactions-sync-by-fetching-only-updated-parent-objects.md | 2 +- .../2025/2025-04-24-zuora-v1-update-unsupported-fields.md | 2 +- .../2025/2025-04-28-intercom-v2-companies-sync.md | 2 +- .../2025/2025-04-28-mssql-v1-deadlock-error-retry.md | 2 +- ...ambu-v4-upgrade-api-version-to-v2-for-loan_repayments.md | 2 +- ...rror-only-`data`-or-`links`-expected-in-relationships.md | 2 +- ...5-15-twilio-v1-implement-lookback-window-for-messages.md | 2 +- ...talog-driven-dynamic-query-pruning-and-error-handling.md | 2 +- ...-29-shopify-v3-fixes-keyerror-for-abandoned-checkouts.md | 2 +- ...n-'reach'-is-requested-for-breakdown-queries-13-month.md | 2 +- .../2025-06-04-google-ads-v2-upgrade-google-ads-to-v18.md | 2 +- ...hopify-v3-assign-config-provided-value-to-date_window.md | 2 +- ...-shopify-v3-introduce-new-stream-order_shipping_lines.md | 2 +- ...e-cve-2024-47081;-bump-backoff-to-more-recent-version.md | 2 +- ...oqua-v1-bump-singer-python-so-it-can-use-backoff-1-10.md | 2 +- .../2025-06-23-impact-v1-bump-backoff-to-a-newer-version.md | 2 +- ...monkey-v2-bump-dependency-versions-for-3pl-compliance.md | 2 +- ...igcommerce-v1-bump-requests-to-resolve-cve-2024-47081.md | 2 +- .../2025/2025-06-25-recharge-v2-add-plans-stream.md | 2 +- .../2025-07-09-pipedrive-v1-upgrade-api-version-to-v2.md | 2 +- ...5-07-09-shopify-v3--add-new-stream-fulfillment-orders.md | 2 +- ...-retaillocation-and-location-id-(within-fulfillments).md | 2 +- ...pedrive-v1-fix-datetime-conversion-and-nonetype-error.md | 2 +- _changelog-files/2025/2025-07-14-dixa-v1-bump-versions.md | 2 +- .../2025/2025-07-14-dynamodb-v1-bump-versions.md | 2 +- .../2025/2025-07-14-facebook-v1-bump-versions.md | 2 +- .../2025/2025-07-14-frontapp-v2-bump-versions.md | 2 +- .../2025/2025-07-14-fullstory-v1-bump-versions.md | 2 +- _changelog-files/2025/2025-07-14-ga360-v1-bump-versions.md | 2 +- _changelog-files/2025/2025-07-14-ga4-v1-bump-versions.md | 2 +- _changelog-files/2025/2025-07-14-gitlab-v1-bump-versions.md | 2 +- .../2025-07-14-google-search-console-v1-bump-versions.md | 2 +- .../2025/2025-07-14-hubspot-v3-bump-versions.md | 2 +- .../2025/2025-07-14-intercom-v2-bump-versions.md | 2 +- _changelog-files/2025/2025-07-14-jira-v2-bump-versions.md | 2 +- ...025-07-14-klaviyo-v1-bump-dependencies-for-compliance.md | 2 +- .../2025/2025-07-14-linkedin-ads-v2-bump-versions.md | 2 +- ...5-07-14-mailchimp-v1-bump-dependencies-for-compliance.md | 2 +- .../2025/2025-07-14-marketo-v2-bump-versions.md | 2 +- ...o-v2-removes-metadata-from-stream-level-catalog-entry.md | 2 +- .../2025/2025-07-14-mixpanel-v1-bump-versions.md | 2 +- .../2025/2025-07-14-outreach-v1-bump-versions.md | 2 +- _changelog-files/2025/2025-07-14-pardot-v1-bump-versions.md | 2 +- _changelog-files/2025/2025-07-14-pendo-v1-bump-versions.md | 2 +- .../2025/2025-07-14-quickbooks-v2-bump-versions.md | 2 +- .../2025/2025-07-14-recharge-v2-bump-versions.md | 2 +- _changelog-files/2025/2025-07-14-s3-csv-v1-bump-versions.md | 2 +- .../2025/2025-07-14-sailthru-v1-bump-versions.md | 2 +- .../2025/2025-07-14-taboola-v1-bump-versions.md | 2 +- .../2025/2025-07-14-tiktok-ads-v1-bump-versions.md | 2 +- .../2025/2025-07-14-trello-v1-bump-requirement-versions.md | 2 +- _changelog-files/2025/2025-07-14-twilio-v1-bump-versions.md | 2 +- .../2025/2025-07-14-workday-raas-v1-bump-versions.md | 2 +- .../2025/2025-07-14-zendesk-chat-v1-bump-versions.md | 2 +- .../2025/2025-07-14-zendesk-v2-bump-versions.md | 2 +- _changelog-files/2025/2025-07-14-zoom-v2-bump-versions.md | 2 +- .../2025/2025-07-14-zuora-v1-bump-dependencies.md | 2 +- ...2025-07-16-activecampaign-v1-bump-requests-to-v2-32-4.md | 2 +- .../2025/2025-07-16-recurly-v1-bump-dependencies.md | 2 +- .../2025/2025-07-16-toggl-v1-bump-dependencies.md | 2 +- _changelog-files/2025/2025-07-16-xero-v1-bump-versions.md | 2 +- _changelog-files/2025/2025-07-16-yotpo-v2-bump-versions.md | 2 +- .../2025/2025-07-17-appsflyer-v1-bump-versions.md | 2 +- .../2025/2025-07-17-google-ads-v2-bump-versions.md | 2 +- .../2025/2025-07-17-google-sheets-v3-bump-versions.md | 2 +- .../2025/2025-07-17-harvest-v2-bump-versions.md | 2 +- _changelog-files/2025/2025-07-17-sftp-v1-bump-versions.md | 2 +- .../2025/2025-07-17-shopify-v3-bump-versions.md | 2 +- ...7-17-snapchat-ads-v1-bump-dependencies-for-compliance.md | 2 +- .../2025/2025-07-17-snapchat-ads-v1-bump-versions.md | 2 +- .../2025/2025-07-17-typeform-v2-bump-versions.md | 2 +- ...-21-adroll-v1-bump-dependency-versions-for-compliance.md | 2 +- .../2025/2025-07-21-bing-ads-v2-bump-versions.md | 2 +- ...5-07-21-braintree-v1-bump-dependencies-for-compliance.md | 2 +- ...y-v1-bump-dependency-versions-and-add-changelog-entry.md | 2 +- ...025-07-21-closeio-v1-bump-dependencies-for-compliance.md | 2 +- ...5-07-21-dixa-v1-bump-tap-version-and-update-changelog.md | 2 +- ...nset-projects-projectcards-and-projectcolumns-streams.md | 2 +- .../2025/2025-07-21-helpscout-v1-bump-versions.md | 2 +- .../2025/2025-07-21-iterable-v1-bump-versions.md | 2 +- ...025-07-21-listrak-v1-bump-dependencies-for-compliance.md | 2 +- .../2025/2025-07-21-mailshake-v1-bump-versions.md | 2 +- ...m-v1-bump-dependency-versions-and-add-changelog-entry.md | 2 +- .../2025/2025-07-21-saasoptics-v1-compliance-changes.md | 2 +- .../2025-07-21-salesforce-v2-bump-requirement-versions.md | 2 +- .../2025/2025-07-21-sendgrid-v1-bump-versions.md | 2 +- ...t-max-size-of-pagination-to-30-for-fullfilment_orders.md | 2 +- ...25-07-23-heap-v1-adds-credentials_cache_path-property.md | 2 +- .../2025-07-28-braintree-v1-circleci-upgrade-swap-to-uv.md | 2 +- .../2025/2025-07-28-s3-csv-v1-sac-27925-circleci-upgrade.md | 2 +- _changelog-files/2025/2025-07-30-amplitude-v1-gl-work.md | 2 +- ...1-google-ads-v2-fail-the-connection-once-every-3-days.md | 2 +- .../2025-07-31-google-ads-v2-upgrade-api-version-to-v20.md | 2 +- ...lication_key-in-last_processed-instead-of-primary_key.md | 2 +- ...eam-standard-graphql-\342\206\222-bulk-api-migration.md" | 2 +- ...xtract-multiple-pages-of-products-for-each-collection.md | 2 +- .../2025/2025-08-11-quickbase-v1-circleci-upgrade.md | 2 +- .../2025/2025-09-02-intercom-v2-update-to-python-3-12.md | 2 +- .../2025-09-03-facebook-v1-upgrade-to-marketing-api-v23.md | 2 +- .../2025-09-03-github-v2-use-python-3-12-in-circleci.md | 2 +- .../2025/2025-09-03-pendo-v1-upgrade-python-to-3-12.md | 2 +- ...quickbooks-v2-upgrade-python-version-used-for-testing.md | 2 +- ...9-04-recurly-v1-upgrade-circleci-build-to-python-3-12.md | 2 +- ...09-04-square-v2-upgrade-circleci-build-to-python-3-12.md | 2 +- .../2025/2025-09-16-activecampaign-v1-python-upgrade.md | 2 +- ...for-multi-account-role-assumption-and-library-updates.md | 2 +- ...tomatic_keys-support-and-bulk-state-persistence-logic.md | 2 +- _changelog-files/2025/2025-09-22-jira-v2-add-metric-tags.md | 2 +- .../2025/2025-09-22-recharge-v2-remove-products-stream.md | 2 +- ...v2-check-for-bad-creds-before-checking-for-rate-limit.md | 2 +- .../2025/2025-10-06-sftp-v1-bump-singer-encodings.md | 2 +- ...og-based-replication-to-support-transactional-records.md | 2 +- ...h-all-visitors-records-and-update-request-params-type.md | 2 +- ...-10-09-quickbooks-v2-update-default-page-size-to-1000.md | 2 +- ...10-10-mambu-v4-replace--users-with--branches-endpoint.md | 2 +- .../2025-10-14-mambu-v4-cancel-upgrade-api-version-to-v2.md | 2 +- ...sk-v2-add-support-for-cursor-pagination--audit-stream.md | 2 +- .../2025/2025-10-15-mambu-v4upgrade-api-version-to-v2 .md | 2 +- .../2025/2025-10-15-pipedrive-v1-extract-deleted-deals.md | 2 +- _changelog-files/2025/2025-10-17-amplitude-v1-gl-work.md | 2 +- ...key-and-forced_replication_method-addition-in-catalog.md | 2 +- _changelog-files/2025/2025-10-17-shopify-v3-gl-work.md | 2 +- .../2025/2025-10-20-s3-csv-v1-add-avro-support-to-tap.md | 2 +- .../2025/2025-10-20-s3-csv-v1-add-parquet-support.md | 2 +- ...factor-jsonl-sampling-syncing-to-use-singer-encodings.md | 2 +- ...22-mongodb-v3-handle-non-finite-values-(nan-infinity).md | 2 +- ...csv-v1-update-_sdc_extra-column-schema-to-be-nullable.md | 2 +- .../2025-10-27-ga4-v1-update-field-exclusions-10-27-25.md | 2 +- .../2025/2025-10-27-heap-v1-add-integration-tests.md | 2 +- .../2025-10-29-gitlab-v1-bug-sac-29290-params-to-headers.md | 2 +- .../2025/2025-10-29-zendesk-v2-update-dependencies.md | 2 +- _changelog-files/2025/2025-11-04-listrak-v1-gl-work.md | 2 +- ...-api-requests-when-search-jql-endpoint-is-unavailable.md | 2 +- ...6-quickbooks-v2-use-batch-queries-to-reduce-api-usage.md | 2 +- ...pify-v3-cleanup-state-file-for-failed-bulk-operations.md | 2 +- ...communicationprofileid-to-unsupported_fields_for_rest.md | 2 +- _changelog-files/2025/2025-11-21-zuora-v1-bump-version.md | 2 +- ...4-appsflyer-v1-tap-refactoring-using-singer-generator.md | 2 +- .../2025/2025-11-24-chargebee-v1-refactor-the-tap.md | 2 +- ...2025-11-26-exacttarget-v1-add-support-for-new-streams.md | 2 +- ...for-`parent-tap-stream-id`-metadata-for-child-streams.md | 2 +- .../2025/2025-11-27-chargebee-v1-python-upgrade-to-3-12.md | 2 +- _changelog-files/2025/2025-11-28-gitlab-v1-gl-work.md | 2 +- ...-hubspot-v4-non-primary-key-fields-should-be-nullable.md | 2 +- ...mpaign-v1-retry-for-the-activecampaign-forbiddenerror.md | 2 +- .../2025/2025-12-03-asana-v2-sac-27555-fix-libraries.md | 2 +- ...3-freshdesk-v1-tap-refactoring-using-singer-generator.md | 2 +- ...s-v3-increase-the-wait-time-while-retrying-on-failure.md | 2 +- ...[sac-28905]--add-parent-tap-stream-id-key-in-metadata.md | 2 +- _changelog-files/2025/2025-12-08-adroll-v1-gl-work.md | 2 +- ...-08-harvest-v2-tap-refactoring-using-singer-generator.md | 2 +- ...2025-12-08-s3-csv-v1-bump-urllib3-from-2-5-0-to-2-6-0.md | 2 +- .../2025/2025-12-09-3plcentral-v1-bump-library-versions.md | 2 +- ...2025-12-09-autopilot-v1-bump-libraries-for-compliance.md | 2 +- .../2025/2025-12-09-circle-ci-v1-library-version-upgrade.md | 2 +- .../2025/2025-12-09-clubspeed-v1-bump-dependencies.md | 2 +- .../2025/2025-12-09-codat-v1-bump-dependencies.md | 2 +- ...t-v1-bump-dependency-versions-for-compliance-failures.md | 2 +- ...-hubspot-v4-retry-the-api-requests-for-all-the-errors.md | 2 +- ...ra-v2-sac-29184-add-bookmarks-to-issues-child-streams.md | 2 +- ...2-09-kustomer-v1-bump-version-for-compliance-failures.md | 2 +- .../2025-12-09-looker-v1-update-libraries-for-compliance.md | 2 +- .../2025/2025-12-09-onfleet-v1-bump-dependencies.md | 2 +- ...25-12-09-ujet-v1-bump-version-for-compliance-failures.md | 2 +- .../2025/2025-12-09-uservoice-v1-bump-dependencies.md | 2 +- ...025-12-10-salesforce-v2-fix-forced-replication-method.md | 2 +- ...ngcommunicationprofile-to-unsupported_fields_for_rest.md | 2 +- ...f-retry-logic-for-shopify-bulk-operations-in-progress.md | 2 +- .../2025-12-18-gitlab-v1-gl-work-updated-config-options.md | 2 +- ...2-18-salesforce-v2-update-libraries-to-latest-version.md | 2 +- .../2025/2025-12-19-workday-raas-v1-library-updates.md | 2 +- .../2025-12-22-stripe-v3-add-transfer_reversals-stream.md | 2 +- ...12-30-exacttarget-v1-schema-enhancements-and-bugfixes.md | 2 +- .../2026-01-05-sftp-v1-upgrade-paramiko-version-to-3-5-1.md | 2 +- ...he-bookmark-value-even-if-the-record-is-not-retrieved.md | 2 +- .../2026/2026-01-07-stripe-v3-update-metadata.md | 2 +- .../2026/2026-01-16-ga4-v1-bump-google-analytics-data.md | 2 +- ...ve-select_fields_by_default-from-required-config-keys.md | 2 +- ...m-v2-update-interrupted-bookmarking-for-conversations.md | 2 +- ...22-quickbase-v1-pr-0--[sac-29640]--aggregated-gl-work.md | 2 +- ...hargebee-v1-write-bookmark-when-no-records-are-synced.md | 2 +- ...23-dixa-v1-update-urllib3-version-from-2-6-0-to-2-6-3.md | 2 +- .../2026/2026-01-23-s3-csv-v1-bump-urllib3-version.md | 2 +- .../2026/2026-01-23-zendesk-v2-bump-aiohttp-version.md | 2 +- ...01-26-google-ads-v2-update-protobuf-version-to-6-33-4.md | 2 +- ...2026-01-27-linkedin-ads-v2-add-`parent-tap-stream-id`.md | 2 +- ...-v3-add-pagination-support-for-fulfillment-line-items.md | 2 +- ...2026-01-28-listrak-v1-bug-fix-for-subscribed-contacts.md | 2 +- ...-v2-bump-dependency-versions-for-twistlock-compliance.md | 2 +- ...-v1-bump-dependency-versions-for-twistlock-compliance.md | 2 +- .../2026/2026-02-10-hubspot-v4-add-new-sub-streams.md | 2 +- ...lesforce-v2-write-bookmark-when-no-records-are-synced.md | 2 +- ...respect-dependencies-and-add-comprehensive-unit-tests.md | 2 +- .../2026/2026-02-18-pipedrive-v1-add-label-ids-in-deals.md | 2 +- .../2026-02-19-frontapp-v2-bookmark-format-validation.md | 2 +- ...026-02-19-salesforce-v2-update-activate-version-state.md | 2 +- ...rent-stream-for-form_submissions-and-list_memberships.md | 2 +- ...-v1-update-singer-python-version-for-clear_offset-fix.md | 2 +- .../2026/2026-02-26-salesforce-v2-deepcopy-raw_state.md | 2 +- .../2026/2026-02-27-heap-v1-standardize-state.md | 2 +- ...2026-03-03-salesforce-v2-fix-key-error-in-build_state.md | 2 +- ...pedrive-v1-update-data-type-for-some-of-schema-fields.md | 2 +- ...mp-to-singer-python-6-8-0-and-use-`versions`-in-state.md | 2 +- ...er-python-to-6-8-0-and-update-tests-to-use-`versions`.md | 2 +- .../2026-03-10-google-ads-v2-bump-protobuf-to-v6-33-5.md | 2 +- ...03-11-mailjet-vNOT FOUND-added-5xx-exception-handling.md | 2 +- ...26-03-12-klaviyo-v1-use-safe-gets-on-state-dictionary.md | 2 +- ...referral-saasquatch-v1-added-tests-and-python-upgrade.md | 2 +- .../2026-03-13-asana-v2-fix-access-token-refresh-issue.md | 2 +- .../2026/2026-03-16-s3-csv-v1-handle-empty-initial-sync.md | 2 +- ...v1-sac-30415-fix-tap_stream_id-when-writing-bookmarks.md | 2 +- ...026-03-30-xero-v1-show-warning-for-deprecated-streams.md | 2 +- .../2026-03-31-quickbase-v1-added-5xx-exception-handling.md | 2 +- .../2026/2026-04-07-ms-teams-v1-library-upgrade.md | 2 +- ...10-mailshake-v1-sac-28753-upgrade-python-dependencies.md | 2 +- ...esk-v2-fix-connection-failure-for-403-forbidden-error.md | 2 +- .../2026-04-13-asana-v2-fix-for-refresh-access-token.md | 2 +- ...hargebee-v1-add-custom_fields-support-for-all-streams.md | 2 +- ...-fix-for-schema-mismatch-and-standard-metadata-format.md | 2 +- _changelog-files/templates/deprecated-integration.md | 2 +- _changelog-files/templates/general-entry.md | 2 +- _changelog-files/templates/integrations-in-beta-list.md | 2 +- _changelog-files/templates/new-integration-data.md | 2 +- _changelog-files/templates/new-integration-version.md | 2 +- _changelog-files/templates/new-integration.md | 2 +- _changelog-files/templates/sunset-integration.md | 2 +- _changelog-files/templates/tapified-integration.md | 2 +- _includes/changelog/entry-list.html | 6 +++--- scripts/changelog/changelog.py | 2 +- 664 files changed, 666 insertions(+), 666 deletions(-) diff --git a/_changelog-files/2017/2017-10-27-facebook-ads-v1-adlabels-fields.md b/_changelog-files/2017/2017-10-27-facebook-ads-v1-adlabels-fields.md index 30dc99e8d..de45c850a 100644 --- a/_changelog-files/2017/2017-10-27-facebook-ads-v1-adlabels-fields.md +++ b/_changelog-files/2017/2017-10-27-facebook-ads-v1-adlabels-fields.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "facebook-ads" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-facebook/pull/27" +pull-request: "https://github.com/singer-io/tap-facebook/pull/27" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2017/2017-11-02-facebook-ads-v1-new-incremental-tables.md b/_changelog-files/2017/2017-11-02-facebook-ads-v1-new-incremental-tables.md index e4c450dfb..5d9e8bc2d 100644 --- a/_changelog-files/2017/2017-11-02-facebook-ads-v1-new-incremental-tables.md +++ b/_changelog-files/2017/2017-11-02-facebook-ads-v1-new-incremental-tables.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: "integration" connection-id: "facebook-ads" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-facebook/pull/29" +pull-request: "https://github.com/singer-io/tap-facebook/pull/29" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2017/2017-11-21-salesforce-v1-record-type-handling.md b/_changelog-files/2017/2017-11-21-salesforce-v1-record-type-handling.md index 3117ebeaf..1fe03f1c3 100644 --- a/_changelog-files/2017/2017-11-21-salesforce-v1-record-type-handling.md +++ b/_changelog-files/2017/2017-11-21-salesforce-v1-record-type-handling.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "salesforce" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-salesforce/pull/12" +pull-request: "https://github.com/singer-io/tap-salesforce/pull/12" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2017/2017-12-06-salesforce-v1-primary-key-chunking.md b/_changelog-files/2017/2017-12-06-salesforce-v1-primary-key-chunking.md index f79a66563..3d97ce5f1 100644 --- a/_changelog-files/2017/2017-12-06-salesforce-v1-primary-key-chunking.md +++ b/_changelog-files/2017/2017-12-06-salesforce-v1-primary-key-chunking.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "salesforce" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-salesforce/pull/18" +pull-request: "https://github.com/singer-io/tap-salesforce/pull/18" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2017/2017-12-15-facebook-ads-v1-adcreative-field-deprecation.md b/_changelog-files/2017/2017-12-15-facebook-ads-v1-adcreative-field-deprecation.md index ada49f101..45ae15e1e 100644 --- a/_changelog-files/2017/2017-12-15-facebook-ads-v1-adcreative-field-deprecation.md +++ b/_changelog-files/2017/2017-12-15-facebook-ads-v1-adcreative-field-deprecation.md @@ -6,7 +6,7 @@ entry-type: deprecation entry-category: integration connection-id: "facebook-ads" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-facebook/pull/32" +pull-request: "https://github.com/singer-io/tap-facebook/pull/32" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2018/2018-01-18-salesforce-v1-incompatible-objects.md b/_changelog-files/2018/2018-01-18-salesforce-v1-incompatible-objects.md index 29374d5fb..c61bf8ab7 100644 --- a/_changelog-files/2018/2018-01-18-salesforce-v1-incompatible-objects.md +++ b/_changelog-files/2018/2018-01-18-salesforce-v1-incompatible-objects.md @@ -6,7 +6,7 @@ entry-type: removed entry-category: integration connection-id: "salesforce" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-salesforce/pull/34" +pull-request: "https://github.com/singer-io/tap-salesforce/pull/34" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2018/2018-01-22-facebook-ads-include-deleted-data.md b/_changelog-files/2018/2018-01-22-facebook-ads-include-deleted-data.md index a02458a6f..35916c242 100644 --- a/_changelog-files/2018/2018-01-22-facebook-ads-include-deleted-data.md +++ b/_changelog-files/2018/2018-01-22-facebook-ads-include-deleted-data.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "facebook-ads" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-facebook/pull/34" +pull-request: "https://github.com/singer-io/tap-facebook/pull/34" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2018/2018-03-19-salesforce-v1-contentfolderitem-incompatible.md b/_changelog-files/2018/2018-03-19-salesforce-v1-contentfolderitem-incompatible.md index 59a439d5e..e10369fde 100644 --- a/_changelog-files/2018/2018-03-19-salesforce-v1-contentfolderitem-incompatible.md +++ b/_changelog-files/2018/2018-03-19-salesforce-v1-contentfolderitem-incompatible.md @@ -6,7 +6,7 @@ entry-type: removed entry-category: integration connection-id: "salesforce" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-salesforce/pull/44" +pull-request: "https://github.com/singer-io/tap-salesforce/pull/44" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2018/2018-07-11-salesforce-v1-parent-table-chunk-names.md b/_changelog-files/2018/2018-07-11-salesforce-v1-parent-table-chunk-names.md index eb2ce598b..458ded36c 100644 --- a/_changelog-files/2018/2018-07-11-salesforce-v1-parent-table-chunk-names.md +++ b/_changelog-files/2018/2018-07-11-salesforce-v1-parent-table-chunk-names.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: "salesforce" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-salesforce/pull/51" +pull-request: "https://github.com/singer-io/tap-salesforce/pull/51" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2018/2018-08-03-postgresql-v1-pg-10-support.md b/_changelog-files/2018/2018-08-03-postgresql-v1-pg-10-support.md index bfcab7cb7..e14c73660 100644 --- a/_changelog-files/2018/2018-08-03-postgresql-v1-pg-10-support.md +++ b/_changelog-files/2018/2018-08-03-postgresql-v1-pg-10-support.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: "integration" connection-id: "postgres" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-postgres/pull/15" +pull-request: "https://github.com/singer-io/tap-postgres/pull/15" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2018/2018-08-21-postgresql-v1-replication-slot-support.md b/_changelog-files/2018/2018-08-21-postgresql-v1-replication-slot-support.md index e1595e3ff..804312485 100644 --- a/_changelog-files/2018/2018-08-21-postgresql-v1-replication-slot-support.md +++ b/_changelog-files/2018/2018-08-21-postgresql-v1-replication-slot-support.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: "integration" connection-id: "postgres" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-postgres/pull/18" +pull-request: "https://github.com/singer-io/tap-postgres/pull/18" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2018/2018-08-28-postgresql-schema-name-setting.md b/_changelog-files/2018/2018-08-28-postgresql-schema-name-setting.md index 379060db3..c9eae5615 100644 --- a/_changelog-files/2018/2018-08-28-postgresql-schema-name-setting.md +++ b/_changelog-files/2018/2018-08-28-postgresql-schema-name-setting.md @@ -6,7 +6,7 @@ entry-type: "new-feature" entry-category: "integration" connection-id: "postgres" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-postgres/pull/19" +pull-request: "https://github.com/singer-io/tap-postgres/pull/19" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2018/2018-09-07-salesforce-v1-opportunityfield-history-parent-fix.md b/_changelog-files/2018/2018-09-07-salesforce-v1-opportunityfield-history-parent-fix.md index c72432912..94d9b0dce 100644 --- a/_changelog-files/2018/2018-09-07-salesforce-v1-opportunityfield-history-parent-fix.md +++ b/_changelog-files/2018/2018-09-07-salesforce-v1-opportunityfield-history-parent-fix.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: "salesforce" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-salesforce/pull/52" +pull-request: "https://github.com/singer-io/tap-salesforce/pull/52" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2018/2018-09-19-postgresql-v1-primary-key-discovery.md b/_changelog-files/2018/2018-09-19-postgresql-v1-primary-key-discovery.md index c1196aa24..5699a88db 100644 --- a/_changelog-files/2018/2018-09-19-postgresql-v1-primary-key-discovery.md +++ b/_changelog-files/2018/2018-09-19-postgresql-v1-primary-key-discovery.md @@ -6,7 +6,7 @@ entry-type: "bug-fix" entry-category: "integration" connection-id: "postgres" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-postgres/pull/23" +pull-request: "https://github.com/singer-io/tap-postgres/pull/23" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2018/2018-09-19-postgresql-v1-selected-by-default.md b/_changelog-files/2018/2018-09-19-postgresql-v1-selected-by-default.md index 4c3b02f57..6588331f9 100644 --- a/_changelog-files/2018/2018-09-19-postgresql-v1-selected-by-default.md +++ b/_changelog-files/2018/2018-09-19-postgresql-v1-selected-by-default.md @@ -6,7 +6,7 @@ entry-type: "bug-fix" entry-category: "integration" connection-id: "postgres" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-postgres/pull/23" +pull-request: "https://github.com/singer-io/tap-postgres/pull/23" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2018/2018-10-05-mysql-v1-interruptible-full-table.md b/_changelog-files/2018/2018-10-05-mysql-v1-interruptible-full-table.md index a98c0c96d..3a3dbc69f 100644 --- a/_changelog-files/2018/2018-10-05-mysql-v1-interruptible-full-table.md +++ b/_changelog-files/2018/2018-10-05-mysql-v1-interruptible-full-table.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: "integration" connection-id: "mysql" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-mysql/pull/62" +pull-request: "https://github.com/singer-io/tap-mysql/pull/62" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2018/2018-11-05-salesforce-v1-background-operation-result-full-table.md b/_changelog-files/2018/2018-11-05-salesforce-v1-background-operation-result-full-table.md index b6205785c..c89b465ff 100644 --- a/_changelog-files/2018/2018-11-05-salesforce-v1-background-operation-result-full-table.md +++ b/_changelog-files/2018/2018-11-05-salesforce-v1-background-operation-result-full-table.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "salesforce" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-salesforce/pull/58" +pull-request: "https://github.com/singer-io/tap-salesforce/pull/58" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2018/2018-12-12-salesforce-v1-bulk-api-date-chunking-fix.md b/_changelog-files/2018/2018-12-12-salesforce-v1-bulk-api-date-chunking-fix.md index dfc920f44..b007b6547 100644 --- a/_changelog-files/2018/2018-12-12-salesforce-v1-bulk-api-date-chunking-fix.md +++ b/_changelog-files/2018/2018-12-12-salesforce-v1-bulk-api-date-chunking-fix.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: "salesforce" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-salesforce/pull/60" +pull-request: "https://github.com/singer-io/tap-salesforce/pull/60" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2019/2017-10-25-mysql-v1-pks-unsupported-type.md b/_changelog-files/2019/2017-10-25-mysql-v1-pks-unsupported-type.md index 9d45525f5..17aecc366 100644 --- a/_changelog-files/2019/2017-10-25-mysql-v1-pks-unsupported-type.md +++ b/_changelog-files/2019/2017-10-25-mysql-v1-pks-unsupported-type.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: "integration" connection-id: "mysql" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-mysql/pull/45" +pull-request: "https://github.com/singer-io/tap-mysql/pull/45" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2019/2019-01-03-postgresql-v1-bigint-array-support.md b/_changelog-files/2019/2019-01-03-postgresql-v1-bigint-array-support.md index 2004933f3..8ab42a22d 100644 --- a/_changelog-files/2019/2019-01-03-postgresql-v1-bigint-array-support.md +++ b/_changelog-files/2019/2019-01-03-postgresql-v1-bigint-array-support.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: "integration" connection-id: "postgres" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-postgres/pull/31" +pull-request: "https://github.com/singer-io/tap-postgres/pull/31" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2019/2019-03-14-mysql-non-auto-pks-interruptible.md b/_changelog-files/2019/2019-03-14-mysql-non-auto-pks-interruptible.md index ca6038462..2fb9ced1b 100644 --- a/_changelog-files/2019/2019-03-14-mysql-non-auto-pks-interruptible.md +++ b/_changelog-files/2019/2019-03-14-mysql-non-auto-pks-interruptible.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: "integration" connection-id: "mysql" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-mysql/pull/89" +pull-request: "https://github.com/singer-io/tap-mysql/pull/89" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2019/2019-03-15-salesfoce-v1-remove-changeevent-tables.md b/_changelog-files/2019/2019-03-15-salesfoce-v1-remove-changeevent-tables.md index 149c55e57..4baa4a127 100644 --- a/_changelog-files/2019/2019-03-15-salesfoce-v1-remove-changeevent-tables.md +++ b/_changelog-files/2019/2019-03-15-salesfoce-v1-remove-changeevent-tables.md @@ -6,7 +6,7 @@ entry-type: removed entry-category: integration connection-id: "salesforce" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-salesforce/pull/62" +pull-request: "https://github.com/singer-io/tap-salesforce/pull/62" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2019/2019-05-06-facebook-ads-v1-relevance-score-deprecation.md b/_changelog-files/2019/2019-05-06-facebook-ads-v1-relevance-score-deprecation.md index 04cd9ec68..ee72d717f 100644 --- a/_changelog-files/2019/2019-05-06-facebook-ads-v1-relevance-score-deprecation.md +++ b/_changelog-files/2019/2019-05-06-facebook-ads-v1-relevance-score-deprecation.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "facebook-ads" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-facebook/pull/55" +pull-request: "https://github.com/singer-io/tap-facebook/pull/55" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2019/2019-07-16-salesforce-v1-remove-announcement-object.md b/_changelog-files/2019/2019-07-16-salesforce-v1-remove-announcement-object.md index 74ca4dd15..8dbe18690 100644 --- a/_changelog-files/2019/2019-07-16-salesforce-v1-remove-announcement-object.md +++ b/_changelog-files/2019/2019-07-16-salesforce-v1-remove-announcement-object.md @@ -6,7 +6,7 @@ entry-type: removed entry-category: integration connection-id: "salesforce" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-salesforce/pull/64" +pull-request: "https://github.com/singer-io/tap-salesforce/pull/64" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2019/2019-07-31-facebook-ads-v1-ads-insights-dma.md b/_changelog-files/2019/2019-07-31-facebook-ads-v1-ads-insights-dma.md index 836f66f6b..1dc2ac2de 100644 --- a/_changelog-files/2019/2019-07-31-facebook-ads-v1-ads-insights-dma.md +++ b/_changelog-files/2019/2019-07-31-facebook-ads-v1-ads-insights-dma.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "facebook-ads" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-facebook/pull/64" +pull-request: "https://github.com/singer-io/tap-facebook/pull/64" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2019/2019-08-27-salesforce-v1-convert-integer-zero-values.md b/_changelog-files/2019/2019-08-27-salesforce-v1-convert-integer-zero-values.md index aa5ed9105..7054a351e 100644 --- a/_changelog-files/2019/2019-08-27-salesforce-v1-convert-integer-zero-values.md +++ b/_changelog-files/2019/2019-08-27-salesforce-v1-convert-integer-zero-values.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "salesforce" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-salesforce/pull/67" +pull-request: "https://github.com/singer-io/tap-salesforce/pull/67" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2019/2019-08-27-salesforce-v1-remove-sitedetail-object.md b/_changelog-files/2019/2019-08-27-salesforce-v1-remove-sitedetail-object.md index c800f1c50..cf4318108 100644 --- a/_changelog-files/2019/2019-08-27-salesforce-v1-remove-sitedetail-object.md +++ b/_changelog-files/2019/2019-08-27-salesforce-v1-remove-sitedetail-object.md @@ -6,7 +6,7 @@ entry-type: removed entry-category: integration connection-id: "salesforce" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-salesforce/pull/68" +pull-request: "https://github.com/singer-io/tap-salesforce/pull/68" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2019/2019-09-18-mysql-v1-composite-pk-full-table.md b/_changelog-files/2019/2019-09-18-mysql-v1-composite-pk-full-table.md index d23a2bd6e..45dbc0bf0 100644 --- a/_changelog-files/2019/2019-09-18-mysql-v1-composite-pk-full-table.md +++ b/_changelog-files/2019/2019-09-18-mysql-v1-composite-pk-full-table.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: "integration" connection-id: "mysql" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-mysql/pull/108" +pull-request: "https://github.com/singer-io/tap-mysql/pull/108" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2019/2019-10-22-postgresql-v1-bigint-data-type-fix.md b/_changelog-files/2019/2019-10-22-postgresql-v1-bigint-data-type-fix.md index 529a39b4e..f4b348bde 100644 --- a/_changelog-files/2019/2019-10-22-postgresql-v1-bigint-data-type-fix.md +++ b/_changelog-files/2019/2019-10-22-postgresql-v1-bigint-data-type-fix.md @@ -6,7 +6,7 @@ entry-type: "bug-fix" entry-category: "integration" connection-id: "postgres" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-postgres/pull/69" +pull-request: "https://github.com/singer-io/tap-postgres/pull/69" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2019/2019-11-20-facebook-ads-v1-adcreative-batch-api.md b/_changelog-files/2019/2019-11-20-facebook-ads-v1-adcreative-batch-api.md index dbc781754..6e9bea94b 100644 --- a/_changelog-files/2019/2019-11-20-facebook-ads-v1-adcreative-batch-api.md +++ b/_changelog-files/2019/2019-11-20-facebook-ads-v1-adcreative-batch-api.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "facebook-ads" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-facebook/pull/73" +pull-request: "https://github.com/singer-io/tap-facebook/pull/73" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2020/2020-01-06-facebook-ads-video-play-curve-actions.md b/_changelog-files/2020/2020-01-06-facebook-ads-video-play-curve-actions.md index a99532fbe..1bc8a0c4b 100644 --- a/_changelog-files/2020/2020-01-06-facebook-ads-video-play-curve-actions.md +++ b/_changelog-files/2020/2020-01-06-facebook-ads-video-play-curve-actions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "facebook-ads" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-facebook/pull/80" +pull-request: "https://github.com/singer-io/tap-facebook/pull/80" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2020/2020-01-27-postgresql-v1-bytea-unsupported.md b/_changelog-files/2020/2020-01-27-postgresql-v1-bytea-unsupported.md index daab79d43..643c8bbbe 100644 --- a/_changelog-files/2020/2020-01-27-postgresql-v1-bytea-unsupported.md +++ b/_changelog-files/2020/2020-01-27-postgresql-v1-bytea-unsupported.md @@ -6,7 +6,7 @@ entry-type: "bug-fix" entry-category: "integration" connection-id: "postgres" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-postgres/pull/76" +pull-request: "https://github.com/singer-io/tap-postgres/pull/76" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2020/2020-02-27-facebook-ads-v1-api-upgrade-v6.md b/_changelog-files/2020/2020-02-27-facebook-ads-v1-api-upgrade-v6.md index 3fc33cfea..4a85dbb28 100644 --- a/_changelog-files/2020/2020-02-27-facebook-ads-v1-api-upgrade-v6.md +++ b/_changelog-files/2020/2020-02-27-facebook-ads-v1-api-upgrade-v6.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: facebook-ads connection-version: 1 -pull_request: "https://github.com/singer-io/tap-facebook/pull/88" +pull-request: "https://github.com/singer-io/tap-facebook/pull/88" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2020/2020-02-27-postgresql-v1-correct-ssl-connections.md b/_changelog-files/2020/2020-02-27-postgresql-v1-correct-ssl-connections.md index 7587b1bdd..f461a7170 100644 --- a/_changelog-files/2020/2020-02-27-postgresql-v1-correct-ssl-connections.md +++ b/_changelog-files/2020/2020-02-27-postgresql-v1-correct-ssl-connections.md @@ -6,7 +6,7 @@ entry-type: "bug-fix" entry-category: "integration" connection-id: "postgres" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-postgres/pull/80" +pull-request: "https://github.com/singer-io/tap-postgres/pull/80" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2020/2020-03-03-github-v1-pr-commits.md b/_changelog-files/2020/2020-03-03-github-v1-pr-commits.md index 4525a971e..9f7ec3cb9 100644 --- a/_changelog-files/2020/2020-03-03-github-v1-pr-commits.md +++ b/_changelog-files/2020/2020-03-03-github-v1-pr-commits.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "github" connection-version: 1 -pull_request: "https://github.com/singer-io/tap-github/pull/67" +pull-request: "https://github.com/singer-io/tap-github/pull/67" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2020/2020-03-04-github-v1-new-tables.md b/_changelog-files/2020/2020-03-04-github-v1-new-tables.md index e9fe8ab3a..62e835f94 100644 --- a/_changelog-files/2020/2020-03-04-github-v1-new-tables.md +++ b/_changelog-files/2020/2020-03-04-github-v1-new-tables.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "github" connection-version: 1 -pull_request: "https://github.com/singer-io/tap-github/pull/70" +pull-request: "https://github.com/singer-io/tap-github/pull/70" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2020/2020-03-30-salesforce-v1-location-data-unsupported-bulk-api.md b/_changelog-files/2020/2020-03-30-salesforce-v1-location-data-unsupported-bulk-api.md index 197a619fa..3059e3299 100644 --- a/_changelog-files/2020/2020-03-30-salesforce-v1-location-data-unsupported-bulk-api.md +++ b/_changelog-files/2020/2020-03-30-salesforce-v1-location-data-unsupported-bulk-api.md @@ -6,7 +6,7 @@ entry-type: removed entry-category: integration connection-id: "salesforce" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-salesforce/pull/75" +pull-request: "https://github.com/singer-io/tap-salesforce/pull/75" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2020/2020-04-01-salesforce-v1-improved-pk-chunking-errors.md b/_changelog-files/2020/2020-04-01-salesforce-v1-improved-pk-chunking-errors.md index 3a3e700c3..4a7f1931e 100644 --- a/_changelog-files/2020/2020-04-01-salesforce-v1-improved-pk-chunking-errors.md +++ b/_changelog-files/2020/2020-04-01-salesforce-v1-improved-pk-chunking-errors.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "salesforce" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-salesforce/pull/76" +pull-request: "https://github.com/singer-io/tap-salesforce/pull/76" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2020/2020-04-06-github-v1-new-tables-fields.md b/_changelog-files/2020/2020-04-06-github-v1-new-tables-fields.md index 9012913d6..0a6c2b507 100644 --- a/_changelog-files/2020/2020-04-06-github-v1-new-tables-fields.md +++ b/_changelog-files/2020/2020-04-06-github-v1-new-tables-fields.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "github" connection-version: 1 -pull_request: "https://github.com/singer-io/tap-github/pull/75" +pull-request: "https://github.com/singer-io/tap-github/pull/75" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2020/2020-04-07-google-analytics-v1-premade-reports.md b/_changelog-files/2020/2020-04-07-google-analytics-v1-premade-reports.md index 4f660ed80..e6465d458 100644 --- a/_changelog-files/2020/2020-04-07-google-analytics-v1-premade-reports.md +++ b/_changelog-files/2020/2020-04-07-google-analytics-v1-premade-reports.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "google-analytics" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-google-analytics/pull/16" +pull-request: "https://github.com/singer-io/tap-google-analytics/pull/16" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2020/2020-04-22-google-analytics-searchkeyword-non-default.md b/_changelog-files/2020/2020-04-22-google-analytics-searchkeyword-non-default.md index 759ff085d..fa9984bb2 100644 --- a/_changelog-files/2020/2020-04-22-google-analytics-searchkeyword-non-default.md +++ b/_changelog-files/2020/2020-04-22-google-analytics-searchkeyword-non-default.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "google-analytics" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-google-analytics/pull/20" +pull-request: "https://github.com/singer-io/tap-google-analytics/pull/20" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2020/2020-04-22-salesforce-v1-loginevent-full-table.md b/_changelog-files/2020/2020-04-22-salesforce-v1-loginevent-full-table.md index d4c6ea85f..a7f9f6dbe 100644 --- a/_changelog-files/2020/2020-04-22-salesforce-v1-loginevent-full-table.md +++ b/_changelog-files/2020/2020-04-22-salesforce-v1-loginevent-full-table.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "salesforce" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-salesforce/pull/80" +pull-request: "https://github.com/singer-io/tap-salesforce/pull/80" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2020/2020-05-12-google-analytics-v1-datetime-parsing.md b/_changelog-files/2020/2020-05-12-google-analytics-v1-datetime-parsing.md index 186862f40..be6235e5a 100644 --- a/_changelog-files/2020/2020-05-12-google-analytics-v1-datetime-parsing.md +++ b/_changelog-files/2020/2020-05-12-google-analytics-v1-datetime-parsing.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: "google-analytics" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-google-analytics/pull/22" +pull-request: "https://github.com/singer-io/tap-google-analytics/pull/22" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2020/2020-05-21-google-analytics-v1-retryable-error-handling.md b/_changelog-files/2020/2020-05-21-google-analytics-v1-retryable-error-handling.md index 191abfb89..2b2a7acbe 100644 --- a/_changelog-files/2020/2020-05-21-google-analytics-v1-retryable-error-handling.md +++ b/_changelog-files/2020/2020-05-21-google-analytics-v1-retryable-error-handling.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "google-analytics" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-google-analytics/pull/24" +pull-request: "https://github.com/singer-io/tap-google-analytics/pull/24" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2020/2020-06-15-google-analytics-v1-non-retryable-error-messages.md b/_changelog-files/2020/2020-06-15-google-analytics-v1-non-retryable-error-messages.md index 26c1033a6..7995ba200 100644 --- a/_changelog-files/2020/2020-06-15-google-analytics-v1-non-retryable-error-messages.md +++ b/_changelog-files/2020/2020-06-15-google-analytics-v1-non-retryable-error-messages.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "google-analytics" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-google-analytics/pull/29" +pull-request: "https://github.com/singer-io/tap-google-analytics/pull/29" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2020/2020-06-22-salesforce-v1-removed-datatype-object.md b/_changelog-files/2020/2020-06-22-salesforce-v1-removed-datatype-object.md index cf359fc57..705881bff 100644 --- a/_changelog-files/2020/2020-06-22-salesforce-v1-removed-datatype-object.md +++ b/_changelog-files/2020/2020-06-22-salesforce-v1-removed-datatype-object.md @@ -6,7 +6,7 @@ entry-type: removed entry-category: integration connection-id: "salesforce" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-salesforce/pull/84" +pull-request: "https://github.com/singer-io/tap-salesforce/pull/84" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2020/2020-08-07-google-analytics-v1-less-aggressive-retries.md b/_changelog-files/2020/2020-08-07-google-analytics-v1-less-aggressive-retries.md index 8c3233bce..5419b3d0a 100644 --- a/_changelog-files/2020/2020-08-07-google-analytics-v1-less-aggressive-retries.md +++ b/_changelog-files/2020/2020-08-07-google-analytics-v1-less-aggressive-retries.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "google-analytics" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-google-analytics/pull/31" +pull-request: "https://github.com/singer-io/tap-google-analytics/pull/31" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2020/2020-08-13-facebook-ads-v1-api-upgrade-v8.md b/_changelog-files/2020/2020-08-13-facebook-ads-v1-api-upgrade-v8.md index 1dd99c79f..ffc96492a 100644 --- a/_changelog-files/2020/2020-08-13-facebook-ads-v1-api-upgrade-v8.md +++ b/_changelog-files/2020/2020-08-13-facebook-ads-v1-api-upgrade-v8.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: facebook-ads connection-version: 1 -pull_request: "https://github.com/singer-io/tap-facebook/pull/103" +pull-request: "https://github.com/singer-io/tap-facebook/pull/103" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2020/2020-08-20-postgresql-v1-discover-partitioned-tables.md b/_changelog-files/2020/2020-08-20-postgresql-v1-discover-partitioned-tables.md index c40b8134c..b7b083f64 100644 --- a/_changelog-files/2020/2020-08-20-postgresql-v1-discover-partitioned-tables.md +++ b/_changelog-files/2020/2020-08-20-postgresql-v1-discover-partitioned-tables.md @@ -6,7 +6,7 @@ entry-type: "bug-fix" entry-category: "integration" connection-id: "postgres" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-postgres/pull/101" +pull-request: "https://github.com/singer-io/tap-postgres/pull/101" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2020/2020-08-26-salesforce-v1-remove-networkuserhistoryrecent-object.md b/_changelog-files/2020/2020-08-26-salesforce-v1-remove-networkuserhistoryrecent-object.md index 8e5d3951c..ed4efbe39 100644 --- a/_changelog-files/2020/2020-08-26-salesforce-v1-remove-networkuserhistoryrecent-object.md +++ b/_changelog-files/2020/2020-08-26-salesforce-v1-remove-networkuserhistoryrecent-object.md @@ -6,7 +6,7 @@ entry-type: removed entry-category: integration connection-id: "salesforce" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-salesforce/pull/86" +pull-request: "https://github.com/singer-io/tap-salesforce/pull/86" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2020/2020-09-18-google-analytics-v1-accountsummaries-profiles.md b/_changelog-files/2020/2020-09-18-google-analytics-v1-accountsummaries-profiles.md index f64feef93..24c313e19 100644 --- a/_changelog-files/2020/2020-09-18-google-analytics-v1-accountsummaries-profiles.md +++ b/_changelog-files/2020/2020-09-18-google-analytics-v1-accountsummaries-profiles.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "google-analytics" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-google-analytics/pull/32" +pull-request: "https://github.com/singer-io/tap-google-analytics/pull/32" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2020/2020-12-18-mambu-v1-new-tables.md b/_changelog-files/2020/2020-12-18-mambu-v1-new-tables.md index 1ce0897e0..6930ca1cf 100644 --- a/_changelog-files/2020/2020-12-18-mambu-v1-new-tables.md +++ b/_changelog-files/2020/2020-12-18-mambu-v1-new-tables.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "mambu" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-mambu/pull/25" +pull-request: "https://github.com/singer-io/tap-mambu/pull/25" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-02-25-new-stripe-fields.md b/_changelog-files/2021/2021-02-25-new-stripe-fields.md index db76154e2..7c3eb4126 100644 --- a/_changelog-files/2021/2021-02-25-new-stripe-fields.md +++ b/_changelog-files/2021/2021-02-25-new-stripe-fields.md @@ -7,7 +7,7 @@ entry-category: integration connection-id: stripe connection-version: 1 full-connection-version: "1.4.5" -pull_request: "https://github.com/singer-io/tap-stripe/pull/77" +pull-request: "https://github.com/singer-io/tap-stripe/pull/77" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-02-25-stripe-invoices-bug-fix.md b/_changelog-files/2021/2021-02-25-stripe-invoices-bug-fix.md index 4b2383656..179fbadd9 100644 --- a/_changelog-files/2021/2021-02-25-stripe-invoices-bug-fix.md +++ b/_changelog-files/2021/2021-02-25-stripe-invoices-bug-fix.md @@ -7,7 +7,7 @@ entry-category: integration connection-id: stripe connection-version: 1 full-connection-version: "1.4.6" -pull_request: "https://github.com/singer-io/tap-stripe/pull/79" +pull-request: "https://github.com/singer-io/tap-stripe/pull/79" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-02-26-shopify-standardized-shop-errors.md b/_changelog-files/2021/2021-02-26-shopify-standardized-shop-errors.md index 7dca9538a..e70c16dbf 100644 --- a/_changelog-files/2021/2021-02-26-shopify-standardized-shop-errors.md +++ b/_changelog-files/2021/2021-02-26-shopify-standardized-shop-errors.md @@ -7,7 +7,7 @@ entry-category: integration connection-id: shopify connection-version: 1 full-connection-version: "1.2.7" -pull_request: "https://github.com/singer-io/tap-shopify/pull/84" +pull-request: "https://github.com/singer-io/tap-shopify/pull/84" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-03-05-xero-datetime-value-fix.md b/_changelog-files/2021/2021-03-05-xero-datetime-value-fix.md index 165b9ee3d..ef6d7af73 100644 --- a/_changelog-files/2021/2021-03-05-xero-datetime-value-fix.md +++ b/_changelog-files/2021/2021-03-05-xero-datetime-value-fix.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: xero connection-version: 1 -pull_request: "https://github.com/singer-io/tap-xero/pull/79" +pull-request: "https://github.com/singer-io/tap-xero/pull/79" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-03-08-facebook-ads-v1-unique-outbound-clicks-data.md b/_changelog-files/2021/2021-03-08-facebook-ads-v1-unique-outbound-clicks-data.md index 1e9b4c5e4..72e58c2b4 100644 --- a/_changelog-files/2021/2021-03-08-facebook-ads-v1-unique-outbound-clicks-data.md +++ b/_changelog-files/2021/2021-03-08-facebook-ads-v1-unique-outbound-clicks-data.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "facebook-ads" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-facebook/pull/138" +pull-request: "https://github.com/singer-io/tap-facebook/pull/138" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-03-09-adwords-v05-02-2017-common-error-messages.md b/_changelog-files/2021/2021-03-09-adwords-v05-02-2017-common-error-messages.md index d15763a16..911d97073 100644 --- a/_changelog-files/2021/2021-03-09-adwords-v05-02-2017-common-error-messages.md +++ b/_changelog-files/2021/2021-03-09-adwords-v05-02-2017-common-error-messages.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: "integration" connection-id: "google-ads" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-adwords/pull/77" +pull-request: "https://github.com/singer-io/tap-adwords/pull/77" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-03-10-pendo-v1-accounts-visitors-custom-fields.md b/_changelog-files/2021/2021-03-10-pendo-v1-accounts-visitors-custom-fields.md index 4381c90dc..f0e6480ad 100644 --- a/_changelog-files/2021/2021-03-10-pendo-v1-accounts-visitors-custom-fields.md +++ b/_changelog-files/2021/2021-03-10-pendo-v1-accounts-visitors-custom-fields.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: "integration" connection-id: "pendo" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-pendo/pull/27" +pull-request: "https://github.com/singer-io/tap-pendo/pull/27" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-03-11-salesforce-v1-error-message-formatting.md b/_changelog-files/2021/2021-03-11-salesforce-v1-error-message-formatting.md index 5cf9812e7..2bc1f5e4f 100644 --- a/_changelog-files/2021/2021-03-11-salesforce-v1-error-message-formatting.md +++ b/_changelog-files/2021/2021-03-11-salesforce-v1-error-message-formatting.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: "integration" connection-id: "salesforce" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-salesforce/pull/96" +pull-request: "https://github.com/singer-io/tap-salesforce/pull/96" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-03-11-zuora-v1-aqua-jobs-rate-limit.md b/_changelog-files/2021/2021-03-11-zuora-v1-aqua-jobs-rate-limit.md index fec0eb8e9..378281223 100644 --- a/_changelog-files/2021/2021-03-11-zuora-v1-aqua-jobs-rate-limit.md +++ b/_changelog-files/2021/2021-03-11-zuora-v1-aqua-jobs-rate-limit.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: "integration" connection-id: "zuora" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-zuora/pull/53" +pull-request: "https://github.com/singer-io/tap-zuora/pull/53" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-03-12-mongodb-v2-remove-duplicate-instances.md b/_changelog-files/2021/2021-03-12-mongodb-v2-remove-duplicate-instances.md index 9a33e7058..3d61f2919 100644 --- a/_changelog-files/2021/2021-03-12-mongodb-v2-remove-duplicate-instances.md +++ b/_changelog-files/2021/2021-03-12-mongodb-v2-remove-duplicate-instances.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: "integration" connection-id: "mongodb" connection-version: "2" -pull_request: "https://github.com/singer-io/tap-mongodb/pull/58" +pull-request: "https://github.com/singer-io/tap-mongodb/pull/58" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-03-12-pendo-v1-ijson-performance-enhancement.md b/_changelog-files/2021/2021-03-12-pendo-v1-ijson-performance-enhancement.md index 96cc1c3a2..04ed500b5 100644 --- a/_changelog-files/2021/2021-03-12-pendo-v1-ijson-performance-enhancement.md +++ b/_changelog-files/2021/2021-03-12-pendo-v1-ijson-performance-enhancement.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: "integration" connection-id: "pendo" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-pendo/pull/28" +pull-request: "https://github.com/singer-io/tap-pendo/pull/28" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-03-15-zoom-v1-fixed-schema-report-meetings-webinars.md b/_changelog-files/2021/2021-03-15-zoom-v1-fixed-schema-report-meetings-webinars.md index 4aa7cd200..65cdebd99 100644 --- a/_changelog-files/2021/2021-03-15-zoom-v1-fixed-schema-report-meetings-webinars.md +++ b/_changelog-files/2021/2021-03-15-zoom-v1-fixed-schema-report-meetings-webinars.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: "integration" connection-id: "zoom" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-zoom/pull/4" +pull-request: "https://github.com/singer-io/tap-zoom/pull/4" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-03-16-salesforce-v1-operation-too-large-error.md b/_changelog-files/2021/2021-03-16-salesforce-v1-operation-too-large-error.md index abfeb0d1f..e29b8919f 100644 --- a/_changelog-files/2021/2021-03-16-salesforce-v1-operation-too-large-error.md +++ b/_changelog-files/2021/2021-03-16-salesforce-v1-operation-too-large-error.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "salesforce" connection-version: 1 -pull_request: "https://github.com/singer-io/tap-salesforce/pull/98" +pull-request: "https://github.com/singer-io/tap-salesforce/pull/98" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-03-17-mambu-v1-decimal-validation-fix.md b/_changelog-files/2021/2021-03-17-mambu-v1-decimal-validation-fix.md index b52a6f3c8..b5c087874 100644 --- a/_changelog-files/2021/2021-03-17-mambu-v1-decimal-validation-fix.md +++ b/_changelog-files/2021/2021-03-17-mambu-v1-decimal-validation-fix.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: "mambu" connection-version: 1 -pull_request: "https://github.com/singer-io/tap-mambu/pull/38" +pull-request: "https://github.com/singer-io/tap-mambu/pull/38" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-03-19-eloqua-v1-email-groups-contacts-data.md b/_changelog-files/2021/2021-03-19-eloqua-v1-email-groups-contacts-data.md index 43a540687..537fffb2f 100644 --- a/_changelog-files/2021/2021-03-19-eloqua-v1-email-groups-contacts-data.md +++ b/_changelog-files/2021/2021-03-19-eloqua-v1-email-groups-contacts-data.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "eloqua" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-eloqua/pull/38" +pull-request: "https://github.com/singer-io/tap-eloqua/pull/38" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-03-22-salesforce-v1-remove-fieldhistoryarchive-object.md b/_changelog-files/2021/2021-03-22-salesforce-v1-remove-fieldhistoryarchive-object.md index 350c07b33..1bca0bca2 100644 --- a/_changelog-files/2021/2021-03-22-salesforce-v1-remove-fieldhistoryarchive-object.md +++ b/_changelog-files/2021/2021-03-22-salesforce-v1-remove-fieldhistoryarchive-object.md @@ -6,7 +6,7 @@ entry-type: removed entry-category: integration connection-id: "salesforce" connection-version: 1 -pull_request: "https://github.com/singer-io/tap-salesforce/pull/101" +pull-request: "https://github.com/singer-io/tap-salesforce/pull/101" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-03-24-new-feature-integration-changelogs.md b/_changelog-files/2021/2021-03-24-new-feature-integration-changelogs.md index 0995fba7a..1a5d85aab 100644 --- a/_changelog-files/2021/2021-03-24-new-feature-integration-changelogs.md +++ b/_changelog-files/2021/2021-03-24-new-feature-integration-changelogs.md @@ -17,7 +17,7 @@ connections: version: "1" - id: "salesforce" version: "1" -pull_request: "https://github.com/stitchdata/docs/pull/620" +pull-request: "https://github.com/stitchdata/docs/pull/620" --- Introducing: Integration changelogs! diff --git a/_changelog-files/2021/2021-03-25-sso-azure-active-directory.md b/_changelog-files/2021/2021-03-25-sso-azure-active-directory.md index f42044d00..f7c66e0ba 100644 --- a/_changelog-files/2021/2021-03-25-sso-azure-active-directory.md +++ b/_changelog-files/2021/2021-03-25-sso-azure-active-directory.md @@ -4,7 +4,7 @@ content-type: "changelog-entry" date: 2021-03-31 entry-type: new-feature entry-category: "account, documentation" -pull_request: "https://github.com/stitchdata/docs/pull/622" +pull-request: "https://github.com/stitchdata/docs/pull/622" --- We've expanded our list of supported Identity Providers to include Microsoft Azure Active Directory (Azure AD)! diff --git a/_changelog-files/2021/2021-03-30-postgres-v2-key-incremental-support.md b/_changelog-files/2021/2021-03-30-postgres-v2-key-incremental-support.md index 9b0948a3b..c50a54f25 100644 --- a/_changelog-files/2021/2021-03-30-postgres-v2-key-incremental-support.md +++ b/_changelog-files/2021/2021-03-30-postgres-v2-key-incremental-support.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: postgres connection-version: 2 -pull_request: "https://github.com/stitchdata/docs/pull/624" +pull-request: "https://github.com/stitchdata/docs/pull/624" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-03-31-zuora-new-stateful-query.md b/_changelog-files/2021/2021-03-31-zuora-new-stateful-query.md index 777dd9613..dd1245034 100644 --- a/_changelog-files/2021/2021-03-31-zuora-new-stateful-query.md +++ b/_changelog-files/2021/2021-03-31-zuora-new-stateful-query.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: zuora connection-version: 1 -pull_request: "https://github.com/singer-io/tap-zuora/pull/54" +pull-request: "https://github.com/singer-io/tap-zuora/pull/54" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-04-05-xero-retry-logic.md b/_changelog-files/2021/2021-04-05-xero-retry-logic.md index f912992d4..7f52f45a1 100644 --- a/_changelog-files/2021/2021-04-05-xero-retry-logic.md +++ b/_changelog-files/2021/2021-04-05-xero-retry-logic.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: xero connection-version: 1 -pull_request: "https://github.com/singer-io/tap-xero/pull/83" +pull-request: "https://github.com/singer-io/tap-xero/pull/83" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-04-06-jira-new-components-table.md b/_changelog-files/2021/2021-04-06-jira-new-components-table.md index 777abee1f..d5f774f65 100644 --- a/_changelog-files/2021/2021-04-06-jira-new-components-table.md +++ b/_changelog-files/2021/2021-04-06-jira-new-components-table.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: "integration, documentation" connection-id: jira connection-version: 2 -pull_request: "https://github.com/singer-io/tap-jira/pull/59" +pull-request: "https://github.com/singer-io/tap-jira/pull/59" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-04-09-klaviyo-critical-error-logging.md b/_changelog-files/2021/2021-04-09-klaviyo-critical-error-logging.md index a001f0913..690f25f71 100644 --- a/_changelog-files/2021/2021-04-09-klaviyo-critical-error-logging.md +++ b/_changelog-files/2021/2021-04-09-klaviyo-critical-error-logging.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: klaviyo connection-version: 1 -pull_request: "https://github.com/singer-io/tap-klaviyo/pull/24" +pull-request: "https://github.com/singer-io/tap-klaviyo/pull/24" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-04-09-xero-error-conditions-features.md b/_changelog-files/2021/2021-04-09-xero-error-conditions-features.md index fdaf1de3b..e675b82bd 100644 --- a/_changelog-files/2021/2021-04-09-xero-error-conditions-features.md +++ b/_changelog-files/2021/2021-04-09-xero-error-conditions-features.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: xero connection-version: 1 -pull_request: "https://github.com/singer-io/tap-xero/pull/85" +pull-request: "https://github.com/singer-io/tap-xero/pull/85" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-04-13-mailchimp-v1-updated-error-message-campaigns.md b/_changelog-files/2021/2021-04-13-mailchimp-v1-updated-error-message-campaigns.md index d6aad2fbd..6236e1a82 100644 --- a/_changelog-files/2021/2021-04-13-mailchimp-v1-updated-error-message-campaigns.md +++ b/_changelog-files/2021/2021-04-13-mailchimp-v1-updated-error-message-campaigns.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mailchimp connection-version: 1 -pull_request: "https://github.com/singer-io/tap-mailchimp/pull/38" +pull-request: "https://github.com/singer-io/tap-mailchimp/pull/38" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-04-13-sso-pingfederate.md b/_changelog-files/2021/2021-04-13-sso-pingfederate.md index dd7ccfada..d3c1f6132 100644 --- a/_changelog-files/2021/2021-04-13-sso-pingfederate.md +++ b/_changelog-files/2021/2021-04-13-sso-pingfederate.md @@ -4,7 +4,7 @@ content-type: "changelog-entry" date: 2021-04-13 entry-type: new-feature entry-category: "account, documentation" -pull_request: "https://github.com/stitchdata/docs/pull/631" +pull-request: "https://github.com/stitchdata/docs/pull/631" --- We've expanded our list of supported Identity Providers to include PingFederate! diff --git a/_changelog-files/2021/2021-04-13-xero-v1-increased-currency-precision.md b/_changelog-files/2021/2021-04-13-xero-v1-increased-currency-precision.md index 868590e39..eb33397cc 100644 --- a/_changelog-files/2021/2021-04-13-xero-v1-increased-currency-precision.md +++ b/_changelog-files/2021/2021-04-13-xero-v1-increased-currency-precision.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: xero connection-version: 1 -pull_request: "https://github.com/singer-io/tap-xero/pull/87" +pull-request: "https://github.com/singer-io/tap-xero/pull/87" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-04-13-xero-v1-new-quotes-table.md b/_changelog-files/2021/2021-04-13-xero-v1-new-quotes-table.md index b900f2fcd..085e0141c 100644 --- a/_changelog-files/2021/2021-04-13-xero-v1-new-quotes-table.md +++ b/_changelog-files/2021/2021-04-13-xero-v1-new-quotes-table.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: "integration, documentation" connection-id: xero connection-version: 1 -pull_request: "https://github.com/singer-io/tap-xero/pull/86" +pull-request: "https://github.com/singer-io/tap-xero/pull/86" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-04-14-github-v1-new-pull-requests-field.md b/_changelog-files/2021/2021-04-14-github-v1-new-pull-requests-field.md index 53afbcd86..3823aabaa 100644 --- a/_changelog-files/2021/2021-04-14-github-v1-new-pull-requests-field.md +++ b/_changelog-files/2021/2021-04-14-github-v1-new-pull-requests-field.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: "integration, documentation" connection-id: github connection-version: 1 -pull_request: "https://github.com/singer-io/tap-github/pull/109" +pull-request: "https://github.com/singer-io/tap-github/pull/109" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-04-14-improved-security-documentation.md b/_changelog-files/2021/2021-04-14-improved-security-documentation.md index ad8a54feb..7f8128c7b 100644 --- a/_changelog-files/2021/2021-04-14-improved-security-documentation.md +++ b/_changelog-files/2021/2021-04-14-improved-security-documentation.md @@ -4,7 +4,7 @@ content-type: "changelog-entry" date: 2021-04-14 entry-type: improvement entry-category: "documentation, security" -pull_request: "https://github.com/stitchdata/docs/pull/626" +pull-request: "https://github.com/stitchdata/docs/pull/626" --- We've been working hard to improve our security documentation - here's a high-level look at the changes: diff --git a/_changelog-files/2021/2021-04-15-pendo-v1-trackevents-source-parameter-correction.md b/_changelog-files/2021/2021-04-15-pendo-v1-trackevents-source-parameter-correction.md index 56219b93b..53a305be6 100644 --- a/_changelog-files/2021/2021-04-15-pendo-v1-trackevents-source-parameter-correction.md +++ b/_changelog-files/2021/2021-04-15-pendo-v1-trackevents-source-parameter-correction.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: pendo connection-version: 1 -pull_request: "https://github.com/singer-io/tap-pendo/pull/30" +pull-request: "https://github.com/singer-io/tap-pendo/pull/30" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-04-15-shopify-v1-definitions-table-customer-field-change.md b/_changelog-files/2021/2021-04-15-shopify-v1-definitions-table-customer-field-change.md index d3305f05c..714a1118f 100644 --- a/_changelog-files/2021/2021-04-15-shopify-v1-definitions-table-customer-field-change.md +++ b/_changelog-files/2021/2021-04-15-shopify-v1-definitions-table-customer-field-change.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: shopify connection-version: 1 -pull_request: "https://github.com/singer-io/tap-shopify/pull/94" +pull-request: "https://github.com/singer-io/tap-shopify/pull/94" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-04-15-xero-v1-archived-contacts-config.md b/_changelog-files/2021/2021-04-15-xero-v1-archived-contacts-config.md index b337a01bb..67d7982cf 100644 --- a/_changelog-files/2021/2021-04-15-xero-v1-archived-contacts-config.md +++ b/_changelog-files/2021/2021-04-15-xero-v1-archived-contacts-config.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: "integration, documentation" connection-id: xero connection-version: 1 -pull_request: "https://github.com/singer-io/tap-xero/pull/84" +pull-request: "https://github.com/singer-io/tap-xero/pull/84" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-04-16-new-mysql-version-v2.md b/_changelog-files/2021/2021-04-16-new-mysql-version-v2.md index 35fc8860f..c34212cea 100644 --- a/_changelog-files/2021/2021-04-16-new-mysql-version-v2.md +++ b/_changelog-files/2021/2021-04-16-new-mysql-version-v2.md @@ -6,7 +6,7 @@ entry-type: beta entry-category: integration connection-id: mysql connection-version: 2 -pull_request: "https://github.com/stitchdata/docs/pull/629" +pull-request: "https://github.com/stitchdata/docs/pull/629" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-04-16-zendesk-chat-v1-new-agents-field.md b/_changelog-files/2021/2021-04-16-zendesk-chat-v1-new-agents-field.md index bb5e8d30b..cb067b05f 100644 --- a/_changelog-files/2021/2021-04-16-zendesk-chat-v1-new-agents-field.md +++ b/_changelog-files/2021/2021-04-16-zendesk-chat-v1-new-agents-field.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: zendesk-chat connection-version: 1 -pull_request: "https://github.com/singer-io/tap-zendesk-chat/pull/27" +pull-request: "https://github.com/singer-io/tap-zendesk-chat/pull/27" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-04-19-harvest-forecast-v1-full-table-rep-assignments-query-logic.md b/_changelog-files/2021/2021-04-19-harvest-forecast-v1-full-table-rep-assignments-query-logic.md index 99e15685f..b3ab0f84c 100644 --- a/_changelog-files/2021/2021-04-19-harvest-forecast-v1-full-table-rep-assignments-query-logic.md +++ b/_changelog-files/2021/2021-04-19-harvest-forecast-v1-full-table-rep-assignments-query-logic.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: harvest-forecast connection-version: 1 -pull_request: "https://github.com/singer-io/tap-harvest-forecast/pull/17" +pull-request: "https://github.com/singer-io/tap-harvest-forecast/pull/17" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-04-19-postgres-v2-unsupported-types.md b/_changelog-files/2021/2021-04-19-postgres-v2-unsupported-types.md index 747dfc8bf..c160e0e03 100644 --- a/_changelog-files/2021/2021-04-19-postgres-v2-unsupported-types.md +++ b/_changelog-files/2021/2021-04-19-postgres-v2-unsupported-types.md @@ -6,7 +6,7 @@ entry-type: removed entry-category: integration connection-id: postgres connection-version: 2 -pull_request: "https://github.com/stitchdata/tap-hp-postgres/pull/73" +pull-request: "https://github.com/stitchdata/tap-hp-postgres/pull/73" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-04-21-mambu-new-v2.md b/_changelog-files/2021/2021-04-21-mambu-new-v2.md index d21b9c99e..303ae5b7c 100644 --- a/_changelog-files/2021/2021-04-21-mambu-new-v2.md +++ b/_changelog-files/2021/2021-04-21-mambu-new-v2.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: "mambu" connection-version: "2" -pull_request: "https://github.com/singer-io/tap-mambu/pull/43" +pull-request: "https://github.com/singer-io/tap-mambu/pull/43" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-04-22-marketo-v1-csv-compatibility.md b/_changelog-files/2021/2021-04-22-marketo-v1-csv-compatibility.md index ffae931b0..6dd640953 100644 --- a/_changelog-files/2021/2021-04-22-marketo-v1-csv-compatibility.md +++ b/_changelog-files/2021/2021-04-22-marketo-v1-csv-compatibility.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: marketo connection-version: 1 -pull_request: "https://github.com/singer-io/tap-marketo/pull/73" +pull-request: "https://github.com/singer-io/tap-marketo/pull/73" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-04-22-xero-v1-wait-time-for-rate-limit.md b/_changelog-files/2021/2021-04-22-xero-v1-wait-time-for-rate-limit.md index 16930bae2..ff19d2b65 100644 --- a/_changelog-files/2021/2021-04-22-xero-v1-wait-time-for-rate-limit.md +++ b/_changelog-files/2021/2021-04-22-xero-v1-wait-time-for-rate-limit.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: xero connection-version: 1 -pull_request: "https://github.com/singer-io/tap-xero/pull/90" +pull-request: "https://github.com/singer-io/tap-xero/pull/90" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-04-26-shopify-v1-api-upgrade-04-2021.md b/_changelog-files/2021/2021-04-26-shopify-v1-api-upgrade-04-2021.md index fa80884ce..8225de597 100644 --- a/_changelog-files/2021/2021-04-26-shopify-v1-api-upgrade-04-2021.md +++ b/_changelog-files/2021/2021-04-26-shopify-v1-api-upgrade-04-2021.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: shopify connection-version: 1 -pull_request: "https://github.com/singer-io/tap-shopify/pull/96" +pull-request: "https://github.com/singer-io/tap-shopify/pull/96" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-04-26-shopify-v1-transactions-order-refund-features.md b/_changelog-files/2021/2021-04-26-shopify-v1-transactions-order-refund-features.md index 8509f5713..8584ee7de 100644 --- a/_changelog-files/2021/2021-04-26-shopify-v1-transactions-order-refund-features.md +++ b/_changelog-files/2021/2021-04-26-shopify-v1-transactions-order-refund-features.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: shopify connection-version: 1 -pull_request: "https://github.com/singer-io/tap-shopify/pull/97" +pull-request: "https://github.com/singer-io/tap-shopify/pull/97" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-04-29-zuora-v1-enforce-UTC.md b/_changelog-files/2021/2021-04-29-zuora-v1-enforce-UTC.md index 2c87d1b9a..c4f32c708 100644 --- a/_changelog-files/2021/2021-04-29-zuora-v1-enforce-UTC.md +++ b/_changelog-files/2021/2021-04-29-zuora-v1-enforce-UTC.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "zuora" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-zuora/pull/56" +pull-request: "https://github.com/singer-io/tap-zuora/pull/56" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-04-30-facebook-ads-v1-job-timeout-increase.md b/_changelog-files/2021/2021-04-30-facebook-ads-v1-job-timeout-increase.md index 261f41821..b6db8babe 100644 --- a/_changelog-files/2021/2021-04-30-facebook-ads-v1-job-timeout-increase.md +++ b/_changelog-files/2021/2021-04-30-facebook-ads-v1-job-timeout-increase.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "facebook-ads" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-facebook/pull/148" +pull-request: "https://github.com/singer-io/tap-facebook/pull/148" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-05-06-shopify-v1-remove-build-fields-duplicates.md b/_changelog-files/2021/2021-05-06-shopify-v1-remove-build-fields-duplicates.md index 68179dbaf..4bb86c45a 100644 --- a/_changelog-files/2021/2021-05-06-shopify-v1-remove-build-fields-duplicates.md +++ b/_changelog-files/2021/2021-05-06-shopify-v1-remove-build-fields-duplicates.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: "shopify" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-shopify/pull/103" +pull-request: "https://github.com/singer-io/tap-shopify/pull/103" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-05-13-intercom-v1-companies-endpoint-limitation.md b/_changelog-files/2021/2021-05-13-intercom-v1-companies-endpoint-limitation.md index 4f6747827..71235186d 100644 --- a/_changelog-files/2021/2021-05-13-intercom-v1-companies-endpoint-limitation.md +++ b/_changelog-files/2021/2021-05-13-intercom-v1-companies-endpoint-limitation.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: "integration, documentation" connection-id: "intercom" connection-version: "1" -pull_request: "" +pull-request: "" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-05-14-salesforce-extraction-error-reference.md b/_changelog-files/2021/2021-05-14-salesforce-extraction-error-reference.md index deef7051c..dd8ff19cc 100644 --- a/_changelog-files/2021/2021-05-14-salesforce-extraction-error-reference.md +++ b/_changelog-files/2021/2021-05-14-salesforce-extraction-error-reference.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: "integration, documentation" connection-id: "salesforce" connection-version: "1" -pull_request: "https://github.com/stitchdata/docs/pull/642" +pull-request: "https://github.com/stitchdata/docs/pull/642" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-05-17-mssql-v1-bugfix-rep-key-quoting.md b/_changelog-files/2021/2021-05-17-mssql-v1-bugfix-rep-key-quoting.md index bddb88e08..7455c5d88 100644 --- a/_changelog-files/2021/2021-05-17-mssql-v1-bugfix-rep-key-quoting.md +++ b/_changelog-files/2021/2021-05-17-mssql-v1-bugfix-rep-key-quoting.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration, replication connection-id: "mssql" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-mssql/pull/59" +pull-request: "https://github.com/singer-io/tap-mssql/pull/59" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-05-17-pendo-v1-anonymous-visitors.md b/_changelog-files/2021/2021-05-17-pendo-v1-anonymous-visitors.md index 859ac3ac9..8ae70981f 100644 --- a/_changelog-files/2021/2021-05-17-pendo-v1-anonymous-visitors.md +++ b/_changelog-files/2021/2021-05-17-pendo-v1-anonymous-visitors.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "pendo" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-pendo/pull/32" +pull-request: "https://github.com/singer-io/tap-pendo/pull/32" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-05-19-shopify-v1-abandoned-checkouts-validation.md b/_changelog-files/2021/2021-05-19-shopify-v1-abandoned-checkouts-validation.md index 4e15e54ba..1f4d53979 100644 --- a/_changelog-files/2021/2021-05-19-shopify-v1-abandoned-checkouts-validation.md +++ b/_changelog-files/2021/2021-05-19-shopify-v1-abandoned-checkouts-validation.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "shopify" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-shopify/pull/44" +pull-request: "https://github.com/singer-io/tap-shopify/pull/44" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-05-21-facebook-ads-v1-api-upgrade-v10.md b/_changelog-files/2021/2021-05-21-facebook-ads-v1-api-upgrade-v10.md index 48f32b4af..31900d289 100644 --- a/_changelog-files/2021/2021-05-21-facebook-ads-v1-api-upgrade-v10.md +++ b/_changelog-files/2021/2021-05-21-facebook-ads-v1-api-upgrade-v10.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: facebook-ads connection-version: 1 -pull_request: "https://github.com/singer-io/tap-facebook/pull/146" +pull-request: "https://github.com/singer-io/tap-facebook/pull/146" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-05-21-typeform-v1-forms-table.md b/_changelog-files/2021/2021-05-21-typeform-v1-forms-table.md index d8583888c..feecc296e 100644 --- a/_changelog-files/2021/2021-05-21-typeform-v1-forms-table.md +++ b/_changelog-files/2021/2021-05-21-typeform-v1-forms-table.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: typeform connection-version: 1 -pull_request: "https://github.com/singer-io/tap-typeform/pull/29" +pull-request: "https://github.com/singer-io/tap-typeform/pull/29" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-05-24-slack-v1-user-profile-data.md b/_changelog-files/2021/2021-05-24-slack-v1-user-profile-data.md index 86c2cecbf..8f0eed2a6 100644 --- a/_changelog-files/2021/2021-05-24-slack-v1-user-profile-data.md +++ b/_changelog-files/2021/2021-05-24-slack-v1-user-profile-data.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "slack" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-slack/pull/16" +pull-request: "https://github.com/singer-io/tap-slack/pull/16" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-05-26-pipedrive-v1-improved-error-handling.md b/_changelog-files/2021/2021-05-26-pipedrive-v1-improved-error-handling.md index 737666c49..57981441a 100644 --- a/_changelog-files/2021/2021-05-26-pipedrive-v1-improved-error-handling.md +++ b/_changelog-files/2021/2021-05-26-pipedrive-v1-improved-error-handling.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: pipedrive connection-version: 1 -pull_request: "https://github.com/singer-io/tap-pipedrive/pull/99" +pull-request: "https://github.com/singer-io/tap-pipedrive/pull/99" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-05-26-pipedrive-v1-organizations-pagination.md b/_changelog-files/2021/2021-05-26-pipedrive-v1-organizations-pagination.md index 74bb120ea..e6e707525 100644 --- a/_changelog-files/2021/2021-05-26-pipedrive-v1-organizations-pagination.md +++ b/_changelog-files/2021/2021-05-26-pipedrive-v1-organizations-pagination.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: pipedrive connection-version: 1 -pull_request: "https://github.com/singer-io/tap-pipedrive/pull/99" +pull-request: "https://github.com/singer-io/tap-pipedrive/pull/99" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-05-26-pipedrive-v1-remove-delete-logs-table.md b/_changelog-files/2021/2021-05-26-pipedrive-v1-remove-delete-logs-table.md index ac2cdf792..c40535ba4 100644 --- a/_changelog-files/2021/2021-05-26-pipedrive-v1-remove-delete-logs-table.md +++ b/_changelog-files/2021/2021-05-26-pipedrive-v1-remove-delete-logs-table.md @@ -6,7 +6,7 @@ entry-type: removed entry-category: integration connection-id: pipedrive connection-version: 1 -pull_request: "https://github.com/singer-io/tap-pipedrive/pull/99" +pull-request: "https://github.com/singer-io/tap-pipedrive/pull/99" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-05-27-docs-parent-child-table-feature.md b/_changelog-files/2021/2021-05-27-docs-parent-child-table-feature.md index 8fd067a83..9439be5be 100644 --- a/_changelog-files/2021/2021-05-27-docs-parent-child-table-feature.md +++ b/_changelog-files/2021/2021-05-27-docs-parent-child-table-feature.md @@ -4,7 +4,7 @@ content-type: "changelog-entry" date: 2021-05-27 entry-type: improvement entry-category: "documentation" -pull_request: "https://github.com/stitchdata/docs/pull/646" +pull-request: "https://github.com/stitchdata/docs/pull/646" --- We've updated the integration schema documentation to include info about parent and child tables. Now you can tell, at a glance, if a table is dependent upon another table for replication: diff --git a/_changelog-files/2021/2021-05-27-github-v1-updated-table-docs.md b/_changelog-files/2021/2021-05-27-github-v1-updated-table-docs.md index 2d2857a0d..eebe3f105 100644 --- a/_changelog-files/2021/2021-05-27-github-v1-updated-table-docs.md +++ b/_changelog-files/2021/2021-05-27-github-v1-updated-table-docs.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: "integration, documentation" connection-id: "github" connection-version: 1 -pull_request: "https://github.com/stitchdata/docs/pull/646" +pull-request: "https://github.com/stitchdata/docs/pull/646" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-05-28-freshdesk-v1-groups-fix-field-data-type.md b/_changelog-files/2021/2021-05-28-freshdesk-v1-groups-fix-field-data-type.md index 5be0a6e8e..98cfd9cc9 100644 --- a/_changelog-files/2021/2021-05-28-freshdesk-v1-groups-fix-field-data-type.md +++ b/_changelog-files/2021/2021-05-28-freshdesk-v1-groups-fix-field-data-type.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: freshdesk connection-version: 1 -pull_request: "https://github.com/singer-io/tap-freshdesk/pull/42" +pull-request: "https://github.com/singer-io/tap-freshdesk/pull/42" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-05-28-klaviyo-v1-campaigns-table-field-selection.md b/_changelog-files/2021/2021-05-28-klaviyo-v1-campaigns-table-field-selection.md index 09f03bb84..318c389e1 100644 --- a/_changelog-files/2021/2021-05-28-klaviyo-v1-campaigns-table-field-selection.md +++ b/_changelog-files/2021/2021-05-28-klaviyo-v1-campaigns-table-field-selection.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: klaviyo connection-version: 1 -pull_request: "https://github.com/singer-io/tap-klaviyo/pull/40" +pull-request: "https://github.com/singer-io/tap-klaviyo/pull/40" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-05-28-shopify-v1-product-status-field.md b/_changelog-files/2021/2021-05-28-shopify-v1-product-status-field.md index b9c8421ae..94caec3bc 100644 --- a/_changelog-files/2021/2021-05-28-shopify-v1-product-status-field.md +++ b/_changelog-files/2021/2021-05-28-shopify-v1-product-status-field.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: shopify connection-version: 1 -pull_request: "https://github.com/singer-io/tap-shopify/pull/108" +pull-request: "https://github.com/singer-io/tap-shopify/pull/108" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-06-01-chargify-v1-component-fields.md b/_changelog-files/2021/2021-06-01-chargify-v1-component-fields.md index 18124e6f3..cbe2278cd 100644 --- a/_changelog-files/2021/2021-06-01-chargify-v1-component-fields.md +++ b/_changelog-files/2021/2021-06-01-chargify-v1-component-fields.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: chargify connection-version: 1 -pull_request: "https://github.com/singer-io/tap-chargify/pull/39" +pull-request: "https://github.com/singer-io/tap-chargify/pull/39" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-06-01-chargify-v1-new-transaction-fields.md b/_changelog-files/2021/2021-06-01-chargify-v1-new-transaction-fields.md index 1689cfb43..c75a70a01 100644 --- a/_changelog-files/2021/2021-06-01-chargify-v1-new-transaction-fields.md +++ b/_changelog-files/2021/2021-06-01-chargify-v1-new-transaction-fields.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: chargify connection-version: 1 -pull_request: "https://github.com/singer-io/tap-chargify/pull/39" +pull-request: "https://github.com/singer-io/tap-chargify/pull/39" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-06-03-mambu-v2-custom-field-bug-fix.md b/_changelog-files/2021/2021-06-03-mambu-v2-custom-field-bug-fix.md index fc24d3e3e..bfa9a6746 100644 --- a/_changelog-files/2021/2021-06-03-mambu-v2-custom-field-bug-fix.md +++ b/_changelog-files/2021/2021-06-03-mambu-v2-custom-field-bug-fix.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: mambu connection-version: 2 -pull_request: "https://github.com/singer-io/tap-mambu/pull/47" +pull-request: "https://github.com/singer-io/tap-mambu/pull/47" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-06-03-recharge-v1-rate-limit-handling.md b/_changelog-files/2021/2021-06-03-recharge-v1-rate-limit-handling.md index 66ca599ff..7623f2558 100644 --- a/_changelog-files/2021/2021-06-03-recharge-v1-rate-limit-handling.md +++ b/_changelog-files/2021/2021-06-03-recharge-v1-rate-limit-handling.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: recharge connection-version: 1 -pull_request: "https://github.com/singer-io/tap-recharge/pull/8" +pull-request: "https://github.com/singer-io/tap-recharge/pull/8" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-06-07-api-docs-improved-connection-docs.md b/_changelog-files/2021/2021-06-07-api-docs-improved-connection-docs.md index e35a66dfb..16048110c 100644 --- a/_changelog-files/2021/2021-06-07-api-docs-improved-connection-docs.md +++ b/_changelog-files/2021/2021-06-07-api-docs-improved-connection-docs.md @@ -4,7 +4,7 @@ content-type: "changelog-entry" date: 2021-06-07 entry-type: improvement entry-category: "documentation, connect-api" -pull_request: "https://github.com/stitchdata/docs/pull/649" +pull-request: "https://github.com/stitchdata/docs/pull/649" --- We've moved the documentation for connection property objects out of the Connect API reference and into their own reference: [Destination and Source Connection Property API Reference]({{ site.home | append: site.baseurl | append: site.data.urls.connect.guides.connection-reference }}) diff --git a/_changelog-files/2021/2021-06-07-connect-api-new-destination-guide.md b/_changelog-files/2021/2021-06-07-connect-api-new-destination-guide.md index 026ee91db..077be2d30 100644 --- a/_changelog-files/2021/2021-06-07-connect-api-new-destination-guide.md +++ b/_changelog-files/2021/2021-06-07-connect-api-new-destination-guide.md @@ -4,7 +4,7 @@ content-type: "changelog-entry" date: 2021-06-07 entry-type: new-feature entry-category: "documentation, connect-api" -pull_request: "https://github.com/stitchdata/docs/pull/649" +pull-request: "https://github.com/stitchdata/docs/pull/649" --- We've added a new guide to the Connect API resources! diff --git a/_changelog-files/2021/2021-06-07-harvest-v2-updated-api-headers.md b/_changelog-files/2021/2021-06-07-harvest-v2-updated-api-headers.md index 188188e46..020ae9fd5 100644 --- a/_changelog-files/2021/2021-06-07-harvest-v2-updated-api-headers.md +++ b/_changelog-files/2021/2021-06-07-harvest-v2-updated-api-headers.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: harvest connection-version: 2 -pull_request: "https://github.com/singer-io/tap-harvest/pull/41" +pull-request: "https://github.com/singer-io/tap-harvest/pull/41" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-06-08-amazon-s3-csv-duplicate-column-support.md b/_changelog-files/2021/2021-06-08-amazon-s3-csv-duplicate-column-support.md index 52c605fb0..e5f6bef02 100644 --- a/_changelog-files/2021/2021-06-08-amazon-s3-csv-duplicate-column-support.md +++ b/_changelog-files/2021/2021-06-08-amazon-s3-csv-duplicate-column-support.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: "integration, documentation" connection-id: "amazon-s3-csv" connection-version: 1 -pull_request: "https://github.com/singer-io/tap-s3-csv/pull/30" +pull-request: "https://github.com/singer-io/tap-s3-csv/pull/30" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-06-08-harvest-forecast-sync-endpoints-fix.md b/_changelog-files/2021/2021-06-08-harvest-forecast-sync-endpoints-fix.md index 192ad6e20..aa067be54 100644 --- a/_changelog-files/2021/2021-06-08-harvest-forecast-sync-endpoints-fix.md +++ b/_changelog-files/2021/2021-06-08-harvest-forecast-sync-endpoints-fix.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: "harvest-forecast" connection-version: 1 -pull_request: "https://github.com/singer-io/tap-harvest-forecast/pull/21" +pull-request: "https://github.com/singer-io/tap-harvest-forecast/pull/21" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-06-09-chargebee-v1-cf-company-id-bug-fix.md b/_changelog-files/2021/2021-06-09-chargebee-v1-cf-company-id-bug-fix.md index 40cd7fa3c..29ef6b215 100644 --- a/_changelog-files/2021/2021-06-09-chargebee-v1-cf-company-id-bug-fix.md +++ b/_changelog-files/2021/2021-06-09-chargebee-v1-cf-company-id-bug-fix.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: "integration" connection-id: "chargebee" connection-version: 1 -pull_request: "https://github.com/singer-io/tap-chargebee/pull/48" +pull-request: "https://github.com/singer-io/tap-chargebee/pull/48" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-06-10-outreach-v1-new-sequence-tables.md b/_changelog-files/2021/2021-06-10-outreach-v1-new-sequence-tables.md index 9dfafa64d..5990c7478 100644 --- a/_changelog-files/2021/2021-06-10-outreach-v1-new-sequence-tables.md +++ b/_changelog-files/2021/2021-06-10-outreach-v1-new-sequence-tables.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: "integration, documentation" connection-id: "outreach" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-outreach/pull/12" +pull-request: "https://github.com/singer-io/tap-outreach/pull/12" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-06-10-square-v1-remove-orders-item-data.md b/_changelog-files/2021/2021-06-10-square-v1-remove-orders-item-data.md index fc440a305..6ba9bb5bb 100644 --- a/_changelog-files/2021/2021-06-10-square-v1-remove-orders-item-data.md +++ b/_changelog-files/2021/2021-06-10-square-v1-remove-orders-item-data.md @@ -6,7 +6,7 @@ entry-type: removed entry-category: integration connection-id: "square" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-square/pull/104" +pull-request: "https://github.com/singer-io/tap-square/pull/104" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-06-14-chargebee-v1-new-tables.md b/_changelog-files/2021/2021-06-14-chargebee-v1-new-tables.md index c60507ac5..188fb6454 100644 --- a/_changelog-files/2021/2021-06-14-chargebee-v1-new-tables.md +++ b/_changelog-files/2021/2021-06-14-chargebee-v1-new-tables.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: "integration, documentation" connection-id: "chargebee" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-chargebee/pull/42" +pull-request: "https://github.com/singer-io/tap-chargebee/pull/42" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-06-16-amazon-s3-csv-type-checking-fix.md b/_changelog-files/2021/2021-06-16-amazon-s3-csv-type-checking-fix.md index 1fde47470..322329144 100644 --- a/_changelog-files/2021/2021-06-16-amazon-s3-csv-type-checking-fix.md +++ b/_changelog-files/2021/2021-06-16-amazon-s3-csv-type-checking-fix.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: "amazon-s3-csv" connection-version: 1 -pull_request: "https://github.com/singer-io/tap-s3-csv/pull/35" +pull-request: "https://github.com/singer-io/tap-s3-csv/pull/35" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-06-16-docs-integration-versioning-guide.md b/_changelog-files/2021/2021-06-16-docs-integration-versioning-guide.md index ea8d3bcaa..2f75deb58 100644 --- a/_changelog-files/2021/2021-06-16-docs-integration-versioning-guide.md +++ b/_changelog-files/2021/2021-06-16-docs-integration-versioning-guide.md @@ -4,7 +4,7 @@ content-type: "changelog-entry" date: 2021-06-16 entry-type: new-feature entry-category: documentation -pull_request: "https://github.com/stitchdata/docs/pull/650" +pull-request: "https://github.com/stitchdata/docs/pull/650" --- After the v2 release of our PostgreSQL integration, we received some questions about how integrations are versioned. Today, we're adding a new resource to the docs to help answer these questions: [Understanding Integration Versioning and Upgrades in Stitch]({{ site.home | append: site.baseurl | append: site.data.urls.integrations.identify-integration-version }}) diff --git a/_changelog-files/2021/2021-06-16-pipedrive-fix-table-rep-method.md b/_changelog-files/2021/2021-06-16-pipedrive-fix-table-rep-method.md index ac3af9d7e..1f0628770 100644 --- a/_changelog-files/2021/2021-06-16-pipedrive-fix-table-rep-method.md +++ b/_changelog-files/2021/2021-06-16-pipedrive-fix-table-rep-method.md @@ -6,7 +6,7 @@ entry-type: "bug-fix" entry-category: "integration, documentation" connection-id: "pipedrive" connection-version: 1 -pull_request: "https://github.com/singer-io/tap-pipedrive/pull/90" +pull-request: "https://github.com/singer-io/tap-pipedrive/pull/90" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-06-16-pipedrive-remove-delete-logs.md b/_changelog-files/2021/2021-06-16-pipedrive-remove-delete-logs.md index 85772eff4..feaa0db6a 100644 --- a/_changelog-files/2021/2021-06-16-pipedrive-remove-delete-logs.md +++ b/_changelog-files/2021/2021-06-16-pipedrive-remove-delete-logs.md @@ -6,7 +6,7 @@ entry-type: "removed" entry-category: "integration, documentation" connection-id: "pipedrive" connection-version: 1 -pull_request: "https://github.com/singer-io/tap-pipedrive/pull/90" +pull-request: "https://github.com/singer-io/tap-pipedrive/pull/90" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-06-17-yotpo-v1-error-refactoring.md b/_changelog-files/2021/2021-06-17-yotpo-v1-error-refactoring.md index 172630d09..844591b54 100644 --- a/_changelog-files/2021/2021-06-17-yotpo-v1-error-refactoring.md +++ b/_changelog-files/2021/2021-06-17-yotpo-v1-error-refactoring.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: "integration" connection-id: "yotpo" connection-version: 1 -pull_request: "https://github.com/singer-io/tap-yotpo/pull/20" +pull-request: "https://github.com/singer-io/tap-yotpo/pull/20" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-06-21-campaign-manager-api-upgrade.md b/_changelog-files/2021/2021-06-21-campaign-manager-api-upgrade.md index 05c8bd163..72806caa7 100644 --- a/_changelog-files/2021/2021-06-21-campaign-manager-api-upgrade.md +++ b/_changelog-files/2021/2021-06-21-campaign-manager-api-upgrade.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: "integration" connection-id: "campaign-manager" connection-version: 1 -pull_request: "https://github.com/singer-io/tap-doubleclick-campaign-manager/pull/20" +pull-request: "https://github.com/singer-io/tap-doubleclick-campaign-manager/pull/20" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-06-24-shopify-v1-plus-permissions.md b/_changelog-files/2021/2021-06-24-shopify-v1-plus-permissions.md index a686ea93c..0bf36a92b 100644 --- a/_changelog-files/2021/2021-06-24-shopify-v1-plus-permissions.md +++ b/_changelog-files/2021/2021-06-24-shopify-v1-plus-permissions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: "integration, documentation" connection-id: "shopify" connection-version: "1" -pull_request: "https://github.com/stitchdata/docs/pull/644" +pull-request: "https://github.com/stitchdata/docs/pull/644" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-06-25-toggl-v1-update-base-urls.md b/_changelog-files/2021/2021-06-25-toggl-v1-update-base-urls.md index f9e1fa53f..018d27ae4 100644 --- a/_changelog-files/2021/2021-06-25-toggl-v1-update-base-urls.md +++ b/_changelog-files/2021/2021-06-25-toggl-v1-update-base-urls.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: "integration" connection-id: toggl connection-version: 1 -pull_request: "https://github.com/singer-io/tap-toggl/pull/9" +pull-request: "https://github.com/singer-io/tap-toggl/pull/9" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-06-28-facebook-ads-v1-update-country-primary-key.md b/_changelog-files/2021/2021-06-28-facebook-ads-v1-update-country-primary-key.md index df3958448..5d5571aaf 100644 --- a/_changelog-files/2021/2021-06-28-facebook-ads-v1-update-country-primary-key.md +++ b/_changelog-files/2021/2021-06-28-facebook-ads-v1-update-country-primary-key.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: "integration" connection-id: "facebook-ads" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-facebook/pull/154" +pull-request: "https://github.com/singer-io/tap-facebook/pull/154" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-06-28-github-v1-add-error-exception.md b/_changelog-files/2021/2021-06-28-github-v1-add-error-exception.md index ef9c4ef41..720f6ccc7 100644 --- a/_changelog-files/2021/2021-06-28-github-v1-add-error-exception.md +++ b/_changelog-files/2021/2021-06-28-github-v1-add-error-exception.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: "integration" connection-id: "github" connection-version: 1 -pull_request: "https://github.com/singer-io/tap-github/pull/126" +pull-request: "https://github.com/singer-io/tap-github/pull/126" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-06-28-outreach-v1-new-name-field.md b/_changelog-files/2021/2021-06-28-outreach-v1-new-name-field.md index f2b4ff770..140a2f84e 100644 --- a/_changelog-files/2021/2021-06-28-outreach-v1-new-name-field.md +++ b/_changelog-files/2021/2021-06-28-outreach-v1-new-name-field.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: "integration" connection-id: "outreach" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-outreach/pull/13" +pull-request: "https://github.com/singer-io/tap-outreach/pull/13" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-06-29-google-search-console-v1-empty-response-error-message.md b/_changelog-files/2021/2021-06-29-google-search-console-v1-empty-response-error-message.md index f1ffdbc4b..8deeb3d2c 100644 --- a/_changelog-files/2021/2021-06-29-google-search-console-v1-empty-response-error-message.md +++ b/_changelog-files/2021/2021-06-29-google-search-console-v1-empty-response-error-message.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: "integration" connection-id: "google-search-console" connection-version: 1 -pull_request: "https://github.com/singer-io/tap-google-search-console/pull/21" +pull-request: "https://github.com/singer-io/tap-google-search-console/pull/21" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-06-30-chargebee-v1-new-jsondecode-error-handling.md b/_changelog-files/2021/2021-06-30-chargebee-v1-new-jsondecode-error-handling.md index 769c7fcc1..8cab55410 100644 --- a/_changelog-files/2021/2021-06-30-chargebee-v1-new-jsondecode-error-handling.md +++ b/_changelog-files/2021/2021-06-30-chargebee-v1-new-jsondecode-error-handling.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: "integration" connection-id: "chargebee" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-chargebee/pull/51/" +pull-request: "https://github.com/singer-io/tap-chargebee/pull/51/" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-06-30-chargebee-v1-new-price-tiers-attributes.md b/_changelog-files/2021/2021-06-30-chargebee-v1-new-price-tiers-attributes.md index b8c3f0aaf..c98f4f544 100644 --- a/_changelog-files/2021/2021-06-30-chargebee-v1-new-price-tiers-attributes.md +++ b/_changelog-files/2021/2021-06-30-chargebee-v1-new-price-tiers-attributes.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: "integration" connection-id: "chargebee" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-chargebee/pull/53" +pull-request: "https://github.com/singer-io/tap-chargebee/pull/53" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-06-30-chargebee-v1-remove-min-max-properties.md b/_changelog-files/2021/2021-06-30-chargebee-v1-remove-min-max-properties.md index 6b43f64d6..10f870e4d 100644 --- a/_changelog-files/2021/2021-06-30-chargebee-v1-remove-min-max-properties.md +++ b/_changelog-files/2021/2021-06-30-chargebee-v1-remove-min-max-properties.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: "integration" connection-id: "chargebee" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-chargebee/pull/45" +pull-request: "https://github.com/singer-io/tap-chargebee/pull/45" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-07-01-amazon-s3-csv-fix-empty-file-error.md b/_changelog-files/2021/2021-07-01-amazon-s3-csv-fix-empty-file-error.md index 54ed8de8f..5d806af4b 100644 --- a/_changelog-files/2021/2021-07-01-amazon-s3-csv-fix-empty-file-error.md +++ b/_changelog-files/2021/2021-07-01-amazon-s3-csv-fix-empty-file-error.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: "integration" connection-id: "amazon-s3-csv" connection-version: 1 -pull_request: "https://github.com/singer-io/tap-s3-csv/pull/38" +pull-request: "https://github.com/singer-io/tap-s3-csv/pull/38" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-07-08-postgresql-cloudsql-now-available.md b/_changelog-files/2021/2021-07-08-postgresql-cloudsql-now-available.md index 81ea2efb1..b96127377 100644 --- a/_changelog-files/2021/2021-07-08-postgresql-cloudsql-now-available.md +++ b/_changelog-files/2021/2021-07-08-postgresql-cloudsql-now-available.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: "postgres" connection-version: "2" -# pull_request: "" +# pull-request: "" --- {% assign this-connection = site.database-integrations | find:"key","cloudsql-postgres-integration" %} diff --git a/_changelog-files/2021/2021-08-11-linkedin-ads-v1-automatic-replication-key.md b/_changelog-files/2021/2021-08-11-linkedin-ads-v1-automatic-replication-key.md index 456caafbc..227ed25c4 100644 --- a/_changelog-files/2021/2021-08-11-linkedin-ads-v1-automatic-replication-key.md +++ b/_changelog-files/2021/2021-08-11-linkedin-ads-v1-automatic-replication-key.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: linkedin-ads connection-version: 1 -pull_request: "https://github.com/singer-io/tap-linkedin-ads/pull/33" +pull-request: "https://github.com/singer-io/tap-linkedin-ads/pull/33" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-08-12-linkedin-ads-v1-validate-account.md b/_changelog-files/2021/2021-08-12-linkedin-ads-v1-validate-account.md index bc11f62fb..bdf1a3f3a 100644 --- a/_changelog-files/2021/2021-08-12-linkedin-ads-v1-validate-account.md +++ b/_changelog-files/2021/2021-08-12-linkedin-ads-v1-validate-account.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: linkedin-ads connection-version: 1 -pull_request: "https://github.com/singer-io/tap-linkedin-ads/pull/35" +pull-request: "https://github.com/singer-io/tap-linkedin-ads/pull/35" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-08-13-linkedin-ads-v1-error-handling-adcampaignsgroup.md b/_changelog-files/2021/2021-08-13-linkedin-ads-v1-error-handling-adcampaignsgroup.md index 5fb9339c8..c5e5db1ae 100644 --- a/_changelog-files/2021/2021-08-13-linkedin-ads-v1-error-handling-adcampaignsgroup.md +++ b/_changelog-files/2021/2021-08-13-linkedin-ads-v1-error-handling-adcampaignsgroup.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: linkedin-ads connection-version: 1 -pull_request: "https://github.com/singer-io/tap-linkedin-ads/pull/28" +pull-request: "https://github.com/singer-io/tap-linkedin-ads/pull/28" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-09-27-crossbeam-new-integration.md b/_changelog-files/2021/2021-09-27-crossbeam-new-integration.md index 3108188cc..854042390 100644 --- a/_changelog-files/2021/2021-09-27-crossbeam-new-integration.md +++ b/_changelog-files/2021/2021-09-27-crossbeam-new-integration.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: "crossbeam" connection-version: "1" -# pull_request: "" UNCOMMENT IF THERE'S A PR +# pull-request: "" UNCOMMENT IF THERE'S A PR --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-10-27-mixpanel-v1-date-time-conversion-fix.md b/_changelog-files/2021/2021-10-27-mixpanel-v1-date-time-conversion-fix.md index 00bc771d8..4d9c449dc 100644 --- a/_changelog-files/2021/2021-10-27-mixpanel-v1-date-time-conversion-fix.md +++ b/_changelog-files/2021/2021-10-27-mixpanel-v1-date-time-conversion-fix.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: "mixpanel" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-mixpanel/pull/40" +pull-request: "https://github.com/singer-io/tap-mixpanel/pull/40" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-10-27-mixpanel-v1-switch-from-multipleof-to-singer-decimal.md b/_changelog-files/2021/2021-10-27-mixpanel-v1-switch-from-multipleof-to-singer-decimal.md index 2929c3828..1e2822649 100644 --- a/_changelog-files/2021/2021-10-27-mixpanel-v1-switch-from-multipleof-to-singer-decimal.md +++ b/_changelog-files/2021/2021-10-27-mixpanel-v1-switch-from-multipleof-to-singer-decimal.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "mixpanel" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-mixpanel/pull/38" +pull-request: "https://github.com/singer-io/tap-mixpanel/pull/38" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-10-27-mixpanel-v1-timezone-error-message.md b/_changelog-files/2021/2021-10-27-mixpanel-v1-timezone-error-message.md index 31912d52e..559f8ea28 100644 --- a/_changelog-files/2021/2021-10-27-mixpanel-v1-timezone-error-message.md +++ b/_changelog-files/2021/2021-10-27-mixpanel-v1-timezone-error-message.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "mixpanel" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-mixpanel/pull/35" +pull-request: "https://github.com/singer-io/tap-mixpanel/pull/35" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-10-28-salesforce-v1-increase-request-timeout.md b/_changelog-files/2021/2021-10-28-salesforce-v1-increase-request-timeout.md index 849d460a2..c6586865e 100644 --- a/_changelog-files/2021/2021-10-28-salesforce-v1-increase-request-timeout.md +++ b/_changelog-files/2021/2021-10-28-salesforce-v1-increase-request-timeout.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "salesforce" connection-version: 1 -pull_request: "https://github.com/singer-io/tap-salesforce/pull/126" +pull-request: "https://github.com/singer-io/tap-salesforce/pull/126" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-10-29-typeform-v1-landings-pagination-indexerror.md b/_changelog-files/2021/2021-10-29-typeform-v1-landings-pagination-indexerror.md index e3a71f973..7169c126c 100644 --- a/_changelog-files/2021/2021-10-29-typeform-v1-landings-pagination-indexerror.md +++ b/_changelog-files/2021/2021-10-29-typeform-v1-landings-pagination-indexerror.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: typeform connection-version: 1 -pull_request: "https://github.com/singer-io/tap-typeform/pull/51" +pull-request: "https://github.com/singer-io/tap-typeform/pull/51" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-10-29-typeform-v1-landings-pagination.md b/_changelog-files/2021/2021-10-29-typeform-v1-landings-pagination.md index b8c3793d6..66f4f3daa 100644 --- a/_changelog-files/2021/2021-10-29-typeform-v1-landings-pagination.md +++ b/_changelog-files/2021/2021-10-29-typeform-v1-landings-pagination.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: typeform connection-version: 1 -pull_request: "https://github.com/singer-io/tap-typeform/pull/48" +pull-request: "https://github.com/singer-io/tap-typeform/pull/48" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-11-01-typeform-v1-retry-chunkedencodingerror.md b/_changelog-files/2021/2021-11-01-typeform-v1-retry-chunkedencodingerror.md index a37299f48..f74125600 100644 --- a/_changelog-files/2021/2021-11-01-typeform-v1-retry-chunkedencodingerror.md +++ b/_changelog-files/2021/2021-11-01-typeform-v1-retry-chunkedencodingerror.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: typeform connection-version: 1 -pull_request: "https://github.com/singer-io/tap-typeform/pull/52" +pull-request: "https://github.com/singer-io/tap-typeform/pull/52" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-11-02-dynamodb-v1-widen-decimal-precision.md b/_changelog-files/2021/2021-11-02-dynamodb-v1-widen-decimal-precision.md index 369039df4..6de3541cf 100644 --- a/_changelog-files/2021/2021-11-02-dynamodb-v1-widen-decimal-precision.md +++ b/_changelog-files/2021/2021-11-02-dynamodb-v1-widen-decimal-precision.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: amazon-dynamodb connection-version: 1 -pull_request: "https://github.com/singer-io/tap-dynamodb/pull/33" +pull-request: "https://github.com/singer-io/tap-dynamodb/pull/33" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-11-02-facebook-ads-v1-rety-job-polling.md b/_changelog-files/2021/2021-11-02-facebook-ads-v1-rety-job-polling.md index be819f72c..df40e38aa 100644 --- a/_changelog-files/2021/2021-11-02-facebook-ads-v1-rety-job-polling.md +++ b/_changelog-files/2021/2021-11-02-facebook-ads-v1-rety-job-polling.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "facebook-ads" connection-version: "1" -pull_request: "https://github.com/singer-io/tap-facebook/pull/174" +pull-request: "https://github.com/singer-io/tap-facebook/pull/174" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-11-03-mambu-v2-new-gl_journal_entries-replication-key.md b/_changelog-files/2021/2021-11-03-mambu-v2-new-gl_journal_entries-replication-key.md index cf6aa5274..30947be13 100644 --- a/_changelog-files/2021/2021-11-03-mambu-v2-new-gl_journal_entries-replication-key.md +++ b/_changelog-files/2021/2021-11-03-mambu-v2-new-gl_journal_entries-replication-key.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "mambu" connection-version: "2" -pull_request: "https://github.com/singer-io/tap-mambu/pull/56" +pull-request: "https://github.com/singer-io/tap-mambu/pull/56" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-11-09-shopify-v1-new-events-stream.md b/_changelog-files/2021/2021-11-09-shopify-v1-new-events-stream.md index 4ba0b97f9..53e69eaf7 100644 --- a/_changelog-files/2021/2021-11-09-shopify-v1-new-events-stream.md +++ b/_changelog-files/2021/2021-11-09-shopify-v1-new-events-stream.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: shopify connection-version: 1 -pull_request: "https://github.com/singer-io/tap-shopify/pull/127" +pull-request: "https://github.com/singer-io/tap-shopify/pull/127" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-11-29-mambu-v2-audit_trail-duplicates.md b/_changelog-files/2021/2021-11-29-mambu-v2-audit_trail-duplicates.md index 4d9456079..f531e7986 100644 --- a/_changelog-files/2021/2021-11-29-mambu-v2-audit_trail-duplicates.md +++ b/_changelog-files/2021/2021-11-29-mambu-v2-audit_trail-duplicates.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: "mambu" connection-version: "2" -pull_request: "https://github.com/singer-io/tap-mambu/pull/59" +pull-request: "https://github.com/singer-io/tap-mambu/pull/59" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-11-29-mambu-v2-original_account_key-field.md b/_changelog-files/2021/2021-11-29-mambu-v2-original_account_key-field.md index 6f4046309..91d27cda2 100644 --- a/_changelog-files/2021/2021-11-29-mambu-v2-original_account_key-field.md +++ b/_changelog-files/2021/2021-11-29-mambu-v2-original_account_key-field.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: "mambu" connection-version: "2" -pull_request: "https://github.com/singer-io/tap-mambu/pull/60" +pull-request: "https://github.com/singer-io/tap-mambu/pull/60" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-11-30-github-v1-parent-field-object.md b/_changelog-files/2021/2021-11-30-github-v1-parent-field-object.md index 36004eec5..b96608b31 100644 --- a/_changelog-files/2021/2021-11-30-github-v1-parent-field-object.md +++ b/_changelog-files/2021/2021-11-30-github-v1-parent-field-object.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: github connection-version: 1 -pull_request: "https://github.com/singer-io/tap-github/pull/149" +pull-request: "https://github.com/singer-io/tap-github/pull/149" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-11-30-zendesk-v1-5xx-errors.md b/_changelog-files/2021/2021-11-30-zendesk-v1-5xx-errors.md index c23a88061..193feb84d 100644 --- a/_changelog-files/2021/2021-11-30-zendesk-v1-5xx-errors.md +++ b/_changelog-files/2021/2021-11-30-zendesk-v1-5xx-errors.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: zendesk connection-version: 1 -pull_request: "https://github.com/singer-io/tap-zendesk/pull/93" +pull-request: "https://github.com/singer-io/tap-zendesk/pull/93" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-12-01-harvest-v2-request-timeout.md b/_changelog-files/2021/2021-12-01-harvest-v2-request-timeout.md index 5d6686dfa..6c35bdbf0 100644 --- a/_changelog-files/2021/2021-12-01-harvest-v2-request-timeout.md +++ b/_changelog-files/2021/2021-12-01-harvest-v2-request-timeout.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: harvest connection-version: 2 -pull_request: "https://github.com/singer-io/tap-harvest/pull/51" +pull-request: "https://github.com/singer-io/tap-harvest/pull/51" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-12-01-recharge-v1-request-timeout.md b/_changelog-files/2021/2021-12-01-recharge-v1-request-timeout.md index c1c5f9df9..be34f6649 100644 --- a/_changelog-files/2021/2021-12-01-recharge-v1-request-timeout.md +++ b/_changelog-files/2021/2021-12-01-recharge-v1-request-timeout.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: recharge connection-version: 1 -pull_request: "https://github.com/singer-io/tap-recharge/pull/19" +pull-request: "https://github.com/singer-io/tap-recharge/pull/19" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-12-02-github-v1-request-timeout.md b/_changelog-files/2021/2021-12-02-github-v1-request-timeout.md index e7405925a..8f18d0d4b 100644 --- a/_changelog-files/2021/2021-12-02-github-v1-request-timeout.md +++ b/_changelog-files/2021/2021-12-02-github-v1-request-timeout.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: github connection-version: 1 -pull_request: "https://github.com/singer-io/tap-github/pull/147" +pull-request: "https://github.com/singer-io/tap-github/pull/147" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-12-02-klaviyo-v1-request-timeout.md b/_changelog-files/2021/2021-12-02-klaviyo-v1-request-timeout.md index a30ee5be1..4bc14e17d 100644 --- a/_changelog-files/2021/2021-12-02-klaviyo-v1-request-timeout.md +++ b/_changelog-files/2021/2021-12-02-klaviyo-v1-request-timeout.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: klaviyo connection-version: 1 -pull_request: "https://github.com/singer-io/tap-klaviyo/pull/47" +pull-request: "https://github.com/singer-io/tap-klaviyo/pull/47" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-12-02-zendesk-v1-503-error.md b/_changelog-files/2021/2021-12-02-zendesk-v1-503-error.md index b60af6da4..0b2a19f08 100644 --- a/_changelog-files/2021/2021-12-02-zendesk-v1-503-error.md +++ b/_changelog-files/2021/2021-12-02-zendesk-v1-503-error.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: zendesk connection-version: 1 -pull_request: "https://github.com/singer-io/tap-zendesk/pull/95" +pull-request: "https://github.com/singer-io/tap-zendesk/pull/95" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-12-03-yotpo-v1-request-timeout.md b/_changelog-files/2021/2021-12-03-yotpo-v1-request-timeout.md index f7ac89ea7..978f67383 100644 --- a/_changelog-files/2021/2021-12-03-yotpo-v1-request-timeout.md +++ b/_changelog-files/2021/2021-12-03-yotpo-v1-request-timeout.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: yotpo connection-version: 1 -pull_request: "https://github.com/singer-io/tap-yotpo/pull/23" +pull-request: "https://github.com/singer-io/tap-yotpo/pull/23" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-12-06-mixpanel-v1-request-timeout.md b/_changelog-files/2021/2021-12-06-mixpanel-v1-request-timeout.md index bc1cf18df..a91e4347a 100644 --- a/_changelog-files/2021/2021-12-06-mixpanel-v1-request-timeout.md +++ b/_changelog-files/2021/2021-12-06-mixpanel-v1-request-timeout.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mixpanel connection-version: 1 -pull_request: "https://github.com/singer-io/tap-mixpanel/pull/44" +pull-request: "https://github.com/singer-io/tap-mixpanel/pull/44" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2021/2021-12-07-zendesk-v1-request-timeout.md b/_changelog-files/2021/2021-12-07-zendesk-v1-request-timeout.md index 519ce4c0a..833e5d6f9 100644 --- a/_changelog-files/2021/2021-12-07-zendesk-v1-request-timeout.md +++ b/_changelog-files/2021/2021-12-07-zendesk-v1-request-timeout.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: zendesk connection-version: 1 -pull_request: "https://github.com/singer-io/tap-zendesk/pull/79" +pull-request: "https://github.com/singer-io/tap-zendesk/pull/79" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-01-05-intercom-v1-added-missing-field-contact.md b/_changelog-files/2022/2022-01-05-intercom-v1-added-missing-field-contact.md index cfb8bf4a3..30d2ccc80 100644 --- a/_changelog-files/2022/2022-01-05-intercom-v1-added-missing-field-contact.md +++ b/_changelog-files/2022/2022-01-05-intercom-v1-added-missing-field-contact.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: intercom connection-version: 1 -pull_request: "https://github.com/singer-io/tap-intercom/pull/43" +pull-request: "https://github.com/singer-io/tap-intercom/pull/43" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-01-05-intercom-v1-fix-breaking-changes-and-bookmark.md b/_changelog-files/2022/2022-01-05-intercom-v1-fix-breaking-changes-and-bookmark.md index b90bee9a8..ba3a4b917 100644 --- a/_changelog-files/2022/2022-01-05-intercom-v1-fix-breaking-changes-and-bookmark.md +++ b/_changelog-files/2022/2022-01-05-intercom-v1-fix-breaking-changes-and-bookmark.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: intercom connection-version: 1 -pull_request: "https://github.com/singer-io/tap-intercom/pull/45" +pull-request: "https://github.com/singer-io/tap-intercom/pull/45" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-01-05-intercom-v1-improved-logger-messages.md b/_changelog-files/2022/2022-01-05-intercom-v1-improved-logger-messages.md index fae85b6b6..84ae1b857 100644 --- a/_changelog-files/2022/2022-01-05-intercom-v1-improved-logger-messages.md +++ b/_changelog-files/2022/2022-01-05-intercom-v1-improved-logger-messages.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: intercom connection-version: 1 -pull_request: "https://github.com/singer-io/tap-intercom/pull/46" +pull-request: "https://github.com/singer-io/tap-intercom/pull/46" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-01-05-intercom-v1-revert-companies-incremental.md b/_changelog-files/2022/2022-01-05-intercom-v1-revert-companies-incremental.md index c2e22bdbc..39a6ec81a 100644 --- a/_changelog-files/2022/2022-01-05-intercom-v1-revert-companies-incremental.md +++ b/_changelog-files/2022/2022-01-05-intercom-v1-revert-companies-incremental.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: intercom connection-version: 1 -pull_request: "https://github.com/singer-io/tap-intercom/pull/44" +pull-request: "https://github.com/singer-io/tap-intercom/pull/44" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-01-05-typeform-v1-request-timeout.md b/_changelog-files/2022/2022-01-05-typeform-v1-request-timeout.md index 9c96f9717..a2e06917c 100644 --- a/_changelog-files/2022/2022-01-05-typeform-v1-request-timeout.md +++ b/_changelog-files/2022/2022-01-05-typeform-v1-request-timeout.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: typeform connection-version: 1 -pull_request: "https://github.com/singer-io/tap-typeform/pull/55" +pull-request: "https://github.com/singer-io/tap-typeform/pull/55" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-01-06-google-sheets-v1-error-descriptions.md b/_changelog-files/2022/2022-01-06-google-sheets-v1-error-descriptions.md index 69be0cd73..7d9c7a4e5 100644 --- a/_changelog-files/2022/2022-01-06-google-sheets-v1-error-descriptions.md +++ b/_changelog-files/2022/2022-01-06-google-sheets-v1-error-descriptions.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: google-sheets connection-version: 1 -pull_request: "https://github.com/singer-io/tap-google-sheets/pull/59" +pull-request: "https://github.com/singer-io/tap-google-sheets/pull/59" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-01-10-linkedin-ads-v1-request-timeout.md b/_changelog-files/2022/2022-01-10-linkedin-ads-v1-request-timeout.md index 0554f6995..6081cbbf2 100644 --- a/_changelog-files/2022/2022-01-10-linkedin-ads-v1-request-timeout.md +++ b/_changelog-files/2022/2022-01-10-linkedin-ads-v1-request-timeout.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: linkedin-ads connection-version: 1 -pull_request: "https://github.com/singer-io/tap-linkedin-ads/pull/36" +pull-request: "https://github.com/singer-io/tap-linkedin-ads/pull/36" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-01-10-pendo-v1-events-date-window.md b/_changelog-files/2022/2022-01-10-pendo-v1-events-date-window.md index 6d0ecda05..19bf03de4 100644 --- a/_changelog-files/2022/2022-01-10-pendo-v1-events-date-window.md +++ b/_changelog-files/2022/2022-01-10-pendo-v1-events-date-window.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: pendo connection-version: 1 -pull_request: "https://github.com/singer-io/tap-pendo/pull/89" +pull-request: "https://github.com/singer-io/tap-pendo/pull/89" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-01-11-sftp-v1-request-timeout.md b/_changelog-files/2022/2022-01-11-sftp-v1-request-timeout.md index 1bc25a2ac..521bba587 100644 --- a/_changelog-files/2022/2022-01-11-sftp-v1-request-timeout.md +++ b/_changelog-files/2022/2022-01-11-sftp-v1-request-timeout.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: sftp connection-version: 1 -pull_request: "https://github.com/singer-io/tap-sftp/pull/36" +pull-request: "https://github.com/singer-io/tap-sftp/pull/36" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-01-13-shopify-v1-request-timeout.md b/_changelog-files/2022/2022-01-13-shopify-v1-request-timeout.md index d779de600..9883e5436 100644 --- a/_changelog-files/2022/2022-01-13-shopify-v1-request-timeout.md +++ b/_changelog-files/2022/2022-01-13-shopify-v1-request-timeout.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: shopify connection-version: 1 -pull_request: "https://github.com/singer-io/tap-shopify/pull/129" +pull-request: "https://github.com/singer-io/tap-shopify/pull/129" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-01-25-xero-v1-change-endpoint-check-access.md b/_changelog-files/2022/2022-01-25-xero-v1-change-endpoint-check-access.md index db981e59f..460e206f7 100644 --- a/_changelog-files/2022/2022-01-25-xero-v1-change-endpoint-check-access.md +++ b/_changelog-files/2022/2022-01-25-xero-v1-change-endpoint-check-access.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: xero connection-version: 1 -pull_request: "https://github.com/singer-io/tap-xero/pull/98" +pull-request: "https://github.com/singer-io/tap-xero/pull/98" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-01-28-mambu-v2-new-loan-accounts-bookmark.md b/_changelog-files/2022/2022-01-28-mambu-v2-new-loan-accounts-bookmark.md index d2f80542a..300cd2d8e 100644 --- a/_changelog-files/2022/2022-01-28-mambu-v2-new-loan-accounts-bookmark.md +++ b/_changelog-files/2022/2022-01-28-mambu-v2-new-loan-accounts-bookmark.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mambu connection-version: 2 -pull_request: "https://github.com/singer-io/tap-mambu/pull/62" +pull-request: "https://github.com/singer-io/tap-mambu/pull/62" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-02-02-bing-ads-v2-microsoft-identity-platform.md b/_changelog-files/2022/2022-02-02-bing-ads-v2-microsoft-identity-platform.md index 4904df41f..5f2cf673e 100644 --- a/_changelog-files/2022/2022-02-02-bing-ads-v2-microsoft-identity-platform.md +++ b/_changelog-files/2022/2022-02-02-bing-ads-v2-microsoft-identity-platform.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: bing-ads connection-version: 2 -pull_request: "https://github.com/singer-io/tap-bing-ads/pull/99" +pull-request: "https://github.com/singer-io/tap-bing-ads/pull/99" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-02-11-mambu-v2-journals-missing-entries.md b/_changelog-files/2022/2022-02-11-mambu-v2-journals-missing-entries.md index d23a29249..67e1bf8fd 100644 --- a/_changelog-files/2022/2022-02-11-mambu-v2-journals-missing-entries.md +++ b/_changelog-files/2022/2022-02-11-mambu-v2-journals-missing-entries.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: mambu connection-version: 2 -pull_request: "https://github.com/singer-io/tap-mambu/pull/66" +pull-request: "https://github.com/singer-io/tap-mambu/pull/66" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-02-15-jira-v2-add-request-timeout.md b/_changelog-files/2022/2022-02-15-jira-v2-add-request-timeout.md index 28ad52e50..bd036c5da 100644 --- a/_changelog-files/2022/2022-02-15-jira-v2-add-request-timeout.md +++ b/_changelog-files/2022/2022-02-15-jira-v2-add-request-timeout.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: jira connection-version: 2 -pull_request: "https://github.com/singer-io/tap-jira/pull/71" +pull-request: "https://github.com/singer-io/tap-jira/pull/71" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-02-17-stripe-v1-change-events-date-window.md b/_changelog-files/2022/2022-02-17-stripe-v1-change-events-date-window.md index 0cdc8ad83..cf92af7af 100644 --- a/_changelog-files/2022/2022-02-17-stripe-v1-change-events-date-window.md +++ b/_changelog-files/2022/2022-02-17-stripe-v1-change-events-date-window.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: stripe connection-version: 1 -pull_request: "https://github.com/singer-io/tap-stripe/pull/120" +pull-request: "https://github.com/singer-io/tap-stripe/pull/120" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-02-23-github-v1-update-team-members-pk.md b/_changelog-files/2022/2022-02-23-github-v1-update-team-members-pk.md index ef9d112fa..22db7531e 100644 --- a/_changelog-files/2022/2022-02-23-github-v1-update-team-members-pk.md +++ b/_changelog-files/2022/2022-02-23-github-v1-update-team-members-pk.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: github connection-version: 1 -pull_request: "https://github.com/singer-io/tap-github/pull/157" +pull-request: "https://github.com/singer-io/tap-github/pull/157" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-03-01-mambu-v2-misc-updates-bug-fixes.md b/_changelog-files/2022/2022-03-01-mambu-v2-misc-updates-bug-fixes.md index b67889a90..d1700c828 100644 --- a/_changelog-files/2022/2022-03-01-mambu-v2-misc-updates-bug-fixes.md +++ b/_changelog-files/2022/2022-03-01-mambu-v2-misc-updates-bug-fixes.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mambu connection-version: 2 -pull_request: "https://github.com/singer-io/tap-mambu/pull/68" +pull-request: "https://github.com/singer-io/tap-mambu/pull/68" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-03-04-activecampaign-v1-forms-transformation-error.md b/_changelog-files/2022/2022-03-04-activecampaign-v1-forms-transformation-error.md index a4aa5d05d..a526c54ad 100644 --- a/_changelog-files/2022/2022-03-04-activecampaign-v1-forms-transformation-error.md +++ b/_changelog-files/2022/2022-03-04-activecampaign-v1-forms-transformation-error.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: activecampaign connection-version: 1 -pull_request: "https://github.com/singer-io/tap-activecampaign/pull/22" +pull-request: "https://github.com/singer-io/tap-activecampaign/pull/22" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-03-04-mambu-v2-new-fields-refactoring.md b/_changelog-files/2022/2022-03-04-mambu-v2-new-fields-refactoring.md index 477f108ff..4f854e97d 100644 --- a/_changelog-files/2022/2022-03-04-mambu-v2-new-fields-refactoring.md +++ b/_changelog-files/2022/2022-03-04-mambu-v2-new-fields-refactoring.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mambu connection-version: 2 -pull_request: "https://github.com/singer-io/tap-mambu/pull/70" +pull-request: "https://github.com/singer-io/tap-mambu/pull/70" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-03-22-mambu-v2-refactor-seven-streams.md b/_changelog-files/2022/2022-03-22-mambu-v2-refactor-seven-streams.md index bfb38d32f..36dbf0608 100644 --- a/_changelog-files/2022/2022-03-22-mambu-v2-refactor-seven-streams.md +++ b/_changelog-files/2022/2022-03-22-mambu-v2-refactor-seven-streams.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mambu connection-version: 2 -pull_request: "https://github.com/singer-io/tap-mambu/pull/72" +pull-request: "https://github.com/singer-io/tap-mambu/pull/72" --- We've refactored seven more of our {{ this-connection.display_name }} (v{{ this-connection.this-version }}) integration streams. See the list below for the streams: diff --git a/_changelog-files/2022/2022-04-08-mambu-v2-refactoring-additional-fields-streams.md b/_changelog-files/2022/2022-04-08-mambu-v2-refactoring-additional-fields-streams.md index b3214ab1e..9a5a5c670 100644 --- a/_changelog-files/2022/2022-04-08-mambu-v2-refactoring-additional-fields-streams.md +++ b/_changelog-files/2022/2022-04-08-mambu-v2-refactoring-additional-fields-streams.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mambu connection-version: 2 -pull_request: "https://github.com/singer-io/tap-mambu/pull/74" +pull-request: "https://github.com/singer-io/tap-mambu/pull/74" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-04-22-google-ads-v1-table-updates-call-details.md b/_changelog-files/2022/2022-04-22-google-ads-v1-table-updates-call-details.md index 487684171..0bf0fbe7b 100644 --- a/_changelog-files/2022/2022-04-22-google-ads-v1-table-updates-call-details.md +++ b/_changelog-files/2022/2022-04-22-google-ads-v1-table-updates-call-details.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-ads connection-version: 1 -pull_request: "https://github.com/singer-io/tap-google-ads/pull/49" +pull-request: "https://github.com/singer-io/tap-google-ads/pull/49" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-04-25-google-ads-v1-labels-table.md b/_changelog-files/2022/2022-04-25-google-ads-v1-labels-table.md index 5d27209b8..595be0d8a 100644 --- a/_changelog-files/2022/2022-04-25-google-ads-v1-labels-table.md +++ b/_changelog-files/2022/2022-04-25-google-ads-v1-labels-table.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-ads connection-version: 1 -pull_request: "https://github.com/singer-io/tap-google-ads/pull/53" +pull-request: "https://github.com/singer-io/tap-google-ads/pull/53" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-04-25-pendo-v1-eu-endpoint-support.md b/_changelog-files/2022/2022-04-25-pendo-v1-eu-endpoint-support.md index f3ae8086c..44983926c 100644 --- a/_changelog-files/2022/2022-04-25-pendo-v1-eu-endpoint-support.md +++ b/_changelog-files/2022/2022-04-25-pendo-v1-eu-endpoint-support.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: pendo connection-version: 1 -pull_request: "https://github.com/singer-io/tap-pendo/pull/95" +pull-request: "https://github.com/singer-io/tap-pendo/pull/95" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-04-27-zendesk-chat-v1-add-chat-webpath-array.md b/_changelog-files/2022/2022-04-27-zendesk-chat-v1-add-chat-webpath-array.md index c4086a4bd..20acf56b3 100644 --- a/_changelog-files/2022/2022-04-27-zendesk-chat-v1-add-chat-webpath-array.md +++ b/_changelog-files/2022/2022-04-27-zendesk-chat-v1-add-chat-webpath-array.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: zendesk-chat connection-version: 1 -pull_request: "https://github.com/singer-io/tap-zendesk-chat/pull/41" +pull-request: "https://github.com/singer-io/tap-zendesk-chat/pull/41" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-04-28-pendo-v1-integer-string-types.md b/_changelog-files/2022/2022-04-28-pendo-v1-integer-string-types.md index 3558f34e1..1af231164 100644 --- a/_changelog-files/2022/2022-04-28-pendo-v1-integer-string-types.md +++ b/_changelog-files/2022/2022-04-28-pendo-v1-integer-string-types.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: pendo connection-version: 1 -pull_request: "https://github.com/singer-io/tap-pendo/pull/97" +pull-request: "https://github.com/singer-io/tap-pendo/pull/97" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-04-29-shopify-v1-fix-mismatched-schema.md b/_changelog-files/2022/2022-04-29-shopify-v1-fix-mismatched-schema.md index 4bd710d44..2a2d98106 100644 --- a/_changelog-files/2022/2022-04-29-shopify-v1-fix-mismatched-schema.md +++ b/_changelog-files/2022/2022-04-29-shopify-v1-fix-mismatched-schema.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: shopify connection-version: 1 -pull_request: "https://github.com/singer-io/tap-shopify/pull/149" +pull-request: "https://github.com/singer-io/tap-shopify/pull/149" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-05-02-closeio-v1-date-window-size.md b/_changelog-files/2022/2022-05-02-closeio-v1-date-window-size.md index 0c3acfad0..83b79f4be 100644 --- a/_changelog-files/2022/2022-05-02-closeio-v1-date-window-size.md +++ b/_changelog-files/2022/2022-05-02-closeio-v1-date-window-size.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: closeio connection-version: 1 -pull_request: "https://github.com/singer-io/tap-closeio/pull/27" +pull-request: "https://github.com/singer-io/tap-closeio/pull/27" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-05-09-google-ads-v1-implement-automatic-keys.md b/_changelog-files/2022/2022-05-09-google-ads-v1-implement-automatic-keys.md index 8657d225d..7de31e2f7 100644 --- a/_changelog-files/2022/2022-05-09-google-ads-v1-implement-automatic-keys.md +++ b/_changelog-files/2022/2022-05-09-google-ads-v1-implement-automatic-keys.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-ads connection-version: 1 -pull_request: "https://github.com/singer-io/tap-google-ads/pull/55" +pull-request: "https://github.com/singer-io/tap-google-ads/pull/55" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-05-11-google-ads-v1-new-tables-catalog.md b/_changelog-files/2022/2022-05-11-google-ads-v1-new-tables-catalog.md index a5d2322d4..1e94d2bcc 100644 --- a/_changelog-files/2022/2022-05-11-google-ads-v1-new-tables-catalog.md +++ b/_changelog-files/2022/2022-05-11-google-ads-v1-new-tables-catalog.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-ads connection-version: 1 -pull_request: "https://github.com/singer-io/tap-google-ads/pull/58" +pull-request: "https://github.com/singer-io/tap-google-ads/pull/58" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-05-17-typeform-v1-landings-incremental.md b/_changelog-files/2022/2022-05-17-typeform-v1-landings-incremental.md index 49144415c..b6f00f2b3 100644 --- a/_changelog-files/2022/2022-05-17-typeform-v1-landings-incremental.md +++ b/_changelog-files/2022/2022-05-17-typeform-v1-landings-incremental.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: typeform connection-version: 1 -pull_request: "https://github.com/singer-io/tap-typeform/pull/58" +pull-request: "https://github.com/singer-io/tap-typeform/pull/58" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-05-20-jira-v2-date-format-transformation.md b/_changelog-files/2022/2022-05-20-jira-v2-date-format-transformation.md index a6d531287..09916e04c 100644 --- a/_changelog-files/2022/2022-05-20-jira-v2-date-format-transformation.md +++ b/_changelog-files/2022/2022-05-20-jira-v2-date-format-transformation.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: jira connection-version: 2 -pull_request: "https://github.com/singer-io/tap-jira/pull/84" +pull-request: "https://github.com/singer-io/tap-jira/pull/84" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-06-01-jira-v2-updated-readme.md b/_changelog-files/2022/2022-06-01-jira-v2-updated-readme.md index e54f8034f..e84260451 100644 --- a/_changelog-files/2022/2022-06-01-jira-v2-updated-readme.md +++ b/_changelog-files/2022/2022-06-01-jira-v2-updated-readme.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: jira connection-version: 2 -pull_request: "https://github.com/singer-io/tap-jira/pull/88" +pull-request: "https://github.com/singer-io/tap-jira/pull/88" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-06-01-yotpo-v1-status-code-500.md b/_changelog-files/2022/2022-06-01-yotpo-v1-status-code-500.md index 50accacf0..0aff4bb6c 100644 --- a/_changelog-files/2022/2022-06-01-yotpo-v1-status-code-500.md +++ b/_changelog-files/2022/2022-06-01-yotpo-v1-status-code-500.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: yotpo connection-version: 1 -pull_request: "https://github.com/singer-io/tap-yotpo/pull/31" +pull-request: "https://github.com/singer-io/tap-yotpo/pull/31" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-06-15-facebook-v1-api-v13.md b/_changelog-files/2022/2022-06-15-facebook-v1-api-v13.md index 739a01bcd..5a0608ad1 100644 --- a/_changelog-files/2022/2022-06-15-facebook-v1-api-v13.md +++ b/_changelog-files/2022/2022-06-15-facebook-v1-api-v13.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: facebook-ads connection-version: 1 -pull_request: "https://github.com/singer-io/tap-facebook/pull/191" +pull-request: "https://github.com/singer-io/tap-facebook/pull/191" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-06-23-linkedin-ads-v1-access-token-configuration.md b/_changelog-files/2022/2022-06-23-linkedin-ads-v1-access-token-configuration.md index dfc7f9e27..706347dba 100644 --- a/_changelog-files/2022/2022-06-23-linkedin-ads-v1-access-token-configuration.md +++ b/_changelog-files/2022/2022-06-23-linkedin-ads-v1-access-token-configuration.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: linkedin-ads connection-version: 1 -pull_request: "https://github.com/singer-io/tap-linkedin-ads/pull/43" +pull-request: "https://github.com/singer-io/tap-linkedin-ads/pull/43" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-06-25-yotpo-v1-product-endpoint-deprecation.md b/_changelog-files/2022/2022-06-25-yotpo-v1-product-endpoint-deprecation.md index 429f0a47b..9595daa3a 100644 --- a/_changelog-files/2022/2022-06-25-yotpo-v1-product-endpoint-deprecation.md +++ b/_changelog-files/2022/2022-06-25-yotpo-v1-product-endpoint-deprecation.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: yotpo connection-version: 1 -pull_request: "https://github.com/singer-io/tap-yotpo/pull/33" +pull-request: "https://github.com/singer-io/tap-yotpo/pull/33" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-06-30-google-ads-v1-request-timeout-search.md b/_changelog-files/2022/2022-06-30-google-ads-v1-request-timeout-search.md index 620ab89b8..7f78fef3d 100644 --- a/_changelog-files/2022/2022-06-30-google-ads-v1-request-timeout-search.md +++ b/_changelog-files/2022/2022-06-30-google-ads-v1-request-timeout-search.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-ads connection-version: 1 -pull_request: "https://github.com/singer-io/tap-google-ads/pull/64" +pull-request: "https://github.com/singer-io/tap-google-ads/pull/64" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-07-01-mongodb-v2-pymongo-upgrade.md b/_changelog-files/2022/2022-07-01-mongodb-v2-pymongo-upgrade.md index 8d7206e77..5f37cbb25 100644 --- a/_changelog-files/2022/2022-07-01-mongodb-v2-pymongo-upgrade.md +++ b/_changelog-files/2022/2022-07-01-mongodb-v2-pymongo-upgrade.md @@ -6,6 +6,6 @@ entry-type: improvement entry-category: integration connection-id: mongodb connection-version: 2 -pull_request: "https://github.com/singer-io/tap-mongodb/pull/81" +pull-request: "https://github.com/singer-io/tap-mongodb/pull/81" --- We've upgraded our {{ this-connection.display_name }} (v{{ this-connection.this-version }}) database integration's PyMongo version to 3.12.3! This version supports {{ this-connection.display_name }} `2.6`, `3.0`, `3.2`, `3.4`, `3.6`, `4.0`, `4.2`, `4.4`, and `5.0`. \ No newline at end of file diff --git a/_changelog-files/2022/2022-07-05-google-ads-v1-add-configurable-limits.md b/_changelog-files/2022/2022-07-05-google-ads-v1-add-configurable-limits.md index ca6c5941e..77645c49b 100644 --- a/_changelog-files/2022/2022-07-05-google-ads-v1-add-configurable-limits.md +++ b/_changelog-files/2022/2022-07-05-google-ads-v1-add-configurable-limits.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-ads connection-version: 1 -pull_request: "https://github.com/singer-io/tap-google-ads/pull/68" +pull-request: "https://github.com/singer-io/tap-google-ads/pull/68" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-07-20-workday-raas-v1-boolean-fix.md b/_changelog-files/2022/2022-07-20-workday-raas-v1-boolean-fix.md index d1477b124..3d5dd6dac 100644 --- a/_changelog-files/2022/2022-07-20-workday-raas-v1-boolean-fix.md +++ b/_changelog-files/2022/2022-07-20-workday-raas-v1-boolean-fix.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: workday-raas connection-version: 1 -pull_request: "https://github.com/singer-io/tap-workday-raas/pull/10" +pull-request: "https://github.com/singer-io/tap-workday-raas/pull/10" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-07-25-stripe-v2-open-beta.md b/_changelog-files/2022/2022-07-25-stripe-v2-open-beta.md index 34e0a6708..0861e548c 100644 --- a/_changelog-files/2022/2022-07-25-stripe-v2-open-beta.md +++ b/_changelog-files/2022/2022-07-25-stripe-v2-open-beta.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: "stripe" connection-version: "2" -#pull_request: "https://github.com/singer-io/tap-stripe/blob/master/CHANGELOG.md" +#pull-request: "https://github.com/singer-io/tap-stripe/blob/master/CHANGELOG.md" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-07-29-new-integrations-dixa.md b/_changelog-files/2022/2022-07-29-new-integrations-dixa.md index 58118036b..941a82ffc 100644 --- a/_changelog-files/2022/2022-07-29-new-integrations-dixa.md +++ b/_changelog-files/2022/2022-07-29-new-integrations-dixa.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: "dixa" connection-version: "1" -# pull_request: "" UNCOMMENT IF THERE'S A PR +# pull-request: "" UNCOMMENT IF THERE'S A PR --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-07-29-twitter-ads-v1-resolve-connectionerror.md b/_changelog-files/2022/2022-07-29-twitter-ads-v1-resolve-connectionerror.md index 10e5f25f1..d78495407 100644 --- a/_changelog-files/2022/2022-07-29-twitter-ads-v1-resolve-connectionerror.md +++ b/_changelog-files/2022/2022-07-29-twitter-ads-v1-resolve-connectionerror.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: twitter-ads connection-version: 1 -pull_request: "https://github.com/singer-io/tap-twitter-ads/pull/32" +pull-request: "https://github.com/singer-io/tap-twitter-ads/pull/32" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-07-30-dixa-v1-expand-activity-logs.md b/_changelog-files/2022/2022-07-30-dixa-v1-expand-activity-logs.md index 64aa80317..b99cac3f7 100644 --- a/_changelog-files/2022/2022-07-30-dixa-v1-expand-activity-logs.md +++ b/_changelog-files/2022/2022-07-30-dixa-v1-expand-activity-logs.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: dixa connection-version: 1 -pull_request: "https://github.com/singer-io/tap-dixa/pull/14" +pull-request: "https://github.com/singer-io/tap-dixa/pull/14" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-08-09-pipedrive-v1-handle-new-structure-for-users-stream.md b/_changelog-files/2022/2022-08-09-pipedrive-v1-handle-new-structure-for-users-stream.md index 21d366c0b..bb6cc84a0 100644 --- a/_changelog-files/2022/2022-08-09-pipedrive-v1-handle-new-structure-for-users-stream.md +++ b/_changelog-files/2022/2022-08-09-pipedrive-v1-handle-new-structure-for-users-stream.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: pipedrive connection-version: 1 -pull_request: "https://github.com/singer-io/tap-pipedrive/pull/119" +pull-request: "https://github.com/singer-io/tap-pipedrive/pull/119" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-08-11-codat-v1-update-key-for-company-stream.md b/_changelog-files/2022/2022-08-11-codat-v1-update-key-for-company-stream.md index a47f42b9c..d61a24c01 100644 --- a/_changelog-files/2022/2022-08-11-codat-v1-update-key-for-company-stream.md +++ b/_changelog-files/2022/2022-08-11-codat-v1-update-key-for-company-stream.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: codat connection-version: 1 -pull_request: "https://github.com/singer-io/tap-codat/pull/14" +pull-request: "https://github.com/singer-io/tap-codat/pull/14" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-08-30-recharge-v2-recharge-version-bump.md b/_changelog-files/2022/2022-08-30-recharge-v2-recharge-version-bump.md index 929026af9..87057cef8 100644 --- a/_changelog-files/2022/2022-08-30-recharge-v2-recharge-version-bump.md +++ b/_changelog-files/2022/2022-08-30-recharge-v2-recharge-version-bump.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: "recharge" connection-version: "2" -#pull_request: "" +#pull-request: "" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-09-01-google-sheets-new-v2.md b/_changelog-files/2022/2022-09-01-google-sheets-new-v2.md index 73c275030..f11fc0b3b 100644 --- a/_changelog-files/2022/2022-09-01-google-sheets-new-v2.md +++ b/_changelog-files/2022/2022-09-01-google-sheets-new-v2.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: "google-sheets" connection-version: "2" -#pull_request: "" +#pull-request: "" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-09-02-pipedrive-v1-transformation-type-issues.md b/_changelog-files/2022/2022-09-02-pipedrive-v1-transformation-type-issues.md index 55079c9a6..535b74a24 100644 --- a/_changelog-files/2022/2022-09-02-pipedrive-v1-transformation-type-issues.md +++ b/_changelog-files/2022/2022-09-02-pipedrive-v1-transformation-type-issues.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: pipedrive connection-version: 1 -pull_request: "https://github.com/singer-io/tap-pipedrive/pull/120" +pull-request: "https://github.com/singer-io/tap-pipedrive/pull/120" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-09-08-closeio-v1-future-dated-bookmarks.md b/_changelog-files/2022/2022-09-08-closeio-v1-future-dated-bookmarks.md index 06f727115..c4aa32776 100644 --- a/_changelog-files/2022/2022-09-08-closeio-v1-future-dated-bookmarks.md +++ b/_changelog-files/2022/2022-09-08-closeio-v1-future-dated-bookmarks.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: closeio connection-version: 1 -pull_request: "https://github.com/singer-io/tap-closeio/pull/30" +pull-request: "https://github.com/singer-io/tap-closeio/pull/30" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-09-08-pendo-v1-default-include-anonymous-visitors.md b/_changelog-files/2022/2022-09-08-pendo-v1-default-include-anonymous-visitors.md index 9d6579418..06de69bd2 100644 --- a/_changelog-files/2022/2022-09-08-pendo-v1-default-include-anonymous-visitors.md +++ b/_changelog-files/2022/2022-09-08-pendo-v1-default-include-anonymous-visitors.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: pendo connection-version: 1 -pull_request: "https://github.com/singer-io/tap-pendo/pull/111" +pull-request: "https://github.com/singer-io/tap-pendo/pull/111" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-09-12-mambu-v2-deposit-accounts-sorting-field.md b/_changelog-files/2022/2022-09-12-mambu-v2-deposit-accounts-sorting-field.md index 1c4f84940..bde062c46 100644 --- a/_changelog-files/2022/2022-09-12-mambu-v2-deposit-accounts-sorting-field.md +++ b/_changelog-files/2022/2022-09-12-mambu-v2-deposit-accounts-sorting-field.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mambu connection-version: 2 -pull_request: "https://github.com/singer-io/tap-mambu/pull/91" +pull-request: "https://github.com/singer-io/tap-mambu/pull/91" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-09-13-hubspot-v2-deals-replication-key.md b/_changelog-files/2022/2022-09-13-hubspot-v2-deals-replication-key.md index 0f8a0aa3a..84402515d 100644 --- a/_changelog-files/2022/2022-09-13-hubspot-v2-deals-replication-key.md +++ b/_changelog-files/2022/2022-09-13-hubspot-v2-deals-replication-key.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: hubspot connection-version: 2 -pull_request: "https://github.com/singer-io/tap-hubspot/pull/195" +pull-request: "https://github.com/singer-io/tap-hubspot/pull/195" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-09-20-yotpo-v2-yotpo-version-bump.md b/_changelog-files/2022/2022-09-20-yotpo-v2-yotpo-version-bump.md index 1f7b58e9d..2c8f03aec 100644 --- a/_changelog-files/2022/2022-09-20-yotpo-v2-yotpo-version-bump.md +++ b/_changelog-files/2022/2022-09-20-yotpo-v2-yotpo-version-bump.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: "yotpo" connection-version: "2" -#pull_request: "" +#pull-request: "" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-09-22-stripe-v2-reduce-api-calls.md b/_changelog-files/2022/2022-09-22-stripe-v2-reduce-api-calls.md index 166e9b897..37c87c5cb 100644 --- a/_changelog-files/2022/2022-09-22-stripe-v2-reduce-api-calls.md +++ b/_changelog-files/2022/2022-09-22-stripe-v2-reduce-api-calls.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: stripe connection-version: 2 -pull_request: "https://github.com/singer-io/tap-stripe/pull/150" +pull-request: "https://github.com/singer-io/tap-stripe/pull/150" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-09-23-linkedin-ads-v1-check-existing-access-tokens.md b/_changelog-files/2022/2022-09-23-linkedin-ads-v1-check-existing-access-tokens.md index 7964dd94b..5e1ee4bb1 100644 --- a/_changelog-files/2022/2022-09-23-linkedin-ads-v1-check-existing-access-tokens.md +++ b/_changelog-files/2022/2022-09-23-linkedin-ads-v1-check-existing-access-tokens.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: linkedin-ads connection-version: 1 -pull_request: "https://github.com/singer-io/tap-linkedin-ads/pull/50" +pull-request: "https://github.com/singer-io/tap-linkedin-ads/pull/50" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-09-26-recharge-v2-cleanup-customer-table.md b/_changelog-files/2022/2022-09-26-recharge-v2-cleanup-customer-table.md index 4d7cdf007..84053b86d 100644 --- a/_changelog-files/2022/2022-09-26-recharge-v2-cleanup-customer-table.md +++ b/_changelog-files/2022/2022-09-26-recharge-v2-cleanup-customer-table.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: recharge connection-version: 2 -pull_request: "https://github.com/singer-io/tap-recharge/pull/39" +pull-request: "https://github.com/singer-io/tap-recharge/pull/39" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-09-27-mambu-v2-timzone-improvement.md b/_changelog-files/2022/2022-09-27-mambu-v2-timzone-improvement.md index 8fc774a8e..89d06b83d 100644 --- a/_changelog-files/2022/2022-09-27-mambu-v2-timzone-improvement.md +++ b/_changelog-files/2022/2022-09-27-mambu-v2-timzone-improvement.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mambu connection-version: 2 -pull_request: "https://github.com/singer-io/tap-mambu/pull/85" +pull-request: "https://github.com/singer-io/tap-mambu/pull/85" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-09-28-trello-v1-cards-table-configurable-parameter.md b/_changelog-files/2022/2022-09-28-trello-v1-cards-table-configurable-parameter.md index 2d32134d7..101defeb1 100644 --- a/_changelog-files/2022/2022-09-28-trello-v1-cards-table-configurable-parameter.md +++ b/_changelog-files/2022/2022-09-28-trello-v1-cards-table-configurable-parameter.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: trello connection-version: 1 -pull_request: "https://github.com/singer-io/tap-trello/pull/30" +pull-request: "https://github.com/singer-io/tap-trello/pull/30" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-09-29-github-v2.md b/_changelog-files/2022/2022-09-29-github-v2.md index 0f5ac0d06..31eec6644 100644 --- a/_changelog-files/2022/2022-09-29-github-v2.md +++ b/_changelog-files/2022/2022-09-29-github-v2.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: "github" connection-version: "2" -#pull_request: "" +#pull-request: "" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-09-29-typeform-v2.md b/_changelog-files/2022/2022-09-29-typeform-v2.md index b40ce4ec2..9eae0b669 100644 --- a/_changelog-files/2022/2022-09-29-typeform-v2.md +++ b/_changelog-files/2022/2022-09-29-typeform-v2.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: "typeform" connection-version: "2" -#pull_request: "" +#pull-request: "" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-10-07-mambu-v2-timezone-endpoint-downgrade.md b/_changelog-files/2022/2022-10-07-mambu-v2-timezone-endpoint-downgrade.md index 0e5d69830..97822236d 100644 --- a/_changelog-files/2022/2022-10-07-mambu-v2-timezone-endpoint-downgrade.md +++ b/_changelog-files/2022/2022-10-07-mambu-v2-timezone-endpoint-downgrade.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mambu connection-version: 2 -pull_request: "https://github.com/singer-io/tap-mambu/pull/96" +pull-request: "https://github.com/singer-io/tap-mambu/pull/96" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-10-20-facebook-v1-api-v14.md b/_changelog-files/2022/2022-10-20-facebook-v1-api-v14.md index 7d3f279bf..f3b52821e 100644 --- a/_changelog-files/2022/2022-10-20-facebook-v1-api-v14.md +++ b/_changelog-files/2022/2022-10-20-facebook-v1-api-v14.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: facebook-ads connection-version: 1 -pull_request: "https://github.com/singer-io/tap-facebook/pull/201" +pull-request: "https://github.com/singer-io/tap-facebook/pull/201" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-11-03-typeform-support-submitted-landings-without-answers.md b/_changelog-files/2022/2022-11-03-typeform-support-submitted-landings-without-answers.md index 75e6936cd..c564002e3 100644 --- a/_changelog-files/2022/2022-11-03-typeform-support-submitted-landings-without-answers.md +++ b/_changelog-files/2022/2022-11-03-typeform-support-submitted-landings-without-answers.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: typeform connection-version: 2 -pull_request: "https://github.com/singer-io/tap-typeform/pull/69" +pull-request: "https://github.com/singer-io/tap-typeform/pull/69" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-11-16-zendesk-chat-v1-api-fixes-new-fields.md b/_changelog-files/2022/2022-11-16-zendesk-chat-v1-api-fixes-new-fields.md index 102487a32..a2a621029 100644 --- a/_changelog-files/2022/2022-11-16-zendesk-chat-v1-api-fixes-new-fields.md +++ b/_changelog-files/2022/2022-11-16-zendesk-chat-v1-api-fixes-new-fields.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: zendesk-chat connection-version: 1 -pull_request: "https://github.com/singer-io/tap-zendesk-chat/pull/45" +pull-request: "https://github.com/singer-io/tap-zendesk-chat/pull/45" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-11-22-ga4-v1-bad-metrics-unsupported.md b/_changelog-files/2022/2022-11-22-ga4-v1-bad-metrics-unsupported.md index 460792bc8..4647e8cdd 100644 --- a/_changelog-files/2022/2022-11-22-ga4-v1-bad-metrics-unsupported.md +++ b/_changelog-files/2022/2022-11-22-ga4-v1-bad-metrics-unsupported.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-analytics-4 connection-version: -pull_request: "https://github.com/singer-io/tap-ga4/pull/28" +pull-request: "https://github.com/singer-io/tap-ga4/pull/28" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-11-30-shopify-v1-canonicalize-transactions.md b/_changelog-files/2022/2022-11-30-shopify-v1-canonicalize-transactions.md index 5be060451..92199a471 100644 --- a/_changelog-files/2022/2022-11-30-shopify-v1-canonicalize-transactions.md +++ b/_changelog-files/2022/2022-11-30-shopify-v1-canonicalize-transactions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: shopify connection-version: 1 -pull_request: "https://github.com/singer-io/tap-shopify/pull/156" +pull-request: "https://github.com/singer-io/tap-shopify/pull/156" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-12-12-dynamodb-v1-reduce-logging-frequency.md b/_changelog-files/2022/2022-12-12-dynamodb-v1-reduce-logging-frequency.md index 2b0ea333b..4018ed737 100644 --- a/_changelog-files/2022/2022-12-12-dynamodb-v1-reduce-logging-frequency.md +++ b/_changelog-files/2022/2022-12-12-dynamodb-v1-reduce-logging-frequency.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: amazon-dynamodb connection-version: 1 -pull_request: "https://github.com/singer-io/tap-dynamodb/pull/48" +pull-request: "https://github.com/singer-io/tap-dynamodb/pull/48" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-12-12-ga4-v1-new-reports.md b/_changelog-files/2022/2022-12-12-ga4-v1-new-reports.md index 32689f5a7..21edcfb7f 100644 --- a/_changelog-files/2022/2022-12-12-ga4-v1-new-reports.md +++ b/_changelog-files/2022/2022-12-12-ga4-v1-new-reports.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: google-analytics-4 connection-version: 1 -pull_request: "https://github.com/singer-io/tap-ga4/pull/31" +pull-request: "https://github.com/singer-io/tap-ga4/pull/31" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-12-13-ga4-v1-new-field-exclusions.md b/_changelog-files/2022/2022-12-13-ga4-v1-new-field-exclusions.md index b1cf81b22..f97b3f751 100644 --- a/_changelog-files/2022/2022-12-13-ga4-v1-new-field-exclusions.md +++ b/_changelog-files/2022/2022-12-13-ga4-v1-new-field-exclusions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-analytics-4 connection-version: 1 -pull_request: "https://github.com/singer-io/tap-ga4/pull/38" +pull-request: "https://github.com/singer-io/tap-ga4/pull/38" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-12-19-mssql-v1-log4j-update.md b/_changelog-files/2022/2022-12-19-mssql-v1-log4j-update.md index 16c537844..d5a9b868b 100644 --- a/_changelog-files/2022/2022-12-19-mssql-v1-log4j-update.md +++ b/_changelog-files/2022/2022-12-19-mssql-v1-log4j-update.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mssql connection-version: 1 -pull_request: "https://github.com/singer-io/tap-mssql/pull/84" +pull-request: "https://github.com/singer-io/tap-mssql/pull/84" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-12-28-shopify-v1-api-upgrade-schema-change.md b/_changelog-files/2022/2022-12-28-shopify-v1-api-upgrade-schema-change.md index c4484b0cd..a49e9c1b1 100644 --- a/_changelog-files/2022/2022-12-28-shopify-v1-api-upgrade-schema-change.md +++ b/_changelog-files/2022/2022-12-28-shopify-v1-api-upgrade-schema-change.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: shopify connection-version: 1 -pull_request: "https://github.com/singer-io/tap-shopify/pull/157" +pull-request: "https://github.com/singer-io/tap-shopify/pull/157" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2022/2022-12-30-xero-v1-orders-manual-journal.md b/_changelog-files/2022/2022-12-30-xero-v1-orders-manual-journal.md index b227b4a49..fd4d2631a 100644 --- a/_changelog-files/2022/2022-12-30-xero-v1-orders-manual-journal.md +++ b/_changelog-files/2022/2022-12-30-xero-v1-orders-manual-journal.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: xero connection-version: 1 -pull_request: "https://github.com/singer-io/tap-xero/pull/104" +pull-request: "https://github.com/singer-io/tap-xero/pull/104" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-01-09-pendo-v1-skip-do-not-process.md b/_changelog-files/2023/2023-01-09-pendo-v1-skip-do-not-process.md index b12120ac5..e30683ea4 100644 --- a/_changelog-files/2023/2023-01-09-pendo-v1-skip-do-not-process.md +++ b/_changelog-files/2023/2023-01-09-pendo-v1-skip-do-not-process.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: pendo connection-version: 1 -pull_request: "https://github.com/singer-io/tap-pendo/pull/115" +pull-request: "https://github.com/singer-io/tap-pendo/pull/115" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-01-31-ga4-v1-new-field-exclusions.md b/_changelog-files/2023/2023-01-31-ga4-v1-new-field-exclusions.md index 316853d2d..e7e96a6c3 100644 --- a/_changelog-files/2023/2023-01-31-ga4-v1-new-field-exclusions.md +++ b/_changelog-files/2023/2023-01-31-ga4-v1-new-field-exclusions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-analytics-4 connection-version: 1 -pull_request: "https://github.com/singer-io/tap-ga4/pull/39" +pull-request: "https://github.com/singer-io/tap-ga4/pull/39" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-01-31-zuora-v1-unsupported-related-objects.md b/_changelog-files/2023/2023-01-31-zuora-v1-unsupported-related-objects.md index 72f856f69..df2af7edd 100644 --- a/_changelog-files/2023/2023-01-31-zuora-v1-unsupported-related-objects.md +++ b/_changelog-files/2023/2023-01-31-zuora-v1-unsupported-related-objects.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: zuora connection-version: 1 -pull_request: "https://github.com/singer-io/tap-zuora/pull/73" +pull-request: "https://github.com/singer-io/tap-zuora/pull/73" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-02-09-new-integrations-tiktok-ads.md b/_changelog-files/2023/2023-02-09-new-integrations-tiktok-ads.md index 1f5a47226..3fd2b952c 100644 --- a/_changelog-files/2023/2023-02-09-new-integrations-tiktok-ads.md +++ b/_changelog-files/2023/2023-02-09-new-integrations-tiktok-ads.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: "tiktok-ads" connection-version: "1" -# pull_request: "" UNCOMMENT IF THERE'S A PR +# pull-request: "" UNCOMMENT IF THERE'S A PR --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-02-13-new-integrations-snapchat-ads.md b/_changelog-files/2023/2023-02-13-new-integrations-snapchat-ads.md index c01895099..2c8279bf8 100644 --- a/_changelog-files/2023/2023-02-13-new-integrations-snapchat-ads.md +++ b/_changelog-files/2023/2023-02-13-new-integrations-snapchat-ads.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: "snapchat-ads" connection-version: "1" -# pull_request: "" UNCOMMENT IF THERE'S A PR +# pull-request: "" UNCOMMENT IF THERE'S A PR --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-02-14-ga4-v1-new-field-exclusions.md b/_changelog-files/2023/2023-02-14-ga4-v1-new-field-exclusions.md index 555e313d1..56fbf89b8 100644 --- a/_changelog-files/2023/2023-02-14-ga4-v1-new-field-exclusions.md +++ b/_changelog-files/2023/2023-02-14-ga4-v1-new-field-exclusions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-analytics-4 connection-version: 1 -pull_request: "https://github.com/singer-io/tap-ga4/pull/41" +pull-request: "https://github.com/singer-io/tap-ga4/pull/41" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-02-16-helpscout-v1-new-streams.md b/_changelog-files/2023/2023-02-16-helpscout-v1-new-streams.md index 9429ef8f7..0e906d826 100644 --- a/_changelog-files/2023/2023-02-16-helpscout-v1-new-streams.md +++ b/_changelog-files/2023/2023-02-16-helpscout-v1-new-streams.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: helpscout connection-version: 1 -pull_request: "https://github.com/singer-io/tap-helpscout/pull/34" +pull-request: "https://github.com/singer-io/tap-helpscout/pull/34" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-02-16-hubspot-v2-tickets-stream.md b/_changelog-files/2023/2023-02-16-hubspot-v2-tickets-stream.md index 054b734be..b60a2da52 100644 --- a/_changelog-files/2023/2023-02-16-hubspot-v2-tickets-stream.md +++ b/_changelog-files/2023/2023-02-16-hubspot-v2-tickets-stream.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: "hubspot" connection-version: "2" -pull_request: "https://github.com/singer-io/tap-hubspot/pull/218" +pull-request: "https://github.com/singer-io/tap-hubspot/pull/218" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-02-22-doubleclick-campaign-manager-23.md b/_changelog-files/2023/2023-02-22-doubleclick-campaign-manager-23.md index 92ce0958f..c2b7dbe2d 100644 --- a/_changelog-files/2023/2023-02-22-doubleclick-campaign-manager-23.md +++ b/_changelog-files/2023/2023-02-22-doubleclick-campaign-manager-23.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: campaign-manager connection-version: 1 -pull_request: "https://github.com/singer-io/tap-doubleclick-campaign-manager/pull/23" +pull-request: "https://github.com/singer-io/tap-doubleclick-campaign-manager/pull/23" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-02-22-google-ads-v1-api-v12.md b/_changelog-files/2023/2023-02-22-google-ads-v1-api-v12.md index 71c347c2c..630ae97ad 100644 --- a/_changelog-files/2023/2023-02-22-google-ads-v1-api-v12.md +++ b/_changelog-files/2023/2023-02-22-google-ads-v1-api-v12.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-ads connection-version: 1 -pull_request: "https://github.com/singer-io/tap-google-ads/pull/76" +pull-request: "https://github.com/singer-io/tap-google-ads/pull/76" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-02-23-mambu-v4-new-version.md b/_changelog-files/2023/2023-02-23-mambu-v4-new-version.md index 5a9ec0293..76292e0cf 100644 --- a/_changelog-files/2023/2023-02-23-mambu-v4-new-version.md +++ b/_changelog-files/2023/2023-02-23-mambu-v4-new-version.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: "mambu" connection-version: "4" -pull_request: "https://github.com/singer-io/tap-mambu/pull/102" +pull-request: "https://github.com/singer-io/tap-mambu/pull/102" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-02-27-campaign-manager-v1-queued-status.md b/_changelog-files/2023/2023-02-27-campaign-manager-v1-queued-status.md index 44f9aa8e3..6c29c5447 100644 --- a/_changelog-files/2023/2023-02-27-campaign-manager-v1-queued-status.md +++ b/_changelog-files/2023/2023-02-27-campaign-manager-v1-queued-status.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: campaign-manager connection-version: 1 -pull_request: "https://github.com/singer-io/tap-doubleclick-campaign-manager/pull/27" +pull-request: "https://github.com/singer-io/tap-doubleclick-campaign-manager/pull/27" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-02-28-dynamodb-v1-empty-projections.md b/_changelog-files/2023/2023-02-28-dynamodb-v1-empty-projections.md index 0b46a86c7..99d0f3953 100644 --- a/_changelog-files/2023/2023-02-28-dynamodb-v1-empty-projections.md +++ b/_changelog-files/2023/2023-02-28-dynamodb-v1-empty-projections.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: amazon-dynamodb connection-version: 1 -pull_request: "https://github.com/singer-io/tap-dynamodb/pull/49" +pull-request: "https://github.com/singer-io/tap-dynamodb/pull/49" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-02-28-ga4-v1-new-field-exclusions.md b/_changelog-files/2023/2023-02-28-ga4-v1-new-field-exclusions.md index 53d2d90af..475017615 100644 --- a/_changelog-files/2023/2023-02-28-ga4-v1-new-field-exclusions.md +++ b/_changelog-files/2023/2023-02-28-ga4-v1-new-field-exclusions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-analytics-4 connection-version: 1 -pull_request: "https://github.com/singer-io/tap-ga4/pull/48" +pull-request: "https://github.com/singer-io/tap-ga4/pull/48" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-03-09-pipedrive-v1-retry-logic-dealsflow.md b/_changelog-files/2023/2023-03-09-pipedrive-v1-retry-logic-dealsflow.md index f073dea03..6c781357d 100644 --- a/_changelog-files/2023/2023-03-09-pipedrive-v1-retry-logic-dealsflow.md +++ b/_changelog-files/2023/2023-03-09-pipedrive-v1-retry-logic-dealsflow.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: pipedrive connection-version: 1 -pull_request: "https://github.com/singer-io/tap-pipedrive/pull/131" +pull-request: "https://github.com/singer-io/tap-pipedrive/pull/131" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-03-15-iterable-v1-beta.md b/_changelog-files/2023/2023-03-15-iterable-v1-beta.md index d85e89d79..15d4f98c0 100644 --- a/_changelog-files/2023/2023-03-15-iterable-v1-beta.md +++ b/_changelog-files/2023/2023-03-15-iterable-v1-beta.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: iterable-core connection-version: 1 -# pull_request: "" +# pull-request: "" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-03-17-yotpo-v2-deleted-reviews.md b/_changelog-files/2023/2023-03-17-yotpo-v2-deleted-reviews.md index b3371bf06..33b300218 100644 --- a/_changelog-files/2023/2023-03-17-yotpo-v2-deleted-reviews.md +++ b/_changelog-files/2023/2023-03-17-yotpo-v2-deleted-reviews.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: yotpo connection-version: 2 -pull_request: "https://github.com/singer-io/tap-yotpo/pull/55" +pull-request: "https://github.com/singer-io/tap-yotpo/pull/55" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-03-20-twilio-v1-new-fields-stream-bug-fixes.md b/_changelog-files/2023/2023-03-20-twilio-v1-new-fields-stream-bug-fixes.md index 9d9be51d7..c6aff03db 100644 --- a/_changelog-files/2023/2023-03-20-twilio-v1-new-fields-stream-bug-fixes.md +++ b/_changelog-files/2023/2023-03-20-twilio-v1-new-fields-stream-bug-fixes.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: twilio connection-version: 1 -pull_request: "https://github.com/singer-io/tap-twilio/pull/7" +pull-request: "https://github.com/singer-io/tap-twilio/pull/7" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-03-21-activecampaign-v1-field-type-update.md b/_changelog-files/2023/2023-03-21-activecampaign-v1-field-type-update.md index fedcc14e3..523590da5 100644 --- a/_changelog-files/2023/2023-03-21-activecampaign-v1-field-type-update.md +++ b/_changelog-files/2023/2023-03-21-activecampaign-v1-field-type-update.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: activecampaign connection-version: 1 -pull_request: "https://github.com/singer-io/tap-activecampaign/pull/28" +pull-request: "https://github.com/singer-io/tap-activecampaign/pull/28" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-03-21-activecampaign-v1-new-field.md b/_changelog-files/2023/2023-03-21-activecampaign-v1-new-field.md index 0c17a4535..ea535cfa3 100644 --- a/_changelog-files/2023/2023-03-21-activecampaign-v1-new-field.md +++ b/_changelog-files/2023/2023-03-21-activecampaign-v1-new-field.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: activecampaign connection-version: 1 -pull_request: "https://github.com/singer-io/tap-activecampaign/pull/26" +pull-request: "https://github.com/singer-io/tap-activecampaign/pull/26" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-03-22-linkedin-ads-v2-large-number-of-accounts.md b/_changelog-files/2023/2023-03-22-linkedin-ads-v2-large-number-of-accounts.md index e4a696a10..bdc4aec9a 100644 --- a/_changelog-files/2023/2023-03-22-linkedin-ads-v2-large-number-of-accounts.md +++ b/_changelog-files/2023/2023-03-22-linkedin-ads-v2-large-number-of-accounts.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: linkedin-ads connection-version: 2 -pull_request: "https://github.com/singer-io/tap-linkedin-ads/pull/60" +pull-request: "https://github.com/singer-io/tap-linkedin-ads/pull/60" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-03-28-pendo-v1-visitor-history.md b/_changelog-files/2023/2023-03-28-pendo-v1-visitor-history.md index 498ae7080..f2b83bb81 100644 --- a/_changelog-files/2023/2023-03-28-pendo-v1-visitor-history.md +++ b/_changelog-files/2023/2023-03-28-pendo-v1-visitor-history.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: pendo connection-version: 1 -pull_request: "https://github.com/singer-io/tap-pendo/pull/119" +pull-request: "https://github.com/singer-io/tap-pendo/pull/119" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-03-30-marketo-v2-new-field.md b/_changelog-files/2023/2023-03-30-marketo-v2-new-field.md index 803299467..0a52f6c5f 100644 --- a/_changelog-files/2023/2023-03-30-marketo-v2-new-field.md +++ b/_changelog-files/2023/2023-03-30-marketo-v2-new-field.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: marketo connection-version: 2 -pull_request: "https://github.com/singer-io/tap-marketo/pull/82" +pull-request: "https://github.com/singer-io/tap-marketo/pull/82" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-04-03-dynamodb-v1-error-handling-log-based-streams.md b/_changelog-files/2023/2023-04-03-dynamodb-v1-error-handling-log-based-streams.md index 84dd230c8..f14ef5ec4 100644 --- a/_changelog-files/2023/2023-04-03-dynamodb-v1-error-handling-log-based-streams.md +++ b/_changelog-files/2023/2023-04-03-dynamodb-v1-error-handling-log-based-streams.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: amazon-dynamodb connection-version: 1 -pull_request: "https://github.com/singer-io/tap-dynamodb/pull/50" +pull-request: "https://github.com/singer-io/tap-dynamodb/pull/50" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-04-04-google-search-console-v0-no-records-sitemap.md b/_changelog-files/2023/2023-04-04-google-search-console-v0-no-records-sitemap.md index 84fd14a00..f65453ab1 100644 --- a/_changelog-files/2023/2023-04-04-google-search-console-v0-no-records-sitemap.md +++ b/_changelog-files/2023/2023-04-04-google-search-console-v0-no-records-sitemap.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: google-search-console connection-version: 0 -pull_request: "https://github.com/singer-io/tap-google-search-console/pull/38" +pull-request: "https://github.com/singer-io/tap-google-search-console/pull/38" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-04-06-pendo-v1-type-error-accounts-stream.md b/_changelog-files/2023/2023-04-06-pendo-v1-type-error-accounts-stream.md index 3111042e7..c5a8fac1e 100644 --- a/_changelog-files/2023/2023-04-06-pendo-v1-type-error-accounts-stream.md +++ b/_changelog-files/2023/2023-04-06-pendo-v1-type-error-accounts-stream.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: pendo connection-version: 1 -pull_request: "https://github.com/singer-io/tap-pendo/pull/122" +pull-request: "https://github.com/singer-io/tap-pendo/pull/122" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-04-11-google-search-console-v1-new-search-types.md b/_changelog-files/2023/2023-04-11-google-search-console-v1-new-search-types.md index e08457dd5..f48969042 100644 --- a/_changelog-files/2023/2023-04-11-google-search-console-v1-new-search-types.md +++ b/_changelog-files/2023/2023-04-11-google-search-console-v1-new-search-types.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-search-console connection-version: 1 -pull_request: "https://github.com/singer-io/tap-google-search-console/pull/39" +pull-request: "https://github.com/singer-io/tap-google-search-console/pull/39" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-04-11-linkedin-ads-v2-api-version-update.md b/_changelog-files/2023/2023-04-11-linkedin-ads-v2-api-version-update.md index 552f4653d..442339c89 100644 --- a/_changelog-files/2023/2023-04-11-linkedin-ads-v2-api-version-update.md +++ b/_changelog-files/2023/2023-04-11-linkedin-ads-v2-api-version-update.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: linkedin-ads connection-version: 2 -pull_request: "https://github.com/singer-io/tap-linkedin-ads/pull/61" +pull-request: "https://github.com/singer-io/tap-linkedin-ads/pull/61" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-04-25-pipedrive-v1-deal-fields.md b/_changelog-files/2023/2023-04-25-pipedrive-v1-deal-fields.md index f21d5f2e3..d3ec750ec 100644 --- a/_changelog-files/2023/2023-04-25-pipedrive-v1-deal-fields.md +++ b/_changelog-files/2023/2023-04-25-pipedrive-v1-deal-fields.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: pipedrive connection-version: 1 -pull_request: "https://github.com/singer-io/tap-pipedrive/pull/134" +pull-request: "https://github.com/singer-io/tap-pipedrive/pull/134" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-04-26-hubspot-v2-bookmarking-strategy.md b/_changelog-files/2023/2023-04-26-hubspot-v2-bookmarking-strategy.md index 1e543494f..0c546326c 100644 --- a/_changelog-files/2023/2023-04-26-hubspot-v2-bookmarking-strategy.md +++ b/_changelog-files/2023/2023-04-26-hubspot-v2-bookmarking-strategy.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: hubspot connection-version: 2 -pull_request: "https://github.com/singer-io/tap-hubspot/pull/226" +pull-request: "https://github.com/singer-io/tap-hubspot/pull/226" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-04-26-typeform-v2-missing-form-id-questions.md b/_changelog-files/2023/2023-04-26-typeform-v2-missing-form-id-questions.md index 7087900e8..4c3c5b7ca 100644 --- a/_changelog-files/2023/2023-04-26-typeform-v2-missing-form-id-questions.md +++ b/_changelog-files/2023/2023-04-26-typeform-v2-missing-form-id-questions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: typeform connection-version: 2 -pull_request: "https://github.com/singer-io/tap-typeform/pull/73" +pull-request: "https://github.com/singer-io/tap-typeform/pull/73" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-04-27-ga4-v1-new-field-exclusions.md b/_changelog-files/2023/2023-04-27-ga4-v1-new-field-exclusions.md index 9df90215e..4c26c5416 100644 --- a/_changelog-files/2023/2023-04-27-ga4-v1-new-field-exclusions.md +++ b/_changelog-files/2023/2023-04-27-ga4-v1-new-field-exclusions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-analytics-4 connection-version: 1 -pull_request: "https://github.com/singer-io/tap-ga4/pull/58" +pull-request: "https://github.com/singer-io/tap-ga4/pull/58" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-04-27-google-ads-v1-api-v13.md b/_changelog-files/2023/2023-04-27-google-ads-v1-api-v13.md index 5c77a56f3..fa9ce3455 100644 --- a/_changelog-files/2023/2023-04-27-google-ads-v1-api-v13.md +++ b/_changelog-files/2023/2023-04-27-google-ads-v1-api-v13.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-ads connection-version: 1 -pull_request: "https://github.com/singer-io/tap-google-ads/pull/82" +pull-request: "https://github.com/singer-io/tap-google-ads/pull/82" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-05-09-github-v2-handle-empty-repositories.md b/_changelog-files/2023/2023-05-09-github-v2-handle-empty-repositories.md index c83593bea..7ad9886ce 100644 --- a/_changelog-files/2023/2023-05-09-github-v2-handle-empty-repositories.md +++ b/_changelog-files/2023/2023-05-09-github-v2-handle-empty-repositories.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: github connection-version: 2 -pull_request: "https://github.com/singer-io/tap-github/pull/187" +pull-request: "https://github.com/singer-io/tap-github/pull/187" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-05-10-ga4-v1-new-field-exclusions.md b/_changelog-files/2023/2023-05-10-ga4-v1-new-field-exclusions.md index 307375aa3..b4cfa69c1 100644 --- a/_changelog-files/2023/2023-05-10-ga4-v1-new-field-exclusions.md +++ b/_changelog-files/2023/2023-05-10-ga4-v1-new-field-exclusions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-analytics-4 connection-version: 1 -pull_request: "https://github.com/singer-io/tap-ga4/pull/62" +pull-request: "https://github.com/singer-io/tap-ga4/pull/62" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-05-10-shopify-v1-bookmarking-strategy.md b/_changelog-files/2023/2023-05-10-shopify-v1-bookmarking-strategy.md index 2e54c5e5e..3e05563a4 100644 --- a/_changelog-files/2023/2023-05-10-shopify-v1-bookmarking-strategy.md +++ b/_changelog-files/2023/2023-05-10-shopify-v1-bookmarking-strategy.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: shopify connection-version: 1 -pull_request: "https://github.com/singer-io/tap-shopify/pull/166" +pull-request: "https://github.com/singer-io/tap-shopify/pull/166" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-05-11-impact-v1-error-after-connection-edit.md b/_changelog-files/2023/2023-05-11-impact-v1-error-after-connection-edit.md index c4a59485d..1848845e1 100644 --- a/_changelog-files/2023/2023-05-11-impact-v1-error-after-connection-edit.md +++ b/_changelog-files/2023/2023-05-11-impact-v1-error-after-connection-edit.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: impact connection-version: 1 -pull_request: "https://github.com/singer-io/tap-impact/pull/22" +pull-request: "https://github.com/singer-io/tap-impact/pull/22" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-05-12-impact-v1-handle-empty-model-id.md b/_changelog-files/2023/2023-05-12-impact-v1-handle-empty-model-id.md index 612aa486c..4da052402 100644 --- a/_changelog-files/2023/2023-05-12-impact-v1-handle-empty-model-id.md +++ b/_changelog-files/2023/2023-05-12-impact-v1-handle-empty-model-id.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: impact connection-version: 1 -pull_request: "https://github.com/singer-io/tap-impact/pull/23" +pull-request: "https://github.com/singer-io/tap-impact/pull/23" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-05-18-ga4-v1-new-field-exclusions.md b/_changelog-files/2023/2023-05-18-ga4-v1-new-field-exclusions.md index df5012447..7e9c0d9af 100644 --- a/_changelog-files/2023/2023-05-18-ga4-v1-new-field-exclusions.md +++ b/_changelog-files/2023/2023-05-18-ga4-v1-new-field-exclusions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-analytics-4 connection-version: 1 -pull_request: "https://github.com/singer-io/tap-ga4/pull/65" +pull-request: "https://github.com/singer-io/tap-ga4/pull/65" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-05-23-shopify-v1-backoff-incompleteread-error.md b/_changelog-files/2023/2023-05-23-shopify-v1-backoff-incompleteread-error.md index ec38208b8..da2b2d851 100644 --- a/_changelog-files/2023/2023-05-23-shopify-v1-backoff-incompleteread-error.md +++ b/_changelog-files/2023/2023-05-23-shopify-v1-backoff-incompleteread-error.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: shopify connection-version: 1 -pull_request: "https://github.com/singer-io/tap-shopify/pull/144" +pull-request: "https://github.com/singer-io/tap-shopify/pull/144" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-05-25-mixpanel-v1-export-events-parameter.md b/_changelog-files/2023/2023-05-25-mixpanel-v1-export-events-parameter.md index c6771932b..5a233184a 100644 --- a/_changelog-files/2023/2023-05-25-mixpanel-v1-export-events-parameter.md +++ b/_changelog-files/2023/2023-05-25-mixpanel-v1-export-events-parameter.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: mixpanel connection-version: 1 -pull_request: "https://github.com/singer-io/tap-mixpanel/pull/56" +pull-request: "https://github.com/singer-io/tap-mixpanel/pull/56" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-05-25-zendesk-v1-increase-sync-limit-users.md b/_changelog-files/2023/2023-05-25-zendesk-v1-increase-sync-limit-users.md index 06a649b45..ce81f8544 100644 --- a/_changelog-files/2023/2023-05-25-zendesk-v1-increase-sync-limit-users.md +++ b/_changelog-files/2023/2023-05-25-zendesk-v1-increase-sync-limit-users.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: zendesk connection-version: 1 -pull_request: "https://github.com/singer-io/tap-zendesk/pull/127" +pull-request: "https://github.com/singer-io/tap-zendesk/pull/127" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-05-25-zendesk-v1-infinite-loop-users.md b/_changelog-files/2023/2023-05-25-zendesk-v1-infinite-loop-users.md index cbb74e3b9..a77e76a0c 100644 --- a/_changelog-files/2023/2023-05-25-zendesk-v1-infinite-loop-users.md +++ b/_changelog-files/2023/2023-05-25-zendesk-v1-infinite-loop-users.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: zendesk connection-version: 1 -pull_request: "https://github.com/singer-io/tap-zendesk/pull/103" +pull-request: "https://github.com/singer-io/tap-zendesk/pull/103" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-05-31-typeform-v2-tags-property.md b/_changelog-files/2023/2023-05-31-typeform-v2-tags-property.md index f7232486f..6b8334b43 100644 --- a/_changelog-files/2023/2023-05-31-typeform-v2-tags-property.md +++ b/_changelog-files/2023/2023-05-31-typeform-v2-tags-property.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: typeform connection-version: 2 -pull_request: "https://github.com/singer-io/tap-typeform/pull/75" +pull-request: "https://github.com/singer-io/tap-typeform/pull/75" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-06-05-zendesk-v2-backoff.md b/_changelog-files/2023/2023-06-05-zendesk-v2-backoff.md index 40aa5d45c..63d13ed37 100644 --- a/_changelog-files/2023/2023-06-05-zendesk-v2-backoff.md +++ b/_changelog-files/2023/2023-06-05-zendesk-v2-backoff.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: zendesk connection-version: 2 -pull_request: "https://github.com/singer-io/tap-zendesk/pull/131" +pull-request: "https://github.com/singer-io/tap-zendesk/pull/131" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-06-07-pipedrive-v1-backoff.md b/_changelog-files/2023/2023-06-07-pipedrive-v1-backoff.md index ed7c23585..64f90d996 100644 --- a/_changelog-files/2023/2023-06-07-pipedrive-v1-backoff.md +++ b/_changelog-files/2023/2023-06-07-pipedrive-v1-backoff.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: pipedrive connection-version: 1 -pull_request: "https://github.com/singer-io/tap-pipedrive/pull/115" +pull-request: "https://github.com/singer-io/tap-pipedrive/pull/115" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-06-08-mailchimp-v1-date-window.md b/_changelog-files/2023/2023-06-08-mailchimp-v1-date-window.md index 8ea11114e..01c59aba9 100644 --- a/_changelog-files/2023/2023-06-08-mailchimp-v1-date-window.md +++ b/_changelog-files/2023/2023-06-08-mailchimp-v1-date-window.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mailchimp connection-version: -pull_request: "https://github.com/singer-io/tap-mailchimp/pull/61" +pull-request: "https://github.com/singer-io/tap-mailchimp/pull/61" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-06-08-tiktok-ads-v0-backoff.md b/_changelog-files/2023/2023-06-08-tiktok-ads-v0-backoff.md index f4c586c71..e28c1fae5 100644 --- a/_changelog-files/2023/2023-06-08-tiktok-ads-v0-backoff.md +++ b/_changelog-files/2023/2023-06-08-tiktok-ads-v0-backoff.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: tiktok-ads connection-version: 0 -pull_request: "https://github.com/singer-io/tap-tiktok-ads/pull/21" +pull-request: "https://github.com/singer-io/tap-tiktok-ads/pull/21" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-06-14-zendesk-v2-new-streams.md b/_changelog-files/2023/2023-06-14-zendesk-v2-new-streams.md index 6cdb750dc..d3185027f 100644 --- a/_changelog-files/2023/2023-06-14-zendesk-v2-new-streams.md +++ b/_changelog-files/2023/2023-06-14-zendesk-v2-new-streams.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: zendesk connection-version: 2 -pull_request: "https://github.com/singer-io/tap-zendesk/pull/111" +pull-request: "https://github.com/singer-io/tap-zendesk/pull/111" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-06-20-shopify-v1-backoff.md b/_changelog-files/2023/2023-06-20-shopify-v1-backoff.md index 8d72b0ea7..ddc9e3a7d 100644 --- a/_changelog-files/2023/2023-06-20-shopify-v1-backoff.md +++ b/_changelog-files/2023/2023-06-20-shopify-v1-backoff.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: shopify connection-version: 1 -pull_request: "https://github.com/singer-io/tap-shopify/pull/169" +pull-request: "https://github.com/singer-io/tap-shopify/pull/169" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-06-22-tiktok-ads-v0-sync-from-start-date.md b/_changelog-files/2023/2023-06-22-tiktok-ads-v0-sync-from-start-date.md index fc920ad83..d21d6a012 100644 --- a/_changelog-files/2023/2023-06-22-tiktok-ads-v0-sync-from-start-date.md +++ b/_changelog-files/2023/2023-06-22-tiktok-ads-v0-sync-from-start-date.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: tiktok-ads connection-version: 0 -pull_request: "https://github.com/singer-io/tap-tiktok-ads/pull/22" +pull-request: "https://github.com/singer-io/tap-tiktok-ads/pull/22" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-07-05-ga4-v1-new-field-exclusions.md b/_changelog-files/2023/2023-07-05-ga4-v1-new-field-exclusions.md index e816de9e2..fd88b36aa 100644 --- a/_changelog-files/2023/2023-07-05-ga4-v1-new-field-exclusions.md +++ b/_changelog-files/2023/2023-07-05-ga4-v1-new-field-exclusions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-analytics-4 connection-version: 1 -pull_request: "https://github.com/singer-io/tap-ga4/pull/67" +pull-request: "https://github.com/singer-io/tap-ga4/pull/67" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-07-17-chargify-v1-subscriptions-schema-update.md b/_changelog-files/2023/2023-07-17-chargify-v1-subscriptions-schema-update.md index 4acc76d45..a090f4b6d 100644 --- a/_changelog-files/2023/2023-07-17-chargify-v1-subscriptions-schema-update.md +++ b/_changelog-files/2023/2023-07-17-chargify-v1-subscriptions-schema-update.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: chargify connection-version: 1 -pull_request: "https://github.com/singer-io/tap-chargify/pull/49" +pull-request: "https://github.com/singer-io/tap-chargify/pull/49" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-07-18-mailchimp-v1-update-email-activity-date-window-validation.md b/_changelog-files/2023/2023-07-18-mailchimp-v1-update-email-activity-date-window-validation.md index fdc45eb3a..b4ad72ae1 100644 --- a/_changelog-files/2023/2023-07-18-mailchimp-v1-update-email-activity-date-window-validation.md +++ b/_changelog-files/2023/2023-07-18-mailchimp-v1-update-email-activity-date-window-validation.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: mailchimp connection-version: 1 -pull_request: "https://github.com/singer-io/tap-mailchimp/pull/62" +pull-request: "https://github.com/singer-io/tap-mailchimp/pull/62" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-07-20-shopify-v1-retries-for-404-error.md b/_changelog-files/2023/2023-07-20-shopify-v1-retries-for-404-error.md index 8791947c7..6196c412b 100644 --- a/_changelog-files/2023/2023-07-20-shopify-v1-retries-for-404-error.md +++ b/_changelog-files/2023/2023-07-20-shopify-v1-retries-for-404-error.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: shopify connection-version: 1 -pull_request: "https://github.com/singer-io/tap-shopify/pull/159" +pull-request: "https://github.com/singer-io/tap-shopify/pull/159" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-07-20-square-v2.md b/_changelog-files/2023/2023-07-20-square-v2.md index 4e5c42e56..a2f5b4bd1 100644 --- a/_changelog-files/2023/2023-07-20-square-v2.md +++ b/_changelog-files/2023/2023-07-20-square-v2.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: square connection-version: 2 -pull_request: "https://github.com/singer-io/tap-square/pull/111" +pull-request: "https://github.com/singer-io/tap-square/pull/111" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-07-27-mongodb-v3.md b/_changelog-files/2023/2023-07-27-mongodb-v3.md index fdcdb190f..856bd189e 100644 --- a/_changelog-files/2023/2023-07-27-mongodb-v3.md +++ b/_changelog-files/2023/2023-07-27-mongodb-v3.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: mongodb connection-version: 3 -pull_request: "https://github.com/singer-io/tap-mongodb/pull/81" +pull-request: "https://github.com/singer-io/tap-mongodb/pull/81" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-07-27-pendo-v1-multiple-apps-support.md b/_changelog-files/2023/2023-07-27-pendo-v1-multiple-apps-support.md index bc43d81cc..faccc5dc8 100644 --- a/_changelog-files/2023/2023-07-27-pendo-v1-multiple-apps-support.md +++ b/_changelog-files/2023/2023-07-27-pendo-v1-multiple-apps-support.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: pendo connection-version: 1 -pull_request: "https://github.com/singer-io/tap-pendo/pull/94" +pull-request: "https://github.com/singer-io/tap-pendo/pull/94" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-07-27-pendo-v1-primary-key-changes.md b/_changelog-files/2023/2023-07-27-pendo-v1-primary-key-changes.md index 4f8063c57..785c5da6c 100644 --- a/_changelog-files/2023/2023-07-27-pendo-v1-primary-key-changes.md +++ b/_changelog-files/2023/2023-07-27-pendo-v1-primary-key-changes.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: pendo connection-version: 1 -pull_request: "https://github.com/singer-io/tap-pendo/pull/88" +pull-request: "https://github.com/singer-io/tap-pendo/pull/88" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-08-02-mixpanel-v1-retries-ChunkedEncodingError.md b/_changelog-files/2023/2023-08-02-mixpanel-v1-retries-ChunkedEncodingError.md index daa39c8bb..9a3467135 100644 --- a/_changelog-files/2023/2023-08-02-mixpanel-v1-retries-ChunkedEncodingError.md +++ b/_changelog-files/2023/2023-08-02-mixpanel-v1-retries-ChunkedEncodingError.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: mixpanel connection-version: 1 -pull_request: "https://github.com/singer-io/tap-mixpanel/pull/61" +pull-request: "https://github.com/singer-io/tap-mixpanel/pull/61" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-08-02-pendo-max-record-limit.md b/_changelog-files/2023/2023-08-02-pendo-max-record-limit.md index 77e945c6f..f3416a142 100644 --- a/_changelog-files/2023/2023-08-02-pendo-max-record-limit.md +++ b/_changelog-files/2023/2023-08-02-pendo-max-record-limit.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: pendo connection-version: 1 -pull_request: "https://github.com/singer-io/tap-pendo/pull/126" +pull-request: "https://github.com/singer-io/tap-pendo/pull/126" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-08-03-tiktok-ads-v1.md b/_changelog-files/2023/2023-08-03-tiktok-ads-v1.md index 0c693f220..9899b4356 100644 --- a/_changelog-files/2023/2023-08-03-tiktok-ads-v1.md +++ b/_changelog-files/2023/2023-08-03-tiktok-ads-v1.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: tiktok-ads connection-version: 1 -pull_request: "https://github.com/singer-io/tap-tiktok-ads/pull/24" +pull-request: "https://github.com/singer-io/tap-tiktok-ads/pull/24" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-08-09-square-v2-payouts-stream.md b/_changelog-files/2023/2023-08-09-square-v2-payouts-stream.md index 1ee18cbc4..537788ba2 100644 --- a/_changelog-files/2023/2023-08-09-square-v2-payouts-stream.md +++ b/_changelog-files/2023/2023-08-09-square-v2-payouts-stream.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: square connection-version: 2 -pull_request: "https://github.com/singer-io/tap-square/pull/109" +pull-request: "https://github.com/singer-io/tap-square/pull/109" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-08-14-ga4-v1-e-commerce-reports-fields.md b/_changelog-files/2023/2023-08-14-ga4-v1-e-commerce-reports-fields.md index 4e3afeaec..1bafea1ba 100644 --- a/_changelog-files/2023/2023-08-14-ga4-v1-e-commerce-reports-fields.md +++ b/_changelog-files/2023/2023-08-14-ga4-v1-e-commerce-reports-fields.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: google-analytics-4 connection-version: 1 -pull_request: "https://github.com/singer-io/tap-ga4/pull/71" +pull-request: "https://github.com/singer-io/tap-ga4/pull/71" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-08-14-intacct-v1-match-input-filenames.md b/_changelog-files/2023/2023-08-14-intacct-v1-match-input-filenames.md index 0afed2d2e..0bd4d8a24 100644 --- a/_changelog-files/2023/2023-08-14-intacct-v1-match-input-filenames.md +++ b/_changelog-files/2023/2023-08-14-intacct-v1-match-input-filenames.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: intaact connection-version: 1 -pull_request: "https://github.com/singer-io/tap-intacct/pull/11" +pull-request: "https://github.com/singer-io/tap-intacct/pull/11" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-08-14-salesforce-v2.md b/_changelog-files/2023/2023-08-14-salesforce-v2.md index d314cf01a..669c999f7 100644 --- a/_changelog-files/2023/2023-08-14-salesforce-v2.md +++ b/_changelog-files/2023/2023-08-14-salesforce-v2.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: salesforce connection-version: 2 -pull_request: "https://github.com/singer-io/tap-salesforce/pull/163" +pull-request: "https://github.com/singer-io/tap-salesforce/pull/163" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-08-16-facebook-v1-conversion-fields-insights-streams.md b/_changelog-files/2023/2023-08-16-facebook-v1-conversion-fields-insights-streams.md index b8d3f58a3..b853aa34e 100644 --- a/_changelog-files/2023/2023-08-16-facebook-v1-conversion-fields-insights-streams.md +++ b/_changelog-files/2023/2023-08-16-facebook-v1-conversion-fields-insights-streams.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: facebook-ads connection-version: 1 -pull_request: "https://github.com/singer-io/tap-facebook/pull/204" +pull-request: "https://github.com/singer-io/tap-facebook/pull/204" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-08-18-ga4-v1-new-field-exclusions.md b/_changelog-files/2023/2023-08-18-ga4-v1-new-field-exclusions.md index 9059d5a2b..e45db6346 100644 --- a/_changelog-files/2023/2023-08-18-ga4-v1-new-field-exclusions.md +++ b/_changelog-files/2023/2023-08-18-ga4-v1-new-field-exclusions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-analytics-4 connection-version: 1 -pull_request: "https://github.com/singer-io/tap-ga4/pull/75" +pull-request: "https://github.com/singer-io/tap-ga4/pull/75" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-08-29-stripe-v3.md b/_changelog-files/2023/2023-08-29-stripe-v3.md index cb985d6c9..0792932d8 100644 --- a/_changelog-files/2023/2023-08-29-stripe-v3.md +++ b/_changelog-files/2023/2023-08-29-stripe-v3.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: stripe connection-version: 3 -pull_request: "https://github.com/singer-io/tap-stripe/pull/181" +pull-request: "https://github.com/singer-io/tap-stripe/pull/181" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-08-31-ga4-v1-new-field-exclusions.md b/_changelog-files/2023/2023-08-31-ga4-v1-new-field-exclusions.md index dd5b8ce91..264f7ca3f 100644 --- a/_changelog-files/2023/2023-08-31-ga4-v1-new-field-exclusions.md +++ b/_changelog-files/2023/2023-08-31-ga4-v1-new-field-exclusions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-analytics-4 connection-version: 1 -pull_request: "https://github.com/singer-io/tap-ga4/pull/77" +pull-request: "https://github.com/singer-io/tap-ga4/pull/77" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-09-06-outreach-v1-request-timeout.md b/_changelog-files/2023/2023-09-06-outreach-v1-request-timeout.md index e2eb16d35..cfc9cbecf 100644 --- a/_changelog-files/2023/2023-09-06-outreach-v1-request-timeout.md +++ b/_changelog-files/2023/2023-09-06-outreach-v1-request-timeout.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: outreach connection-version: 1 -pull_request: "https://github.com/singer-io/tap-outreach/pull/30" +pull-request: "https://github.com/singer-io/tap-outreach/pull/30" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-09-12-github-v2-remove-files-stats-fields.md b/_changelog-files/2023/2023-09-12-github-v2-remove-files-stats-fields.md index 2e7bb914d..bc6aa08df 100644 --- a/_changelog-files/2023/2023-09-12-github-v2-remove-files-stats-fields.md +++ b/_changelog-files/2023/2023-09-12-github-v2-remove-files-stats-fields.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: github connection-version: 2 -pull_request: "https://github.com/singer-io/tap-github/pull/198" +pull-request: "https://github.com/singer-io/tap-github/pull/198" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-09-13-facebook-v1-retry-error-503.md b/_changelog-files/2023/2023-09-13-facebook-v1-retry-error-503.md index e70dbaf89..7c0d22a8c 100644 --- a/_changelog-files/2023/2023-09-13-facebook-v1-retry-error-503.md +++ b/_changelog-files/2023/2023-09-13-facebook-v1-retry-error-503.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: facebook-ads connection-version: 1 -pull_request: "https://github.com/singer-io/tap-facebook/pull/226" +pull-request: "https://github.com/singer-io/tap-facebook/pull/226" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-09-14-kustomer-v1-new-fields.md b/_changelog-files/2023/2023-09-14-kustomer-v1-new-fields.md index f433c1b17..fdcfdc289 100644 --- a/_changelog-files/2023/2023-09-14-kustomer-v1-new-fields.md +++ b/_changelog-files/2023/2023-09-14-kustomer-v1-new-fields.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: kustomer connection-version: 1 -pull_request: "https://github.com/singer-io/tap-kustomer/pull/26" +pull-request: "https://github.com/singer-io/tap-kustomer/pull/26" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-09-21-marketo-v2-validation-error.md b/_changelog-files/2023/2023-09-21-marketo-v2-validation-error.md index 58234ebe3..856f079f1 100644 --- a/_changelog-files/2023/2023-09-21-marketo-v2-validation-error.md +++ b/_changelog-files/2023/2023-09-21-marketo-v2-validation-error.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: marketo connection-version: 2 -pull_request: "https://github.com/singer-io/tap-marketo/pull/84" +pull-request: "https://github.com/singer-io/tap-marketo/pull/84" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-09-28-looker-v1-api-upgrade.md b/_changelog-files/2023/2023-09-28-looker-v1-api-upgrade.md index 17bec464a..fd782e978 100644 --- a/_changelog-files/2023/2023-09-28-looker-v1-api-upgrade.md +++ b/_changelog-files/2023/2023-09-28-looker-v1-api-upgrade.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: looker connection-version: 1 -pull_request: "https://github.com/singer-io/tap-looker/pull/13" +pull-request: "https://github.com/singer-io/tap-looker/pull/13" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-10-03-surveymonkey-v2.md b/_changelog-files/2023/2023-10-03-surveymonkey-v2.md index 93cc9fbd2..b40a79145 100644 --- a/_changelog-files/2023/2023-10-03-surveymonkey-v2.md +++ b/_changelog-files/2023/2023-10-03-surveymonkey-v2.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: surveymonkey connection-version: 2 -pull_request: "https://github.com/singer-io/tap-surveymonkey/pull/27" +pull-request: "https://github.com/singer-io/tap-surveymonkey/pull/27" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-10-05-mongodb-v3-ssl-issue.md b/_changelog-files/2023/2023-10-05-mongodb-v3-ssl-issue.md index edda8deee..e407f8351 100644 --- a/_changelog-files/2023/2023-10-05-mongodb-v3-ssl-issue.md +++ b/_changelog-files/2023/2023-10-05-mongodb-v3-ssl-issue.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: mongodb connection-version: 3 -pull_request: "https://github.com/singer-io/tap-mongodb/pull/107" +pull-request: "https://github.com/singer-io/tap-mongodb/pull/107" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-10-10-outreach-v1-attribute-fix.md b/_changelog-files/2023/2023-10-10-outreach-v1-attribute-fix.md index ebbf62a3b..12d0394ed 100644 --- a/_changelog-files/2023/2023-10-10-outreach-v1-attribute-fix.md +++ b/_changelog-files/2023/2023-10-10-outreach-v1-attribute-fix.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: outreach connection-version: 1 -pull_request: "https://github.com/singer-io/tap-outreach/pull/32" +pull-request: "https://github.com/singer-io/tap-outreach/pull/32" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-10-31-chargebee-v1-add-customer-fields.md b/_changelog-files/2023/2023-10-31-chargebee-v1-add-customer-fields.md index 20a6447c0..e27038793 100644 --- a/_changelog-files/2023/2023-10-31-chargebee-v1-add-customer-fields.md +++ b/_changelog-files/2023/2023-10-31-chargebee-v1-add-customer-fields.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: chargebee connection-version: 1 -pull_request: "https://github.com/singer-io/tap-chargebee/pull/100" +pull-request: "https://github.com/singer-io/tap-chargebee/pull/100" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-10-31-chargebee-v1-tax-rate-field-type.md b/_changelog-files/2023/2023-10-31-chargebee-v1-tax-rate-field-type.md index 1cbf0df27..f99d23db2 100644 --- a/_changelog-files/2023/2023-10-31-chargebee-v1-tax-rate-field-type.md +++ b/_changelog-files/2023/2023-10-31-chargebee-v1-tax-rate-field-type.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: chargebee connection-version: 1 -pull_request: "https://github.com/singer-io/tap-chargebee/pull/102" +pull-request: "https://github.com/singer-io/tap-chargebee/pull/102" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-11-06-intercom-v2-retry-json-decode.md b/_changelog-files/2023/2023-11-06-intercom-v2-retry-json-decode.md index 8e8030b18..b32226f3d 100644 --- a/_changelog-files/2023/2023-11-06-intercom-v2-retry-json-decode.md +++ b/_changelog-files/2023/2023-11-06-intercom-v2-retry-json-decode.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: intercom connection-version: 2 -pull_request: "https://github.com/singer-io/tap-intercom/pull/66" +pull-request: "https://github.com/singer-io/tap-intercom/pull/66" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-11-07-ga4-v1-new-field-exclusions.md b/_changelog-files/2023/2023-11-07-ga4-v1-new-field-exclusions.md index 872313a1f..5b1594c03 100644 --- a/_changelog-files/2023/2023-11-07-ga4-v1-new-field-exclusions.md +++ b/_changelog-files/2023/2023-11-07-ga4-v1-new-field-exclusions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-analytics-4 connection-version: 1 -pull_request: "https://github.com/singer-io/tap-ga4/pull/92" +pull-request: "https://github.com/singer-io/tap-ga4/pull/92" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-11-15-snapchat-ads-v1-datetime-conversion-issue.md b/_changelog-files/2023/2023-11-15-snapchat-ads-v1-datetime-conversion-issue.md index 3858342ab..95285dfd8 100644 --- a/_changelog-files/2023/2023-11-15-snapchat-ads-v1-datetime-conversion-issue.md +++ b/_changelog-files/2023/2023-11-15-snapchat-ads-v1-datetime-conversion-issue.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: snapchat-ads connection-version: 1 -pull_request: "https://github.com/singer-io/tap-snapchat-ads/pull/28" +pull-request: "https://github.com/singer-io/tap-snapchat-ads/pull/28" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-11-29-front-v2.md b/_changelog-files/2023/2023-11-29-front-v2.md index 1b4d0a0ad..9f797e798 100644 --- a/_changelog-files/2023/2023-11-29-front-v2.md +++ b/_changelog-files/2023/2023-11-29-front-v2.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: frontapp connection-version: 2 -pull_request: "" +pull-request: "" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-12-12-hubspot-v2-custom-objects.md b/_changelog-files/2023/2023-12-12-hubspot-v2-custom-objects.md index 66c128d95..e4d60463a 100644 --- a/_changelog-files/2023/2023-12-12-hubspot-v2-custom-objects.md +++ b/_changelog-files/2023/2023-12-12-hubspot-v2-custom-objects.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: hubspot connection-version: 2 -pull_request: "https://github.com/singer-io/tap-hubspot/pull/242" +pull-request: "https://github.com/singer-io/tap-hubspot/pull/242" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-12-13-google-ads-v1-api-upgrade.md b/_changelog-files/2023/2023-12-13-google-ads-v1-api-upgrade.md index dbe8f6c00..61d8550de 100644 --- a/_changelog-files/2023/2023-12-13-google-ads-v1-api-upgrade.md +++ b/_changelog-files/2023/2023-12-13-google-ads-v1-api-upgrade.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-ads connection-version: 1 -pull_request: "https://github.com/singer-io/tap-google-ads/pull/86" +pull-request: "https://github.com/singer-io/tap-google-ads/pull/86" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-12-13-surveymonkey-v2-heading-simplified_responses.md b/_changelog-files/2023/2023-12-13-surveymonkey-v2-heading-simplified_responses.md index fa830b6bc..ba7bc8cc5 100644 --- a/_changelog-files/2023/2023-12-13-surveymonkey-v2-heading-simplified_responses.md +++ b/_changelog-files/2023/2023-12-13-surveymonkey-v2-heading-simplified_responses.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: surveymonkey connection-version: 2 -pull_request: "https://github.com/singer-io/tap-surveymonkey/pull/29" +pull-request: "https://github.com/singer-io/tap-surveymonkey/pull/29" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-12-15-recharge-v2-retry-chunkedencodingerror.md b/_changelog-files/2023/2023-12-15-recharge-v2-retry-chunkedencodingerror.md index edbaa4bd6..50d833797 100644 --- a/_changelog-files/2023/2023-12-15-recharge-v2-retry-chunkedencodingerror.md +++ b/_changelog-files/2023/2023-12-15-recharge-v2-retry-chunkedencodingerror.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: recharge connection-version: 2 -pull_request: "https://github.com/singer-io/tap-recharge/pull/42" +pull-request: "https://github.com/singer-io/tap-recharge/pull/42" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2023/2023-12-18-asana-v2-new-substasks-table.md b/_changelog-files/2023/2023-12-18-asana-v2-new-substasks-table.md index 5f856fb4d..379c6c1b8 100644 --- a/_changelog-files/2023/2023-12-18-asana-v2-new-substasks-table.md +++ b/_changelog-files/2023/2023-12-18-asana-v2-new-substasks-table.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: asana connection-version: 2 -pull_request: "https://github.com/singer-io/tap-asana/pull/56" +pull-request: "https://github.com/singer-io/tap-asana/pull/56" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-01-10-ga4-v1-new-field-exclusions.md b/_changelog-files/2024/2024-01-10-ga4-v1-new-field-exclusions.md index 221f3bb49..75be9df5d 100644 --- a/_changelog-files/2024/2024-01-10-ga4-v1-new-field-exclusions.md +++ b/_changelog-files/2024/2024-01-10-ga4-v1-new-field-exclusions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-analytics-4 connection-version: 1 -pull_request: "https://github.com/singer-io/tap-ga4/pull/97" +pull-request: "https://github.com/singer-io/tap-ga4/pull/97" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-01-11-mongodb-v3-session-timeout.md b/_changelog-files/2024/2024-01-11-mongodb-v3-session-timeout.md index 3fdf1d673..12fcb8734 100644 --- a/_changelog-files/2024/2024-01-11-mongodb-v3-session-timeout.md +++ b/_changelog-files/2024/2024-01-11-mongodb-v3-session-timeout.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: mongodb connection-version: 3 -pull_request: "https://github.com/singer-io/tap-mongodb/pull/110" +pull-request: "https://github.com/singer-io/tap-mongodb/pull/110" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-01-16-mambu-v4-none-value-support.md b/_changelog-files/2024/2024-01-16-mambu-v4-none-value-support.md index ca1bd2e6a..8e2f475e1 100644 --- a/_changelog-files/2024/2024-01-16-mambu-v4-none-value-support.md +++ b/_changelog-files/2024/2024-01-16-mambu-v4-none-value-support.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mambu connection-version: 4 -pull_request: "https://github.com/singer-io/tap-mambu/pull/109" +pull-request: "https://github.com/singer-io/tap-mambu/pull/109" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-01-23-hubspot-v2-contact-company-fix.md b/_changelog-files/2024/2024-01-23-hubspot-v2-contact-company-fix.md index 42a034d74..be80aaaea 100644 --- a/_changelog-files/2024/2024-01-23-hubspot-v2-contact-company-fix.md +++ b/_changelog-files/2024/2024-01-23-hubspot-v2-contact-company-fix.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: hubspot connection-version: 2 -pull_request: "https://github.com/singer-io/tap-hubspot/pull/250" +pull-request: "https://github.com/singer-io/tap-hubspot/pull/250" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-01-23-mambu-v2-none-support.md b/_changelog-files/2024/2024-01-23-mambu-v2-none-support.md index 5fbcbbf6f..0e9deb99d 100644 --- a/_changelog-files/2024/2024-01-23-mambu-v2-none-support.md +++ b/_changelog-files/2024/2024-01-23-mambu-v2-none-support.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mambu connection-version: 4 -pull_request: "https://github.com/singer-io/tap-mambu/pull/110" +pull-request: "https://github.com/singer-io/tap-mambu/pull/110" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-01-25-ga4-v1-new-field-exclusions.md b/_changelog-files/2024/2024-01-25-ga4-v1-new-field-exclusions.md index 4ef0d7e96..0e611832e 100644 --- a/_changelog-files/2024/2024-01-25-ga4-v1-new-field-exclusions.md +++ b/_changelog-files/2024/2024-01-25-ga4-v1-new-field-exclusions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-analytics-4 connection-version: 1 -pull_request: "https://github.com/singer-io/tap-ga4/pull/100" +pull-request: "https://github.com/singer-io/tap-ga4/pull/100" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-01-25-recharge-v2-improvement-api-calls.md b/_changelog-files/2024/2024-01-25-recharge-v2-improvement-api-calls.md index 3f9b63121..b7190cd48 100644 --- a/_changelog-files/2024/2024-01-25-recharge-v2-improvement-api-calls.md +++ b/_changelog-files/2024/2024-01-25-recharge-v2-improvement-api-calls.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: recharge connection-version: 2 -pull_request: "https://github.com/singer-io/tap-recharge/pull/43" +pull-request: "https://github.com/singer-io/tap-recharge/pull/43" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-02-07-amazon-s3-csv-v1-missing-type-info-json-schema.md b/_changelog-files/2024/2024-02-07-amazon-s3-csv-v1-missing-type-info-json-schema.md index c4f5f82ab..668bd1c32 100644 --- a/_changelog-files/2024/2024-02-07-amazon-s3-csv-v1-missing-type-info-json-schema.md +++ b/_changelog-files/2024/2024-02-07-amazon-s3-csv-v1-missing-type-info-json-schema.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: amazon-s3-csv connection-version: 1 -pull_request: "https://github.com/singer-io/tap-s3-csv/pull/62" +pull-request: "https://github.com/singer-io/tap-s3-csv/pull/62" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-02-14-mongodb-v3-server-not-supporting-sessions.md b/_changelog-files/2024/2024-02-14-mongodb-v3-server-not-supporting-sessions.md index dabbe92b3..a76c4bccd 100644 --- a/_changelog-files/2024/2024-02-14-mongodb-v3-server-not-supporting-sessions.md +++ b/_changelog-files/2024/2024-02-14-mongodb-v3-server-not-supporting-sessions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mongodb connection-version: 3 -pull_request: "https://github.com/singer-io/tap-mongodb/pull/112" +pull-request: "https://github.com/singer-io/tap-mongodb/pull/112" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-02-20-mambu-v4-update-table-full-table.md b/_changelog-files/2024/2024-02-20-mambu-v4-update-table-full-table.md index adf313b96..00be385b4 100644 --- a/_changelog-files/2024/2024-02-20-mambu-v4-update-table-full-table.md +++ b/_changelog-files/2024/2024-02-20-mambu-v4-update-table-full-table.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mambu connection-version: 4 -pull_request: "https://github.com/singer-io/tap-mambu/pull/111" +pull-request: "https://github.com/singer-io/tap-mambu/pull/111" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-02-29-shopify-v1-api-upgrade-schema-change.md b/_changelog-files/2024/2024-02-29-shopify-v1-api-upgrade-schema-change.md index 118e98670..34538b0e5 100644 --- a/_changelog-files/2024/2024-02-29-shopify-v1-api-upgrade-schema-change.md +++ b/_changelog-files/2024/2024-02-29-shopify-v1-api-upgrade-schema-change.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: shopify connection-version: 1 -pull_request: "https://github.com/singer-io/tap-shopify/pull/187" +pull-request: "https://github.com/singer-io/tap-shopify/pull/187" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-03-06-facebook-v1-sdk-version-upgrade.md b/_changelog-files/2024/2024-03-06-facebook-v1-sdk-version-upgrade.md index 15e0d7e59..3d3b9adef 100644 --- a/_changelog-files/2024/2024-03-06-facebook-v1-sdk-version-upgrade.md +++ b/_changelog-files/2024/2024-03-06-facebook-v1-sdk-version-upgrade.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: facebook-ads connection-version: 1 -pull_request: "https://github.com/singer-io/tap-facebook/pull/238" +pull-request: "https://github.com/singer-io/tap-facebook/pull/238" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-03-11-github-v2-events-uri-format-removed.md b/_changelog-files/2024/2024-03-11-github-v2-events-uri-format-removed.md index 466b0b884..063eedb5c 100644 --- a/_changelog-files/2024/2024-03-11-github-v2-events-uri-format-removed.md +++ b/_changelog-files/2024/2024-03-11-github-v2-events-uri-format-removed.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: github connection-version: 2 -pull_request: "https://github.com/singer-io/tap-github/pull/205" +pull-request: "https://github.com/singer-io/tap-github/pull/205" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-03-12-google-sheets-new-v3.md b/_changelog-files/2024/2024-03-12-google-sheets-new-v3.md index 0b823fd24..bf4099c3d 100644 --- a/_changelog-files/2024/2024-03-12-google-sheets-new-v3.md +++ b/_changelog-files/2024/2024-03-12-google-sheets-new-v3.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: google-sheets connection-version: 3 -pull_request: "https://github.com/singer-io/tap-google-sheets/pull/95" +pull-request: "https://github.com/singer-io/tap-google-sheets/pull/95" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-03-12-salesforce-v2-fix-pk-chunking-condition.md b/_changelog-files/2024/2024-03-12-salesforce-v2-fix-pk-chunking-condition.md index ac948a2b7..f549c8773 100644 --- a/_changelog-files/2024/2024-03-12-salesforce-v2-fix-pk-chunking-condition.md +++ b/_changelog-files/2024/2024-03-12-salesforce-v2-fix-pk-chunking-condition.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: tap-salesforce connection-version: 2 -pull_request: "https://github.com/singer-io/tap-salesforce/pull/176" +pull-request: "https://github.com/singer-io/tap-salesforce/pull/176" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-04-01-ga4-v1-fix-new-supported-data-type.md b/_changelog-files/2024/2024-04-01-ga4-v1-fix-new-supported-data-type.md index 439d8fcf6..954ec8891 100644 --- a/_changelog-files/2024/2024-04-01-ga4-v1-fix-new-supported-data-type.md +++ b/_changelog-files/2024/2024-04-01-ga4-v1-fix-new-supported-data-type.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: google-analytics-4 connection-version: 1 -pull_request: "https://github.com/singer-io/tap-ga4/pull/102" +pull-request: "https://github.com/singer-io/tap-ga4/pull/102" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-04-01-ga4-v1-new-field-exclusions.md b/_changelog-files/2024/2024-04-01-ga4-v1-new-field-exclusions.md index 4402e2a5e..423aad383 100644 --- a/_changelog-files/2024/2024-04-01-ga4-v1-new-field-exclusions.md +++ b/_changelog-files/2024/2024-04-01-ga4-v1-new-field-exclusions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-analytics-4 connection-version: 1 -pull_request: "https://github.com/singer-io/tap-ga4/pull/101" +pull-request: "https://github.com/singer-io/tap-ga4/pull/101" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-04-15-facebook-v1-summary-param-error.md b/_changelog-files/2024/2024-04-15-facebook-v1-summary-param-error.md index 1fe212e94..6a568ee63 100644 --- a/_changelog-files/2024/2024-04-15-facebook-v1-summary-param-error.md +++ b/_changelog-files/2024/2024-04-15-facebook-v1-summary-param-error.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: facebook-ads connection-version: 1 -pull_request: "https://github.com/singer-io/tap-facebook/pull/239" +pull-request: "https://github.com/singer-io/tap-facebook/pull/239" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-04-15-linkedin-ads-v2-api-upgrade-new-fields.md b/_changelog-files/2024/2024-04-15-linkedin-ads-v2-api-upgrade-new-fields.md index 54ff6a3a3..af2a302db 100644 --- a/_changelog-files/2024/2024-04-15-linkedin-ads-v2-api-upgrade-new-fields.md +++ b/_changelog-files/2024/2024-04-15-linkedin-ads-v2-api-upgrade-new-fields.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: linkedin-ads connection-version: 2 -pull_request: "https://github.com/singer-io/tap-linkedin-ads/pull/69" +pull-request: "https://github.com/singer-io/tap-linkedin-ads/pull/69" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-04-29-chargebee-v1-new-field-subscription-schema.md b/_changelog-files/2024/2024-04-29-chargebee-v1-new-field-subscription-schema.md index b556b0029..5116581d0 100644 --- a/_changelog-files/2024/2024-04-29-chargebee-v1-new-field-subscription-schema.md +++ b/_changelog-files/2024/2024-04-29-chargebee-v1-new-field-subscription-schema.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: chargebee connection-version: 1 -pull_request: "https://github.com/singer-io/tap-chargebee/pull/109" +pull-request: "https://github.com/singer-io/tap-chargebee/pull/109" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-05-08-intercom-v2-conversations-schema-update.md b/_changelog-files/2024/2024-05-08-intercom-v2-conversations-schema-update.md index 372d16eca..a2ff1c4bf 100644 --- a/_changelog-files/2024/2024-05-08-intercom-v2-conversations-schema-update.md +++ b/_changelog-files/2024/2024-05-08-intercom-v2-conversations-schema-update.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: intercom connection-version: 2 -pull_request: "https://github.com/singer-io/tap-intercom/pull/71" +pull-request: "https://github.com/singer-io/tap-intercom/pull/71" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-05-08-intercom-v2-conversations-stream-bookmarking.md b/_changelog-files/2024/2024-05-08-intercom-v2-conversations-stream-bookmarking.md index 5a0c4f8b8..62dc558a0 100644 --- a/_changelog-files/2024/2024-05-08-intercom-v2-conversations-stream-bookmarking.md +++ b/_changelog-files/2024/2024-05-08-intercom-v2-conversations-stream-bookmarking.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: intercom connection-version: 2 -pull_request: "https://github.com/singer-io/tap-intercom/pull/73" +pull-request: "https://github.com/singer-io/tap-intercom/pull/73" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-05-08-intercom-v2-new-fields.md b/_changelog-files/2024/2024-05-08-intercom-v2-new-fields.md index bef2132a8..b1a94415c 100644 --- a/_changelog-files/2024/2024-05-08-intercom-v2-new-fields.md +++ b/_changelog-files/2024/2024-05-08-intercom-v2-new-fields.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: intercom connection-version: 2 -pull_request: "https://github.com/singer-io/tap-intercom/pull/70" +pull-request: "https://github.com/singer-io/tap-intercom/pull/70" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-05-13-mambu-v4-fix-date-windowing-pagination-use.md b/_changelog-files/2024/2024-05-13-mambu-v4-fix-date-windowing-pagination-use.md index 4566d9d6d..3b7a6873f 100644 --- a/_changelog-files/2024/2024-05-13-mambu-v4-fix-date-windowing-pagination-use.md +++ b/_changelog-files/2024/2024-05-13-mambu-v4-fix-date-windowing-pagination-use.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: mambu connection-version: 4 -pull_request: "https://github.com/singer-io/tap-mambu/pull/113" +pull-request: "https://github.com/singer-io/tap-mambu/pull/113" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-05-14-ga4-v1-new-field-exclusions.md b/_changelog-files/2024/2024-05-14-ga4-v1-new-field-exclusions.md index c9654f2df..da82f2c04 100644 --- a/_changelog-files/2024/2024-05-14-ga4-v1-new-field-exclusions.md +++ b/_changelog-files/2024/2024-05-14-ga4-v1-new-field-exclusions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-analytics-4 connection-version: 1 -pull_request: "https://github.com/singer-io/tap-ga4/pull/104" +pull-request: "https://github.com/singer-io/tap-ga4/pull/104" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-05-14-mongodb-v3-string-projection.md b/_changelog-files/2024/2024-05-14-mongodb-v3-string-projection.md index cdffe8cc4..271e45ac4 100644 --- a/_changelog-files/2024/2024-05-14-mongodb-v3-string-projection.md +++ b/_changelog-files/2024/2024-05-14-mongodb-v3-string-projection.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mongodb connection-version: 3 -pull_request: "https://github.com/singer-io/tap-mongodb/pull/94" +pull-request: "https://github.com/singer-io/tap-mongodb/pull/94" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-05-23-klaviyo-v1-api-update.md b/_changelog-files/2024/2024-05-23-klaviyo-v1-api-update.md index 6dc73bdfd..108386643 100644 --- a/_changelog-files/2024/2024-05-23-klaviyo-v1-api-update.md +++ b/_changelog-files/2024/2024-05-23-klaviyo-v1-api-update.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: tap-klaviyo connection-version: 1 -pull_request: "https://github.com/singer-io/tap-klaviyo/pull/67" +pull-request: "https://github.com/singer-io/tap-klaviyo/pull/67" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-07-23-hubspot-v3-new-version.md b/_changelog-files/2024/2024-07-23-hubspot-v3-new-version.md index 416bc4716..0def6ffbd 100644 --- a/_changelog-files/2024/2024-07-23-hubspot-v3-new-version.md +++ b/_changelog-files/2024/2024-07-23-hubspot-v3-new-version.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: hubspot connection-version: 3 -pull_request: "https://github.com/singer-io/tap-hubspot/pull/256" +pull-request: "https://github.com/singer-io/tap-hubspot/pull/256" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-09-05-activecampaign-v1-update-bounce-logs.md b/_changelog-files/2024/2024-09-05-activecampaign-v1-update-bounce-logs.md index 80a312465..795e42d7c 100644 --- a/_changelog-files/2024/2024-09-05-activecampaign-v1-update-bounce-logs.md +++ b/_changelog-files/2024/2024-09-05-activecampaign-v1-update-bounce-logs.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: activecampaign connection-version: 1 -pull_request: "https://github.com/singer-io/tap-activecampaign/pull/42" +pull-request: "https://github.com/singer-io/tap-activecampaign/pull/42" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-09-05-google-sheets-v3-deprecation-file-metadata.md b/_changelog-files/2024/2024-09-05-google-sheets-v3-deprecation-file-metadata.md index 43669c824..92385a43e 100644 --- a/_changelog-files/2024/2024-09-05-google-sheets-v3-deprecation-file-metadata.md +++ b/_changelog-files/2024/2024-09-05-google-sheets-v3-deprecation-file-metadata.md @@ -6,7 +6,7 @@ entry-type: deprecation entry-category: integration connection-id: google-sheets connection-version: 3 -pull_request: "https://github.com/singer-io/tap-google-sheets/pull/96" +pull-request: "https://github.com/singer-io/tap-google-sheets/pull/96" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-10-24-sftp-v2-new-supported-encoding-formats.md b/_changelog-files/2024/2024-10-24-sftp-v2-new-supported-encoding-formats.md index 9d2a127d0..576e5a03c 100644 --- a/_changelog-files/2024/2024-10-24-sftp-v2-new-supported-encoding-formats.md +++ b/_changelog-files/2024/2024-10-24-sftp-v2-new-supported-encoding-formats.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: sftp connection-version: 1 -pull_request: "https://github.com/singer-io/tap-sftp/pull/44" +pull-request: "https://github.com/singer-io/tap-sftp/pull/44" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-10-28-hubspot-v3-support-deals-streams.md b/_changelog-files/2024/2024-10-28-hubspot-v3-support-deals-streams.md index 96df7eb66..69af00374 100644 --- a/_changelog-files/2024/2024-10-28-hubspot-v3-support-deals-streams.md +++ b/_changelog-files/2024/2024-10-28-hubspot-v3-support-deals-streams.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: hubspot connection-version: 3 -pull_request: "https://github.com/singer-io/tap-hubspot/pull/265" +pull-request: "https://github.com/singer-io/tap-hubspot/pull/265" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-10-29-zendesk-chat-v1-support-subdomain.md b/_changelog-files/2024/2024-10-29-zendesk-chat-v1-support-subdomain.md index e2adfed41..6e2c1c8f5 100644 --- a/_changelog-files/2024/2024-10-29-zendesk-chat-v1-support-subdomain.md +++ b/_changelog-files/2024/2024-10-29-zendesk-chat-v1-support-subdomain.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: zendesk connection-version: 1 -pull_request: "https://github.com/singer-io/tap-zendesk-chat/pull/52" +pull-request: "https://github.com/singer-io/tap-zendesk-chat/pull/52" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-11-04-square-v2-fix-singer-decimal.md b/_changelog-files/2024/2024-11-04-square-v2-fix-singer-decimal.md index 309bea510..6943dd757 100644 --- a/_changelog-files/2024/2024-11-04-square-v2-fix-singer-decimal.md +++ b/_changelog-files/2024/2024-11-04-square-v2-fix-singer-decimal.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: square connection-version: 2 -pull_request: "https://github.com/singer-io/tap-square/pull/120" +pull-request: "https://github.com/singer-io/tap-square/pull/120" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-11-07-zendesk-v2-improvement-performance.md b/_changelog-files/2024/2024-11-07-zendesk-v2-improvement-performance.md index 291860bff..ddebaa33a 100644 --- a/_changelog-files/2024/2024-11-07-zendesk-v2-improvement-performance.md +++ b/_changelog-files/2024/2024-11-07-zendesk-v2-improvement-performance.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: zendesk connection-version: 2 -pull_request: "https://github.com/singer-io/tap-zendesk/pull/150" +pull-request: "https://github.com/singer-io/tap-zendesk/pull/150" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-11-20-amazon-s3-csv-v1-fix-missing-documents.md b/_changelog-files/2024/2024-11-20-amazon-s3-csv-v1-fix-missing-documents.md index 06f53b6d5..ee9b48043 100644 --- a/_changelog-files/2024/2024-11-20-amazon-s3-csv-v1-fix-missing-documents.md +++ b/_changelog-files/2024/2024-11-20-amazon-s3-csv-v1-fix-missing-documents.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: amazon-s3-csv connection-version: 1 -pull_request: "https://github.com/singer-io/tap-s3-csv/pull/67" +pull-request: "https://github.com/singer-io/tap-s3-csv/pull/67" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-11-20-dixa-v1-fix-chunk-length.md b/_changelog-files/2024/2024-11-20-dixa-v1-fix-chunk-length.md index 186dc3eda..ed65984ab 100644 --- a/_changelog-files/2024/2024-11-20-dixa-v1-fix-chunk-length.md +++ b/_changelog-files/2024/2024-11-20-dixa-v1-fix-chunk-length.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: dixa connection-version: 1 -pull_request: "https://github.com/singer-io/tap-dixa/pull/21" +pull-request: "https://github.com/singer-io/tap-dixa/pull/21" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-11-27-zendesk-v2-fix-rate-limit.md b/_changelog-files/2024/2024-11-27-zendesk-v2-fix-rate-limit.md index d1d03c757..bc98598c1 100644 --- a/_changelog-files/2024/2024-11-27-zendesk-v2-fix-rate-limit.md +++ b/_changelog-files/2024/2024-11-27-zendesk-v2-fix-rate-limit.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: zendesk connection-version: 2 -pull_request: "https://github.com/singer-io/tap-zendesk/pull/155" +pull-request: "https://github.com/singer-io/tap-zendesk/pull/155" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-12-04-ga360-6.md b/_changelog-files/2024/2024-12-04-ga360-6.md index a6899c928..79260bc65 100644 --- a/_changelog-files/2024/2024-12-04-ga360-6.md +++ b/_changelog-files/2024/2024-12-04-ga360-6.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: google-analytics-360 connection-version: 1 -pull_request: "https://github.com/singer-io/tap-ga360/pull/6" +pull-request: "https://github.com/singer-io/tap-ga360/pull/6" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-12-10-sendgrid-v1-fix-pytz.md b/_changelog-files/2024/2024-12-10-sendgrid-v1-fix-pytz.md index c8794ba8a..48aca7c3e 100644 --- a/_changelog-files/2024/2024-12-10-sendgrid-v1-fix-pytz.md +++ b/_changelog-files/2024/2024-12-10-sendgrid-v1-fix-pytz.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: sendgrid-core connection-version: 1 -pull_request: "https://github.com/singer-io/tap-sendgrid/pull/13" +pull-request: "https://github.com/singer-io/tap-sendgrid/pull/13" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-12-16-impact-v1-start-date.md b/_changelog-files/2024/2024-12-16-impact-v1-start-date.md index 0073aa4cc..1d246bba3 100644 --- a/_changelog-files/2024/2024-12-16-impact-v1-start-date.md +++ b/_changelog-files/2024/2024-12-16-impact-v1-start-date.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: impact connection-version: 1 -pull_request: "https://github.com/singer-io/tap-impact/pull/33" +pull-request: "https://github.com/singer-io/tap-impact/pull/33" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-12-18-klaviyo-v1-update-requests.md b/_changelog-files/2024/2024-12-18-klaviyo-v1-update-requests.md index 74843bead..db3722f51 100644 --- a/_changelog-files/2024/2024-12-18-klaviyo-v1-update-requests.md +++ b/_changelog-files/2024/2024-12-18-klaviyo-v1-update-requests.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: klaviyo connection-version: 1 -pull_request: "https://github.com/singer-io/tap-klaviyo/pull/73" +pull-request: "https://github.com/singer-io/tap-klaviyo/pull/73" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-12-18-mongodb-v3-terminaltables-removal.md b/_changelog-files/2024/2024-12-18-mongodb-v3-terminaltables-removal.md index d3cd99da0..6c526ac79 100644 --- a/_changelog-files/2024/2024-12-18-mongodb-v3-terminaltables-removal.md +++ b/_changelog-files/2024/2024-12-18-mongodb-v3-terminaltables-removal.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mongodb connection-version: 3 -pull_request: "https://github.com/singer-io/tap-mongodb/pull/120" +pull-request: "https://github.com/singer-io/tap-mongodb/pull/120" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-12-19-dynamodb-v1-terminaltables-removal.md b/_changelog-files/2024/2024-12-19-dynamodb-v1-terminaltables-removal.md index 99ed4d9c1..2a4667fbc 100644 --- a/_changelog-files/2024/2024-12-19-dynamodb-v1-terminaltables-removal.md +++ b/_changelog-files/2024/2024-12-19-dynamodb-v1-terminaltables-removal.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: amazon-dynamodb connection-version: 1 -pull_request: "https://github.com/singer-io/tap-dynamodb/pull/60" +pull-request: "https://github.com/singer-io/tap-dynamodb/pull/60" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2024/2024-12-19-sftp-v1-terminaltables-removal.md b/_changelog-files/2024/2024-12-19-sftp-v1-terminaltables-removal.md index a3fbd4d86..2e7c15268 100644 --- a/_changelog-files/2024/2024-12-19-sftp-v1-terminaltables-removal.md +++ b/_changelog-files/2024/2024-12-19-sftp-v1-terminaltables-removal.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: sftp connection-version: 1 -pull_request: "https://github.com/singer-io/tap-sftp/pull/47" +pull-request: "https://github.com/singer-io/tap-sftp/pull/47" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-01-06-ga4-fix-metrics-data-incompatibility.md b/_changelog-files/2025/2025-01-06-ga4-fix-metrics-data-incompatibility.md index ebc2676ef..faf2975bb 100644 --- a/_changelog-files/2025/2025-01-06-ga4-fix-metrics-data-incompatibility.md +++ b/_changelog-files/2025/2025-01-06-ga4-fix-metrics-data-incompatibility.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: google-analytics-4 connection-version: 1 -pull_request: "https://github.com/singer-io/tap-ga4/pull/106" +pull-request: "https://github.com/singer-io/tap-ga4/pull/106" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-01-07-amazon-s3-csv-v1-improvement-role-assumption.md b/_changelog-files/2025/2025-01-07-amazon-s3-csv-v1-improvement-role-assumption.md index 618ad51cb..be608f3eb 100644 --- a/_changelog-files/2025/2025-01-07-amazon-s3-csv-v1-improvement-role-assumption.md +++ b/_changelog-files/2025/2025-01-07-amazon-s3-csv-v1-improvement-role-assumption.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: amazon-s3-csv connection-version: 1 -pull_request: "hhttps://github.com/singer-io/tap-s3-csv/pull/69" +pull-request: "hhttps://github.com/singer-io/tap-s3-csv/pull/69" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-01-07-dynamodb-v1-improvement-role-assumption.md b/_changelog-files/2025/2025-01-07-dynamodb-v1-improvement-role-assumption.md index 9c50f3e34..508d2ef0a 100644 --- a/_changelog-files/2025/2025-01-07-dynamodb-v1-improvement-role-assumption.md +++ b/_changelog-files/2025/2025-01-07-dynamodb-v1-improvement-role-assumption.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: amazon-dynamodb connection-version: 1 -pull_request: "https://github.com/singer-io/tap-dynamodb/pull/59" +pull-request: "https://github.com/singer-io/tap-dynamodb/pull/59" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-01-07-heap-v1-improvement-role-assumption.md b/_changelog-files/2025/2025-01-07-heap-v1-improvement-role-assumption.md index 0ce44a7a1..49eafb3dd 100644 --- a/_changelog-files/2025/2025-01-07-heap-v1-improvement-role-assumption.md +++ b/_changelog-files/2025/2025-01-07-heap-v1-improvement-role-assumption.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: heap connection-version: 1 -pull_request: "https://github.com/singer-io/tap-heap/pull/21" +pull-request: "https://github.com/singer-io/tap-heap/pull/21" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-01-08-mongodb-v3-pymongo-upgrade.md b/_changelog-files/2025/2025-01-08-mongodb-v3-pymongo-upgrade.md index cbb4be40c..f89737abb 100644 --- a/_changelog-files/2025/2025-01-08-mongodb-v3-pymongo-upgrade.md +++ b/_changelog-files/2025/2025-01-08-mongodb-v3-pymongo-upgrade.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mongodb connection-version: 3 -pull_request: "https://github.com/singer-io/tap-mongodb/pull/121" +pull-request: "https://github.com/singer-io/tap-mongodb/pull/121" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-01-09-activecampaign-v1-upgrade-lib-version.md b/_changelog-files/2025/2025-01-09-activecampaign-v1-upgrade-lib-version.md index 5dd019fba..6009ad7a6 100644 --- a/_changelog-files/2025/2025-01-09-activecampaign-v1-upgrade-lib-version.md +++ b/_changelog-files/2025/2025-01-09-activecampaign-v1-upgrade-lib-version.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: activecampaign connection-version: 1 -pull_request: "https://github.com/singer-io/tap-activecampaign/pull/43" +pull-request: "https://github.com/singer-io/tap-activecampaign/pull/43" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-01-09-intercom-v2-update-requests-upgrade.md b/_changelog-files/2025/2025-01-09-intercom-v2-update-requests-upgrade.md index c6cb53c5a..cdbbfaff7 100644 --- a/_changelog-files/2025/2025-01-09-intercom-v2-update-requests-upgrade.md +++ b/_changelog-files/2025/2025-01-09-intercom-v2-update-requests-upgrade.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: intercom connection-version: 2 -pull_request: "https://github.com/singer-io/tap-intercom/pull/62" +pull-request: "https://github.com/singer-io/tap-intercom/pull/62" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-01-09-microsoft-advertising-v2-stringcase-removal.md b/_changelog-files/2025/2025-01-09-microsoft-advertising-v2-stringcase-removal.md index 2535a46da..c05fc484f 100644 --- a/_changelog-files/2025/2025-01-09-microsoft-advertising-v2-stringcase-removal.md +++ b/_changelog-files/2025/2025-01-09-microsoft-advertising-v2-stringcase-removal.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: bing-ads connection-version: 2 -pull_request: "https://github.com/singer-io/tap-bing-ads/pull/114" +pull-request: "https://github.com/singer-io/tap-bing-ads/pull/114" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-01-09-typeform-v2-ratelimit-removal.md b/_changelog-files/2025/2025-01-09-typeform-v2-ratelimit-removal.md index 141cd768d..22c412c0a 100644 --- a/_changelog-files/2025/2025-01-09-typeform-v2-ratelimit-removal.md +++ b/_changelog-files/2025/2025-01-09-typeform-v2-ratelimit-removal.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: typeform connection-version: 2 -pull_request: "https://github.com/singer-io/tap-typeform/pull/83" +pull-request: "https://github.com/singer-io/tap-typeform/pull/83" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-01-09-yotpo-v2-update-requests-upgrade.md b/_changelog-files/2025/2025-01-09-yotpo-v2-update-requests-upgrade.md index 9e0057db7..143ff6dca 100644 --- a/_changelog-files/2025/2025-01-09-yotpo-v2-update-requests-upgrade.md +++ b/_changelog-files/2025/2025-01-09-yotpo-v2-update-requests-upgrade.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: yotpo connection-version: 2 -pull_request: "https://github.com/singer-io/tap-intercom/pull/62" +pull-request: "https://github.com/singer-io/tap-intercom/pull/62" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-01-10-zendesk-v2-aiohttp-requests-upgrade.md b/_changelog-files/2025/2025-01-10-zendesk-v2-aiohttp-requests-upgrade.md index ebec6a42b..362fa7d73 100644 --- a/_changelog-files/2025/2025-01-10-zendesk-v2-aiohttp-requests-upgrade.md +++ b/_changelog-files/2025/2025-01-10-zendesk-v2-aiohttp-requests-upgrade.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: zendesk connection-version: 2 -pull_request: "https://github.com/singer-io/tap-zendesk/pull/157" +pull-request: "https://github.com/singer-io/tap-zendesk/pull/157" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-01-13-facebook-v1-api-upgrade.md b/_changelog-files/2025/2025-01-13-facebook-v1-api-upgrade.md index d5b12571b..943759841 100644 --- a/_changelog-files/2025/2025-01-13-facebook-v1-api-upgrade.md +++ b/_changelog-files/2025/2025-01-13-facebook-v1-api-upgrade.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: facebook-ads connection-version: 1 -pull_request: "https://github.com/singer-io/tap-facebook/pull/242" +pull-request: "https://github.com/singer-io/tap-facebook/pull/242" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-01-13-github-v2-new-bookmark-format.md b/_changelog-files/2025/2025-01-13-github-v2-new-bookmark-format.md index e185d720b..45557b249 100644 --- a/_changelog-files/2025/2025-01-13-github-v2-new-bookmark-format.md +++ b/_changelog-files/2025/2025-01-13-github-v2-new-bookmark-format.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: github connection-version: 2 -pull_request: "https://github.com/singer-io/tap-github/pull/212" +pull-request: "https://github.com/singer-io/tap-github/pull/212" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-01-13-slack-v1-pipefilelock-removal.md b/_changelog-files/2025/2025-01-13-slack-v1-pipefilelock-removal.md index c76fe4d7e..4288eb32b 100644 --- a/_changelog-files/2025/2025-01-13-slack-v1-pipefilelock-removal.md +++ b/_changelog-files/2025/2025-01-13-slack-v1-pipefilelock-removal.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: slack connection-version: 1 -pull_request: "https://github.com/singer-io/tap-slack/pull/22" +pull-request: "https://github.com/singer-io/tap-slack/pull/22" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-01-13-zoom-v1-ratelimit-removal.md b/_changelog-files/2025/2025-01-13-zoom-v1-ratelimit-removal.md index 47b4be841..7f5e637b4 100644 --- a/_changelog-files/2025/2025-01-13-zoom-v1-ratelimit-removal.md +++ b/_changelog-files/2025/2025-01-13-zoom-v1-ratelimit-removal.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: zoom connection-version: 1 -pull_request: "https://github.com/singer-io/tap-zoom/pull/33" +pull-request: "https://github.com/singer-io/tap-zoom/pull/33" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-01-16-deputy-v1-update-requests-upgrade.md b/_changelog-files/2025/2025-01-16-deputy-v1-update-requests-upgrade.md index 75475c3e7..e6c5e65b0 100644 --- a/_changelog-files/2025/2025-01-16-deputy-v1-update-requests-upgrade.md +++ b/_changelog-files/2025/2025-01-16-deputy-v1-update-requests-upgrade.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: deputy connection-version: 1 -pull_request: "https://github.com/singer-io/tap-deputy/pull/10" +pull-request: "https://github.com/singer-io/tap-deputy/pull/10" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-01-16-impact-v1-update-pagesize.md b/_changelog-files/2025/2025-01-16-impact-v1-update-pagesize.md index 336a4b182..620314dba 100644 --- a/_changelog-files/2025/2025-01-16-impact-v1-update-pagesize.md +++ b/_changelog-files/2025/2025-01-16-impact-v1-update-pagesize.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: impact connection-version: 1 -pull_request: "https://github.com/singer-io/tap-impact/pull/36" +pull-request: "https://github.com/singer-io/tap-impact/pull/36" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-01-16-zendesk-chat-v2-bug-fix-timezone.md b/_changelog-files/2025/2025-01-16-zendesk-chat-v2-bug-fix-timezone.md index 76d4ba809..7ae7b204e 100644 --- a/_changelog-files/2025/2025-01-16-zendesk-chat-v2-bug-fix-timezone.md +++ b/_changelog-files/2025/2025-01-16-zendesk-chat-v2-bug-fix-timezone.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: zendesk connection-version: 2 -pull_request: "https://github.com/singer-io/tap-zendesk-chat/pull/54" +pull-request: "https://github.com/singer-io/tap-zendesk-chat/pull/54" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-01-20-recharge-v2-multiple-fixes.md b/_changelog-files/2025/2025-01-20-recharge-v2-multiple-fixes.md index 2b1007a90..005cc0fdd 100644 --- a/_changelog-files/2025/2025-01-20-recharge-v2-multiple-fixes.md +++ b/_changelog-files/2025/2025-01-20-recharge-v2-multiple-fixes.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: recharge connection-version: 2 -pull_request: "https://github.com/singer-io/tap-recharge/pull/44" +pull-request: "https://github.com/singer-io/tap-recharge/pull/44" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-01-20-recurly-v1-requests-upgrade.md b/_changelog-files/2025/2025-01-20-recurly-v1-requests-upgrade.md index 8a2999153..bb306e2d3 100644 --- a/_changelog-files/2025/2025-01-20-recurly-v1-requests-upgrade.md +++ b/_changelog-files/2025/2025-01-20-recurly-v1-requests-upgrade.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: recurly connection-version: 1 -pull_request: "https://github.com/singer-io/tap-recurly/pull/12" +pull-request: "https://github.com/singer-io/tap-recurly/pull/12" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-01-20-square-v2-roles-stream-removal.md b/_changelog-files/2025/2025-01-20-square-v2-roles-stream-removal.md index bb9ab5fa2..8ca7c8a04 100644 --- a/_changelog-files/2025/2025-01-20-square-v2-roles-stream-removal.md +++ b/_changelog-files/2025/2025-01-20-square-v2-roles-stream-removal.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: square connection-version: 2 -pull_request: "https://github.com/singer-io/tap-square/pull/121" +pull-request: "https://github.com/singer-io/tap-square/pull/121" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-01-20-xero-v1-new-fields-credit-notes.md b/_changelog-files/2025/2025-01-20-xero-v1-new-fields-credit-notes.md index 326e34f9c..607555cf4 100644 --- a/_changelog-files/2025/2025-01-20-xero-v1-new-fields-credit-notes.md +++ b/_changelog-files/2025/2025-01-20-xero-v1-new-fields-credit-notes.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: xero connection-version: 1 -pull_request: "https://github.com/singer-io/tap-xero/pull/117" +pull-request: "https://github.com/singer-io/tap-xero/pull/117" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-01-21-pipedrive-v1-requests-upgrade.md b/_changelog-files/2025/2025-01-21-pipedrive-v1-requests-upgrade.md index 2e7883389..acb054ffb 100644 --- a/_changelog-files/2025/2025-01-21-pipedrive-v1-requests-upgrade.md +++ b/_changelog-files/2025/2025-01-21-pipedrive-v1-requests-upgrade.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: pipedrive connection-version: 1 -pull_request: "https://github.com/singer-io/tap-pipedrive/pull/140" +pull-request: "https://github.com/singer-io/tap-pipedrive/pull/140" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-01-21-twilio-v1-requests-upgrade.md b/_changelog-files/2025/2025-01-21-twilio-v1-requests-upgrade.md index 710443f57..8365939ae 100644 --- a/_changelog-files/2025/2025-01-21-twilio-v1-requests-upgrade.md +++ b/_changelog-files/2025/2025-01-21-twilio-v1-requests-upgrade.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: twilio connection-version: 1 -pull_request: "https://github.com/singer-io/tap-twilio/pull/9" +pull-request: "https://github.com/singer-io/tap-twilio/pull/9" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-01-21-zuora-v1-requests-upgrade.md b/_changelog-files/2025/2025-01-21-zuora-v1-requests-upgrade.md index 9fdfc1799..b456d1c55 100644 --- a/_changelog-files/2025/2025-01-21-zuora-v1-requests-upgrade.md +++ b/_changelog-files/2025/2025-01-21-zuora-v1-requests-upgrade.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: zuora connection-version: 1 -pull_request: "https://github.com/singer-io/tap-zuora/pull/77" +pull-request: "https://github.com/singer-io/tap-zuora/pull/77" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-01-22-klaviyo-v1-api-verison-upgrade.md b/_changelog-files/2025/2025-01-22-klaviyo-v1-api-verison-upgrade.md index e77285e2e..4d1444a47 100644 --- a/_changelog-files/2025/2025-01-22-klaviyo-v1-api-verison-upgrade.md +++ b/_changelog-files/2025/2025-01-22-klaviyo-v1-api-verison-upgrade.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: klaviyo connection-version: 1 -pull_request: "https://github.com/singer-io/tap-klaviyo/pull/74" +pull-request: "https://github.com/singer-io/tap-klaviyo/pull/74" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-01-23-square-v2-bug-fix-list-object.md b/_changelog-files/2025/2025-01-23-square-v2-bug-fix-list-object.md index a6a12e7b5..59c85aead 100644 --- a/_changelog-files/2025/2025-01-23-square-v2-bug-fix-list-object.md +++ b/_changelog-files/2025/2025-01-23-square-v2-bug-fix-list-object.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: square connection-version: 2 -pull_request: "https://github.com/singer-io/tap-square/pull/124" +pull-request: "https://github.com/singer-io/tap-square/pull/124" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-01-24-shopify-v1-update-migration-graphql.md b/_changelog-files/2025/2025-01-24-shopify-v1-update-migration-graphql.md index 727433c83..2ad0c41aa 100644 --- a/_changelog-files/2025/2025-01-24-shopify-v1-update-migration-graphql.md +++ b/_changelog-files/2025/2025-01-24-shopify-v1-update-migration-graphql.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: shopify connection-version: 1 -pull_request: "https://github.com/singer-io/tap-shopify/pull/193" +pull-request: "https://github.com/singer-io/tap-shopify/pull/193" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-01-27-shopify-v1-fix-graphql.md b/_changelog-files/2025/2025-01-27-shopify-v1-fix-graphql.md index e05c6ad9f..7e48bc9fc 100644 --- a/_changelog-files/2025/2025-01-27-shopify-v1-fix-graphql.md +++ b/_changelog-files/2025/2025-01-27-shopify-v1-fix-graphql.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: shopify connection-version: 1 -pull_request: "https://github.com/singer-io/tap-shopify/pull/195" +pull-request: "https://github.com/singer-io/tap-shopify/pull/195" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-01-28-pardot-v1-requests-upgrade.md b/_changelog-files/2025/2025-01-28-pardot-v1-requests-upgrade.md index 85dd2de55..ec1062ce6 100644 --- a/_changelog-files/2025/2025-01-28-pardot-v1-requests-upgrade.md +++ b/_changelog-files/2025/2025-01-28-pardot-v1-requests-upgrade.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: pardot connection-version: 1 -pull_request: "https://github.com/singer-io/tap-pardot/pull/45" +pull-request: "https://github.com/singer-io/tap-pardot/pull/45" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-02-05-amazon-s3-csv-add-credentials.md b/_changelog-files/2025/2025-02-05-amazon-s3-csv-add-credentials.md index a7d9a9ea1..8c7a6e028 100644 --- a/_changelog-files/2025/2025-02-05-amazon-s3-csv-add-credentials.md +++ b/_changelog-files/2025/2025-02-05-amazon-s3-csv-add-credentials.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: amazon-s3-csv connection-version: 1 -pull_request: "https://github.com/singer-io/tap-s3-csv/pull/70" +pull-request: "https://github.com/singer-io/tap-s3-csv/pull/70" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-02-05-shopify-v1-bookmark-logic.md b/_changelog-files/2025/2025-02-05-shopify-v1-bookmark-logic.md index 3bc79ad30..7e1461330 100644 --- a/_changelog-files/2025/2025-02-05-shopify-v1-bookmark-logic.md +++ b/_changelog-files/2025/2025-02-05-shopify-v1-bookmark-logic.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: shopify connection-version: 1 -pull_request: "https://github.com/singer-io/tap-shopify/pull/197" +pull-request: "https://github.com/singer-io/tap-shopify/pull/197" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-02-12-intercom-v2-api-upgrade.md b/_changelog-files/2025/2025-02-12-intercom-v2-api-upgrade.md index fa50c9641..4272c3b93 100644 --- a/_changelog-files/2025/2025-02-12-intercom-v2-api-upgrade.md +++ b/_changelog-files/2025/2025-02-12-intercom-v2-api-upgrade.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: intercom connection-version: 2 -pull_request: "https://github.com/singer-io/tap-intercom/pull/76" +pull-request: "https://github.com/singer-io/tap-intercom/pull/76" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-02-17-mixpanel-v1-make-mp_reserved_insert_id-available-in-export-stream.md b/_changelog-files/2025/2025-02-17-mixpanel-v1-make-mp_reserved_insert_id-available-in-export-stream.md index 0043e6a9d..96801fc36 100644 --- a/_changelog-files/2025/2025-02-17-mixpanel-v1-make-mp_reserved_insert_id-available-in-export-stream.md +++ b/_changelog-files/2025/2025-02-17-mixpanel-v1-make-mp_reserved_insert_id-available-in-export-stream.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mixpanel connection-version: 1 -pull_request: "https://github.com/singer-io/tap-mixpanel/pull/64" +pull-request: "https://github.com/singer-io/tap-mixpanel/pull/64" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-02-19-linkedin-ads-v2-api-version-upgrade-202501.md b/_changelog-files/2025/2025-02-19-linkedin-ads-v2-api-version-upgrade-202501.md index 0160249a7..2f047ae00 100644 --- a/_changelog-files/2025/2025-02-19-linkedin-ads-v2-api-version-upgrade-202501.md +++ b/_changelog-files/2025/2025-02-19-linkedin-ads-v2-api-version-upgrade-202501.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: linkedin-ads connection-version: 2 -pull_request: "https://github.com/singer-io/tap-linkedin-ads/pull/76" +pull-request: "https://github.com/singer-io/tap-linkedin-ads/pull/76" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-02-19-shopify-v3-optimize-shopify-metafields-sync-performance.md b/_changelog-files/2025/2025-02-19-shopify-v3-optimize-shopify-metafields-sync-performance.md index 0733f552a..55f803eab 100644 --- a/_changelog-files/2025/2025-02-19-shopify-v3-optimize-shopify-metafields-sync-performance.md +++ b/_changelog-files/2025/2025-02-19-shopify-v3-optimize-shopify-metafields-sync-performance.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: shopify connection-version: 3 -pull_request: "https://github.com/singer-io/tap-shopify/pull/200" +pull-request: "https://github.com/singer-io/tap-shopify/pull/200" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-02-20-hubspot-v3-explicitly-deselect-unselected-fields.md b/_changelog-files/2025/2025-02-20-hubspot-v3-explicitly-deselect-unselected-fields.md index 1865822ea..a979bc92f 100644 --- a/_changelog-files/2025/2025-02-20-hubspot-v3-explicitly-deselect-unselected-fields.md +++ b/_changelog-files/2025/2025-02-20-hubspot-v3-explicitly-deselect-unselected-fields.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: hubspot connection-version: 3 -pull_request: "https://github.com/singer-io/tap-hubspot/pull/266" +pull-request: "https://github.com/singer-io/tap-hubspot/pull/266" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-02-20-mixpanel-v1-remove-required-false-from-engage-schema.md b/_changelog-files/2025/2025-02-20-mixpanel-v1-remove-required-false-from-engage-schema.md index f154d82e9..d8ed902d7 100644 --- a/_changelog-files/2025/2025-02-20-mixpanel-v1-remove-required-false-from-engage-schema.md +++ b/_changelog-files/2025/2025-02-20-mixpanel-v1-remove-required-false-from-engage-schema.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mixpanel connection-version: 1 -pull_request: "https://github.com/singer-io/tap-mixpanel/pull/65" +pull-request: "https://github.com/singer-io/tap-mixpanel/pull/65" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-02-25-pipedrive-v1-fix-the-organizations-stream-schema.md b/_changelog-files/2025/2025-02-25-pipedrive-v1-fix-the-organizations-stream-schema.md index fa98e2fc2..7ead9c94c 100644 --- a/_changelog-files/2025/2025-02-25-pipedrive-v1-fix-the-organizations-stream-schema.md +++ b/_changelog-files/2025/2025-02-25-pipedrive-v1-fix-the-organizations-stream-schema.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: pipedrive connection-version: 1 -pull_request: "https://github.com/singer-io/tap-pipedrive/pull/142" +pull-request: "https://github.com/singer-io/tap-pipedrive/pull/142" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-02-25-zuora-v1-add-oauth-option-for-authorization.md b/_changelog-files/2025/2025-02-25-zuora-v1-add-oauth-option-for-authorization.md index 205c0ced5..5f4dbf8ea 100644 --- a/_changelog-files/2025/2025-02-25-zuora-v1-add-oauth-option-for-authorization.md +++ b/_changelog-files/2025/2025-02-25-zuora-v1-add-oauth-option-for-authorization.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: zuora connection-version: 1 -pull_request: "https://github.com/singer-io/tap-zuora/pull/79" +pull-request: "https://github.com/singer-io/tap-zuora/pull/79" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-02-26-yotpo-v2-add-backoff-for-connectionreseterror.md b/_changelog-files/2025/2025-02-26-yotpo-v2-add-backoff-for-connectionreseterror.md index 845314d41..8242da75b 100644 --- a/_changelog-files/2025/2025-02-26-yotpo-v2-add-backoff-for-connectionreseterror.md +++ b/_changelog-files/2025/2025-02-26-yotpo-v2-add-backoff-for-connectionreseterror.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: yotpo connection-version: 2 -pull_request: "https://github.com/singer-io/tap-yotpo/pull/59" +pull-request: "https://github.com/singer-io/tap-yotpo/pull/59" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-02-28-ga4-v1-handle-report_definitions-as-lists-or-strings.md b/_changelog-files/2025/2025-02-28-ga4-v1-handle-report_definitions-as-lists-or-strings.md index cf1e75a65..343a0f4e2 100644 --- a/_changelog-files/2025/2025-02-28-ga4-v1-handle-report_definitions-as-lists-or-strings.md +++ b/_changelog-files/2025/2025-02-28-ga4-v1-handle-report_definitions-as-lists-or-strings.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-analytics-4 connection-version: 1 -pull_request: "https://github.com/singer-io/tap-ga4/pull/107" +pull-request: "https://github.com/singer-io/tap-ga4/pull/107" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-02-28-snapchat-ads-v1-handle-org_account_ids-config-property-as-list-or-json-encoded-string.md b/_changelog-files/2025/2025-02-28-snapchat-ads-v1-handle-org_account_ids-config-property-as-list-or-json-encoded-string.md index 6ab337870..7276eca60 100644 --- a/_changelog-files/2025/2025-02-28-snapchat-ads-v1-handle-org_account_ids-config-property-as-list-or-json-encoded-string.md +++ b/_changelog-files/2025/2025-02-28-snapchat-ads-v1-handle-org_account_ids-config-property-as-list-or-json-encoded-string.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: snapchat-ads connection-version: 1 -pull_request: "https://github.com/singer-io/tap-snapchat-ads/pull/30" +pull-request: "https://github.com/singer-io/tap-snapchat-ads/pull/30" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-03-06-ga4-v1-make-report_definitions-optional.md b/_changelog-files/2025/2025-03-06-ga4-v1-make-report_definitions-optional.md index 7bed30aab..feb55f9c8 100644 --- a/_changelog-files/2025/2025-03-06-ga4-v1-make-report_definitions-optional.md +++ b/_changelog-files/2025/2025-03-06-ga4-v1-make-report_definitions-optional.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-analytics-4 connection-version: 1 -pull_request: "https://github.com/singer-io/tap-ga4/pull/109" +pull-request: "https://github.com/singer-io/tap-ga4/pull/109" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-03-11-ga360-v1-upgrade-google-cloud-bigquery.md b/_changelog-files/2025/2025-03-11-ga360-v1-upgrade-google-cloud-bigquery.md index 459d9cbf5..dc43cc8c7 100644 --- a/_changelog-files/2025/2025-03-11-ga360-v1-upgrade-google-cloud-bigquery.md +++ b/_changelog-files/2025/2025-03-11-ga360-v1-upgrade-google-cloud-bigquery.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-analytics-360 connection-version: 1 -pull_request: "https://github.com/singer-io/tap-ga360/pull/7" +pull-request: "https://github.com/singer-io/tap-ga360/pull/7" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-03-13-ga4-v1-update-premade-reports.md b/_changelog-files/2025/2025-03-13-ga4-v1-update-premade-reports.md index 3ed1c9c7b..c31c2cec7 100644 --- a/_changelog-files/2025/2025-03-13-ga4-v1-update-premade-reports.md +++ b/_changelog-files/2025/2025-03-13-ga4-v1-update-premade-reports.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-analytics-4 connection-version: 1 -pull_request: "https://github.com/singer-io/tap-ga4/pull/110" +pull-request: "https://github.com/singer-io/tap-ga4/pull/110" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-03-18-activecampaign-v1-require-https-and-block-private-ips.md b/_changelog-files/2025/2025-03-18-activecampaign-v1-require-https-and-block-private-ips.md index 9eaa77e6c..47e849a65 100644 --- a/_changelog-files/2025/2025-03-18-activecampaign-v1-require-https-and-block-private-ips.md +++ b/_changelog-files/2025/2025-03-18-activecampaign-v1-require-https-and-block-private-ips.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: activecampaign connection-version: 1 -pull_request: "https://github.com/singer-io/tap-activecampaign/pull/44" +pull-request: "https://github.com/singer-io/tap-activecampaign/pull/44" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-03-25-ga4-v1-update-field-selection.md b/_changelog-files/2025/2025-03-25-ga4-v1-update-field-selection.md index 294db24e7..b97f3afcb 100644 --- a/_changelog-files/2025/2025-03-25-ga4-v1-update-field-selection.md +++ b/_changelog-files/2025/2025-03-25-ga4-v1-update-field-selection.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-analytics-4 connection-version: 1 -pull_request: "https://github.com/singer-io/tap-ga4/pull/108" +pull-request: "https://github.com/singer-io/tap-ga4/pull/108" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-03-28-shopify-v3-migrate-shopify-streams-from-rest-api-to-graphql-api.md b/_changelog-files/2025/2025-03-28-shopify-v3-migrate-shopify-streams-from-rest-api-to-graphql-api.md index edce6f549..f74ffc935 100644 --- a/_changelog-files/2025/2025-03-28-shopify-v3-migrate-shopify-streams-from-rest-api-to-graphql-api.md +++ b/_changelog-files/2025/2025-03-28-shopify-v3-migrate-shopify-streams-from-rest-api-to-graphql-api.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: shopify connection-version: 3 -pull_request: "https://github.com/singer-io/tap-shopify/pull/201" +pull-request: "https://github.com/singer-io/tap-shopify/pull/201" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-04-01-ga4-v1-bump-requests-from-2-28-1-to-2-32-3.md b/_changelog-files/2025/2025-04-01-ga4-v1-bump-requests-from-2-28-1-to-2-32-3.md index 5238daef6..f9c2fd72a 100644 --- a/_changelog-files/2025/2025-04-01-ga4-v1-bump-requests-from-2-28-1-to-2-32-3.md +++ b/_changelog-files/2025/2025-04-01-ga4-v1-bump-requests-from-2-28-1-to-2-32-3.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-analytics-4 connection-version: 1 -pull_request: "https://github.com/singer-io/tap-ga4/pull/112" +pull-request: "https://github.com/singer-io/tap-ga4/pull/112" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-04-04-shopify-v3-fix-schema-orders.md b/_changelog-files/2025/2025-04-04-shopify-v3-fix-schema-orders.md index 7d7f4c8de..1a12e9c21 100644 --- a/_changelog-files/2025/2025-04-04-shopify-v3-fix-schema-orders.md +++ b/_changelog-files/2025/2025-04-04-shopify-v3-fix-schema-orders.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: shopify connection-version: 3 -pull_request: "https://github.com/singer-io/tap-shopify/pull/208" +pull-request: "https://github.com/singer-io/tap-shopify/pull/208" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-04-09-quickbooks-v2-upgrade-api-minorversion-75.md b/_changelog-files/2025/2025-04-09-quickbooks-v2-upgrade-api-minorversion-75.md index b21d70314..ca116e2ef 100644 --- a/_changelog-files/2025/2025-04-09-quickbooks-v2-upgrade-api-minorversion-75.md +++ b/_changelog-files/2025/2025-04-09-quickbooks-v2-upgrade-api-minorversion-75.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: quickbooks connection-version: 2 -pull_request: "https://github.com/singer-io/tap-quickbooks/pull/74" +pull-request: "https://github.com/singer-io/tap-quickbooks/pull/74" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-04-15-recharge-v2-remove-support-of-page-based-pagination.md b/_changelog-files/2025/2025-04-15-recharge-v2-remove-support-of-page-based-pagination.md index 6c02dc950..86f04a153 100644 --- a/_changelog-files/2025/2025-04-15-recharge-v2-remove-support-of-page-based-pagination.md +++ b/_changelog-files/2025/2025-04-15-recharge-v2-remove-support-of-page-based-pagination.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: recharge connection-version: 2 -pull_request: "https://github.com/singer-io/tap-recharge/pull/45" +pull-request: "https://github.com/singer-io/tap-recharge/pull/45" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-04-16-shopify-v3-enhance-tap-with-additional-fields-across-streams.md b/_changelog-files/2025/2025-04-16-shopify-v3-enhance-tap-with-additional-fields-across-streams.md index bd35389ce..1e2e04b20 100644 --- a/_changelog-files/2025/2025-04-16-shopify-v3-enhance-tap-with-additional-fields-across-streams.md +++ b/_changelog-files/2025/2025-04-16-shopify-v3-enhance-tap-with-additional-fields-across-streams.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: shopify connection-version: 3 -pull_request: "https://github.com/singer-io/tap-shopify/pull/209" +pull-request: "https://github.com/singer-io/tap-shopify/pull/209" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-04-16-zendesk-v2-fix-incremental-extraction-issue-for-macros.md b/_changelog-files/2025/2025-04-16-zendesk-v2-fix-incremental-extraction-issue-for-macros.md index f490367b7..ce05f3e57 100644 --- a/_changelog-files/2025/2025-04-16-zendesk-v2-fix-incremental-extraction-issue-for-macros.md +++ b/_changelog-files/2025/2025-04-16-zendesk-v2-fix-incremental-extraction-issue-for-macros.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: zendesk connection-version: 2 -pull_request: "https://github.com/singer-io/tap-zendesk/pull/158" +pull-request: "https://github.com/singer-io/tap-zendesk/pull/158" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-04-24-shopify-v3-optimize-refund-and-transactions-sync-by-fetching-only-updated-parent-objects.md b/_changelog-files/2025/2025-04-24-shopify-v3-optimize-refund-and-transactions-sync-by-fetching-only-updated-parent-objects.md index e25e719f6..f59f99f88 100644 --- a/_changelog-files/2025/2025-04-24-shopify-v3-optimize-refund-and-transactions-sync-by-fetching-only-updated-parent-objects.md +++ b/_changelog-files/2025/2025-04-24-shopify-v3-optimize-refund-and-transactions-sync-by-fetching-only-updated-parent-objects.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: shopify connection-version: 3 -pull_request: "https://github.com/singer-io/tap-shopify/pull/212" +pull-request: "https://github.com/singer-io/tap-shopify/pull/212" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-04-24-zuora-v1-update-unsupported-fields.md b/_changelog-files/2025/2025-04-24-zuora-v1-update-unsupported-fields.md index bc526f7c5..da1d7ae1f 100644 --- a/_changelog-files/2025/2025-04-24-zuora-v1-update-unsupported-fields.md +++ b/_changelog-files/2025/2025-04-24-zuora-v1-update-unsupported-fields.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: zuora connection-version: 1 -pull_request: "https://github.com/singer-io/tap-zuora/pull/81" +pull-request: "https://github.com/singer-io/tap-zuora/pull/81" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-04-28-intercom-v2-companies-sync.md b/_changelog-files/2025/2025-04-28-intercom-v2-companies-sync.md index 7e05d3e3b..66880da70 100644 --- a/_changelog-files/2025/2025-04-28-intercom-v2-companies-sync.md +++ b/_changelog-files/2025/2025-04-28-intercom-v2-companies-sync.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: intercom connection-version: 2 -pull_request: "https://github.com/singer-io/tap-intercom/pull/77" +pull-request: "https://github.com/singer-io/tap-intercom/pull/77" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-04-28-mssql-v1-deadlock-error-retry.md b/_changelog-files/2025/2025-04-28-mssql-v1-deadlock-error-retry.md index 700b15ed4..db557841c 100644 --- a/_changelog-files/2025/2025-04-28-mssql-v1-deadlock-error-retry.md +++ b/_changelog-files/2025/2025-04-28-mssql-v1-deadlock-error-retry.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: mssql connection-version: 1 -pull_request: "https://github.com/singer-io/tap-mssql/pull/91" +pull-request: "https://github.com/singer-io/tap-mssql/pull/91" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-05-06-mambu-v4-upgrade-api-version-to-v2-for-loan_repayments.md b/_changelog-files/2025/2025-05-06-mambu-v4-upgrade-api-version-to-v2-for-loan_repayments.md index 8cf1eda09..56bc7a01b 100644 --- a/_changelog-files/2025/2025-05-06-mambu-v4-upgrade-api-version-to-v2-for-loan_repayments.md +++ b/_changelog-files/2025/2025-05-06-mambu-v4-upgrade-api-version-to-v2-for-loan_repayments.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mambu connection-version: 4 -pull_request: "https://github.com/singer-io/tap-mambu/pull/123" +pull-request: "https://github.com/singer-io/tap-mambu/pull/123" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-05-06-outreach-v1-fix-for-error-only-`data`-or-`links`-expected-in-relationships.md b/_changelog-files/2025/2025-05-06-outreach-v1-fix-for-error-only-`data`-or-`links`-expected-in-relationships.md index 599fa025a..f34aead5e 100644 --- a/_changelog-files/2025/2025-05-06-outreach-v1-fix-for-error-only-`data`-or-`links`-expected-in-relationships.md +++ b/_changelog-files/2025/2025-05-06-outreach-v1-fix-for-error-only-`data`-or-`links`-expected-in-relationships.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: outreach connection-version: 1 -pull_request: "https://github.com/singer-io/tap-outreach/pull/39" +pull-request: "https://github.com/singer-io/tap-outreach/pull/39" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-05-15-twilio-v1-implement-lookback-window-for-messages.md b/_changelog-files/2025/2025-05-15-twilio-v1-implement-lookback-window-for-messages.md index 715085b37..212807f10 100644 --- a/_changelog-files/2025/2025-05-15-twilio-v1-implement-lookback-window-for-messages.md +++ b/_changelog-files/2025/2025-05-15-twilio-v1-implement-lookback-window-for-messages.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: twilio connection-version: 1 -pull_request: "https://github.com/singer-io/tap-twilio/pull/10" +pull-request: "https://github.com/singer-io/tap-twilio/pull/10" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-05-26-shopify-v3-catalog-driven-dynamic-query-pruning-and-error-handling.md b/_changelog-files/2025/2025-05-26-shopify-v3-catalog-driven-dynamic-query-pruning-and-error-handling.md index b1a1dcb06..682559c65 100644 --- a/_changelog-files/2025/2025-05-26-shopify-v3-catalog-driven-dynamic-query-pruning-and-error-handling.md +++ b/_changelog-files/2025/2025-05-26-shopify-v3-catalog-driven-dynamic-query-pruning-and-error-handling.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: shopify connection-version: 3 -pull_request: "https://github.com/singer-io/tap-shopify/pull/214" +pull-request: "https://github.com/singer-io/tap-shopify/pull/214" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-05-29-shopify-v3-fixes-keyerror-for-abandoned-checkouts.md b/_changelog-files/2025/2025-05-29-shopify-v3-fixes-keyerror-for-abandoned-checkouts.md index a07ba11e8..b701361f9 100644 --- a/_changelog-files/2025/2025-05-29-shopify-v3-fixes-keyerror-for-abandoned-checkouts.md +++ b/_changelog-files/2025/2025-05-29-shopify-v3-fixes-keyerror-for-abandoned-checkouts.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: shopify connection-version: 3 -pull_request: "https://github.com/singer-io/tap-shopify/pull/218" +pull-request: "https://github.com/singer-io/tap-shopify/pull/218" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-06-04-facebook-v1-adds-warning-when-'reach'-is-requested-for-breakdown-queries-13-month.md b/_changelog-files/2025/2025-06-04-facebook-v1-adds-warning-when-'reach'-is-requested-for-breakdown-queries-13-month.md index afe5b5749..461943a8f 100644 --- a/_changelog-files/2025/2025-06-04-facebook-v1-adds-warning-when-'reach'-is-requested-for-breakdown-queries-13-month.md +++ b/_changelog-files/2025/2025-06-04-facebook-v1-adds-warning-when-'reach'-is-requested-for-breakdown-queries-13-month.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: facebook-ads connection-version: 1 -pull_request: "https://github.com/singer-io/tap-facebook/pull/245" +pull-request: "https://github.com/singer-io/tap-facebook/pull/245" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-06-04-google-ads-v2-upgrade-google-ads-to-v18.md b/_changelog-files/2025/2025-06-04-google-ads-v2-upgrade-google-ads-to-v18.md index 318735ae3..700ced9a5 100644 --- a/_changelog-files/2025/2025-06-04-google-ads-v2-upgrade-google-ads-to-v18.md +++ b/_changelog-files/2025/2025-06-04-google-ads-v2-upgrade-google-ads-to-v18.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-ads connection-version: 2 -pull_request: "https://github.com/singer-io/tap-google-ads/pull/95" +pull-request: "https://github.com/singer-io/tap-google-ads/pull/95" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-06-05-shopify-v3-assign-config-provided-value-to-date_window.md b/_changelog-files/2025/2025-06-05-shopify-v3-assign-config-provided-value-to-date_window.md index 9094a0540..5d24f341d 100644 --- a/_changelog-files/2025/2025-06-05-shopify-v3-assign-config-provided-value-to-date_window.md +++ b/_changelog-files/2025/2025-06-05-shopify-v3-assign-config-provided-value-to-date_window.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: shopify connection-version: 3 -pull_request: "https://github.com/singer-io/tap-shopify/pull/221" +pull-request: "https://github.com/singer-io/tap-shopify/pull/221" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-06-19-shopify-v3-introduce-new-stream-order_shipping_lines.md b/_changelog-files/2025/2025-06-19-shopify-v3-introduce-new-stream-order_shipping_lines.md index b0ad3ed36..4da94a59a 100644 --- a/_changelog-files/2025/2025-06-19-shopify-v3-introduce-new-stream-order_shipping_lines.md +++ b/_changelog-files/2025/2025-06-19-shopify-v3-introduce-new-stream-order_shipping_lines.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: shopify connection-version: 3 -pull_request: "https://github.com/singer-io/tap-shopify/pull/213" +pull-request: "https://github.com/singer-io/tap-shopify/pull/213" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-06-23-deputy-v1-bump-requests-to-resolve-cve-2024-47081;-bump-backoff-to-more-recent-version.md b/_changelog-files/2025/2025-06-23-deputy-v1-bump-requests-to-resolve-cve-2024-47081;-bump-backoff-to-more-recent-version.md index 0dd25d109..a0db8204a 100644 --- a/_changelog-files/2025/2025-06-23-deputy-v1-bump-requests-to-resolve-cve-2024-47081;-bump-backoff-to-more-recent-version.md +++ b/_changelog-files/2025/2025-06-23-deputy-v1-bump-requests-to-resolve-cve-2024-47081;-bump-backoff-to-more-recent-version.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: deputy connection-version: 1 -pull_request: "https://github.com/singer-io/tap-deputy/pull/11" +pull-request: "https://github.com/singer-io/tap-deputy/pull/11" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-06-23-eloqua-v1-bump-singer-python-so-it-can-use-backoff-1-10.md b/_changelog-files/2025/2025-06-23-eloqua-v1-bump-singer-python-so-it-can-use-backoff-1-10.md index 0a87c2c4c..fd803b8d0 100644 --- a/_changelog-files/2025/2025-06-23-eloqua-v1-bump-singer-python-so-it-can-use-backoff-1-10.md +++ b/_changelog-files/2025/2025-06-23-eloqua-v1-bump-singer-python-so-it-can-use-backoff-1-10.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: eloqua connection-version: 1 -pull_request: "https://github.com/singer-io/tap-eloqua/pull/47" +pull-request: "https://github.com/singer-io/tap-eloqua/pull/47" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-06-23-impact-v1-bump-backoff-to-a-newer-version.md b/_changelog-files/2025/2025-06-23-impact-v1-bump-backoff-to-a-newer-version.md index aed2b450f..8b8517548 100644 --- a/_changelog-files/2025/2025-06-23-impact-v1-bump-backoff-to-a-newer-version.md +++ b/_changelog-files/2025/2025-06-23-impact-v1-bump-backoff-to-a-newer-version.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: impact connection-version: 1 -pull_request: "https://github.com/singer-io/tap-impact/pull/39" +pull-request: "https://github.com/singer-io/tap-impact/pull/39" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-06-23-surveymonkey-v2-bump-dependency-versions-for-3pl-compliance.md b/_changelog-files/2025/2025-06-23-surveymonkey-v2-bump-dependency-versions-for-3pl-compliance.md index 0ba584964..907053db1 100644 --- a/_changelog-files/2025/2025-06-23-surveymonkey-v2-bump-dependency-versions-for-3pl-compliance.md +++ b/_changelog-files/2025/2025-06-23-surveymonkey-v2-bump-dependency-versions-for-3pl-compliance.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: surveymonkey connection-version: 2 -pull_request: "https://github.com/singer-io/tap-surveymonkey/pull/35" +pull-request: "https://github.com/singer-io/tap-surveymonkey/pull/35" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-06-24-bigcommerce-v1-bump-requests-to-resolve-cve-2024-47081.md b/_changelog-files/2025/2025-06-24-bigcommerce-v1-bump-requests-to-resolve-cve-2024-47081.md index 1cfa25829..e191fc3ea 100644 --- a/_changelog-files/2025/2025-06-24-bigcommerce-v1-bump-requests-to-resolve-cve-2024-47081.md +++ b/_changelog-files/2025/2025-06-24-bigcommerce-v1-bump-requests-to-resolve-cve-2024-47081.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: bigcommerce connection-version: 1 -pull_request: "https://github.com/singer-io/tap-bigcommerce/pull/22" +pull-request: "https://github.com/singer-io/tap-bigcommerce/pull/22" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-06-25-recharge-v2-add-plans-stream.md b/_changelog-files/2025/2025-06-25-recharge-v2-add-plans-stream.md index 40e971329..4abd5d474 100644 --- a/_changelog-files/2025/2025-06-25-recharge-v2-add-plans-stream.md +++ b/_changelog-files/2025/2025-06-25-recharge-v2-add-plans-stream.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: recharge connection-version: 2 -pull_request: "https://github.com/singer-io/tap-recharge/pull/46" +pull-request: "https://github.com/singer-io/tap-recharge/pull/46" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-09-pipedrive-v1-upgrade-api-version-to-v2.md b/_changelog-files/2025/2025-07-09-pipedrive-v1-upgrade-api-version-to-v2.md index 48757ca46..8cb06afd6 100644 --- a/_changelog-files/2025/2025-07-09-pipedrive-v1-upgrade-api-version-to-v2.md +++ b/_changelog-files/2025/2025-07-09-pipedrive-v1-upgrade-api-version-to-v2.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: pipedrive connection-version: 1 -pull_request: "https://github.com/singer-io/tap-pipedrive/pull/144" +pull-request: "https://github.com/singer-io/tap-pipedrive/pull/144" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-09-shopify-v3--add-new-stream-fulfillment-orders.md b/_changelog-files/2025/2025-07-09-shopify-v3--add-new-stream-fulfillment-orders.md index c83b42659..ef7438855 100644 --- a/_changelog-files/2025/2025-07-09-shopify-v3--add-new-stream-fulfillment-orders.md +++ b/_changelog-files/2025/2025-07-09-shopify-v3--add-new-stream-fulfillment-orders.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: shopify connection-version: 3 -pull_request: "https://github.com/singer-io/tap-shopify/pull/222" +pull-request: "https://github.com/singer-io/tap-shopify/pull/222" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-09-shopify-v3-add-fields-in-orders-stream--retaillocation-and-location-id-(within-fulfillments).md b/_changelog-files/2025/2025-07-09-shopify-v3-add-fields-in-orders-stream--retaillocation-and-location-id-(within-fulfillments).md index 0da335c17..d0c229005 100644 --- a/_changelog-files/2025/2025-07-09-shopify-v3-add-fields-in-orders-stream--retaillocation-and-location-id-(within-fulfillments).md +++ b/_changelog-files/2025/2025-07-09-shopify-v3-add-fields-in-orders-stream--retaillocation-and-location-id-(within-fulfillments).md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: shopify connection-version: 3 -pull_request: "https://github.com/singer-io/tap-shopify/pull/219" +pull-request: "https://github.com/singer-io/tap-shopify/pull/219" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-10-pipedrive-v1-fix-datetime-conversion-and-nonetype-error.md b/_changelog-files/2025/2025-07-10-pipedrive-v1-fix-datetime-conversion-and-nonetype-error.md index 1f6615758..ec9c8fa0d 100644 --- a/_changelog-files/2025/2025-07-10-pipedrive-v1-fix-datetime-conversion-and-nonetype-error.md +++ b/_changelog-files/2025/2025-07-10-pipedrive-v1-fix-datetime-conversion-and-nonetype-error.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: pipedrive connection-version: 1 -pull_request: "https://github.com/singer-io/tap-pipedrive/pull/146" +pull-request: "https://github.com/singer-io/tap-pipedrive/pull/146" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-dixa-v1-bump-versions.md b/_changelog-files/2025/2025-07-14-dixa-v1-bump-versions.md index 344d319c2..251c10fb1 100644 --- a/_changelog-files/2025/2025-07-14-dixa-v1-bump-versions.md +++ b/_changelog-files/2025/2025-07-14-dixa-v1-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: dixa connection-version: 1 -pull_request: "https://github.com/singer-io/tap-dixa/pull/27" +pull-request: "https://github.com/singer-io/tap-dixa/pull/27" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-dynamodb-v1-bump-versions.md b/_changelog-files/2025/2025-07-14-dynamodb-v1-bump-versions.md index 9df9dc4b5..32bc0fafd 100644 --- a/_changelog-files/2025/2025-07-14-dynamodb-v1-bump-versions.md +++ b/_changelog-files/2025/2025-07-14-dynamodb-v1-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: dynamodb connection-version: 1 -pull_request: "https://github.com/singer-io/tap-dynamodb/pull/61" +pull-request: "https://github.com/singer-io/tap-dynamodb/pull/61" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-facebook-v1-bump-versions.md b/_changelog-files/2025/2025-07-14-facebook-v1-bump-versions.md index 962c0f2a8..dee67fe21 100644 --- a/_changelog-files/2025/2025-07-14-facebook-v1-bump-versions.md +++ b/_changelog-files/2025/2025-07-14-facebook-v1-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: facebook-ads connection-version: 1 -pull_request: "https://github.com/singer-io/tap-facebook/pull/247" +pull-request: "https://github.com/singer-io/tap-facebook/pull/247" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-frontapp-v2-bump-versions.md b/_changelog-files/2025/2025-07-14-frontapp-v2-bump-versions.md index f60179b27..b56602779 100644 --- a/_changelog-files/2025/2025-07-14-frontapp-v2-bump-versions.md +++ b/_changelog-files/2025/2025-07-14-frontapp-v2-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: frontapp connection-version: 2 -pull_request: "https://github.com/singer-io/tap-frontapp/pull/31" +pull-request: "https://github.com/singer-io/tap-frontapp/pull/31" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-fullstory-v1-bump-versions.md b/_changelog-files/2025/2025-07-14-fullstory-v1-bump-versions.md index 875145c96..5de6e87d8 100644 --- a/_changelog-files/2025/2025-07-14-fullstory-v1-bump-versions.md +++ b/_changelog-files/2025/2025-07-14-fullstory-v1-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: fullstory connection-version: 1 -pull_request: "https://github.com/singer-io/tap-fullstory/pull/13" +pull-request: "https://github.com/singer-io/tap-fullstory/pull/13" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-ga360-v1-bump-versions.md b/_changelog-files/2025/2025-07-14-ga360-v1-bump-versions.md index 7f50fa13a..303566bb8 100644 --- a/_changelog-files/2025/2025-07-14-ga360-v1-bump-versions.md +++ b/_changelog-files/2025/2025-07-14-ga360-v1-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-analytics-360 connection-version: 1 -pull_request: "https://github.com/singer-io/tap-ga360/pull/8" +pull-request: "https://github.com/singer-io/tap-ga360/pull/8" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-ga4-v1-bump-versions.md b/_changelog-files/2025/2025-07-14-ga4-v1-bump-versions.md index 41db49782..5f3219b3e 100644 --- a/_changelog-files/2025/2025-07-14-ga4-v1-bump-versions.md +++ b/_changelog-files/2025/2025-07-14-ga4-v1-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-analytics-4 connection-version: 1 -pull_request: "https://github.com/singer-io/tap-ga4/pull/113" +pull-request: "https://github.com/singer-io/tap-ga4/pull/113" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-gitlab-v1-bump-versions.md b/_changelog-files/2025/2025-07-14-gitlab-v1-bump-versions.md index f64b1ba39..78d507ad1 100644 --- a/_changelog-files/2025/2025-07-14-gitlab-v1-bump-versions.md +++ b/_changelog-files/2025/2025-07-14-gitlab-v1-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: gitlab connection-version: 1 -pull_request: "https://github.com/singer-io/tap-gitlab/pull/40" +pull-request: "https://github.com/singer-io/tap-gitlab/pull/40" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-google-search-console-v1-bump-versions.md b/_changelog-files/2025/2025-07-14-google-search-console-v1-bump-versions.md index fc715d1e5..cdc285b75 100644 --- a/_changelog-files/2025/2025-07-14-google-search-console-v1-bump-versions.md +++ b/_changelog-files/2025/2025-07-14-google-search-console-v1-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-search-console connection-version: 1 -pull_request: "https://github.com/singer-io/tap-google-search-console/pull/46" +pull-request: "https://github.com/singer-io/tap-google-search-console/pull/46" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-hubspot-v3-bump-versions.md b/_changelog-files/2025/2025-07-14-hubspot-v3-bump-versions.md index 21c775bca..05579e664 100644 --- a/_changelog-files/2025/2025-07-14-hubspot-v3-bump-versions.md +++ b/_changelog-files/2025/2025-07-14-hubspot-v3-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: hubspot connection-version: 3 -pull_request: "https://github.com/singer-io/tap-hubspot/pull/268" +pull-request: "https://github.com/singer-io/tap-hubspot/pull/268" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-intercom-v2-bump-versions.md b/_changelog-files/2025/2025-07-14-intercom-v2-bump-versions.md index 2b9b82e26..98544f045 100644 --- a/_changelog-files/2025/2025-07-14-intercom-v2-bump-versions.md +++ b/_changelog-files/2025/2025-07-14-intercom-v2-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: intercom connection-version: 2 -pull_request: "https://github.com/singer-io/tap-intercom/pull/80" +pull-request: "https://github.com/singer-io/tap-intercom/pull/80" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-jira-v2-bump-versions.md b/_changelog-files/2025/2025-07-14-jira-v2-bump-versions.md index 03796b355..7437a49fa 100644 --- a/_changelog-files/2025/2025-07-14-jira-v2-bump-versions.md +++ b/_changelog-files/2025/2025-07-14-jira-v2-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: jira connection-version: 2 -pull_request: "https://github.com/singer-io/tap-jira/pull/118" +pull-request: "https://github.com/singer-io/tap-jira/pull/118" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-klaviyo-v1-bump-dependencies-for-compliance.md b/_changelog-files/2025/2025-07-14-klaviyo-v1-bump-dependencies-for-compliance.md index 8bebd9508..05803a904 100644 --- a/_changelog-files/2025/2025-07-14-klaviyo-v1-bump-dependencies-for-compliance.md +++ b/_changelog-files/2025/2025-07-14-klaviyo-v1-bump-dependencies-for-compliance.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: klaviyo connection-version: 1 -pull_request: "https://github.com/singer-io/tap-klaviyo/pull/77" +pull-request: "https://github.com/singer-io/tap-klaviyo/pull/77" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-linkedin-ads-v2-bump-versions.md b/_changelog-files/2025/2025-07-14-linkedin-ads-v2-bump-versions.md index 0ce560c8d..ab17621d1 100644 --- a/_changelog-files/2025/2025-07-14-linkedin-ads-v2-bump-versions.md +++ b/_changelog-files/2025/2025-07-14-linkedin-ads-v2-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: linkedin-ads connection-version: 2 -pull_request: "https://github.com/singer-io/tap-linkedin-ads/pull/78" +pull-request: "https://github.com/singer-io/tap-linkedin-ads/pull/78" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-mailchimp-v1-bump-dependencies-for-compliance.md b/_changelog-files/2025/2025-07-14-mailchimp-v1-bump-dependencies-for-compliance.md index bece774d5..e1172b8d3 100644 --- a/_changelog-files/2025/2025-07-14-mailchimp-v1-bump-dependencies-for-compliance.md +++ b/_changelog-files/2025/2025-07-14-mailchimp-v1-bump-dependencies-for-compliance.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mailchimp connection-version: 1 -pull_request: "https://github.com/singer-io/tap-mailchimp/pull/67" +pull-request: "https://github.com/singer-io/tap-mailchimp/pull/67" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-marketo-v2-bump-versions.md b/_changelog-files/2025/2025-07-14-marketo-v2-bump-versions.md index 8570112ce..35fb9b51f 100644 --- a/_changelog-files/2025/2025-07-14-marketo-v2-bump-versions.md +++ b/_changelog-files/2025/2025-07-14-marketo-v2-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: marketo connection-version: 2 -pull_request: "https://github.com/singer-io/tap-marketo/pull/99" +pull-request: "https://github.com/singer-io/tap-marketo/pull/99" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-marketo-v2-removes-metadata-from-stream-level-catalog-entry.md b/_changelog-files/2025/2025-07-14-marketo-v2-removes-metadata-from-stream-level-catalog-entry.md index ab50b6220..fcf89df25 100644 --- a/_changelog-files/2025/2025-07-14-marketo-v2-removes-metadata-from-stream-level-catalog-entry.md +++ b/_changelog-files/2025/2025-07-14-marketo-v2-removes-metadata-from-stream-level-catalog-entry.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: marketo connection-version: 2 -pull_request: "https://github.com/singer-io/tap-marketo/pull/98" +pull-request: "https://github.com/singer-io/tap-marketo/pull/98" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-mixpanel-v1-bump-versions.md b/_changelog-files/2025/2025-07-14-mixpanel-v1-bump-versions.md index 7f0aa3034..ceede03c1 100644 --- a/_changelog-files/2025/2025-07-14-mixpanel-v1-bump-versions.md +++ b/_changelog-files/2025/2025-07-14-mixpanel-v1-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mixpanel connection-version: 1 -pull_request: "https://github.com/singer-io/tap-mixpanel/pull/66" +pull-request: "https://github.com/singer-io/tap-mixpanel/pull/66" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-outreach-v1-bump-versions.md b/_changelog-files/2025/2025-07-14-outreach-v1-bump-versions.md index 4f8431951..e25fe60ed 100644 --- a/_changelog-files/2025/2025-07-14-outreach-v1-bump-versions.md +++ b/_changelog-files/2025/2025-07-14-outreach-v1-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: outreach connection-version: 1 -pull_request: "https://github.com/singer-io/tap-outreach/pull/40" +pull-request: "https://github.com/singer-io/tap-outreach/pull/40" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-pardot-v1-bump-versions.md b/_changelog-files/2025/2025-07-14-pardot-v1-bump-versions.md index 5392fbcef..01ddc8599 100644 --- a/_changelog-files/2025/2025-07-14-pardot-v1-bump-versions.md +++ b/_changelog-files/2025/2025-07-14-pardot-v1-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: pardot connection-version: 1 -pull_request: "https://github.com/singer-io/tap-pardot/pull/48" +pull-request: "https://github.com/singer-io/tap-pardot/pull/48" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-pendo-v1-bump-versions.md b/_changelog-files/2025/2025-07-14-pendo-v1-bump-versions.md index 84cd4b2e4..674dae3a0 100644 --- a/_changelog-files/2025/2025-07-14-pendo-v1-bump-versions.md +++ b/_changelog-files/2025/2025-07-14-pendo-v1-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: pendo connection-version: 1 -pull_request: "https://github.com/singer-io/tap-pendo/pull/131" +pull-request: "https://github.com/singer-io/tap-pendo/pull/131" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-quickbooks-v2-bump-versions.md b/_changelog-files/2025/2025-07-14-quickbooks-v2-bump-versions.md index 52adbc3a0..3eb368705 100644 --- a/_changelog-files/2025/2025-07-14-quickbooks-v2-bump-versions.md +++ b/_changelog-files/2025/2025-07-14-quickbooks-v2-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: quickbooks connection-version: 2 -pull_request: "https://github.com/singer-io/tap-quickbooks/pull/75" +pull-request: "https://github.com/singer-io/tap-quickbooks/pull/75" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-recharge-v2-bump-versions.md b/_changelog-files/2025/2025-07-14-recharge-v2-bump-versions.md index 4820ea7e8..476b35c0c 100644 --- a/_changelog-files/2025/2025-07-14-recharge-v2-bump-versions.md +++ b/_changelog-files/2025/2025-07-14-recharge-v2-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: recharge connection-version: 2 -pull_request: "https://github.com/singer-io/tap-recharge/pull/47" +pull-request: "https://github.com/singer-io/tap-recharge/pull/47" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-s3-csv-v1-bump-versions.md b/_changelog-files/2025/2025-07-14-s3-csv-v1-bump-versions.md index c337cfa8d..264a283fd 100644 --- a/_changelog-files/2025/2025-07-14-s3-csv-v1-bump-versions.md +++ b/_changelog-files/2025/2025-07-14-s3-csv-v1-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: s3 connection-version: 1 -pull_request: "https://github.com/singer-io/tap-s3-csv/pull/72" +pull-request: "https://github.com/singer-io/tap-s3-csv/pull/72" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-sailthru-v1-bump-versions.md b/_changelog-files/2025/2025-07-14-sailthru-v1-bump-versions.md index 8dd1dbccd..b93c9b4c6 100644 --- a/_changelog-files/2025/2025-07-14-sailthru-v1-bump-versions.md +++ b/_changelog-files/2025/2025-07-14-sailthru-v1-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: sailthru connection-version: 1 -pull_request: "https://github.com/singer-io/tap-sailthru/pull/23" +pull-request: "https://github.com/singer-io/tap-sailthru/pull/23" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-taboola-v1-bump-versions.md b/_changelog-files/2025/2025-07-14-taboola-v1-bump-versions.md index 5ffc4270d..4a70f4674 100644 --- a/_changelog-files/2025/2025-07-14-taboola-v1-bump-versions.md +++ b/_changelog-files/2025/2025-07-14-taboola-v1-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: taboola connection-version: 1 -pull_request: "https://github.com/singer-io/tap-taboola/pull/23" +pull-request: "https://github.com/singer-io/tap-taboola/pull/23" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-tiktok-ads-v1-bump-versions.md b/_changelog-files/2025/2025-07-14-tiktok-ads-v1-bump-versions.md index f103f1678..69c2d82e8 100644 --- a/_changelog-files/2025/2025-07-14-tiktok-ads-v1-bump-versions.md +++ b/_changelog-files/2025/2025-07-14-tiktok-ads-v1-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: tiktok-ads connection-version: 1 -pull_request: "https://github.com/singer-io/tap-tiktok-ads/pull/30" +pull-request: "https://github.com/singer-io/tap-tiktok-ads/pull/30" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-trello-v1-bump-requirement-versions.md b/_changelog-files/2025/2025-07-14-trello-v1-bump-requirement-versions.md index d6a22ae08..9d4227b46 100644 --- a/_changelog-files/2025/2025-07-14-trello-v1-bump-requirement-versions.md +++ b/_changelog-files/2025/2025-07-14-trello-v1-bump-requirement-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: trello connection-version: 1 -pull_request: "https://github.com/singer-io/tap-trello/pull/35" +pull-request: "https://github.com/singer-io/tap-trello/pull/35" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-twilio-v1-bump-versions.md b/_changelog-files/2025/2025-07-14-twilio-v1-bump-versions.md index 661792bd1..9007afd7b 100644 --- a/_changelog-files/2025/2025-07-14-twilio-v1-bump-versions.md +++ b/_changelog-files/2025/2025-07-14-twilio-v1-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: twilio connection-version: 1 -pull_request: "https://github.com/singer-io/tap-twilio/pull/12" +pull-request: "https://github.com/singer-io/tap-twilio/pull/12" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-workday-raas-v1-bump-versions.md b/_changelog-files/2025/2025-07-14-workday-raas-v1-bump-versions.md index 2f3d4c912..b995f3f16 100644 --- a/_changelog-files/2025/2025-07-14-workday-raas-v1-bump-versions.md +++ b/_changelog-files/2025/2025-07-14-workday-raas-v1-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: workday-raas connection-version: 1 -pull_request: "https://github.com/singer-io/tap-workday-raas/pull/18" +pull-request: "https://github.com/singer-io/tap-workday-raas/pull/18" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-zendesk-chat-v1-bump-versions.md b/_changelog-files/2025/2025-07-14-zendesk-chat-v1-bump-versions.md index c03097837..a8d9ad986 100644 --- a/_changelog-files/2025/2025-07-14-zendesk-chat-v1-bump-versions.md +++ b/_changelog-files/2025/2025-07-14-zendesk-chat-v1-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: zendesk-chat connection-version: 1 -pull_request: "https://github.com/singer-io/tap-zendesk-chat/pull/55" +pull-request: "https://github.com/singer-io/tap-zendesk-chat/pull/55" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-zendesk-v2-bump-versions.md b/_changelog-files/2025/2025-07-14-zendesk-v2-bump-versions.md index 6899febcd..282babd65 100644 --- a/_changelog-files/2025/2025-07-14-zendesk-v2-bump-versions.md +++ b/_changelog-files/2025/2025-07-14-zendesk-v2-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: zendesk connection-version: 2 -pull_request: "https://github.com/singer-io/tap-zendesk/pull/159" +pull-request: "https://github.com/singer-io/tap-zendesk/pull/159" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-zoom-v2-bump-versions.md b/_changelog-files/2025/2025-07-14-zoom-v2-bump-versions.md index d90828a5e..c42f636a1 100644 --- a/_changelog-files/2025/2025-07-14-zoom-v2-bump-versions.md +++ b/_changelog-files/2025/2025-07-14-zoom-v2-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: zoom connection-version: 2 -pull_request: "https://github.com/singer-io/tap-zoom/pull/35" +pull-request: "https://github.com/singer-io/tap-zoom/pull/35" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-14-zuora-v1-bump-dependencies.md b/_changelog-files/2025/2025-07-14-zuora-v1-bump-dependencies.md index 4bc78357f..f57de4414 100644 --- a/_changelog-files/2025/2025-07-14-zuora-v1-bump-dependencies.md +++ b/_changelog-files/2025/2025-07-14-zuora-v1-bump-dependencies.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: zuora connection-version: 1 -pull_request: "https://github.com/singer-io/tap-zuora/pull/82" +pull-request: "https://github.com/singer-io/tap-zuora/pull/82" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-16-activecampaign-v1-bump-requests-to-v2-32-4.md b/_changelog-files/2025/2025-07-16-activecampaign-v1-bump-requests-to-v2-32-4.md index 1e62cba08..7d79210e4 100644 --- a/_changelog-files/2025/2025-07-16-activecampaign-v1-bump-requests-to-v2-32-4.md +++ b/_changelog-files/2025/2025-07-16-activecampaign-v1-bump-requests-to-v2-32-4.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: activecampaign connection-version: 1 -pull_request: "https://github.com/singer-io/tap-activecampaign/pull/46" +pull-request: "https://github.com/singer-io/tap-activecampaign/pull/46" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-16-recurly-v1-bump-dependencies.md b/_changelog-files/2025/2025-07-16-recurly-v1-bump-dependencies.md index 7919eb5b9..7d2fa9fae 100644 --- a/_changelog-files/2025/2025-07-16-recurly-v1-bump-dependencies.md +++ b/_changelog-files/2025/2025-07-16-recurly-v1-bump-dependencies.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: recurly connection-version: 1 -pull_request: "https://github.com/singer-io/tap-recurly/pull/13" +pull-request: "https://github.com/singer-io/tap-recurly/pull/13" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-16-toggl-v1-bump-dependencies.md b/_changelog-files/2025/2025-07-16-toggl-v1-bump-dependencies.md index 2689c9902..56e7f7573 100644 --- a/_changelog-files/2025/2025-07-16-toggl-v1-bump-dependencies.md +++ b/_changelog-files/2025/2025-07-16-toggl-v1-bump-dependencies.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: toggl connection-version: 1 -pull_request: "https://github.com/singer-io/tap-toggl/pull/23" +pull-request: "https://github.com/singer-io/tap-toggl/pull/23" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-16-xero-v1-bump-versions.md b/_changelog-files/2025/2025-07-16-xero-v1-bump-versions.md index dd82cc28a..5ef897c9a 100644 --- a/_changelog-files/2025/2025-07-16-xero-v1-bump-versions.md +++ b/_changelog-files/2025/2025-07-16-xero-v1-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: xero connection-version: 1 -pull_request: "https://github.com/singer-io/tap-xero/pull/122" +pull-request: "https://github.com/singer-io/tap-xero/pull/122" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-16-yotpo-v2-bump-versions.md b/_changelog-files/2025/2025-07-16-yotpo-v2-bump-versions.md index 9da4b4cc9..52e3790ea 100644 --- a/_changelog-files/2025/2025-07-16-yotpo-v2-bump-versions.md +++ b/_changelog-files/2025/2025-07-16-yotpo-v2-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: yotpo connection-version: 2 -pull_request: "https://github.com/singer-io/tap-yotpo/pull/61" +pull-request: "https://github.com/singer-io/tap-yotpo/pull/61" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-17-appsflyer-v1-bump-versions.md b/_changelog-files/2025/2025-07-17-appsflyer-v1-bump-versions.md index 4bfe7bb7d..f33d22ac5 100644 --- a/_changelog-files/2025/2025-07-17-appsflyer-v1-bump-versions.md +++ b/_changelog-files/2025/2025-07-17-appsflyer-v1-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: appsflyer connection-version: 1 -pull_request: "https://github.com/singer-io/tap-appsflyer/pull/49" +pull-request: "https://github.com/singer-io/tap-appsflyer/pull/49" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-17-google-ads-v2-bump-versions.md b/_changelog-files/2025/2025-07-17-google-ads-v2-bump-versions.md index e4360f81b..34c18acd1 100644 --- a/_changelog-files/2025/2025-07-17-google-ads-v2-bump-versions.md +++ b/_changelog-files/2025/2025-07-17-google-ads-v2-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-ads connection-version: 2 -pull_request: "https://github.com/singer-io/tap-google-ads/pull/96" +pull-request: "https://github.com/singer-io/tap-google-ads/pull/96" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-17-google-sheets-v3-bump-versions.md b/_changelog-files/2025/2025-07-17-google-sheets-v3-bump-versions.md index 54060b6e5..c5b54d3ee 100644 --- a/_changelog-files/2025/2025-07-17-google-sheets-v3-bump-versions.md +++ b/_changelog-files/2025/2025-07-17-google-sheets-v3-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-sheets connection-version: 3 -pull_request: "https://github.com/singer-io/tap-google-sheets/pull/98" +pull-request: "https://github.com/singer-io/tap-google-sheets/pull/98" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-17-harvest-v2-bump-versions.md b/_changelog-files/2025/2025-07-17-harvest-v2-bump-versions.md index 3d8b673f5..1d4a12369 100644 --- a/_changelog-files/2025/2025-07-17-harvest-v2-bump-versions.md +++ b/_changelog-files/2025/2025-07-17-harvest-v2-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: harvest connection-version: 2 -pull_request: "https://github.com/singer-io/tap-harvest/pull/66" +pull-request: "https://github.com/singer-io/tap-harvest/pull/66" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-17-sftp-v1-bump-versions.md b/_changelog-files/2025/2025-07-17-sftp-v1-bump-versions.md index 89c2f6dd6..7e2145c66 100644 --- a/_changelog-files/2025/2025-07-17-sftp-v1-bump-versions.md +++ b/_changelog-files/2025/2025-07-17-sftp-v1-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: sftp connection-version: 1 -pull_request: "https://github.com/singer-io/tap-sftp/pull/49" +pull-request: "https://github.com/singer-io/tap-sftp/pull/49" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-17-shopify-v3-bump-versions.md b/_changelog-files/2025/2025-07-17-shopify-v3-bump-versions.md index 87b7a90bd..96dcbe85a 100644 --- a/_changelog-files/2025/2025-07-17-shopify-v3-bump-versions.md +++ b/_changelog-files/2025/2025-07-17-shopify-v3-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: shopify connection-version: 3 -pull_request: "https://github.com/singer-io/tap-shopify/pull/228" +pull-request: "https://github.com/singer-io/tap-shopify/pull/228" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-17-snapchat-ads-v1-bump-dependencies-for-compliance.md b/_changelog-files/2025/2025-07-17-snapchat-ads-v1-bump-dependencies-for-compliance.md index c6da72d83..57da6a42e 100644 --- a/_changelog-files/2025/2025-07-17-snapchat-ads-v1-bump-dependencies-for-compliance.md +++ b/_changelog-files/2025/2025-07-17-snapchat-ads-v1-bump-dependencies-for-compliance.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: snapchat-ads connection-version: 1 -pull_request: "https://github.com/singer-io/tap-snapchat-ads/pull/31" +pull-request: "https://github.com/singer-io/tap-snapchat-ads/pull/31" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-17-snapchat-ads-v1-bump-versions.md b/_changelog-files/2025/2025-07-17-snapchat-ads-v1-bump-versions.md index d8b8cf6dd..0ea2f08aa 100644 --- a/_changelog-files/2025/2025-07-17-snapchat-ads-v1-bump-versions.md +++ b/_changelog-files/2025/2025-07-17-snapchat-ads-v1-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: snapchat-ads connection-version: 1 -pull_request: "https://github.com/singer-io/tap-snapchat-ads/pull/32" +pull-request: "https://github.com/singer-io/tap-snapchat-ads/pull/32" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-17-typeform-v2-bump-versions.md b/_changelog-files/2025/2025-07-17-typeform-v2-bump-versions.md index 9a2ad9320..170e75c58 100644 --- a/_changelog-files/2025/2025-07-17-typeform-v2-bump-versions.md +++ b/_changelog-files/2025/2025-07-17-typeform-v2-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: typeform connection-version: 2 -pull_request: "https://github.com/singer-io/tap-typeform/pull/85" +pull-request: "https://github.com/singer-io/tap-typeform/pull/85" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-21-adroll-v1-bump-dependency-versions-for-compliance.md b/_changelog-files/2025/2025-07-21-adroll-v1-bump-dependency-versions-for-compliance.md index 5e2e2ca59..e85745d44 100644 --- a/_changelog-files/2025/2025-07-21-adroll-v1-bump-dependency-versions-for-compliance.md +++ b/_changelog-files/2025/2025-07-21-adroll-v1-bump-dependency-versions-for-compliance.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: adroll connection-version: 1 -pull_request: "https://github.com/singer-io/tap-adroll/pull/31" +pull-request: "https://github.com/singer-io/tap-adroll/pull/31" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-21-bing-ads-v2-bump-versions.md b/_changelog-files/2025/2025-07-21-bing-ads-v2-bump-versions.md index 749268e84..4c4b08312 100644 --- a/_changelog-files/2025/2025-07-21-bing-ads-v2-bump-versions.md +++ b/_changelog-files/2025/2025-07-21-bing-ads-v2-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: bing-ads connection-version: 2 -pull_request: "https://github.com/singer-io/tap-bing-ads/pull/119" +pull-request: "https://github.com/singer-io/tap-bing-ads/pull/119" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-21-braintree-v1-bump-dependencies-for-compliance.md b/_changelog-files/2025/2025-07-21-braintree-v1-bump-dependencies-for-compliance.md index 2131d6723..6983bf122 100644 --- a/_changelog-files/2025/2025-07-21-braintree-v1-bump-dependencies-for-compliance.md +++ b/_changelog-files/2025/2025-07-21-braintree-v1-bump-dependencies-for-compliance.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: braintree connection-version: 1 -pull_request: "https://github.com/singer-io/tap-braintree/pull/56" +pull-request: "https://github.com/singer-io/tap-braintree/pull/56" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-21-chargify-v1-bump-dependency-versions-and-add-changelog-entry.md b/_changelog-files/2025/2025-07-21-chargify-v1-bump-dependency-versions-and-add-changelog-entry.md index 6f33e4fbe..27074bb5d 100644 --- a/_changelog-files/2025/2025-07-21-chargify-v1-bump-dependency-versions-and-add-changelog-entry.md +++ b/_changelog-files/2025/2025-07-21-chargify-v1-bump-dependency-versions-and-add-changelog-entry.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: chargify connection-version: 1 -pull_request: "https://github.com/singer-io/tap-chargify/pull/53" +pull-request: "https://github.com/singer-io/tap-chargify/pull/53" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-21-closeio-v1-bump-dependencies-for-compliance.md b/_changelog-files/2025/2025-07-21-closeio-v1-bump-dependencies-for-compliance.md index d17e99ed5..20c866a80 100644 --- a/_changelog-files/2025/2025-07-21-closeio-v1-bump-dependencies-for-compliance.md +++ b/_changelog-files/2025/2025-07-21-closeio-v1-bump-dependencies-for-compliance.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: closeio connection-version: 1 -pull_request: "https://github.com/singer-io/tap-closeio/pull/42" +pull-request: "https://github.com/singer-io/tap-closeio/pull/42" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-21-dixa-v1-bump-tap-version-and-update-changelog.md b/_changelog-files/2025/2025-07-21-dixa-v1-bump-tap-version-and-update-changelog.md index 26fa3a9ac..58552f2d6 100644 --- a/_changelog-files/2025/2025-07-21-dixa-v1-bump-tap-version-and-update-changelog.md +++ b/_changelog-files/2025/2025-07-21-dixa-v1-bump-tap-version-and-update-changelog.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: dixa connection-version: 1 -pull_request: "https://github.com/singer-io/tap-dixa/pull/28" +pull-request: "https://github.com/singer-io/tap-dixa/pull/28" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-21-github-v2-remove-sunset-projects-projectcards-and-projectcolumns-streams.md b/_changelog-files/2025/2025-07-21-github-v2-remove-sunset-projects-projectcards-and-projectcolumns-streams.md index 6b4e2025a..a92a2b1b6 100644 --- a/_changelog-files/2025/2025-07-21-github-v2-remove-sunset-projects-projectcards-and-projectcolumns-streams.md +++ b/_changelog-files/2025/2025-07-21-github-v2-remove-sunset-projects-projectcards-and-projectcolumns-streams.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: github connection-version: 2 -pull_request: "https://github.com/singer-io/tap-github/pull/218" +pull-request: "https://github.com/singer-io/tap-github/pull/218" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-21-helpscout-v1-bump-versions.md b/_changelog-files/2025/2025-07-21-helpscout-v1-bump-versions.md index 7453e4184..3145802f6 100644 --- a/_changelog-files/2025/2025-07-21-helpscout-v1-bump-versions.md +++ b/_changelog-files/2025/2025-07-21-helpscout-v1-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: helpscout connection-version: 1 -pull_request: "https://github.com/singer-io/tap-helpscout/pull/40" +pull-request: "https://github.com/singer-io/tap-helpscout/pull/40" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-21-iterable-v1-bump-versions.md b/_changelog-files/2025/2025-07-21-iterable-v1-bump-versions.md index 7a53ddf52..a1fcfca91 100644 --- a/_changelog-files/2025/2025-07-21-iterable-v1-bump-versions.md +++ b/_changelog-files/2025/2025-07-21-iterable-v1-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: iterable-core connection-version: 1 -pull_request: "https://github.com/singer-io/tap-iterable/pull/28" +pull-request: "https://github.com/singer-io/tap-iterable/pull/28" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-21-listrak-v1-bump-dependencies-for-compliance.md b/_changelog-files/2025/2025-07-21-listrak-v1-bump-dependencies-for-compliance.md index 5c8152546..fe7c05b77 100644 --- a/_changelog-files/2025/2025-07-21-listrak-v1-bump-dependencies-for-compliance.md +++ b/_changelog-files/2025/2025-07-21-listrak-v1-bump-dependencies-for-compliance.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: listrak connection-version: 1 -pull_request: "https://github.com/singer-io/tap-listrak/pull/22" +pull-request: "https://github.com/singer-io/tap-listrak/pull/22" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-21-mailshake-v1-bump-versions.md b/_changelog-files/2025/2025-07-21-mailshake-v1-bump-versions.md index 35520ee64..73cf0db80 100644 --- a/_changelog-files/2025/2025-07-21-mailshake-v1-bump-versions.md +++ b/_changelog-files/2025/2025-07-21-mailshake-v1-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mailshake connection-version: 1 -pull_request: "https://github.com/singer-io/tap-mailshake/pull/12" +pull-request: "https://github.com/singer-io/tap-mailshake/pull/12" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-21-pepperjam-v1-bump-dependency-versions-and-add-changelog-entry.md b/_changelog-files/2025/2025-07-21-pepperjam-v1-bump-dependency-versions-and-add-changelog-entry.md index 3b2c26c03..1f52b161c 100644 --- a/_changelog-files/2025/2025-07-21-pepperjam-v1-bump-dependency-versions-and-add-changelog-entry.md +++ b/_changelog-files/2025/2025-07-21-pepperjam-v1-bump-dependency-versions-and-add-changelog-entry.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: pepperjam connection-version: 1 -pull_request: "https://github.com/singer-io/tap-pepperjam/pull/10" +pull-request: "https://github.com/singer-io/tap-pepperjam/pull/10" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-21-saasoptics-v1-compliance-changes.md b/_changelog-files/2025/2025-07-21-saasoptics-v1-compliance-changes.md index 3e04a8f01..583e7daf4 100644 --- a/_changelog-files/2025/2025-07-21-saasoptics-v1-compliance-changes.md +++ b/_changelog-files/2025/2025-07-21-saasoptics-v1-compliance-changes.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: saasoptics connection-version: 1 -pull_request: "https://github.com/singer-io/tap-saasoptics/pull/10" +pull-request: "https://github.com/singer-io/tap-saasoptics/pull/10" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-21-salesforce-v2-bump-requirement-versions.md b/_changelog-files/2025/2025-07-21-salesforce-v2-bump-requirement-versions.md index 9dcb4620b..30741d1d2 100644 --- a/_changelog-files/2025/2025-07-21-salesforce-v2-bump-requirement-versions.md +++ b/_changelog-files/2025/2025-07-21-salesforce-v2-bump-requirement-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: salesforce connection-version: 2 -pull_request: "https://github.com/singer-io/tap-salesforce/pull/187" +pull-request: "https://github.com/singer-io/tap-salesforce/pull/187" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-21-sendgrid-v1-bump-versions.md b/_changelog-files/2025/2025-07-21-sendgrid-v1-bump-versions.md index 797b20d46..e046250e0 100644 --- a/_changelog-files/2025/2025-07-21-sendgrid-v1-bump-versions.md +++ b/_changelog-files/2025/2025-07-21-sendgrid-v1-bump-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: sendgrid-core connection-version: 1 -pull_request: "https://github.com/singer-io/tap-sendgrid/pull/15" +pull-request: "https://github.com/singer-io/tap-sendgrid/pull/15" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-22-shopify-v3-set-max-size-of-pagination-to-30-for-fullfilment_orders.md b/_changelog-files/2025/2025-07-22-shopify-v3-set-max-size-of-pagination-to-30-for-fullfilment_orders.md index 74eb334f2..116072011 100644 --- a/_changelog-files/2025/2025-07-22-shopify-v3-set-max-size-of-pagination-to-30-for-fullfilment_orders.md +++ b/_changelog-files/2025/2025-07-22-shopify-v3-set-max-size-of-pagination-to-30-for-fullfilment_orders.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: shopify connection-version: 3 -pull_request: "https://github.com/singer-io/tap-shopify/pull/230" +pull-request: "https://github.com/singer-io/tap-shopify/pull/230" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-23-heap-v1-adds-credentials_cache_path-property.md b/_changelog-files/2025/2025-07-23-heap-v1-adds-credentials_cache_path-property.md index 25f6f9e14..cd2244ee0 100644 --- a/_changelog-files/2025/2025-07-23-heap-v1-adds-credentials_cache_path-property.md +++ b/_changelog-files/2025/2025-07-23-heap-v1-adds-credentials_cache_path-property.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: heap connection-version: 1 -pull_request: "https://github.com/singer-io/tap-heap/pull/22" +pull-request: "https://github.com/singer-io/tap-heap/pull/22" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-28-braintree-v1-circleci-upgrade-swap-to-uv.md b/_changelog-files/2025/2025-07-28-braintree-v1-circleci-upgrade-swap-to-uv.md index 861c04cbb..454b9c3f0 100644 --- a/_changelog-files/2025/2025-07-28-braintree-v1-circleci-upgrade-swap-to-uv.md +++ b/_changelog-files/2025/2025-07-28-braintree-v1-circleci-upgrade-swap-to-uv.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: braintree connection-version: 1 -pull_request: "https://github.com/singer-io/tap-braintree/pull/57" +pull-request: "https://github.com/singer-io/tap-braintree/pull/57" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-28-s3-csv-v1-sac-27925-circleci-upgrade.md b/_changelog-files/2025/2025-07-28-s3-csv-v1-sac-27925-circleci-upgrade.md index 5cb110295..e130a63cd 100644 --- a/_changelog-files/2025/2025-07-28-s3-csv-v1-sac-27925-circleci-upgrade.md +++ b/_changelog-files/2025/2025-07-28-s3-csv-v1-sac-27925-circleci-upgrade.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: s3 connection-version: 1 -pull_request: "https://github.com/singer-io/tap-s3-csv/pull/76" +pull-request: "https://github.com/singer-io/tap-s3-csv/pull/76" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-30-amplitude-v1-gl-work.md b/_changelog-files/2025/2025-07-30-amplitude-v1-gl-work.md index 8dbc09d36..e49cab270 100644 --- a/_changelog-files/2025/2025-07-30-amplitude-v1-gl-work.md +++ b/_changelog-files/2025/2025-07-30-amplitude-v1-gl-work.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: amplitude connection-version: 1 -pull_request: "https://github.com/singer-io/tap-amplitude/pull/7" +pull-request: "https://github.com/singer-io/tap-amplitude/pull/7" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-31-google-ads-v2-fail-the-connection-once-every-3-days.md b/_changelog-files/2025/2025-07-31-google-ads-v2-fail-the-connection-once-every-3-days.md index fd043088e..cbc80313f 100644 --- a/_changelog-files/2025/2025-07-31-google-ads-v2-fail-the-connection-once-every-3-days.md +++ b/_changelog-files/2025/2025-07-31-google-ads-v2-fail-the-connection-once-every-3-days.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-ads connection-version: 2 -pull_request: "https://github.com/singer-io/tap-google-ads/pull/100" +pull-request: "https://github.com/singer-io/tap-google-ads/pull/100" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-31-google-ads-v2-upgrade-api-version-to-v20.md b/_changelog-files/2025/2025-07-31-google-ads-v2-upgrade-api-version-to-v20.md index 16ad1e464..066696377 100644 --- a/_changelog-files/2025/2025-07-31-google-ads-v2-upgrade-api-version-to-v20.md +++ b/_changelog-files/2025/2025-07-31-google-ads-v2-upgrade-api-version-to-v20.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-ads connection-version: 2 -pull_request: "https://github.com/singer-io/tap-google-ads/pull/97" +pull-request: "https://github.com/singer-io/tap-google-ads/pull/97" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-07-31-pendo-v1-use-replication_key-in-last_processed-instead-of-primary_key.md b/_changelog-files/2025/2025-07-31-pendo-v1-use-replication_key-in-last_processed-instead-of-primary_key.md index cd791a23b..4bcc610b8 100644 --- a/_changelog-files/2025/2025-07-31-pendo-v1-use-replication_key-in-last_processed-instead-of-primary_key.md +++ b/_changelog-files/2025/2025-07-31-pendo-v1-use-replication_key-in-last_processed-instead-of-primary_key.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: pendo connection-version: 1 -pull_request: "https://github.com/singer-io/tap-pendo/pull/133" +pull-request: "https://github.com/singer-io/tap-pendo/pull/133" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git "a/_changelog-files/2025/2025-08-05-shopify-v3-refactor-orders-stream-standard-graphql-\342\206\222-bulk-api-migration.md" "b/_changelog-files/2025/2025-08-05-shopify-v3-refactor-orders-stream-standard-graphql-\342\206\222-bulk-api-migration.md" index 320cf3e6f..3ec5bb331 100644 --- "a/_changelog-files/2025/2025-08-05-shopify-v3-refactor-orders-stream-standard-graphql-\342\206\222-bulk-api-migration.md" +++ "b/_changelog-files/2025/2025-08-05-shopify-v3-refactor-orders-stream-standard-graphql-\342\206\222-bulk-api-migration.md" @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: shopify connection-version: 3 -pull_request: "https://github.com/singer-io/tap-shopify/pull/227" +pull-request: "https://github.com/singer-io/tap-shopify/pull/227" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-08-07-shopify-v3-query-and-extract-multiple-pages-of-products-for-each-collection.md b/_changelog-files/2025/2025-08-07-shopify-v3-query-and-extract-multiple-pages-of-products-for-each-collection.md index e55020749..cb3c98234 100644 --- a/_changelog-files/2025/2025-08-07-shopify-v3-query-and-extract-multiple-pages-of-products-for-each-collection.md +++ b/_changelog-files/2025/2025-08-07-shopify-v3-query-and-extract-multiple-pages-of-products-for-each-collection.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: shopify connection-version: 3 -pull_request: "https://github.com/singer-io/tap-shopify/pull/231" +pull-request: "https://github.com/singer-io/tap-shopify/pull/231" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-08-11-quickbase-v1-circleci-upgrade.md b/_changelog-files/2025/2025-08-11-quickbase-v1-circleci-upgrade.md index 844abaf65..5e9faa731 100644 --- a/_changelog-files/2025/2025-08-11-quickbase-v1-circleci-upgrade.md +++ b/_changelog-files/2025/2025-08-11-quickbase-v1-circleci-upgrade.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: quick-base connection-version: 1 -pull_request: "https://github.com/singer-io/tap-quickbase/pull/27" +pull-request: "https://github.com/singer-io/tap-quickbase/pull/27" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-09-02-intercom-v2-update-to-python-3-12.md b/_changelog-files/2025/2025-09-02-intercom-v2-update-to-python-3-12.md index 711c9276e..d5baa705d 100644 --- a/_changelog-files/2025/2025-09-02-intercom-v2-update-to-python-3-12.md +++ b/_changelog-files/2025/2025-09-02-intercom-v2-update-to-python-3-12.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: intercom connection-version: 2 -pull_request: "https://github.com/singer-io/tap-intercom/pull/83" +pull-request: "https://github.com/singer-io/tap-intercom/pull/83" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-09-03-facebook-v1-upgrade-to-marketing-api-v23.md b/_changelog-files/2025/2025-09-03-facebook-v1-upgrade-to-marketing-api-v23.md index 11f7f5e4e..911b29fff 100644 --- a/_changelog-files/2025/2025-09-03-facebook-v1-upgrade-to-marketing-api-v23.md +++ b/_changelog-files/2025/2025-09-03-facebook-v1-upgrade-to-marketing-api-v23.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: facebook-ads connection-version: 1 -pull_request: "https://github.com/singer-io/tap-facebook/pull/255" +pull-request: "https://github.com/singer-io/tap-facebook/pull/255" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-09-03-github-v2-use-python-3-12-in-circleci.md b/_changelog-files/2025/2025-09-03-github-v2-use-python-3-12-in-circleci.md index 87d9acb73..58aafdc42 100644 --- a/_changelog-files/2025/2025-09-03-github-v2-use-python-3-12-in-circleci.md +++ b/_changelog-files/2025/2025-09-03-github-v2-use-python-3-12-in-circleci.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: github connection-version: 2 -pull_request: "https://github.com/singer-io/tap-github/pull/221" +pull-request: "https://github.com/singer-io/tap-github/pull/221" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-09-03-pendo-v1-upgrade-python-to-3-12.md b/_changelog-files/2025/2025-09-03-pendo-v1-upgrade-python-to-3-12.md index 052e81f07..5a020f0cc 100644 --- a/_changelog-files/2025/2025-09-03-pendo-v1-upgrade-python-to-3-12.md +++ b/_changelog-files/2025/2025-09-03-pendo-v1-upgrade-python-to-3-12.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: pendo connection-version: 1 -pull_request: "https://github.com/singer-io/tap-pendo/pull/136" +pull-request: "https://github.com/singer-io/tap-pendo/pull/136" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-09-04-quickbooks-v2-upgrade-python-version-used-for-testing.md b/_changelog-files/2025/2025-09-04-quickbooks-v2-upgrade-python-version-used-for-testing.md index 92e8c29f6..658e65e4a 100644 --- a/_changelog-files/2025/2025-09-04-quickbooks-v2-upgrade-python-version-used-for-testing.md +++ b/_changelog-files/2025/2025-09-04-quickbooks-v2-upgrade-python-version-used-for-testing.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: quickbooks connection-version: 2 -pull_request: "https://github.com/singer-io/tap-quickbooks/pull/78" +pull-request: "https://github.com/singer-io/tap-quickbooks/pull/78" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-09-04-recurly-v1-upgrade-circleci-build-to-python-3-12.md b/_changelog-files/2025/2025-09-04-recurly-v1-upgrade-circleci-build-to-python-3-12.md index 8c37413ec..0bca53b3f 100644 --- a/_changelog-files/2025/2025-09-04-recurly-v1-upgrade-circleci-build-to-python-3-12.md +++ b/_changelog-files/2025/2025-09-04-recurly-v1-upgrade-circleci-build-to-python-3-12.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: recurly connection-version: 1 -pull_request: "https://github.com/singer-io/tap-recurly/pull/16" +pull-request: "https://github.com/singer-io/tap-recurly/pull/16" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-09-04-square-v2-upgrade-circleci-build-to-python-3-12.md b/_changelog-files/2025/2025-09-04-square-v2-upgrade-circleci-build-to-python-3-12.md index ac4ca4891..52e29b6bc 100644 --- a/_changelog-files/2025/2025-09-04-square-v2-upgrade-circleci-build-to-python-3-12.md +++ b/_changelog-files/2025/2025-09-04-square-v2-upgrade-circleci-build-to-python-3-12.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: square connection-version: 2 -pull_request: "https://github.com/singer-io/tap-square/pull/128" +pull-request: "https://github.com/singer-io/tap-square/pull/128" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-09-16-activecampaign-v1-python-upgrade.md b/_changelog-files/2025/2025-09-16-activecampaign-v1-python-upgrade.md index 3017cf1a4..4ad54790e 100644 --- a/_changelog-files/2025/2025-09-16-activecampaign-v1-python-upgrade.md +++ b/_changelog-files/2025/2025-09-16-activecampaign-v1-python-upgrade.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: activecampaign connection-version: 1 -pull_request: "https://github.com/singer-io/tap-activecampaign/pull/49" +pull-request: "https://github.com/singer-io/tap-activecampaign/pull/49" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-09-17-intacct-v1-implement-refreshable-chained-aws-session-for-multi-account-role-assumption-and-library-updates.md b/_changelog-files/2025/2025-09-17-intacct-v1-implement-refreshable-chained-aws-session-for-multi-account-role-assumption-and-library-updates.md index 5aa156aff..8422852e9 100644 --- a/_changelog-files/2025/2025-09-17-intacct-v1-implement-refreshable-chained-aws-session-for-multi-account-role-assumption-and-library-updates.md +++ b/_changelog-files/2025/2025-09-17-intacct-v1-implement-refreshable-chained-aws-session-for-multi-account-role-assumption-and-library-updates.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: intacct connection-version: 1 -pull_request: "https://github.com/singer-io/tap-intacct/pull/13" +pull-request: "https://github.com/singer-io/tap-intacct/pull/13" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-09-17-shopify-v3-new-automatic_keys-support-and-bulk-state-persistence-logic.md b/_changelog-files/2025/2025-09-17-shopify-v3-new-automatic_keys-support-and-bulk-state-persistence-logic.md index e3ac7a0f2..34ec56896 100644 --- a/_changelog-files/2025/2025-09-17-shopify-v3-new-automatic_keys-support-and-bulk-state-persistence-logic.md +++ b/_changelog-files/2025/2025-09-17-shopify-v3-new-automatic_keys-support-and-bulk-state-persistence-logic.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: shopify connection-version: 3 -pull_request: "https://github.com/singer-io/tap-shopify/pull/237" +pull-request: "https://github.com/singer-io/tap-shopify/pull/237" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-09-22-jira-v2-add-metric-tags.md b/_changelog-files/2025/2025-09-22-jira-v2-add-metric-tags.md index d33e03af9..ee7b88e0b 100644 --- a/_changelog-files/2025/2025-09-22-jira-v2-add-metric-tags.md +++ b/_changelog-files/2025/2025-09-22-jira-v2-add-metric-tags.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: jira connection-version: 2 -pull_request: "https://github.com/singer-io/tap-jira/pull/129" +pull-request: "https://github.com/singer-io/tap-jira/pull/129" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-09-22-recharge-v2-remove-products-stream.md b/_changelog-files/2025/2025-09-22-recharge-v2-remove-products-stream.md index b5033bfd0..39b1756b3 100644 --- a/_changelog-files/2025/2025-09-22-recharge-v2-remove-products-stream.md +++ b/_changelog-files/2025/2025-09-22-recharge-v2-remove-products-stream.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: recharge connection-version: 2 -pull_request: "https://github.com/singer-io/tap-recharge/pull/51" +pull-request: "https://github.com/singer-io/tap-recharge/pull/51" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-09-23-github-v2-check-for-bad-creds-before-checking-for-rate-limit.md b/_changelog-files/2025/2025-09-23-github-v2-check-for-bad-creds-before-checking-for-rate-limit.md index b26e1bd43..4e5284fb8 100644 --- a/_changelog-files/2025/2025-09-23-github-v2-check-for-bad-creds-before-checking-for-rate-limit.md +++ b/_changelog-files/2025/2025-09-23-github-v2-check-for-bad-creds-before-checking-for-rate-limit.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: github connection-version: 2 -pull_request: "https://github.com/singer-io/tap-github/pull/222" +pull-request: "https://github.com/singer-io/tap-github/pull/222" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-10-06-sftp-v1-bump-singer-encodings.md b/_changelog-files/2025/2025-10-06-sftp-v1-bump-singer-encodings.md index b9dbb9e26..b6e9ce343 100644 --- a/_changelog-files/2025/2025-10-06-sftp-v1-bump-singer-encodings.md +++ b/_changelog-files/2025/2025-10-06-sftp-v1-bump-singer-encodings.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: sftp connection-version: 1 -pull_request: "https://github.com/singer-io/tap-sftp/pull/51" +pull-request: "https://github.com/singer-io/tap-sftp/pull/51" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-10-09-mongodb-v3-enhance-log-based-replication-to-support-transactional-records.md b/_changelog-files/2025/2025-10-09-mongodb-v3-enhance-log-based-replication-to-support-transactional-records.md index 031e51f18..43e17f899 100644 --- a/_changelog-files/2025/2025-10-09-mongodb-v3-enhance-log-based-replication-to-support-transactional-records.md +++ b/_changelog-files/2025/2025-10-09-mongodb-v3-enhance-log-based-replication-to-support-transactional-records.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mongodb connection-version: 3 -pull_request: "https://github.com/singer-io/tap-mongodb/pull/119" +pull-request: "https://github.com/singer-io/tap-mongodb/pull/119" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-10-09-pardot-v1-fetch-all-visitors-records-and-update-request-params-type.md b/_changelog-files/2025/2025-10-09-pardot-v1-fetch-all-visitors-records-and-update-request-params-type.md index 5f509bd21..36e5476c0 100644 --- a/_changelog-files/2025/2025-10-09-pardot-v1-fetch-all-visitors-records-and-update-request-params-type.md +++ b/_changelog-files/2025/2025-10-09-pardot-v1-fetch-all-visitors-records-and-update-request-params-type.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: pardot connection-version: 1 -pull_request: "https://github.com/singer-io/tap-pardot/pull/53" +pull-request: "https://github.com/singer-io/tap-pardot/pull/53" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-10-09-quickbooks-v2-update-default-page-size-to-1000.md b/_changelog-files/2025/2025-10-09-quickbooks-v2-update-default-page-size-to-1000.md index 1dd1c474d..14ba1475b 100644 --- a/_changelog-files/2025/2025-10-09-quickbooks-v2-update-default-page-size-to-1000.md +++ b/_changelog-files/2025/2025-10-09-quickbooks-v2-update-default-page-size-to-1000.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: quickbooks connection-version: 2 -pull_request: "https://github.com/singer-io/tap-quickbooks/pull/79" +pull-request: "https://github.com/singer-io/tap-quickbooks/pull/79" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-10-10-mambu-v4-replace--users-with--branches-endpoint.md b/_changelog-files/2025/2025-10-10-mambu-v4-replace--users-with--branches-endpoint.md index ad6a49908..3bea227bf 100644 --- a/_changelog-files/2025/2025-10-10-mambu-v4-replace--users-with--branches-endpoint.md +++ b/_changelog-files/2025/2025-10-10-mambu-v4-replace--users-with--branches-endpoint.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mambu connection-version: 4 -pull_request: "https://github.com/singer-io/tap-mambu/pull/133" +pull-request: "https://github.com/singer-io/tap-mambu/pull/133" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-10-14-mambu-v4-cancel-upgrade-api-version-to-v2.md b/_changelog-files/2025/2025-10-14-mambu-v4-cancel-upgrade-api-version-to-v2.md index 70ccf792e..3dd2e49c2 100644 --- a/_changelog-files/2025/2025-10-14-mambu-v4-cancel-upgrade-api-version-to-v2.md +++ b/_changelog-files/2025/2025-10-14-mambu-v4-cancel-upgrade-api-version-to-v2.md @@ -6,7 +6,7 @@ entry-type: removed entry-category: integration connection-id: mambu connection-version: 4 -pull_request: "https://github.com/singer-io/tap-mambu/pull/135" +pull-request: "https://github.com/singer-io/tap-mambu/pull/135" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-10-14-zendesk-v2-add-support-for-cursor-pagination--audit-stream.md b/_changelog-files/2025/2025-10-14-zendesk-v2-add-support-for-cursor-pagination--audit-stream.md index 9f71aafbc..04bcc3355 100644 --- a/_changelog-files/2025/2025-10-14-zendesk-v2-add-support-for-cursor-pagination--audit-stream.md +++ b/_changelog-files/2025/2025-10-14-zendesk-v2-add-support-for-cursor-pagination--audit-stream.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: zendesk connection-version: 2 -pull_request: "https://github.com/singer-io/tap-zendesk/pull/163" +pull-request: "https://github.com/singer-io/tap-zendesk/pull/163" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-10-15-mambu-v4upgrade-api-version-to-v2 .md b/_changelog-files/2025/2025-10-15-mambu-v4upgrade-api-version-to-v2 .md index 6bac6f68d..f24861f1d 100644 --- a/_changelog-files/2025/2025-10-15-mambu-v4upgrade-api-version-to-v2 .md +++ b/_changelog-files/2025/2025-10-15-mambu-v4upgrade-api-version-to-v2 .md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mambu connection-version: 4 -pull_request: "https://github.com/singer-io/tap-mambu/pull/136" +pull-request: "https://github.com/singer-io/tap-mambu/pull/136" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-10-15-pipedrive-v1-extract-deleted-deals.md b/_changelog-files/2025/2025-10-15-pipedrive-v1-extract-deleted-deals.md index bb3a51022..0d5590927 100644 --- a/_changelog-files/2025/2025-10-15-pipedrive-v1-extract-deleted-deals.md +++ b/_changelog-files/2025/2025-10-15-pipedrive-v1-extract-deleted-deals.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: pipedrive connection-version: 1 -pull_request: "https://github.com/singer-io/tap-pipedrive/pull/149" +pull-request: "https://github.com/singer-io/tap-pipedrive/pull/149" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-10-17-amplitude-v1-gl-work.md b/_changelog-files/2025/2025-10-17-amplitude-v1-gl-work.md index 58a11421b..85d894c43 100644 --- a/_changelog-files/2025/2025-10-17-amplitude-v1-gl-work.md +++ b/_changelog-files/2025/2025-10-17-amplitude-v1-gl-work.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: amplitude connection-version: 1 -pull_request: "https://github.com/singer-io/tap-amplitude/pull/14" +pull-request: "https://github.com/singer-io/tap-amplitude/pull/14" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-10-17-marketo-v2-replication_key-and-forced_replication_method-addition-in-catalog.md b/_changelog-files/2025/2025-10-17-marketo-v2-replication_key-and-forced_replication_method-addition-in-catalog.md index 4fd841027..53e0a2f01 100644 --- a/_changelog-files/2025/2025-10-17-marketo-v2-replication_key-and-forced_replication_method-addition-in-catalog.md +++ b/_changelog-files/2025/2025-10-17-marketo-v2-replication_key-and-forced_replication_method-addition-in-catalog.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: marketo connection-version: 2 -pull_request: "https://github.com/singer-io/tap-marketo/pull/104" +pull-request: "https://github.com/singer-io/tap-marketo/pull/104" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-10-17-shopify-v3-gl-work.md b/_changelog-files/2025/2025-10-17-shopify-v3-gl-work.md index 154ca0fe7..25f3f6059 100644 --- a/_changelog-files/2025/2025-10-17-shopify-v3-gl-work.md +++ b/_changelog-files/2025/2025-10-17-shopify-v3-gl-work.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: shopify connection-version: 3 -pull_request: "https://github.com/singer-io/tap-shopify/pull/242" +pull-request: "https://github.com/singer-io/tap-shopify/pull/242" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-10-20-s3-csv-v1-add-avro-support-to-tap.md b/_changelog-files/2025/2025-10-20-s3-csv-v1-add-avro-support-to-tap.md index 55fa73b24..c0bf0e596 100644 --- a/_changelog-files/2025/2025-10-20-s3-csv-v1-add-avro-support-to-tap.md +++ b/_changelog-files/2025/2025-10-20-s3-csv-v1-add-avro-support-to-tap.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: amazon-s3-csv connection-version: 1 -pull_request: "https://github.com/singer-io/tap-s3-csv/pull/81" +pull-request: "https://github.com/singer-io/tap-s3-csv/pull/81" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-10-20-s3-csv-v1-add-parquet-support.md b/_changelog-files/2025/2025-10-20-s3-csv-v1-add-parquet-support.md index 949a67ae5..21b9c58a4 100644 --- a/_changelog-files/2025/2025-10-20-s3-csv-v1-add-parquet-support.md +++ b/_changelog-files/2025/2025-10-20-s3-csv-v1-add-parquet-support.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: amazon-s3-csv connection-version: 1 -pull_request: "https://github.com/singer-io/tap-s3-csv/pull/80" +pull-request: "https://github.com/singer-io/tap-s3-csv/pull/80" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-10-20-s3-csv-v1-refactor-jsonl-sampling-syncing-to-use-singer-encodings.md b/_changelog-files/2025/2025-10-20-s3-csv-v1-refactor-jsonl-sampling-syncing-to-use-singer-encodings.md index 05cde3f67..a695a88c7 100644 --- a/_changelog-files/2025/2025-10-20-s3-csv-v1-refactor-jsonl-sampling-syncing-to-use-singer-encodings.md +++ b/_changelog-files/2025/2025-10-20-s3-csv-v1-refactor-jsonl-sampling-syncing-to-use-singer-encodings.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: amazon-s3-csv connection-version: 1 -pull_request: "https://github.com/singer-io/tap-s3-csv/pull/82" +pull-request: "https://github.com/singer-io/tap-s3-csv/pull/82" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-10-22-mongodb-v3-handle-non-finite-values-(nan-infinity).md b/_changelog-files/2025/2025-10-22-mongodb-v3-handle-non-finite-values-(nan-infinity).md index 1778b919d..97bac5c8f 100644 --- a/_changelog-files/2025/2025-10-22-mongodb-v3-handle-non-finite-values-(nan-infinity).md +++ b/_changelog-files/2025/2025-10-22-mongodb-v3-handle-non-finite-values-(nan-infinity).md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mongodb connection-version: 3 -pull_request: "https://github.com/singer-io/tap-mongodb/pull/129" +pull-request: "https://github.com/singer-io/tap-mongodb/pull/129" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-10-23-s3-csv-v1-update-_sdc_extra-column-schema-to-be-nullable.md b/_changelog-files/2025/2025-10-23-s3-csv-v1-update-_sdc_extra-column-schema-to-be-nullable.md index 383f274e7..2cb39df21 100644 --- a/_changelog-files/2025/2025-10-23-s3-csv-v1-update-_sdc_extra-column-schema-to-be-nullable.md +++ b/_changelog-files/2025/2025-10-23-s3-csv-v1-update-_sdc_extra-column-schema-to-be-nullable.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: amazon-s3-csv connection-version: 1 -pull_request: "https://github.com/singer-io/tap-s3-csv/pull/83" +pull-request: "https://github.com/singer-io/tap-s3-csv/pull/83" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-10-27-ga4-v1-update-field-exclusions-10-27-25.md b/_changelog-files/2025/2025-10-27-ga4-v1-update-field-exclusions-10-27-25.md index e36ea5364..00f1d0da0 100644 --- a/_changelog-files/2025/2025-10-27-ga4-v1-update-field-exclusions-10-27-25.md +++ b/_changelog-files/2025/2025-10-27-ga4-v1-update-field-exclusions-10-27-25.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-analytics-4 connection-version: 1 -pull_request: "https://github.com/singer-io/tap-ga4/pull/117" +pull-request: "https://github.com/singer-io/tap-ga4/pull/117" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-10-27-heap-v1-add-integration-tests.md b/_changelog-files/2025/2025-10-27-heap-v1-add-integration-tests.md index 369860afc..56d399217 100644 --- a/_changelog-files/2025/2025-10-27-heap-v1-add-integration-tests.md +++ b/_changelog-files/2025/2025-10-27-heap-v1-add-integration-tests.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: heap connection-version: 1 -pull_request: "https://github.com/singer-io/tap-heap/pull/24" +pull-request: "https://github.com/singer-io/tap-heap/pull/24" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-10-29-gitlab-v1-bug-sac-29290-params-to-headers.md b/_changelog-files/2025/2025-10-29-gitlab-v1-bug-sac-29290-params-to-headers.md index c85318619..aa91573e9 100644 --- a/_changelog-files/2025/2025-10-29-gitlab-v1-bug-sac-29290-params-to-headers.md +++ b/_changelog-files/2025/2025-10-29-gitlab-v1-bug-sac-29290-params-to-headers.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: gitlab connection-version: 1 -pull_request: "https://github.com/singer-io/tap-gitlab/pull/44" +pull-request: "https://github.com/singer-io/tap-gitlab/pull/44" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-10-29-zendesk-v2-update-dependencies.md b/_changelog-files/2025/2025-10-29-zendesk-v2-update-dependencies.md index 174559be4..f6386e242 100644 --- a/_changelog-files/2025/2025-10-29-zendesk-v2-update-dependencies.md +++ b/_changelog-files/2025/2025-10-29-zendesk-v2-update-dependencies.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: zendesk connection-version: 2 -pull_request: "https://github.com/singer-io/tap-zendesk/pull/177" +pull-request: "https://github.com/singer-io/tap-zendesk/pull/177" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-11-04-listrak-v1-gl-work.md b/_changelog-files/2025/2025-11-04-listrak-v1-gl-work.md index 750047c48..60ae3bea8 100644 --- a/_changelog-files/2025/2025-11-04-listrak-v1-gl-work.md +++ b/_changelog-files/2025/2025-11-04-listrak-v1-gl-work.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: listrak connection-version: 1 -pull_request: "https://github.com/singer-io/tap-listrak/pull/21" +pull-request: "https://github.com/singer-io/tap-listrak/pull/21" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-11-06-jira-v2-add-fallback-for-jira-api-requests-when-search-jql-endpoint-is-unavailable.md b/_changelog-files/2025/2025-11-06-jira-v2-add-fallback-for-jira-api-requests-when-search-jql-endpoint-is-unavailable.md index 19871c335..79a2e7438 100644 --- a/_changelog-files/2025/2025-11-06-jira-v2-add-fallback-for-jira-api-requests-when-search-jql-endpoint-is-unavailable.md +++ b/_changelog-files/2025/2025-11-06-jira-v2-add-fallback-for-jira-api-requests-when-search-jql-endpoint-is-unavailable.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: jira connection-version: 2 -pull_request: "https://github.com/singer-io/tap-jira/pull/131" +pull-request: "https://github.com/singer-io/tap-jira/pull/131" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-11-06-quickbooks-v2-use-batch-queries-to-reduce-api-usage.md b/_changelog-files/2025/2025-11-06-quickbooks-v2-use-batch-queries-to-reduce-api-usage.md index ee61a4514..9ce04c90b 100644 --- a/_changelog-files/2025/2025-11-06-quickbooks-v2-use-batch-queries-to-reduce-api-usage.md +++ b/_changelog-files/2025/2025-11-06-quickbooks-v2-use-batch-queries-to-reduce-api-usage.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: quickbooks connection-version: 2 -pull_request: "https://github.com/singer-io/tap-quickbooks/pull/80" +pull-request: "https://github.com/singer-io/tap-quickbooks/pull/80" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-11-10-shopify-v3-cleanup-state-file-for-failed-bulk-operations.md b/_changelog-files/2025/2025-11-10-shopify-v3-cleanup-state-file-for-failed-bulk-operations.md index c2f7992ae..1e3f16fae 100644 --- a/_changelog-files/2025/2025-11-10-shopify-v3-cleanup-state-file-for-failed-bulk-operations.md +++ b/_changelog-files/2025/2025-11-10-shopify-v3-cleanup-state-file-for-failed-bulk-operations.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: shopify connection-version: 3 -pull_request: "https://github.com/singer-io/tap-shopify/pull/244" +pull-request: "https://github.com/singer-io/tap-shopify/pull/244" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-11-19-zuora-v1-add-communicationprofileid-to-unsupported_fields_for_rest.md b/_changelog-files/2025/2025-11-19-zuora-v1-add-communicationprofileid-to-unsupported_fields_for_rest.md index 62cd65650..cf8e1c6dc 100644 --- a/_changelog-files/2025/2025-11-19-zuora-v1-add-communicationprofileid-to-unsupported_fields_for_rest.md +++ b/_changelog-files/2025/2025-11-19-zuora-v1-add-communicationprofileid-to-unsupported_fields_for_rest.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: zuora connection-version: 1 -pull_request: "https://github.com/singer-io/tap-zuora/pull/86" +pull-request: "https://github.com/singer-io/tap-zuora/pull/86" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-11-21-zuora-v1-bump-version.md b/_changelog-files/2025/2025-11-21-zuora-v1-bump-version.md index 4c9abc61f..b8f380ec8 100644 --- a/_changelog-files/2025/2025-11-21-zuora-v1-bump-version.md +++ b/_changelog-files/2025/2025-11-21-zuora-v1-bump-version.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: zuora connection-version: 1 -pull_request: "https://github.com/singer-io/tap-zuora/pull/87" +pull-request: "https://github.com/singer-io/tap-zuora/pull/87" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-11-24-appsflyer-v1-tap-refactoring-using-singer-generator.md b/_changelog-files/2025/2025-11-24-appsflyer-v1-tap-refactoring-using-singer-generator.md index 5ea10de9f..933e28a42 100644 --- a/_changelog-files/2025/2025-11-24-appsflyer-v1-tap-refactoring-using-singer-generator.md +++ b/_changelog-files/2025/2025-11-24-appsflyer-v1-tap-refactoring-using-singer-generator.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: appsflyer connection-version: 1 -pull_request: "https://github.com/singer-io/tap-appsflyer/pull/47" +pull-request: "https://github.com/singer-io/tap-appsflyer/pull/47" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-11-24-chargebee-v1-refactor-the-tap.md b/_changelog-files/2025/2025-11-24-chargebee-v1-refactor-the-tap.md index 56b9467d7..4211f8dee 100644 --- a/_changelog-files/2025/2025-11-24-chargebee-v1-refactor-the-tap.md +++ b/_changelog-files/2025/2025-11-24-chargebee-v1-refactor-the-tap.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: chargebee connection-version: 1 -pull_request: "https://github.com/singer-io/tap-chargebee/pull/113" +pull-request: "https://github.com/singer-io/tap-chargebee/pull/113" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-11-26-exacttarget-v1-add-support-for-new-streams.md b/_changelog-files/2025/2025-11-26-exacttarget-v1-add-support-for-new-streams.md index 011a2afee..4121d1984 100644 --- a/_changelog-files/2025/2025-11-26-exacttarget-v1-add-support-for-new-streams.md +++ b/_changelog-files/2025/2025-11-26-exacttarget-v1-add-support-for-new-streams.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: salesforce-marketing-cloud connection-version: 1 -pull_request: "https://github.com/singer-io/tap-exacttarget/pull/103" +pull-request: "https://github.com/singer-io/tap-exacttarget/pull/103" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-11-26-twitter-ads-v1-gl-work--library-version-upgrades-+-support-for-`parent-tap-stream-id`-metadata-for-child-streams.md b/_changelog-files/2025/2025-11-26-twitter-ads-v1-gl-work--library-version-upgrades-+-support-for-`parent-tap-stream-id`-metadata-for-child-streams.md index 1d72b9bcc..21a98b56c 100644 --- a/_changelog-files/2025/2025-11-26-twitter-ads-v1-gl-work--library-version-upgrades-+-support-for-`parent-tap-stream-id`-metadata-for-child-streams.md +++ b/_changelog-files/2025/2025-11-26-twitter-ads-v1-gl-work--library-version-upgrades-+-support-for-`parent-tap-stream-id`-metadata-for-child-streams.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: twitter-ads connection-version: 1 -pull_request: "https://github.com/singer-io/tap-twitter-ads/pull/46" +pull-request: "https://github.com/singer-io/tap-twitter-ads/pull/46" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-11-27-chargebee-v1-python-upgrade-to-3-12.md b/_changelog-files/2025/2025-11-27-chargebee-v1-python-upgrade-to-3-12.md index 62b8ee4bf..66037dd74 100644 --- a/_changelog-files/2025/2025-11-27-chargebee-v1-python-upgrade-to-3-12.md +++ b/_changelog-files/2025/2025-11-27-chargebee-v1-python-upgrade-to-3-12.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: chargebee connection-version: 1 -pull_request: "https://github.com/singer-io/tap-chargebee/pull/117" +pull-request: "https://github.com/singer-io/tap-chargebee/pull/117" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-11-28-gitlab-v1-gl-work.md b/_changelog-files/2025/2025-11-28-gitlab-v1-gl-work.md index dd1a5e766..570d8ac6d 100644 --- a/_changelog-files/2025/2025-11-28-gitlab-v1-gl-work.md +++ b/_changelog-files/2025/2025-11-28-gitlab-v1-gl-work.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: gitlab connection-version: 1 -pull_request: "https://github.com/singer-io/tap-gitlab/pull/37" +pull-request: "https://github.com/singer-io/tap-gitlab/pull/37" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-12-02-hubspot-v4-non-primary-key-fields-should-be-nullable.md b/_changelog-files/2025/2025-12-02-hubspot-v4-non-primary-key-fields-should-be-nullable.md index c4dbe9df2..bcd76227b 100644 --- a/_changelog-files/2025/2025-12-02-hubspot-v4-non-primary-key-fields-should-be-nullable.md +++ b/_changelog-files/2025/2025-12-02-hubspot-v4-non-primary-key-fields-should-be-nullable.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: hubspot connection-version: 4 -pull_request: "https://github.com/singer-io/tap-hubspot/pull/281" +pull-request: "https://github.com/singer-io/tap-hubspot/pull/281" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-12-03-activecampaign-v1-retry-for-the-activecampaign-forbiddenerror.md b/_changelog-files/2025/2025-12-03-activecampaign-v1-retry-for-the-activecampaign-forbiddenerror.md index 7fc39ff2a..fe5336eef 100644 --- a/_changelog-files/2025/2025-12-03-activecampaign-v1-retry-for-the-activecampaign-forbiddenerror.md +++ b/_changelog-files/2025/2025-12-03-activecampaign-v1-retry-for-the-activecampaign-forbiddenerror.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: activecampaign connection-version: 1 -pull_request: "https://github.com/singer-io/tap-activecampaign/pull/52" +pull-request: "https://github.com/singer-io/tap-activecampaign/pull/52" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-12-03-asana-v2-sac-27555-fix-libraries.md b/_changelog-files/2025/2025-12-03-asana-v2-sac-27555-fix-libraries.md index 5d2be940f..dbf848a05 100644 --- a/_changelog-files/2025/2025-12-03-asana-v2-sac-27555-fix-libraries.md +++ b/_changelog-files/2025/2025-12-03-asana-v2-sac-27555-fix-libraries.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: asana connection-version: 2 -pull_request: "https://github.com/singer-io/tap-asana/pull/61" +pull-request: "https://github.com/singer-io/tap-asana/pull/61" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-12-03-freshdesk-v1-tap-refactoring-using-singer-generator.md b/_changelog-files/2025/2025-12-03-freshdesk-v1-tap-refactoring-using-singer-generator.md index 7aae23c4d..d07c352f5 100644 --- a/_changelog-files/2025/2025-12-03-freshdesk-v1-tap-refactoring-using-singer-generator.md +++ b/_changelog-files/2025/2025-12-03-freshdesk-v1-tap-refactoring-using-singer-generator.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: freshdesk connection-version: 1 -pull_request: "https://github.com/singer-io/tap-freshdesk/pull/60" +pull-request: "https://github.com/singer-io/tap-freshdesk/pull/60" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-12-04-google-sheets-v3-increase-the-wait-time-while-retrying-on-failure.md b/_changelog-files/2025/2025-12-04-google-sheets-v3-increase-the-wait-time-while-retrying-on-failure.md index 299daa1a3..c1576478a 100644 --- a/_changelog-files/2025/2025-12-04-google-sheets-v3-increase-the-wait-time-while-retrying-on-failure.md +++ b/_changelog-files/2025/2025-12-04-google-sheets-v3-increase-the-wait-time-while-retrying-on-failure.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-sheets connection-version: 3 -pull_request: "https://github.com/singer-io/tap-google-sheets/pull/102" +pull-request: "https://github.com/singer-io/tap-google-sheets/pull/102" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-12-05-zoom-v2-[sac-28905]--add-parent-tap-stream-id-key-in-metadata.md b/_changelog-files/2025/2025-12-05-zoom-v2-[sac-28905]--add-parent-tap-stream-id-key-in-metadata.md index e2e0d21fa..9e998d0f6 100644 --- a/_changelog-files/2025/2025-12-05-zoom-v2-[sac-28905]--add-parent-tap-stream-id-key-in-metadata.md +++ b/_changelog-files/2025/2025-12-05-zoom-v2-[sac-28905]--add-parent-tap-stream-id-key-in-metadata.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: zoom connection-version: 2 -pull_request: "https://github.com/singer-io/tap-zoom/pull/40" +pull-request: "https://github.com/singer-io/tap-zoom/pull/40" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-12-08-adroll-v1-gl-work.md b/_changelog-files/2025/2025-12-08-adroll-v1-gl-work.md index ebf75f983..4262290fa 100644 --- a/_changelog-files/2025/2025-12-08-adroll-v1-gl-work.md +++ b/_changelog-files/2025/2025-12-08-adroll-v1-gl-work.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: adroll connection-version: 1 -pull_request: "https://github.com/singer-io/tap-adroll/pull/34" +pull-request: "https://github.com/singer-io/tap-adroll/pull/34" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-12-08-harvest-v2-tap-refactoring-using-singer-generator.md b/_changelog-files/2025/2025-12-08-harvest-v2-tap-refactoring-using-singer-generator.md index ef3b2ec49..e85b3359b 100644 --- a/_changelog-files/2025/2025-12-08-harvest-v2-tap-refactoring-using-singer-generator.md +++ b/_changelog-files/2025/2025-12-08-harvest-v2-tap-refactoring-using-singer-generator.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: harvest connection-version: 2 -pull_request: "https://github.com/singer-io/tap-harvest/pull/64" +pull-request: "https://github.com/singer-io/tap-harvest/pull/64" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-12-08-s3-csv-v1-bump-urllib3-from-2-5-0-to-2-6-0.md b/_changelog-files/2025/2025-12-08-s3-csv-v1-bump-urllib3-from-2-5-0-to-2-6-0.md index 7e2737bf3..c818470c9 100644 --- a/_changelog-files/2025/2025-12-08-s3-csv-v1-bump-urllib3-from-2-5-0-to-2-6-0.md +++ b/_changelog-files/2025/2025-12-08-s3-csv-v1-bump-urllib3-from-2-5-0-to-2-6-0.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: s3 connection-version: 1 -pull_request: "https://github.com/singer-io/tap-s3-csv/pull/84" +pull-request: "https://github.com/singer-io/tap-s3-csv/pull/84" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-12-09-3plcentral-v1-bump-library-versions.md b/_changelog-files/2025/2025-12-09-3plcentral-v1-bump-library-versions.md index 845c179ec..89c8c081b 100644 --- a/_changelog-files/2025/2025-12-09-3plcentral-v1-bump-library-versions.md +++ b/_changelog-files/2025/2025-12-09-3plcentral-v1-bump-library-versions.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: 3plcentral connection-version: 1 -pull_request: "https://github.com/singer-io/tap-3plcentral/pull/12" +pull-request: "https://github.com/singer-io/tap-3plcentral/pull/12" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-12-09-autopilot-v1-bump-libraries-for-compliance.md b/_changelog-files/2025/2025-12-09-autopilot-v1-bump-libraries-for-compliance.md index 462be98d7..77c7b9c6d 100644 --- a/_changelog-files/2025/2025-12-09-autopilot-v1-bump-libraries-for-compliance.md +++ b/_changelog-files/2025/2025-12-09-autopilot-v1-bump-libraries-for-compliance.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: autopilot connection-version: 1 -pull_request: "https://github.com/singer-io/tap-autopilot/pull/12" +pull-request: "https://github.com/singer-io/tap-autopilot/pull/12" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-12-09-circle-ci-v1-library-version-upgrade.md b/_changelog-files/2025/2025-12-09-circle-ci-v1-library-version-upgrade.md index 63aaf560a..a42aa7e8f 100644 --- a/_changelog-files/2025/2025-12-09-circle-ci-v1-library-version-upgrade.md +++ b/_changelog-files/2025/2025-12-09-circle-ci-v1-library-version-upgrade.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: circle-ci connection-version: 1 -pull_request: "https://github.com/singer-io/tap-circle-ci/pull/20" +pull-request: "https://github.com/singer-io/tap-circle-ci/pull/20" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-12-09-clubspeed-v1-bump-dependencies.md b/_changelog-files/2025/2025-12-09-clubspeed-v1-bump-dependencies.md index 4545ad8bc..b36f16152 100644 --- a/_changelog-files/2025/2025-12-09-clubspeed-v1-bump-dependencies.md +++ b/_changelog-files/2025/2025-12-09-clubspeed-v1-bump-dependencies.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: clubspeed connection-version: 1 -pull_request: "https://github.com/singer-io/tap-clubspeed/pull/4" +pull-request: "https://github.com/singer-io/tap-clubspeed/pull/4" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-12-09-codat-v1-bump-dependencies.md b/_changelog-files/2025/2025-12-09-codat-v1-bump-dependencies.md index deb9714ba..45b297d94 100644 --- a/_changelog-files/2025/2025-12-09-codat-v1-bump-dependencies.md +++ b/_changelog-files/2025/2025-12-09-codat-v1-bump-dependencies.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: codat connection-version: 1 -pull_request: "https://github.com/singer-io/tap-codat/pull/28" +pull-request: "https://github.com/singer-io/tap-codat/pull/28" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-12-09-harvest-forecast-v1-bump-dependency-versions-for-compliance-failures.md b/_changelog-files/2025/2025-12-09-harvest-forecast-v1-bump-dependency-versions-for-compliance-failures.md index e848e479a..b73de54b6 100644 --- a/_changelog-files/2025/2025-12-09-harvest-forecast-v1-bump-dependency-versions-for-compliance-failures.md +++ b/_changelog-files/2025/2025-12-09-harvest-forecast-v1-bump-dependency-versions-for-compliance-failures.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: harvest-forecast connection-version: 1 -pull_request: "https://github.com/singer-io/tap-harvest-forecast/pull/31" +pull-request: "https://github.com/singer-io/tap-harvest-forecast/pull/31" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-12-09-hubspot-v4-retry-the-api-requests-for-all-the-errors.md b/_changelog-files/2025/2025-12-09-hubspot-v4-retry-the-api-requests-for-all-the-errors.md index 55d2efa2d..0c68d1371 100644 --- a/_changelog-files/2025/2025-12-09-hubspot-v4-retry-the-api-requests-for-all-the-errors.md +++ b/_changelog-files/2025/2025-12-09-hubspot-v4-retry-the-api-requests-for-all-the-errors.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: hubspot connection-version: 4 -pull_request: "https://github.com/singer-io/tap-hubspot/pull/282" +pull-request: "https://github.com/singer-io/tap-hubspot/pull/282" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-12-09-jira-v2-sac-29184-add-bookmarks-to-issues-child-streams.md b/_changelog-files/2025/2025-12-09-jira-v2-sac-29184-add-bookmarks-to-issues-child-streams.md index b8036785e..a8fd8b5bd 100644 --- a/_changelog-files/2025/2025-12-09-jira-v2-sac-29184-add-bookmarks-to-issues-child-streams.md +++ b/_changelog-files/2025/2025-12-09-jira-v2-sac-29184-add-bookmarks-to-issues-child-streams.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: jira connection-version: 2 -pull_request: "https://github.com/singer-io/tap-jira/pull/132" +pull-request: "https://github.com/singer-io/tap-jira/pull/132" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-12-09-kustomer-v1-bump-version-for-compliance-failures.md b/_changelog-files/2025/2025-12-09-kustomer-v1-bump-version-for-compliance-failures.md index c0763656b..4daf0cc20 100644 --- a/_changelog-files/2025/2025-12-09-kustomer-v1-bump-version-for-compliance-failures.md +++ b/_changelog-files/2025/2025-12-09-kustomer-v1-bump-version-for-compliance-failures.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: kustomer connection-version: 1 -pull_request: "https://github.com/singer-io/tap-kustomer/pull/34" +pull-request: "https://github.com/singer-io/tap-kustomer/pull/34" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-12-09-looker-v1-update-libraries-for-compliance.md b/_changelog-files/2025/2025-12-09-looker-v1-update-libraries-for-compliance.md index e1b0fff6c..8803a7760 100644 --- a/_changelog-files/2025/2025-12-09-looker-v1-update-libraries-for-compliance.md +++ b/_changelog-files/2025/2025-12-09-looker-v1-update-libraries-for-compliance.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: looker connection-version: 1 -pull_request: "https://github.com/singer-io/tap-looker/pull/20" +pull-request: "https://github.com/singer-io/tap-looker/pull/20" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-12-09-onfleet-v1-bump-dependencies.md b/_changelog-files/2025/2025-12-09-onfleet-v1-bump-dependencies.md index 3d2dcc3e9..74eda3b53 100644 --- a/_changelog-files/2025/2025-12-09-onfleet-v1-bump-dependencies.md +++ b/_changelog-files/2025/2025-12-09-onfleet-v1-bump-dependencies.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: onfleet connection-version: 1 -pull_request: "https://github.com/singer-io/tap-onfleet/pull/10" +pull-request: "https://github.com/singer-io/tap-onfleet/pull/10" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-12-09-ujet-v1-bump-version-for-compliance-failures.md b/_changelog-files/2025/2025-12-09-ujet-v1-bump-version-for-compliance-failures.md index 33e0bd982..3c5e172ab 100644 --- a/_changelog-files/2025/2025-12-09-ujet-v1-bump-version-for-compliance-failures.md +++ b/_changelog-files/2025/2025-12-09-ujet-v1-bump-version-for-compliance-failures.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: ujet connection-version: 1 -pull_request: "https://github.com/singer-io/tap-ujet/pull/12" +pull-request: "https://github.com/singer-io/tap-ujet/pull/12" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-12-09-uservoice-v1-bump-dependencies.md b/_changelog-files/2025/2025-12-09-uservoice-v1-bump-dependencies.md index b7d5eace2..dab138023 100644 --- a/_changelog-files/2025/2025-12-09-uservoice-v1-bump-dependencies.md +++ b/_changelog-files/2025/2025-12-09-uservoice-v1-bump-dependencies.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: uservoice connection-version: 1 -pull_request: "https://github.com/singer-io/tap-uservoice/pull/14" +pull-request: "https://github.com/singer-io/tap-uservoice/pull/14" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-12-10-salesforce-v2-fix-forced-replication-method.md b/_changelog-files/2025/2025-12-10-salesforce-v2-fix-forced-replication-method.md index 6f21e5e3f..1fdc5c81e 100644 --- a/_changelog-files/2025/2025-12-10-salesforce-v2-fix-forced-replication-method.md +++ b/_changelog-files/2025/2025-12-10-salesforce-v2-fix-forced-replication-method.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: salesforce connection-version: 2 -pull_request: "https://github.com/singer-io/tap-salesforce/pull/194" +pull-request: "https://github.com/singer-io/tap-salesforce/pull/194" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-12-12-zuora-v1-sac-29405--add-clearingexistingcommunicationprofile-to-unsupported_fields_for_rest.md b/_changelog-files/2025/2025-12-12-zuora-v1-sac-29405--add-clearingexistingcommunicationprofile-to-unsupported_fields_for_rest.md index 4d990ac84..86e304745 100644 --- a/_changelog-files/2025/2025-12-12-zuora-v1-sac-29405--add-clearingexistingcommunicationprofile-to-unsupported_fields_for_rest.md +++ b/_changelog-files/2025/2025-12-12-zuora-v1-sac-29405--add-clearingexistingcommunicationprofile-to-unsupported_fields_for_rest.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: zuora connection-version: 1 -pull_request: "https://github.com/singer-io/tap-zuora/pull/88" +pull-request: "https://github.com/singer-io/tap-zuora/pull/88" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-12-15-shopify-v3-add-exponential-backoff-retry-logic-for-shopify-bulk-operations-in-progress.md b/_changelog-files/2025/2025-12-15-shopify-v3-add-exponential-backoff-retry-logic-for-shopify-bulk-operations-in-progress.md index 9e3a5310e..ba33c7b79 100644 --- a/_changelog-files/2025/2025-12-15-shopify-v3-add-exponential-backoff-retry-logic-for-shopify-bulk-operations-in-progress.md +++ b/_changelog-files/2025/2025-12-15-shopify-v3-add-exponential-backoff-retry-logic-for-shopify-bulk-operations-in-progress.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: shopify connection-version: 3 -pull_request: "https://github.com/singer-io/tap-shopify/pull/246" +pull-request: "https://github.com/singer-io/tap-shopify/pull/246" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-12-18-gitlab-v1-gl-work-updated-config-options.md b/_changelog-files/2025/2025-12-18-gitlab-v1-gl-work-updated-config-options.md index fa96da090..c8c968a3f 100644 --- a/_changelog-files/2025/2025-12-18-gitlab-v1-gl-work-updated-config-options.md +++ b/_changelog-files/2025/2025-12-18-gitlab-v1-gl-work-updated-config-options.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: gitlab connection-version: 1 -pull_request: "https://github.com/singer-io/tap-gitlab/pull/46" +pull-request: "https://github.com/singer-io/tap-gitlab/pull/46" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-12-18-salesforce-v2-update-libraries-to-latest-version.md b/_changelog-files/2025/2025-12-18-salesforce-v2-update-libraries-to-latest-version.md index 64e56b6af..4f3d8b74c 100644 --- a/_changelog-files/2025/2025-12-18-salesforce-v2-update-libraries-to-latest-version.md +++ b/_changelog-files/2025/2025-12-18-salesforce-v2-update-libraries-to-latest-version.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: salesforce connection-version: 2 -pull_request: "https://github.com/singer-io/tap-salesforce/pull/195" +pull-request: "https://github.com/singer-io/tap-salesforce/pull/195" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-12-19-workday-raas-v1-library-updates.md b/_changelog-files/2025/2025-12-19-workday-raas-v1-library-updates.md index aa4a58d5f..aa74f44bb 100644 --- a/_changelog-files/2025/2025-12-19-workday-raas-v1-library-updates.md +++ b/_changelog-files/2025/2025-12-19-workday-raas-v1-library-updates.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: workday-raas connection-version: 1 -pull_request: "https://github.com/singer-io/tap-workday-raas/pull/21" +pull-request: "https://github.com/singer-io/tap-workday-raas/pull/21" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-12-22-stripe-v3-add-transfer_reversals-stream.md b/_changelog-files/2025/2025-12-22-stripe-v3-add-transfer_reversals-stream.md index e03d932f0..591de1000 100644 --- a/_changelog-files/2025/2025-12-22-stripe-v3-add-transfer_reversals-stream.md +++ b/_changelog-files/2025/2025-12-22-stripe-v3-add-transfer_reversals-stream.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: stripe connection-version: 3 -pull_request: "https://github.com/singer-io/tap-stripe/pull/216" +pull-request: "https://github.com/singer-io/tap-stripe/pull/216" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2025/2025-12-30-exacttarget-v1-schema-enhancements-and-bugfixes.md b/_changelog-files/2025/2025-12-30-exacttarget-v1-schema-enhancements-and-bugfixes.md index 88b79e6d4..bcba7e5b2 100644 --- a/_changelog-files/2025/2025-12-30-exacttarget-v1-schema-enhancements-and-bugfixes.md +++ b/_changelog-files/2025/2025-12-30-exacttarget-v1-schema-enhancements-and-bugfixes.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: salesforce-marketing-cloud connection-version: 1 -pull_request: "https://github.com/singer-io/tap-exacttarget/pull/104" +pull-request: "https://github.com/singer-io/tap-exacttarget/pull/104" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-01-05-sftp-v1-upgrade-paramiko-version-to-3-5-1.md b/_changelog-files/2026/2026-01-05-sftp-v1-upgrade-paramiko-version-to-3-5-1.md index 161488b30..3420c3544 100644 --- a/_changelog-files/2026/2026-01-05-sftp-v1-upgrade-paramiko-version-to-3-5-1.md +++ b/_changelog-files/2026/2026-01-05-sftp-v1-upgrade-paramiko-version-to-3-5-1.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: sftp connection-version: 1 -pull_request: "https://github.com/singer-io/tap-sftp/pull/52" +pull-request: "https://github.com/singer-io/tap-sftp/pull/52" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-01-06-shopify-v3-update-the-bookmark-value-even-if-the-record-is-not-retrieved.md b/_changelog-files/2026/2026-01-06-shopify-v3-update-the-bookmark-value-even-if-the-record-is-not-retrieved.md index f54a819af..0288b1760 100644 --- a/_changelog-files/2026/2026-01-06-shopify-v3-update-the-bookmark-value-even-if-the-record-is-not-retrieved.md +++ b/_changelog-files/2026/2026-01-06-shopify-v3-update-the-bookmark-value-even-if-the-record-is-not-retrieved.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: shopify connection-version: 3 -pull_request: "https://github.com/singer-io/tap-shopify/pull/247" +pull-request: "https://github.com/singer-io/tap-shopify/pull/247" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-01-07-stripe-v3-update-metadata.md b/_changelog-files/2026/2026-01-07-stripe-v3-update-metadata.md index d6a5ca1e8..52f4eb19a 100644 --- a/_changelog-files/2026/2026-01-07-stripe-v3-update-metadata.md +++ b/_changelog-files/2026/2026-01-07-stripe-v3-update-metadata.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: stripe connection-version: 3 -pull_request: "https://github.com/singer-io/tap-stripe/pull/214" +pull-request: "https://github.com/singer-io/tap-stripe/pull/214" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-01-16-ga4-v1-bump-google-analytics-data.md b/_changelog-files/2026/2026-01-16-ga4-v1-bump-google-analytics-data.md index 68fbc0ed5..baddf6f2f 100644 --- a/_changelog-files/2026/2026-01-16-ga4-v1-bump-google-analytics-data.md +++ b/_changelog-files/2026/2026-01-16-ga4-v1-bump-google-analytics-data.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-analytics-4 connection-version: 1 -pull_request: "https://github.com/singer-io/tap-ga4/pull/122" +pull-request: "https://github.com/singer-io/tap-ga4/pull/122" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-01-19-salesforce-v2-remove-select_fields_by_default-from-required-config-keys.md b/_changelog-files/2026/2026-01-19-salesforce-v2-remove-select_fields_by_default-from-required-config-keys.md index ac82e3359..04de8eb02 100644 --- a/_changelog-files/2026/2026-01-19-salesforce-v2-remove-select_fields_by_default-from-required-config-keys.md +++ b/_changelog-files/2026/2026-01-19-salesforce-v2-remove-select_fields_by_default-from-required-config-keys.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: salesforce connection-version: 2 -pull_request: "https://github.com/singer-io/tap-salesforce/pull/197" +pull-request: "https://github.com/singer-io/tap-salesforce/pull/197" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-01-22-intercom-v2-update-interrupted-bookmarking-for-conversations.md b/_changelog-files/2026/2026-01-22-intercom-v2-update-interrupted-bookmarking-for-conversations.md index 2e0402f93..7ac3d7bde 100644 --- a/_changelog-files/2026/2026-01-22-intercom-v2-update-interrupted-bookmarking-for-conversations.md +++ b/_changelog-files/2026/2026-01-22-intercom-v2-update-interrupted-bookmarking-for-conversations.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: intercom connection-version: 2 -pull_request: "https://github.com/singer-io/tap-intercom/pull/85" +pull-request: "https://github.com/singer-io/tap-intercom/pull/85" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-01-22-quickbase-v1-pr-0--[sac-29640]--aggregated-gl-work.md b/_changelog-files/2026/2026-01-22-quickbase-v1-pr-0--[sac-29640]--aggregated-gl-work.md index db3aa486f..45559adf1 100644 --- a/_changelog-files/2026/2026-01-22-quickbase-v1-pr-0--[sac-29640]--aggregated-gl-work.md +++ b/_changelog-files/2026/2026-01-22-quickbase-v1-pr-0--[sac-29640]--aggregated-gl-work.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: quick-base connection-version: 1 -pull_request: "https://github.com/singer-io/tap-quickbase/pull/29" +pull-request: "https://github.com/singer-io/tap-quickbase/pull/29" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-01-23-chargebee-v1-write-bookmark-when-no-records-are-synced.md b/_changelog-files/2026/2026-01-23-chargebee-v1-write-bookmark-when-no-records-are-synced.md index 990938a4b..011710140 100644 --- a/_changelog-files/2026/2026-01-23-chargebee-v1-write-bookmark-when-no-records-are-synced.md +++ b/_changelog-files/2026/2026-01-23-chargebee-v1-write-bookmark-when-no-records-are-synced.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: chargebee connection-version: 1 -pull_request: "https://github.com/singer-io/tap-chargebee/pull/120" +pull-request: "https://github.com/singer-io/tap-chargebee/pull/120" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-01-23-dixa-v1-update-urllib3-version-from-2-6-0-to-2-6-3.md b/_changelog-files/2026/2026-01-23-dixa-v1-update-urllib3-version-from-2-6-0-to-2-6-3.md index 3c0b818b8..8196427b8 100644 --- a/_changelog-files/2026/2026-01-23-dixa-v1-update-urllib3-version-from-2-6-0-to-2-6-3.md +++ b/_changelog-files/2026/2026-01-23-dixa-v1-update-urllib3-version-from-2-6-0-to-2-6-3.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: dixa connection-version: 1 -pull_request: "https://github.com/singer-io/tap-dixa/pull/32" +pull-request: "https://github.com/singer-io/tap-dixa/pull/32" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-01-23-s3-csv-v1-bump-urllib3-version.md b/_changelog-files/2026/2026-01-23-s3-csv-v1-bump-urllib3-version.md index 4f06059fa..7eeab682f 100644 --- a/_changelog-files/2026/2026-01-23-s3-csv-v1-bump-urllib3-version.md +++ b/_changelog-files/2026/2026-01-23-s3-csv-v1-bump-urllib3-version.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: s3 connection-version: 1 -pull_request: "https://github.com/singer-io/tap-s3-csv/pull/86" +pull-request: "https://github.com/singer-io/tap-s3-csv/pull/86" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-01-23-zendesk-v2-bump-aiohttp-version.md b/_changelog-files/2026/2026-01-23-zendesk-v2-bump-aiohttp-version.md index dd91a2f0b..d244b32eb 100644 --- a/_changelog-files/2026/2026-01-23-zendesk-v2-bump-aiohttp-version.md +++ b/_changelog-files/2026/2026-01-23-zendesk-v2-bump-aiohttp-version.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: zendesk connection-version: 2 -pull_request: "https://github.com/singer-io/tap-zendesk/pull/178" +pull-request: "https://github.com/singer-io/tap-zendesk/pull/178" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-01-26-google-ads-v2-update-protobuf-version-to-6-33-4.md b/_changelog-files/2026/2026-01-26-google-ads-v2-update-protobuf-version-to-6-33-4.md index 7f6bdbb19..1440cd468 100644 --- a/_changelog-files/2026/2026-01-26-google-ads-v2-update-protobuf-version-to-6-33-4.md +++ b/_changelog-files/2026/2026-01-26-google-ads-v2-update-protobuf-version-to-6-33-4.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-ads connection-version: 2 -pull_request: "https://github.com/singer-io/tap-google-ads/pull/104" +pull-request: "https://github.com/singer-io/tap-google-ads/pull/104" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-01-27-linkedin-ads-v2-add-`parent-tap-stream-id`.md b/_changelog-files/2026/2026-01-27-linkedin-ads-v2-add-`parent-tap-stream-id`.md index b1a312a1e..1d2a05f66 100644 --- a/_changelog-files/2026/2026-01-27-linkedin-ads-v2-add-`parent-tap-stream-id`.md +++ b/_changelog-files/2026/2026-01-27-linkedin-ads-v2-add-`parent-tap-stream-id`.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: linkedin-ads connection-version: 2 -pull_request: "https://github.com/singer-io/tap-linkedin-ads/pull/82" +pull-request: "https://github.com/singer-io/tap-linkedin-ads/pull/82" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-01-27-shopify-v3-add-pagination-support-for-fulfillment-line-items.md b/_changelog-files/2026/2026-01-27-shopify-v3-add-pagination-support-for-fulfillment-line-items.md index c66a8c91c..4c321f747 100644 --- a/_changelog-files/2026/2026-01-27-shopify-v3-add-pagination-support-for-fulfillment-line-items.md +++ b/_changelog-files/2026/2026-01-27-shopify-v3-add-pagination-support-for-fulfillment-line-items.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: shopify connection-version: 3 -pull_request: "https://github.com/singer-io/tap-shopify/pull/248" +pull-request: "https://github.com/singer-io/tap-shopify/pull/248" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-01-28-listrak-v1-bug-fix-for-subscribed-contacts.md b/_changelog-files/2026/2026-01-28-listrak-v1-bug-fix-for-subscribed-contacts.md index 256db0b2f..d1e293868 100644 --- a/_changelog-files/2026/2026-01-28-listrak-v1-bug-fix-for-subscribed-contacts.md +++ b/_changelog-files/2026/2026-01-28-listrak-v1-bug-fix-for-subscribed-contacts.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: listrak connection-version: 1 -pull_request: "https://github.com/singer-io/tap-listrak/pull/26" +pull-request: "https://github.com/singer-io/tap-listrak/pull/26" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-02-05-frontapp-v2-bump-dependency-versions-for-twistlock-compliance.md b/_changelog-files/2026/2026-02-05-frontapp-v2-bump-dependency-versions-for-twistlock-compliance.md index 6ad4b6ba7..429536347 100644 --- a/_changelog-files/2026/2026-02-05-frontapp-v2-bump-dependency-versions-for-twistlock-compliance.md +++ b/_changelog-files/2026/2026-02-05-frontapp-v2-bump-dependency-versions-for-twistlock-compliance.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: frontapp connection-version: 2 -pull_request: "https://github.com/singer-io/tap-frontapp/pull/37" +pull-request: "https://github.com/singer-io/tap-frontapp/pull/37" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-02-05-mailshake-v1-bump-dependency-versions-for-twistlock-compliance.md b/_changelog-files/2026/2026-02-05-mailshake-v1-bump-dependency-versions-for-twistlock-compliance.md index 610171edd..6a0e14a0b 100644 --- a/_changelog-files/2026/2026-02-05-mailshake-v1-bump-dependency-versions-for-twistlock-compliance.md +++ b/_changelog-files/2026/2026-02-05-mailshake-v1-bump-dependency-versions-for-twistlock-compliance.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mailshake connection-version: 1 -pull_request: "https://github.com/singer-io/tap-mailshake/pull/16" +pull-request: "https://github.com/singer-io/tap-mailshake/pull/16" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-02-10-hubspot-v4-add-new-sub-streams.md b/_changelog-files/2026/2026-02-10-hubspot-v4-add-new-sub-streams.md index 6612ea37a..595860505 100644 --- a/_changelog-files/2026/2026-02-10-hubspot-v4-add-new-sub-streams.md +++ b/_changelog-files/2026/2026-02-10-hubspot-v4-add-new-sub-streams.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: hubspot connection-version: 4 -pull_request: "https://github.com/singer-io/tap-hubspot/pull/284" +pull-request: "https://github.com/singer-io/tap-hubspot/pull/284" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-02-10-salesforce-v2-write-bookmark-when-no-records-are-synced.md b/_changelog-files/2026/2026-02-10-salesforce-v2-write-bookmark-when-no-records-are-synced.md index 19844f66f..0e79fa789 100644 --- a/_changelog-files/2026/2026-02-10-salesforce-v2-write-bookmark-when-no-records-are-synced.md +++ b/_changelog-files/2026/2026-02-10-salesforce-v2-write-bookmark-when-no-records-are-synced.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: salesforce connection-version: 2 -pull_request: "https://github.com/singer-io/tap-salesforce/pull/198" +pull-request: "https://github.com/singer-io/tap-salesforce/pull/198" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-02-18-listrak-v1-fix-stream-sync-logic-to-respect-dependencies-and-add-comprehensive-unit-tests.md b/_changelog-files/2026/2026-02-18-listrak-v1-fix-stream-sync-logic-to-respect-dependencies-and-add-comprehensive-unit-tests.md index fe3c37f08..f56df4c62 100644 --- a/_changelog-files/2026/2026-02-18-listrak-v1-fix-stream-sync-logic-to-respect-dependencies-and-add-comprehensive-unit-tests.md +++ b/_changelog-files/2026/2026-02-18-listrak-v1-fix-stream-sync-logic-to-respect-dependencies-and-add-comprehensive-unit-tests.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: listrak connection-version: 1 -pull_request: "https://github.com/singer-io/tap-listrak/pull/27" +pull-request: "https://github.com/singer-io/tap-listrak/pull/27" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-02-18-pipedrive-v1-add-label-ids-in-deals.md b/_changelog-files/2026/2026-02-18-pipedrive-v1-add-label-ids-in-deals.md index 0e7af87dd..3f331b246 100644 --- a/_changelog-files/2026/2026-02-18-pipedrive-v1-add-label-ids-in-deals.md +++ b/_changelog-files/2026/2026-02-18-pipedrive-v1-add-label-ids-in-deals.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: pipedrive connection-version: 1 -pull_request: "https://github.com/singer-io/tap-pipedrive/pull/151" +pull-request: "https://github.com/singer-io/tap-pipedrive/pull/151" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-02-19-frontapp-v2-bookmark-format-validation.md b/_changelog-files/2026/2026-02-19-frontapp-v2-bookmark-format-validation.md index f7a40d3ae..0962afd1a 100644 --- a/_changelog-files/2026/2026-02-19-frontapp-v2-bookmark-format-validation.md +++ b/_changelog-files/2026/2026-02-19-frontapp-v2-bookmark-format-validation.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: frontapp connection-version: 2 -pull_request: "https://github.com/singer-io/tap-frontapp/pull/38" +pull-request: "https://github.com/singer-io/tap-frontapp/pull/38" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-02-19-salesforce-v2-update-activate-version-state.md b/_changelog-files/2026/2026-02-19-salesforce-v2-update-activate-version-state.md index ab2fb8284..2a0b0df5f 100644 --- a/_changelog-files/2026/2026-02-19-salesforce-v2-update-activate-version-state.md +++ b/_changelog-files/2026/2026-02-19-salesforce-v2-update-activate-version-state.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: salesforce connection-version: 2 -pull_request: "https://github.com/singer-io/tap-salesforce/pull/202" +pull-request: "https://github.com/singer-io/tap-salesforce/pull/202" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-02-25-hubspot-v4-add-parent-stream-for-form_submissions-and-list_memberships.md b/_changelog-files/2026/2026-02-25-hubspot-v4-add-parent-stream-for-form_submissions-and-list_memberships.md index 5b9c83e42..50e5dee4f 100644 --- a/_changelog-files/2026/2026-02-25-hubspot-v4-add-parent-stream-for-form_submissions-and-list_memberships.md +++ b/_changelog-files/2026/2026-02-25-hubspot-v4-add-parent-stream-for-form_submissions-and-list_memberships.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: hubspot connection-version: 4 -pull_request: "https://github.com/singer-io/tap-hubspot/pull/290" +pull-request: "https://github.com/singer-io/tap-hubspot/pull/290" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-02-25-xero-v1-update-singer-python-version-for-clear_offset-fix.md b/_changelog-files/2026/2026-02-25-xero-v1-update-singer-python-version-for-clear_offset-fix.md index 840d7695b..2f35b71b7 100644 --- a/_changelog-files/2026/2026-02-25-xero-v1-update-singer-python-version-for-clear_offset-fix.md +++ b/_changelog-files/2026/2026-02-25-xero-v1-update-singer-python-version-for-clear_offset-fix.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: xero connection-version: 1 -pull_request: "https://github.com/singer-io/tap-xero/pull/127" +pull-request: "https://github.com/singer-io/tap-xero/pull/127" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-02-26-salesforce-v2-deepcopy-raw_state.md b/_changelog-files/2026/2026-02-26-salesforce-v2-deepcopy-raw_state.md index 10d62a5cf..55259579c 100644 --- a/_changelog-files/2026/2026-02-26-salesforce-v2-deepcopy-raw_state.md +++ b/_changelog-files/2026/2026-02-26-salesforce-v2-deepcopy-raw_state.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: salesforce connection-version: 2 -pull_request: "https://github.com/singer-io/tap-salesforce/pull/207" +pull-request: "https://github.com/singer-io/tap-salesforce/pull/207" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-02-27-heap-v1-standardize-state.md b/_changelog-files/2026/2026-02-27-heap-v1-standardize-state.md index f21a59054..7debe4ea4 100644 --- a/_changelog-files/2026/2026-02-27-heap-v1-standardize-state.md +++ b/_changelog-files/2026/2026-02-27-heap-v1-standardize-state.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: heap connection-version: 1 -pull_request: "https://github.com/singer-io/tap-heap/pull/28" +pull-request: "https://github.com/singer-io/tap-heap/pull/28" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-03-03-salesforce-v2-fix-key-error-in-build_state.md b/_changelog-files/2026/2026-03-03-salesforce-v2-fix-key-error-in-build_state.md index 71ebb2b8f..1090708ab 100644 --- a/_changelog-files/2026/2026-03-03-salesforce-v2-fix-key-error-in-build_state.md +++ b/_changelog-files/2026/2026-03-03-salesforce-v2-fix-key-error-in-build_state.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: salesforce connection-version: 2 -pull_request: "https://github.com/singer-io/tap-salesforce/pull/209" +pull-request: "https://github.com/singer-io/tap-salesforce/pull/209" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-03-04-pipedrive-v1-update-data-type-for-some-of-schema-fields.md b/_changelog-files/2026/2026-03-04-pipedrive-v1-update-data-type-for-some-of-schema-fields.md index 6c9535ff2..481cbb36a 100644 --- a/_changelog-files/2026/2026-03-04-pipedrive-v1-update-data-type-for-some-of-schema-fields.md +++ b/_changelog-files/2026/2026-03-04-pipedrive-v1-update-data-type-for-some-of-schema-fields.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: pipedrive connection-version: 1 -pull_request: "https://github.com/singer-io/tap-pipedrive/pull/152" +pull-request: "https://github.com/singer-io/tap-pipedrive/pull/152" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-03-09-google-sheets-v3-bump-to-singer-python-6-8-0-and-use-`versions`-in-state.md b/_changelog-files/2026/2026-03-09-google-sheets-v3-bump-to-singer-python-6-8-0-and-use-`versions`-in-state.md index 8c5da3393..7e7069ac2 100644 --- a/_changelog-files/2026/2026-03-09-google-sheets-v3-bump-to-singer-python-6-8-0-and-use-`versions`-in-state.md +++ b/_changelog-files/2026/2026-03-09-google-sheets-v3-bump-to-singer-python-6-8-0-and-use-`versions`-in-state.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-sheets connection-version: 3 -pull_request: "https://github.com/singer-io/tap-google-sheets/pull/105" +pull-request: "https://github.com/singer-io/tap-google-sheets/pull/105" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-03-09-salesforce-v2-bump-singer-python-to-6-8-0-and-update-tests-to-use-`versions`.md b/_changelog-files/2026/2026-03-09-salesforce-v2-bump-singer-python-to-6-8-0-and-update-tests-to-use-`versions`.md index a49607bee..5b87801b4 100644 --- a/_changelog-files/2026/2026-03-09-salesforce-v2-bump-singer-python-to-6-8-0-and-update-tests-to-use-`versions`.md +++ b/_changelog-files/2026/2026-03-09-salesforce-v2-bump-singer-python-to-6-8-0-and-update-tests-to-use-`versions`.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: salesforce connection-version: 2 -pull_request: "https://github.com/singer-io/tap-salesforce/pull/210" +pull-request: "https://github.com/singer-io/tap-salesforce/pull/210" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-03-10-google-ads-v2-bump-protobuf-to-v6-33-5.md b/_changelog-files/2026/2026-03-10-google-ads-v2-bump-protobuf-to-v6-33-5.md index d85373f95..df20340ee 100644 --- a/_changelog-files/2026/2026-03-10-google-ads-v2-bump-protobuf-to-v6-33-5.md +++ b/_changelog-files/2026/2026-03-10-google-ads-v2-bump-protobuf-to-v6-33-5.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: google-ads connection-version: 2 -pull_request: "https://github.com/singer-io/tap-google-ads/pull/105" +pull-request: "https://github.com/singer-io/tap-google-ads/pull/105" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-03-11-mailjet-vNOT FOUND-added-5xx-exception-handling.md b/_changelog-files/2026/2026-03-11-mailjet-vNOT FOUND-added-5xx-exception-handling.md index d5e0397dc..644aba1ba 100644 --- a/_changelog-files/2026/2026-03-11-mailjet-vNOT FOUND-added-5xx-exception-handling.md +++ b/_changelog-files/2026/2026-03-11-mailjet-vNOT FOUND-added-5xx-exception-handling.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mailjet connection-version: 1 -pull_request: "https://github.com/singer-io/tap-mailjet/pull/8" +pull-request: "https://github.com/singer-io/tap-mailjet/pull/8" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-03-12-klaviyo-v1-use-safe-gets-on-state-dictionary.md b/_changelog-files/2026/2026-03-12-klaviyo-v1-use-safe-gets-on-state-dictionary.md index ed6c88437..dfe8953ba 100644 --- a/_changelog-files/2026/2026-03-12-klaviyo-v1-use-safe-gets-on-state-dictionary.md +++ b/_changelog-files/2026/2026-03-12-klaviyo-v1-use-safe-gets-on-state-dictionary.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: klaviyo connection-version: 1 -pull_request: "https://github.com/singer-io/tap-klaviyo/pull/82" +pull-request: "https://github.com/singer-io/tap-klaviyo/pull/82" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-03-12-referral-saasquatch-v1-added-tests-and-python-upgrade.md b/_changelog-files/2026/2026-03-12-referral-saasquatch-v1-added-tests-and-python-upgrade.md index c55682bf7..f9a78b5d4 100644 --- a/_changelog-files/2026/2026-03-12-referral-saasquatch-v1-added-tests-and-python-upgrade.md +++ b/_changelog-files/2026/2026-03-12-referral-saasquatch-v1-added-tests-and-python-upgrade.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: referral-saasquatch connection-version: 1 -pull_request: "https://github.com/singer-io/tap-referral-saasquatch/pull/23" +pull-request: "https://github.com/singer-io/tap-referral-saasquatch/pull/23" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-03-13-asana-v2-fix-access-token-refresh-issue.md b/_changelog-files/2026/2026-03-13-asana-v2-fix-access-token-refresh-issue.md index 9ac8d2780..3d33a4238 100644 --- a/_changelog-files/2026/2026-03-13-asana-v2-fix-access-token-refresh-issue.md +++ b/_changelog-files/2026/2026-03-13-asana-v2-fix-access-token-refresh-issue.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: asana connection-version: 2 -pull_request: "https://github.com/singer-io/tap-asana/pull/69" +pull-request: "https://github.com/singer-io/tap-asana/pull/69" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-03-16-s3-csv-v1-handle-empty-initial-sync.md b/_changelog-files/2026/2026-03-16-s3-csv-v1-handle-empty-initial-sync.md index 754880b58..522a4725a 100644 --- a/_changelog-files/2026/2026-03-16-s3-csv-v1-handle-empty-initial-sync.md +++ b/_changelog-files/2026/2026-03-16-s3-csv-v1-handle-empty-initial-sync.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: s3 connection-version: 1 -pull_request: "https://github.com/singer-io/tap-s3-csv/pull/87" +pull-request: "https://github.com/singer-io/tap-s3-csv/pull/87" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-03-24-klaviyo-v1-sac-30415-fix-tap_stream_id-when-writing-bookmarks.md b/_changelog-files/2026/2026-03-24-klaviyo-v1-sac-30415-fix-tap_stream_id-when-writing-bookmarks.md index 04cf7db6a..b97adbe3d 100644 --- a/_changelog-files/2026/2026-03-24-klaviyo-v1-sac-30415-fix-tap_stream_id-when-writing-bookmarks.md +++ b/_changelog-files/2026/2026-03-24-klaviyo-v1-sac-30415-fix-tap_stream_id-when-writing-bookmarks.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: klaviyo connection-version: 1 -pull_request: "https://github.com/singer-io/tap-klaviyo/pull/83" +pull-request: "https://github.com/singer-io/tap-klaviyo/pull/83" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-03-30-xero-v1-show-warning-for-deprecated-streams.md b/_changelog-files/2026/2026-03-30-xero-v1-show-warning-for-deprecated-streams.md index f8bc59f1b..051afd766 100644 --- a/_changelog-files/2026/2026-03-30-xero-v1-show-warning-for-deprecated-streams.md +++ b/_changelog-files/2026/2026-03-30-xero-v1-show-warning-for-deprecated-streams.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: xero connection-version: 1 -pull_request: "https://github.com/singer-io/tap-xero/pull/128" +pull-request: "https://github.com/singer-io/tap-xero/pull/128" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-03-31-quickbase-v1-added-5xx-exception-handling.md b/_changelog-files/2026/2026-03-31-quickbase-v1-added-5xx-exception-handling.md index 0e1f85e32..3f4dc3887 100644 --- a/_changelog-files/2026/2026-03-31-quickbase-v1-added-5xx-exception-handling.md +++ b/_changelog-files/2026/2026-03-31-quickbase-v1-added-5xx-exception-handling.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: quick-base connection-version: 1 -pull_request: "https://github.com/singer-io/tap-quickbase/pull/37" +pull-request: "https://github.com/singer-io/tap-quickbase/pull/37" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-04-07-ms-teams-v1-library-upgrade.md b/_changelog-files/2026/2026-04-07-ms-teams-v1-library-upgrade.md index f1bace7cd..c24dca796 100644 --- a/_changelog-files/2026/2026-04-07-ms-teams-v1-library-upgrade.md +++ b/_changelog-files/2026/2026-04-07-ms-teams-v1-library-upgrade.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: ms-teams connection-version: 1 -pull_request: "https://github.com/singer-io/tap-ms-teams/pull/9" +pull-request: "https://github.com/singer-io/tap-ms-teams/pull/9" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-04-10-mailshake-v1-sac-28753-upgrade-python-dependencies.md b/_changelog-files/2026/2026-04-10-mailshake-v1-sac-28753-upgrade-python-dependencies.md index 91b4bc6bc..ee3237d2c 100644 --- a/_changelog-files/2026/2026-04-10-mailshake-v1-sac-28753-upgrade-python-dependencies.md +++ b/_changelog-files/2026/2026-04-10-mailshake-v1-sac-28753-upgrade-python-dependencies.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: mailshake connection-version: 1 -pull_request: "https://github.com/singer-io/tap-mailshake/pull/17" +pull-request: "https://github.com/singer-io/tap-mailshake/pull/17" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-04-10-zendesk-v2-fix-connection-failure-for-403-forbidden-error.md b/_changelog-files/2026/2026-04-10-zendesk-v2-fix-connection-failure-for-403-forbidden-error.md index 9a7d27707..7a92ec329 100644 --- a/_changelog-files/2026/2026-04-10-zendesk-v2-fix-connection-failure-for-403-forbidden-error.md +++ b/_changelog-files/2026/2026-04-10-zendesk-v2-fix-connection-failure-for-403-forbidden-error.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: zendesk connection-version: 2 -pull_request: "https://github.com/singer-io/tap-zendesk/pull/185" +pull-request: "https://github.com/singer-io/tap-zendesk/pull/185" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-04-13-asana-v2-fix-for-refresh-access-token.md b/_changelog-files/2026/2026-04-13-asana-v2-fix-for-refresh-access-token.md index 6afc6e54d..e968bbe7c 100644 --- a/_changelog-files/2026/2026-04-13-asana-v2-fix-for-refresh-access-token.md +++ b/_changelog-files/2026/2026-04-13-asana-v2-fix-for-refresh-access-token.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: asana connection-version: 2 -pull_request: "https://github.com/singer-io/tap-asana/pull/71" +pull-request: "https://github.com/singer-io/tap-asana/pull/71" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-04-16-chargebee-v1-add-custom_fields-support-for-all-streams.md b/_changelog-files/2026/2026-04-16-chargebee-v1-add-custom_fields-support-for-all-streams.md index e4a266f9b..a509700b7 100644 --- a/_changelog-files/2026/2026-04-16-chargebee-v1-add-custom_fields-support-for-all-streams.md +++ b/_changelog-files/2026/2026-04-16-chargebee-v1-add-custom_fields-support-for-all-streams.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: chargebee connection-version: 1 -pull_request: "https://github.com/singer-io/tap-chargebee/pull/123" +pull-request: "https://github.com/singer-io/tap-chargebee/pull/123" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/2026/2026-04-20-ebay-v1-fix-for-schema-mismatch-and-standard-metadata-format.md b/_changelog-files/2026/2026-04-20-ebay-v1-fix-for-schema-mismatch-and-standard-metadata-format.md index 254019df3..7ca2620a9 100644 --- a/_changelog-files/2026/2026-04-20-ebay-v1-fix-for-schema-mismatch-and-standard-metadata-format.md +++ b/_changelog-files/2026/2026-04-20-ebay-v1-fix-for-schema-mismatch-and-standard-metadata-format.md @@ -6,7 +6,7 @@ entry-type: bug-fix entry-category: integration connection-id: ebay connection-version: 1 -pull_request: "https://github.com/singer-io/tap-ebay/pull/14" +pull-request: "https://github.com/singer-io/tap-ebay/pull/14" --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/templates/deprecated-integration.md b/_changelog-files/templates/deprecated-integration.md index 24fb8a9c8..47a3bd238 100644 --- a/_changelog-files/templates/deprecated-integration.md +++ b/_changelog-files/templates/deprecated-integration.md @@ -6,7 +6,7 @@ entry-type: deprecation entry-category: "integration" connection-id: "" connection-version: "" -# pull_request: "" UNCOMMENT IF THERE'S A PR +# pull-request: "" UNCOMMENT IF THERE'S A PR --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/templates/general-entry.md b/_changelog-files/templates/general-entry.md index 9f6cfbf77..bcd1dfdd4 100644 --- a/_changelog-files/templates/general-entry.md +++ b/_changelog-files/templates/general-entry.md @@ -6,6 +6,6 @@ entry-type: new-feature entry-category: connection-id: connection-version: -# pull_request: "" +# pull-request: "" --- {{ site.data.changelog.metadata.single-integration | flatify }} \ No newline at end of file diff --git a/_changelog-files/templates/integrations-in-beta-list.md b/_changelog-files/templates/integrations-in-beta-list.md index e28307afa..42a326cd0 100644 --- a/_changelog-files/templates/integrations-in-beta-list.md +++ b/_changelog-files/templates/integrations-in-beta-list.md @@ -8,7 +8,7 @@ connections: - id: "" version: copy: | -# pull_request: "" UNCOMMENT IF THERE'S A PR +# pull-request: "" UNCOMMENT IF THERE'S A PR --- Stitch is pleased to announce the release of new integrations into open beta and available to all customers: diff --git a/_changelog-files/templates/new-integration-data.md b/_changelog-files/templates/new-integration-data.md index 284904d14..5cfcb8977 100644 --- a/_changelog-files/templates/new-integration-data.md +++ b/_changelog-files/templates/new-integration-data.md @@ -6,7 +6,7 @@ entry-type: improvement entry-category: integration connection-id: connection-version: -# pull_request: "" UNCOMMENT IF THERE'S A PR +# pull-request: "" UNCOMMENT IF THERE'S A PR --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/templates/new-integration-version.md b/_changelog-files/templates/new-integration-version.md index 0cf20359c..9512c522a 100644 --- a/_changelog-files/templates/new-integration-version.md +++ b/_changelog-files/templates/new-integration-version.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: "" connection-version: "" -# pull_request: "" UNCOMMENT IF THERE'S A PR +# pull-request: "" UNCOMMENT IF THERE'S A PR --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/templates/new-integration.md b/_changelog-files/templates/new-integration.md index 8a4bfb68c..eecc3b65e 100644 --- a/_changelog-files/templates/new-integration.md +++ b/_changelog-files/templates/new-integration.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: "" connection-version: "1" -# pull_request: "" UNCOMMENT IF THERE'S A PR +# pull-request: "" UNCOMMENT IF THERE'S A PR --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/templates/sunset-integration.md b/_changelog-files/templates/sunset-integration.md index 96373a5af..f70212262 100644 --- a/_changelog-files/templates/sunset-integration.md +++ b/_changelog-files/templates/sunset-integration.md @@ -6,7 +6,7 @@ entry-type: removed entry-category: "integration" connection-id: "" connection-version: "" -# pull_request: "" UNCOMMENT IF THERE'S A PR +# pull-request: "" UNCOMMENT IF THERE'S A PR --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_changelog-files/templates/tapified-integration.md b/_changelog-files/templates/tapified-integration.md index 224e54406..15f6a535f 100644 --- a/_changelog-files/templates/tapified-integration.md +++ b/_changelog-files/templates/tapified-integration.md @@ -6,7 +6,7 @@ entry-type: new-feature entry-category: integration connection-id: connection-version: "" -# pull_request: "" UNCOMMENT IF THERE'S A PR +# pull-request: "" UNCOMMENT IF THERE'S A PR --- {{ site.data.changelog.metadata.single-integration | flatify }} diff --git a/_includes/changelog/entry-list.html b/_includes/changelog/entry-list.html index 6a2015de0..0d340db4e 100644 --- a/_includes/changelog/entry-list.html +++ b/_includes/changelog/entry-list.html @@ -111,11 +111,11 @@ - {% if entry.pull_request %} + {% if entry["pull-request"] %}

- - {{ entry.pull_request | remove: "https://github.com/singer-io/" | remove: "https://github.com/stitchdata/" | replace: "/pull/", " #" | upcase }} + + {{ entry["pull-request"] | remove: "https://github.com/singer-io/" | remove: "https://github.com/stitchdata/" | replace: "/pull/", " #" | upcase }}

{% endif %} diff --git a/scripts/changelog/changelog.py b/scripts/changelog/changelog.py index 649edac7b..b21b4c5ae 100644 --- a/scripts/changelog/changelog.py +++ b/scripts/changelog/changelog.py @@ -266,7 +266,7 @@ def getPRsToDocument(): # Find PRs that need to be documented and create draft c entry_id_base = f"{pr_date}-{yaml_title}" entry_id_slug = slugify(entry_id_base) md_filename = f'{path}/{entry_id_slug}.md' - md_text = f'---\ntitle: "{yaml_title}"\ncontent-type: "changelog-entry"\ndate: {pr_date}\nentry-type: {entry_type}\nentry-category: integration\nconnection-id: {connection_id}\nconnection-version: {connection_version}\npull_request: "{pr_url}"\n---\n{{{{ site.data.changelog.metadata.single-integration | flatify }}}}\n\nWe\'ve improved our {{{{ this-connection.display_name }}}} (v{{{{ this-connection.this-version }}}}) integration to {pr_title_for_md_description}.' + md_text = f'---\ntitle: "{yaml_title}"\ncontent-type: "changelog-entry"\ndate: {pr_date}\nentry-type: {entry_type}\nentry-category: integration\nconnection-id: {connection_id}\nconnection-version: {connection_version}\npull-request: "{pr_url}"\n---\n{{{{ site.data.changelog.metadata.single-integration | flatify }}}}\n\nWe\'ve improved our {{{{ this-connection.display_name }}}} (v{{{{ this-connection.this-version }}}}) integration to {pr_title_for_md_description}.' with open(md_filename, 'w') as out: out.write(md_text) From 4398d814e1a2e42a5c99bfadc23b5a5f771e68f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A9lanie=20Vistry?= Date: Fri, 24 Apr 2026 14:53:46 +0200 Subject: [PATCH 09/11] Revert "Updated entry-list" This reverts commit b276e4509158d448ad99858c8ef7e6ed98cf8ba9. --- _includes/changelog/entry-list.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/_includes/changelog/entry-list.html b/_includes/changelog/entry-list.html index 0d340db4e..597c897c9 100644 --- a/_includes/changelog/entry-list.html +++ b/_includes/changelog/entry-list.html @@ -111,11 +111,11 @@ - {% if entry["pull-request"] %} + {% if entry.pull-request %}

- - {{ entry["pull-request"] | remove: "https://github.com/singer-io/" | remove: "https://github.com/stitchdata/" | replace: "/pull/", " #" | upcase }} + + {{ entry.pull-request | remove: "https://github.com/singer-io/" | remove: "https://github.com/stitchdata/" | replace: "/pull/", " #" | upcase }}

{% endif %} From 644f7e6bd06c44028b5c351def2452186777952c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A9lanie=20Vistry?= Date: Fri, 24 Apr 2026 14:54:14 +0200 Subject: [PATCH 10/11] Revert "Updated the changelog script" This reverts commit 46ed3d904a1a7a58e72c9d0808eb1eb80723163d. --- scripts/changelog/changelog.py | 21 ++++----------------- 1 file changed, 4 insertions(+), 17 deletions(-) diff --git a/scripts/changelog/changelog.py b/scripts/changelog/changelog.py index b21b4c5ae..429d5556e 100644 --- a/scripts/changelog/changelog.py +++ b/scripts/changelog/changelog.py @@ -31,14 +31,6 @@ new_feature = ['new version'] removed = ['remove', 'removed', 'removing', 'removal'] -def slugify(text): # Replicate Jekyll's slugify filter to match generated IDs - text = text.lower() - text = text.replace(' ', '-') - text = re.sub(r'[^\w\-]', '', text) # Remove special characters except hyphens and word chars - text = re.sub(r'-+', '-', text) # Replace multiple hyphens with single hyphen - text = text.strip('-') # Strip hyphens from start and end - return text - def createDir(): # Check if the target folder exists and create it if it doesn't if os.path.exists(path) == False: os.makedirs(path) @@ -241,6 +233,7 @@ def getPRsToDocument(): # Find PRs that need to be documented and create draft c # Process PR title pr_title = re.sub(r'\w*-\d*\s?:\s?', '', pr_title) pr_title_for_md_description = pr_title[0].lower() + pr_title[1:] + pr_title_for_md_filename = pr_title.lower().replace(' ', '-').replace(':', '-').replace(',', '-').replace('.', '-').replace('--', '-').replace('/', '-').replace('\'', '-') # Guess the entry type from the PR title entry_type = 'NOT FOUND' @@ -258,15 +251,9 @@ def getPRsToDocument(): # Find PRs that need to be documented and create draft c entry_type = type break - # Create the YAML title (this matches what goes in the file) - yaml_title = f"{connection_name} (v{connection_version}): {pr_title}" - - # Generate filename by slugifying the full title + date (matching Jekyll's ID generation) - # Jekyll generates: entry.date | date: "%F" | append: "-" | append: entry.title | slugify - entry_id_base = f"{pr_date}-{yaml_title}" - entry_id_slug = slugify(entry_id_base) - md_filename = f'{path}/{entry_id_slug}.md' - md_text = f'---\ntitle: "{yaml_title}"\ncontent-type: "changelog-entry"\ndate: {pr_date}\nentry-type: {entry_type}\nentry-category: integration\nconnection-id: {connection_id}\nconnection-version: {connection_version}\npull-request: "{pr_url}"\n---\n{{{{ site.data.changelog.metadata.single-integration | flatify }}}}\n\nWe\'ve improved our {{{{ this-connection.display_name }}}} (v{{{{ this-connection.this-version }}}}) integration to {pr_title_for_md_description}.' + # Create the filename and content of the changelog file and create it + md_filename = f'{path}/{pr_date}-{tap}-v{connection_version}-{pr_title_for_md_filename}.md' + md_text = f'---\ntitle: "{connection_name} (v{connection_version}): {pr_title}"\ncontent-type: "changelog-entry"\ndate: {pr_date}\nentry-type: {entry_type}\nentry-category: integration\nconnection-id: {connection_id}\nconnection-version: {connection_version}\npull-request: "{pr_url}"\n---\n{{{{ site.data.changelog.metadata.single-integration | flatify }}}}\n\nWe\'ve improved our {{{{ this-connection.display_name }}}} (v{{{{ this-connection.this-version }}}}) integration to {pr_title_for_md_description}.' with open(md_filename, 'w') as out: out.write(md_text) From 66113533a207b834a0535520578ea32b26d1a048 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guillaume=20Dalen=C3=A7on?= Date: Mon, 27 Apr 2026 11:08:29 +0200 Subject: [PATCH 11/11] DAGE-669: Make links clickable --- sass/_changelog.scss | 1 + stylesheets/screen.css | 1 + 2 files changed, 2 insertions(+) diff --git a/sass/_changelog.scss b/sass/_changelog.scss index 86e85d1ea..f45ab11f8 100644 --- a/sass/_changelog.scss +++ b/sass/_changelog.scss @@ -46,6 +46,7 @@ padding-top: 180px; margin-top: -160px; display: block; + pointer-events: none; } } diff --git a/stylesheets/screen.css b/stylesheets/screen.css index 3ace67813..33fc72505 100644 --- a/stylesheets/screen.css +++ b/stylesheets/screen.css @@ -1713,6 +1713,7 @@ hr.footer-cta { padding-top: 180px; margin-top: -160px; display: block; + pointer-events: none; } /* line 57, ../sass/_changelog.scss */