Compare commits

...

14 Commits

Author SHA1 Message Date
Connor McArthur
b5aff36253 Merge pull request #1908 from fishtown-analytics/dev/0.14.4
dbt 0.14.4
2019-11-08 13:33:34 -05:00
Connor McArthur
087a541a0d add release date 2019-11-08 13:12:41 -05:00
Connor McArthur
3182bb69cd Bump version: 0.14.4b1 → 0.14.4 2019-11-08 13:11:36 -05:00
Drew Banin
3b2698839f Update CHANGELOG.md 2019-11-08 12:46:28 -05:00
Jacob Beck
2004b4e9b9 Merge pull request #1895 from fishtown-analytics/fix/014-dependency-issues
Lock many dependencies/sub-dependencies (#1892)
2019-11-06 15:18:34 -07:00
Jacob Beck
b4dd265cb4 Lock many dependencies/sub-dependencies 2019-11-06 11:03:19 -07:00
Jacob Beck
2b47cb4af3 Bump version: 0.14.3 → 0.14.4b1 2019-11-06 11:02:30 -07:00
Connor McArthur
9c696314e9 Bump version: 0.14.3rc1 → 0.14.3 2019-10-10 18:25:03 -04:00
Connor McArthur
f6f551a5e1 Merge pull request #1820 from fishtown-analytics/dev/0.14.3
dbt 0.14.3
2019-10-10 15:01:06 -04:00
Connor McArthur
169f8949d2 update CHANGELOG 2019-10-10 13:56:31 -04:00
Jacob Beck
e679c70835 Merge pull request #1819 from fishtown-analytics/fix/pin-jsonschema
Set a much more strict version upper bound for jsonschema
2019-10-10 09:17:34 -04:00
Connor McArthur
70d9b013c4 add date to 0.14.3 2019-10-10 09:10:29 -04:00
Jacob Beck
b7b999bff6 Set a much more strict version upper bound for jsonschema
disallow 3.1.x, except for 3.1.1 which works fine
2019-10-10 06:12:31 -06:00
Connor McArthur
2d84844960 Bump version: 0.14.2 → 0.14.3rc1 2019-10-01 07:18:40 -04:00
9 changed files with 48 additions and 18 deletions

View File

@@ -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+)

View File

@@ -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))

View File

@@ -56,5 +56,5 @@ def get_version_information():
.format(version_msg))
__version__ = '0.14.2'
__version__ = '0.14.4'
installed = get_installed_version()

View File

@@ -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',
]

View File

@@ -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__))

View 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',
]
)

View File

@@ -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',
],
)

View File

@@ -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',
]
)

View File

@@ -10,7 +10,7 @@ with open(os.path.join(this_directory, 'README.md')) as f:
package_name = "dbt"
package_version = "0.14.2"
package_version = "0.14.4"
description = """With dbt, data analysts and engineers can build analytics \
the way engineers build applications."""