Skip to content

Commit 8262928

Browse files
Merge pull request #21 from fivetran/update_dependencies
update packages.yml
2 parents ab5b8b6 + c7ad534 commit 8262928

10 files changed

+32
-23
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@ target/
33
dbt_modules/
44
logs/
55
.DS_Store
6-
dbt_packages/
6+
dbt_packages/
7+
package-lock.yml

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# dbt_shopify_holistic_reporting v0.6.0
2+
[PR #21](https://github.com/fivetran/dbt_shopify_holistic_reporting/pull/21) includes the following changes:
3+
4+
## Dependency Updates
5+
Updates the underlying Shopify package version range from [">=0.10.0", "<0.11.0"] to [">=0.11.0", "<0.14.0"] to account for breaking changes introduced to the Shopify package up to v0.14.0. This wider range will accommodate previous versions while support an upcoming release to Shopify, which will not have breaking changes for this package.
6+
- Additionally, please note that the wider range for the Shopify dbt package also updates the underlying Shopify Source dependency range from versions [">=0.10.0", "<0.11.0"] to [">=0.11.0", "<0.13.0"].
7+
18
# dbt_shopify_holistic_reporting v0.5.0
29
[PR #18](https://github.com/fivetran/dbt_shopify_holistic_reporting/pull/18) includes the following changes:
310

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Include the following shopify_holistic_reporting package version in your `packag
4949
```yml
5050
packages:
5151
- package: fivetran/shopify_holistic_reporting
52-
version: [">=0.5.0", "<0.6.0"] # we recommend using ranges to capture non-breaking changes automatically
52+
version: [">=0.6.0", "<0.7.0"] # we recommend using ranges to capture non-breaking changes automatically
5353
```
5454
5555
Do **NOT** include the `shopify`, `shopify_source`, `klaviyo`, or `klaviyo_source` packages in this file. The combo package itself has a dependency on these and will install the transformation and source packages as well.
@@ -130,10 +130,10 @@ This dbt package is dependent on the following dbt packages. Please be aware tha
130130
```yml
131131
packages:
132132
- package: fivetran/shopify
133-
version: [">=0.10.0", "<0.11.0"]
133+
version: [">=0.11.0", "<0.14.0"]
134134
135135
- package: fivetran/shopify_source
136-
version: [">=0.10.0", "<0.11.0"]
136+
version: [">=0.11.0", "<0.13.0"]
137137
138138
- package: fivetran/klaviyo
139139
version: [">=0.7.0", "<0.8.0"]

dbt_project.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: 'shopify_holistic_reporting'
2-
version: '0.5.0'
2+
version: '0.6.0'
33
config-version: 2
44
require-dbt-version: [">=1.3.0", "<2.0.0"]
55
models:

docs/catalog.json

+1-1
Large diffs are not rendered by default.

docs/index.html

+12-12
Large diffs are not rendered by default.

docs/manifest.json

+1-1
Large diffs are not rendered by default.

docs/run_results.json

+1-1
Large diffs are not rendered by default.

integration_tests/dbt_project.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: 'shopify_holistic_reporting_integration_tests'
2-
version: '0.5.0'
2+
version: '0.6.0'
33
profile: 'integration_tests'
44
config-version: 2
55

packages.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
packages:
22
- package: fivetran/shopify
3-
version: [">=0.10.0", "<0.11.0"]
3+
version: [">=0.11.0", "<0.14.0"]
4+
45
- package: fivetran/klaviyo
5-
version: [">=0.7.0", "<0.8.0"]
6+
version: [">=0.7.0", "<0.8.0"]

0 commit comments

Comments
 (0)