Skip to content
This repository was archived by the owner on Jan 20, 2026. It is now read-only.

Commit 50bb8a3

Browse files
Merge branch 'release/v0.21.0' into bugfix/ticket-pipeline-id-casting
2 parents 4fb17a9 + 5025162 commit 50bb8a3

File tree

9 files changed

+15
-17
lines changed

9 files changed

+15
-17
lines changed

.github/workflows/auto-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ jobs:
1111
(github.event.pull_request.merged == true && github.event.pull_request.base.ref == 'main') ||
1212
github.event.label.name == 'pre-release'
1313
uses: fivetran/dbt_package_automations/.github/workflows/auto-release.yml@main
14-
secrets: inherit
14+
secrets: inherit

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,5 +69,5 @@ service-account.json
6969
ENV/
7070
env/
7171
env.bak/
72-
venv/
73-
venv.bak/
72+
venv/
73+
venv.bak/

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# dbt_hubspot_source v0.21.0
1+
# dbt_hubspot_source v0.21.0
22
This release includes the following updates:
33

44
## Schema Changes
@@ -24,6 +24,7 @@ This release includes the following updates:
2424
- Refreshed README tag block [PR #147](https://github.com/fivetran/dbt_hubspot_source/pull/147):
2525
- Left-aligned and positioned below the H1 title.
2626
- Updated `.gitignore` to exclude additional DBT, Python, and system artifacts. [PR #147](https://github.com/fivetran/dbt_hubspot_source/pull/147)
27+
2728

2829
# dbt_hubspot_source v0.20.0
2930

README.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@
1010
<img src="https://img.shields.io/badge/Maintained%3F-yes-green.svg" /></a>
1111
<a alt="PRs">
1212
<img src="https://img.shields.io/badge/Contributions-welcome-blueviolet" /></a>
13-
<a alt="Fivetran Quickstart Compatible"
14-
href="https://fivetran.com/docs/transformations/dbt/quickstart">
15-
<img src="https://img.shields.io/badge/Fivetran_Quickstart_Compatible%3F-yes-green.svg" /></a>
1613
</p>
1714

1815
## What does this dbt package do?
@@ -220,11 +217,11 @@ models:
220217
hubspot_source:
221218
+schema: my_new_schema_name # leave blank for just the target_schema
222219
```
223-
220+
224221
#### Change the source table references
225222
If an individual source table has a different name than the package expects, add the table name as it appears in your destination to the respective variable:
226223
> IMPORTANT: See this project's [`dbt_project.yml`](https://github.com/fivetran/dbt_hubspot_source/blob/main/dbt_project.yml) variable declarations to see the expected names.
227-
224+
228225
```yml
229226
vars:
230227
hubspot_<default_source_table_name>_identifier: your_table_name
@@ -246,7 +243,7 @@ packages:
246243
- package: dbt-labs/spark_utils
247244
version: [">=0.3.0", "<0.4.0"]
248245
```
249-
246+
250247
## How is this package maintained and can I contribute?
251248
### Package Maintenance
252249
The Fivetran team maintaining this package _only_ maintains the latest version of the package. We highly recommend that you stay consistent with the [latest version](https://hub.getdbt.com/fivetran/hubspot_source/latest/) of the package and refer to the [CHANGELOG](https://github.com/fivetran/dbt_hubspot_source/blob/main/CHANGELOG.md) and release notes for more information on changes across versions.

docs/catalog.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

docs/manifest.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

integration_tests/dbt_project.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -255,5 +255,5 @@ dispatch:
255255
search_order: ['spark_utils', 'dbt_utils']
256256

257257
flags:
258-
send_anonymous_usage_stats: False
259-
use_colors: True
258+
send_anonymous_usage_stats: False
259+
use_colors: True

models/src_hubspot.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -448,11 +448,11 @@ sources:
448448
description: Whether the pipeline stage is currently in use.
449449
- name: closed_won
450450
description: >
451-
Boolean indicating if the pipeline stage is closed.
451+
Boolean indicating if the pipeline stage is closed.
452452
453453
NOTE: This field is deprecated in favor of the `is_closed` column.
454454
- name: is_closed
455-
description: Boolean indicating if the pipeline stage is closed.
455+
description: Boolean indicating if the pipeline stage is closed.
456456
- name: display_order
457457
description: Used to determine the order in which the stages appear when viewed in HubSpot.
458458
- name: label

models/stg_hubspot__deal.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ models:
2020
description: Used to determine the order in which the stages appear when viewed in HubSpot.
2121
- name: is_active
2222
description: Whether the pipeline stage is currently in use.
23-
- name: is_closed
23+
- name: is_closed
2424
description: Boolean indicating if the pipeline stage is closed. For the state of the closed deal ("Closed Won" vs "Closed Lost"), refer to the pipeline_stage_label column.
2525
- name: pipeline_stage_label
2626
description: The human-readable label for the stage. The label is used when showing the stage in HubSpot.

0 commit comments

Comments
 (0)