-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #66 from microsoft/v1.6.0
dbt 1.6.0 update
- Loading branch information
Showing
12 changed files
with
62 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,7 @@ jobs: | |
packages: write | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
|
||
- name: Log in to the Container registry | ||
uses: docker/[email protected] | ||
|
@@ -31,7 +31,7 @@ jobs: | |
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Build and push Docker image | ||
uses: docker/build-push-action@v4.0.0 | ||
uses: docker/build-push-action@v4.2.1 | ||
with: | ||
context: devops | ||
build-args: PYTHON_VERSION=${{ matrix.python_version }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,21 @@ | ||
# Changelog | ||
|
||
### v1.6.0 | ||
|
||
## Features | ||
|
||
* Supporting dbt-core 1.6.2 | ||
* Adding limit - new args to adapter.execute() function | ||
* Added tests related to dbt-debug to test --connection parameter | ||
* Added adapter zone tests | ||
|
||
## Dependencies | ||
|
||
* Bump from pytest==7.4.0 to pytest==7.4.2 | ||
* Bump from pre-commit==3.3.3 to 3.4.0 | ||
* Bump from dbt-tests-adapter~=1.5.2 to 1.6.2 | ||
* Bump from actions@v3 to v4 | ||
* Bump from [email protected] to 4.2.1 | ||
### v1.5.0 | ||
|
||
Releasing 1.5 version for dbt-cloud integration. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
version = "1.5.0" | ||
version = "1.6.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
pytest==7.4.0 | ||
pytest==7.4.2 | ||
twine==4.0.2 | ||
wheel==0.41.1 | ||
pre-commit==2.21.0;python_version<"3.8" | ||
pre-commit==3.3.3;python_version>="3.8" | ||
pre-commit==3.4.0;python_version>="3.8" | ||
pytest-dotenv==0.5.2 | ||
dbt-tests-adapter~=1.5.2 | ||
dbt-tests-adapter~=1.6.2 | ||
flaky==3.7.0 | ||
pytest-xdist==3.3.1 | ||
-e . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
from dbt.tests.adapter.utils.test_equals import BaseEquals | ||
|
||
|
||
class TestEqualsFabric(BaseEquals): | ||
pass |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
from dbt.tests.adapter.utils.test_null_compare import BaseMixedNullCompare, BaseNullCompare | ||
|
||
|
||
class TestMixedNullCompareFabric(BaseMixedNullCompare): | ||
pass | ||
|
||
|
||
class TestNullCompareFabric(BaseNullCompare): | ||
pass |