Release Notes
August 2026
v2.4.0
The
account,campaign,contact, andopportunitydaily history models, and their related variables, are not currently available in Quickstart.
Schema/Data Change (--full-refresh required after upgrading)
1 total change • 1 possible breaking change
| Data Model(s) | Change type | Old | New | Notes |
|---|---|---|---|---|
stg_salesforce__account_historystg_salesforce__contact_historystg_salesforce__opportunity_history | Removed model | BREAKING: Run --full-refresh on the three daily history models after upgrading.salesforce__account_daily_history, salesforce__contact_daily_history, and salesforce__opportunity_daily_history now read directly from the salesforce_history sources, matching the salesforce__campaign_daily_history pattern |
Bug Fix
- Fixes an issue in
salesforce__account_daily_history,salesforce__campaign_daily_history,salesforce__contact_daily_history, andsalesforce__opportunity_daily_historywhere a record that remained current but hadn't changed recently could stop receiving new daily rows on incremental runs. Currently active records now continue to receive a daily row regardless of how recently they last changed. Requires--full-refreshto backfill any rows that were previously missing.
Feature Update
- Adds a configurable
lookback_windowvariable (default 1 day) tosalesforce__account_daily_history,salesforce__campaign_daily_history,salesforce__contact_daily_history, andsalesforce__opportunity_daily_history. Each incremental run now reprocesses the lastlookback_windowdays in addition to any new dates, so a corrected or backfilled history record landing within that window is picked up automatically instead of requiring a--full-refresh.
v2.4.1
Feature Updates
- Adds DuckDB as a supported destination.
July 2026
v2.3.0
Schema/Data Change
5 total changes • 0 possible breaking changes
| Data Model(s) | Change type | Old | New | Notes |
|---|---|---|---|---|
salesforce__campaign_performance | New model | — | One row per campaign | Requires the campaign source table. Conditionally joins campaign_member and record_type. |
salesforce__campaign_daily_history | New model | — | One row per campaign per day | Disabled by default. Requires Salesforce History Mode and salesforce__campaign_history_enabled: true. |
salesforce__opportunity_enhanced | New column | — | opportunity_record_type_name | Conditionally populated when salesforce__record_type_enabled: true. Joins record_type filtered to sobject_type = 'Opportunity'. |
stg_salesforce__campaignstg_salesforce__campaign_memberstg_salesforce__record_type | New staging models | Upstream models of salesforce__campaign_performance. |
Feature Update
- Adds support for
salesforce__campaign_pass_through_columnsto pass custom campaign fields through tosalesforce__campaign_performance. See the README for configuration details.
January 2026
v2.2.0
Documentation
- Updates README with standardized Fivetran formatting.
Under the Hood
- In the
quickstart.ymlfile:- Adds
supported_varsfor Quickstart UI customization.
- Adds
August 2025
v2.0.0
Breaking Changes
Source Package Consolidation
- Removed the dependency on the
fivetran/salesforce_sourcepackage.- All functionality from the source package has been merged into this transformation package for improved maintainability and clarity.
- If you reference
fivetran/salesforce_sourcein yourpackages.yml, you must remove this dependency to avoid conflicts. - Any source overrides referencing the
fivetran/salesforce_sourcepackage will also need to be removed or updated to reference this package. - Update any salesforce_source-scoped variables to be scoped to only under this package. See the README for how to configure the build schema of staging models.
- As part of the consolidation, vars are no longer used to reference staging models, and only sources are represented by vars. Staging models are now referenced directly with
ref()in downstream models.
dbt Fusion Compatibility Updates
- Updated package to maintain compatibility with dbt-core versions both before and after v1.10.6, which introduced a breaking change to multi-argument test syntax (e.g.,
unique_combination_of_columns). - Temporarily removed unsupported tests to avoid errors and ensure smoother upgrades across different dbt-core versions. These tests will be reintroduced once a safe migration path is available.
- Removed all
dbt_utils.unique_combination_of_columnstests. - Moved
loaded_at_field: _fivetran_syncedunder theconfig:block insrc_salesforce.ymlandsrc_salesforce_history.yml.
- Removed all
Under the Hood
- Updated conditions in
.github/workflows/auto-release.yml. - Added
.github/workflows/generate-docs.yml.