Skip to content

Releases: tomasfarias/airflow-dbt-python

v2.1.0

05 Jul 10:57
v2.1.0
8859071
Compare
Choose a tag to compare

What's Changed

Full Changelog: v2.0.1...v2.1.0

v2.0.1

30 Jan 23:17
v2.0.1
8112a4c
Compare
Choose a tag to compare
v2.0.1: Minor bugfixing

v2.0.0

02 Dec 18:24
v2.0.0
5cd7863
Compare
Choose a tag to compare
v2.0.0: Compatibility with newer versions of dbt

v1.0.5

03 Apr 13:01
v1.0.5
d4d27c5
Compare
Choose a tag to compare
Changes:
* No changes, just re-deploying v1.0.4 as it was incorrectly tagged.

v1.0.4

31 Mar 20:56
v1.0.4
7dca167
Compare
Choose a tag to compare
Changes:
* Remotes (git): Support for HTTP basic authentication in git remote.
  * Follow-up work will add support for Airflow connections.

v1.0.3

27 Mar 22:44
v1.0.3
Compare
Choose a tag to compare
Changes:
  * Ignore errors on clean-up when exiting temporary directory.
    * Only for newer versions of Python (>= 3.10).

Under the hood:
  * Don't trigger CI on __vesion__.py bumps.
  * README typos.

v1.0.2

20 Mar 18:05
v1.0.2
333345d
Compare
Choose a tag to compare
Changes
* fix: Re-add dbt adapters to dependencies to support extras installation

v1.0.1

16 Mar 22:57
v1.0.1
9e38ffc
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.0.0...v1.0.1

v1.0.0

12 Mar 17:28
v1.0.0
Compare
Choose a tag to compare

v1.0.0 of airflow-dbt-python is finally here 🎉

I feel very confident in the API we have established, and even if there is still work to do, I want to start building on this API instead of dealing with old inconsistencies.

Due to the size of this release, I encourage folks who haven't had a chance to test the pre-release versions available for at least 3 weeks, to do so now before upgrading. As always, we thank any bug reports which can be opened as a GitHub issue.

Changes

  • airflow-dbt-python operators no longer handle temporary directories.
    • airflow-dbt-python operators should be about defining what to execute, not how.
    • airflow-dbt-python hooks are the ones that should worry about setting up directories.
    • This significantly reduces the complexity in operators.
  • Refactored the dbt remote interface (previously dbt backends).
    • The interface has been simplified to two methods: upload and download.
    • Now utilizes a more specific URL class for all URL-like arguments.
    • All dbt remotes are now hooks too, which means they can use Airflow Connections.
  • Implemented a new DbtRemoteGitHook to utilize git repositories as remotes.
  • tar file is a new supported archive format for dbt projects.
  • Moved dbt configurations to the utilities module.
    • dbt configurations are a wrapper to dbt. They exist purely because dbt doesn't have a formalized API outside the CLI.
    • Once dbt as a library moves along (see dbt-core as a library dbt-labs/dbt-core#6356), we may drop all of these configurations.
  • Much better understanding of how dbt logs things (as in, we now don't log things multiple times).
  • Support for Python 3.11.
  • Updated documentation.
  • Update CI versions.
  • Clear up test state to allow tests to be run more than once.

Breaking changes

  • Dropped support for Airflow major version 1.
    • It required too much work to maintain, and AWS MWAA has offered Airflow >= 2.x for a while now.
  • New hook and operator interfaces are incompatible with <=1.0.0 versions.
    • Developers extending airflow-dbt-python should be aware of these changes and review the documentation.

v1.0.0b2

05 Mar 18:20
v1.0.0b2
81e947c
Compare
Choose a tag to compare
v1.0.0b2 Pre-release
Pre-release

What's Changed

  • feat: Provide env_vars to update environment variables by @tomasfarias in #95

Full Changelog: v1.0.0b1...v1.0.0b2