Skip to content

Commit 5c6cd0c

Browse files
Merge pull request #8 from fivetran/MagicBot_3bbfe4c7e6
[MagicBot] Bumping package version
2 parents d5e87e0 + 481f3d3 commit 5c6cd0c

23 files changed

+33
-14
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22
target/
33
dbt_modules/
44
logs/
5-
.DS_Store
5+
.DS_Store
6+
dbt_packages/

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# dbt_pendo_source v0.2.0
2+
🎉 dbt v1.0.0 Compatibility 🎉
3+
## 🚨 Breaking Changes 🚨
4+
- Adjusts the `require-dbt-version` to now be within the range [">=1.0.0", "<2.0.0"]. Additionally, the package has been updated for dbt v1.0.0 compatibility. If you are using a dbt version <1.0.0, you will need to upgrade in order to leverage the latest version of the package.
5+
- For help upgrading your package, I recommend reviewing this GitHub repo's Release Notes on what changes have been implemented since your last upgrade.
6+
- For help upgrading your dbt project to dbt v1.0.0, I recommend reviewing dbt-labs [upgrading to 1.0.0 docs](https://docs.getdbt.com/docs/guides/migration-guide/upgrading-to-1-0-0) for more details on what changes must be made.
7+
- Upgrades the package dependency to refer to the latest `dbt_fivetran_utils`. The latest `dbt_fivetran_utils` package also has a dependency on `dbt_utils` [">=0.8.0", "<0.9.0"].
8+
- Please note, if you are installing a version of `dbt_utils` in your `packages.yml` that is not in the range above then you will encounter a package dependency error.
9+
110
# dbt_pendo_source v0.1.1
211

312
## 🚨 Breaking Changes
@@ -10,4 +19,4 @@
1019
- Added this changelog to capture iterations of the package!
1120

1221
## Under the Hood
13-
- n/a
22+
- n/a

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![Apache License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) ![dbt logo and version](https://img.shields.io/static/v1?logo=dbt&label=dbt-version&message=0.20.x&color=orange)
1+
[![Apache License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
22
# Pendo (Source)
33

44
This package models Pendo data from [Fivetran's connector](https://fivetran.com/docs/applications/pendo). It uses data in the format described by [this ERD](https://fivetran.com/docs/applications/pendo#schemainformation).
@@ -20,6 +20,14 @@ This package contains staging models, designed to work simultaneously with our [
2020
## Installation Instructions
2121
Check [dbt Hub](https://hub.getdbt.com/) for the latest installation instructions, or [read the dbt docs](https://docs.getdbt.com/docs/package-management) for more information on installing packages.
2222

23+
Include in your `packages.yml`
24+
25+
```yaml
26+
packages:
27+
- package: fivetran/pendo_source
28+
version: [">=0.2.0", "<0.3.0"]
29+
```
30+
2331
## Package Maintenance
2432
The Fivetran team maintaining this package **only** maintains the latest version. We highly recommend you keep your `packages.yml` updated with the [dbt hub latest version](https://hub.getdbt.com/fivetran/pendo_source/latest/). You may refer to the [CHANGELOG](/CHANGELOG.md) and release notes for more information on changes across versions.
2533

dbt_project.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
config-version: 2
22

33
name: 'pendo_source'
4-
version: '0.1.1'
4+
version: '0.2.0'
55

6-
require-dbt-version: ">=0.20.0"
6+
require-dbt-version: [">=1.0.0", "<2.0.0"]
77

8-
models:
8+
models:
99
pendo_source:
1010
tmp:
1111
+materialized: view
@@ -31,9 +31,8 @@ vars:
3131
poll: "{{ source('pendo', 'poll') }}"
3232
poll_event: "{{ source('pendo', 'poll_event') }}"
3333
visitor_account_history: "{{ source('pendo', 'visitor_account_history') }}"
34-
3534
pendo__event_pass_through_columns: []
3635
pendo__feature_event_pass_through_columns: []
3736
pendo__page_event_pass_through_columns: []
3837
pendo__account_history_pass_through_columns: []
39-
pendo__visitor_history_pass_through_columns: []
38+
pendo__visitor_history_pass_through_columns: []

integration_tests/requirements.txt

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1-
dbt~=0.20.0
2-
dbt-spark~=0.20.0
3-
dbt-spark[PyHive]~=0.20.0
1+
dbt-snowflake==1.0.0
2+
dbt-bigquery==1.0.0
3+
dbt-redshift==1.0.0
4+
dbt-postgres==1.0.0
5+
dbt-spark==1.0.0
6+
dbt-spark[PyHive]==1.0.0
File renamed without changes.

0 commit comments

Comments
 (0)