Skip to content

Commit

Permalink
Merge pull request #2877 from max-sixty/unlock-google-api
Browse files Browse the repository at this point in the history
Wider google-cloud dependencies
  • Loading branch information
jtcohen6 authored Nov 23, 2020
2 parents c19125b + dbf367e commit 0951d08
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
- Fix Redshift adapter `get_columns_in_relation` macro to push schema filter down to the `svv_external_columns` view ([#2855](https://github.com/fishtown-analytics/dbt/issues/2854))
- Add `unixodbc-dev` package to testing docker image ([#2859](https://github.com/fishtown-analytics/dbt/pull/2859))
- Increased the supported relation name length in postgres from 29 to 51 ([#2850](https://github.com/fishtown-analytics/dbt/pull/2850))
- Widen supported Google Cloud libraries dependencies ([#2794](https://github.com/fishtown-analytics/dbt/pull/2794), [#2877](https://github.com/fishtown-analytics/dbt/pull/2877)).
- dbt list command always return 0 as exit code ([#2886](https://github.com/fishtown-analytics/dbt/issues/2886), [#2892](https://github.com/fishtown-analytics/dbt/issues/2892))

### Under the hood
Expand All @@ -25,6 +26,7 @@ Contributors:
- [@brangisom](https://github.com/brangisom) [#2855](https://github.com/fishtown-analytics/dbt/pull/2855)
- [@elexisvenator](https://github.com/elexisvenator) ([#2850](https://github.com/fishtown-analytics/dbt/pull/2850))
- [@franloza](https://github.com/franloza) ([#2837](https://github.com/fishtown-analytics/dbt/pull/2837))
- [@max-sixty](https://github.com/max-sixty) ([#2877](https://github.com/fishtown-analytics/dbt/pull/2877))
- [@rsella](https://github.com/rsella) ([#2892](https://github.com/fishtown-analytics/dbt/issues/2892))

## dbt 0.19.0b1 (October 21, 2020)
Expand Down
12 changes: 7 additions & 5 deletions plugins/bigquery/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,13 @@
},
install_requires=[
'dbt-core=={}'.format(package_version),
'protobuf>=3.6.0,<3.12',
'google-cloud-core>=1.3.0,<1.4',
'google-cloud-bigquery>=1.25.0,<1.26.0',
'google-api-core>=1.16.0,<1.17.0',
'googleapis-common-protos>=1.6.0,<1.7.0',
'protobuf>=3.13.0,<4',
# These are more tightly pinned, as they have a track record of
# breaking changes in minor releases.
'google-cloud-core>=1.3.0,<1.5',
'google-cloud-bigquery>=1.25.0,<2.4',
'google-api-core>=1.16.0,<1.24',
'googleapis-common-protos>=1.6.0,<1.53',
'six>=1.14.0',
],
zip_safe=False,
Expand Down

0 comments on commit 0951d08

Please sign in to comment.