mirror of
https://github.com/dbt-labs/dbt-core
synced 2025-12-18 22:11:27 +00:00
Compare commits
14 Commits
postgres-s
...
v0.14.4
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b5aff36253 | ||
|
|
087a541a0d | ||
|
|
3182bb69cd | ||
|
|
3b2698839f | ||
|
|
2004b4e9b9 | ||
|
|
b4dd265cb4 | ||
|
|
2b47cb4af3 | ||
|
|
9c696314e9 | ||
|
|
f6f551a5e1 | ||
|
|
169f8949d2 | ||
|
|
e679c70835 | ||
|
|
70d9b013c4 | ||
|
|
b7b999bff6 | ||
|
|
2d84844960 |
@@ -1,5 +1,5 @@
|
||||
[bumpversion]
|
||||
current_version = 0.14.2
|
||||
current_version = 0.14.4
|
||||
parse = (?P<major>\d+)
|
||||
\.(?P<minor>\d+)
|
||||
\.(?P<patch>\d+)
|
||||
|
||||
21
CHANGELOG.md
21
CHANGELOG.md
@@ -1,9 +1,28 @@
|
||||
## dbt 0.14.3 (Unreleased)
|
||||
## dbt 0.14.4 (November 8, 2019)
|
||||
|
||||
This release changes the version ranges of some of dbt's dependencies. These changes address installation issues in 0.14.3 when dbt is installed from pip. You can view the full list of dependency version changes [in this commit](https://github.com/fishtown-analytics/dbt/commit/b4dd265cb433480a59bbd15d140d46ebf03644eb).
|
||||
|
||||
Note: If you are installing dbt into an environment alongside other Python libraries, you can install individual dbt plugins with:
|
||||
```
|
||||
pip install dbt-postgres
|
||||
pip install dbt-redshift
|
||||
pip install dbt-snowflake
|
||||
pip install dbt-bigquery
|
||||
```
|
||||
|
||||
Installing specific plugins may help mitigate issues regarding incompatible versions of dependencies between dbt and other libraries.
|
||||
|
||||
### Fixes:
|
||||
- Fix dependency issues caused by a bad release of `snowflake-connector-python` ([#1892](https://github.com/fishtown-analytics/dbt/issues/1892), [#1895](https://github.com/fishtown-analytics/dbt/pull/1895/files))
|
||||
|
||||
|
||||
## dbt 0.14.3 (October 10, 2019)
|
||||
|
||||
This is a bugfix release.
|
||||
|
||||
### Fixes:
|
||||
- Fix for `dictionary changed size during iteration` race condition ([#1740](https://github.com/fishtown-analytics/dbt/issues/1740), [#1750](https://github.com/fishtown-analytics/dbt/pull/1750))
|
||||
- Fix upper bound on jsonschema dependency to 3.1.1 ([#1817](https://github.com/fishtown-analytics/dbt/issues/1817), [#1819](https://github.com/fishtown-analytics/dbt/pull/1819))
|
||||
|
||||
### Under the hood:
|
||||
- Provide a programmatic method for validating profile targets ([#1754](https://github.com/fishtown-analytics/dbt/issues/1754), [#1775](https://github.com/fishtown-analytics/dbt/pull/1775))
|
||||
|
||||
@@ -56,5 +56,5 @@ def get_version_information():
|
||||
.format(version_msg))
|
||||
|
||||
|
||||
__version__ = '0.14.2'
|
||||
__version__ = '0.14.4'
|
||||
installed = get_installed_version()
|
||||
|
||||
@@ -9,7 +9,7 @@ def read(fname):
|
||||
|
||||
|
||||
package_name = "dbt-core"
|
||||
package_version = "0.14.2"
|
||||
package_version = "0.14.4"
|
||||
description = """dbt (data build tool) is a command line tool that helps \
|
||||
analysts and engineers transform data in their warehouse more effectively"""
|
||||
|
||||
@@ -46,12 +46,12 @@ setup(
|
||||
'Jinja2>=2.10',
|
||||
'PyYAML>=3.11',
|
||||
'sqlparse==0.2.3',
|
||||
'networkx>=1.11,<3',
|
||||
'networkx>=1.11,<2.4',
|
||||
'minimal-snowplow-tracker==0.0.2',
|
||||
'requests>=2.18.0,<3',
|
||||
'colorama==0.3.9',
|
||||
'agate>=1.6,<2',
|
||||
'jsonschema>=3.0.1,<4',
|
||||
'jsonschema>=3.0.1,<3.1.2,!=3.1.0',
|
||||
'json-rpc>=1.12,<2',
|
||||
'werkzeug>=0.14.1,<0.15',
|
||||
]
|
||||
|
||||
@@ -4,7 +4,7 @@ from distutils.core import setup
|
||||
import os
|
||||
|
||||
package_name = "dbt-bigquery"
|
||||
package_version = "0.14.2"
|
||||
package_version = "0.14.4"
|
||||
description = """The bigquery adapter plugin for dbt (data build tool)"""
|
||||
|
||||
this_directory = os.path.abspath(os.path.dirname(__file__))
|
||||
|
||||
@@ -4,7 +4,7 @@ from distutils.core import setup
|
||||
import os
|
||||
|
||||
package_name = "dbt-postgres"
|
||||
package_version = "0.14.2"
|
||||
package_version = "0.14.4"
|
||||
description = """The postgres adpter plugin for dbt (data build tool)"""
|
||||
|
||||
this_directory = os.path.abspath(os.path.dirname(__file__))
|
||||
@@ -30,6 +30,6 @@ setup(
|
||||
},
|
||||
install_requires=[
|
||||
'dbt-core=={}'.format(package_version),
|
||||
'psycopg2>=2.7.5,<2.8',
|
||||
'psycopg2>=2.7,<2.8',
|
||||
]
|
||||
)
|
||||
|
||||
@@ -4,7 +4,7 @@ from distutils.core import setup
|
||||
import os
|
||||
|
||||
package_name = "dbt-redshift"
|
||||
package_version = "0.14.2"
|
||||
package_version = "0.14.4"
|
||||
description = """The redshift adapter plugin for dbt (data build tool)"""
|
||||
|
||||
this_directory = os.path.abspath(os.path.dirname(__file__))
|
||||
@@ -26,13 +26,13 @@ setup(
|
||||
'include/redshift/dbt_project.yml',
|
||||
'include/redshift/macros/*.sql',
|
||||
'include/redshift/macros/**/*.sql',
|
||||
]
|
||||
],
|
||||
},
|
||||
install_requires=[
|
||||
'dbt-core=={}'.format(package_version),
|
||||
'dbt-postgres=={}'.format(package_version),
|
||||
'boto3>=1.6.23,<1.10.0',
|
||||
'botocore>=1.9.23,<1.13.0',
|
||||
'psycopg2>=2.7.5,<2.8',
|
||||
]
|
||||
'psycopg2>=2.7,<2.8',
|
||||
'boto3>=1.4.4,<1.11.0',
|
||||
'botocore>=1.5.0,<1.14.0',
|
||||
],
|
||||
)
|
||||
|
||||
@@ -4,7 +4,7 @@ from distutils.core import setup
|
||||
import os
|
||||
|
||||
package_name = "dbt-snowflake"
|
||||
package_version = "0.14.2"
|
||||
package_version = "0.14.4"
|
||||
description = """The snowflake adapter plugin for dbt (data build tool)"""
|
||||
|
||||
this_directory = os.path.abspath(os.path.dirname(__file__))
|
||||
@@ -30,6 +30,17 @@ setup(
|
||||
},
|
||||
install_requires=[
|
||||
'dbt-core=={}'.format(package_version),
|
||||
'snowflake-connector-python>=1.6.12',
|
||||
'snowflake-connector-python==2.0.3',
|
||||
'requests<2.23',
|
||||
'urllib3<1.25',
|
||||
'azure-common<2',
|
||||
'azure-storage-blob<3',
|
||||
'pycryptodomex>=3.2,!=3.5.0,<4',
|
||||
'pyOpenSSL>=16.2.0',
|
||||
'cffi>=1.9,<2',
|
||||
'cryptography>2,<3',
|
||||
'pyjwt<2',
|
||||
'idna<3',
|
||||
'ijson<2.6',
|
||||
]
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user