-
Notifications
You must be signed in to change notification settings - Fork 104
Incorporate 1.7.2 changes #461
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
7be1b00
update versions to 1.7
cody-scott f3ded8b
migrated work for fabric connection
cody-scott bb8009e
added devcontainer and updated development files
cody-scott fb41851
update connection managers
cody-scott 19480fb
remove macros applied in fabric
cody-scott e719d71
update sql server specific macros
cody-scott e4a7869
updated tests
cody-scott 5394dc7
updated changes and contrib
cody-scott 7c2c1cd
added clone sql
cody-scott 9e84072
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] b36e242
all tests passing locally
6af1ef5
fix: relax python version for pre commit
b69565b
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] 7483ff1
drop python 3.7 support
d0a5623
Merge branch 'dev' of https://github.com/dbt-msft/dbt-sqlserver into dev
09a83a5
drop azure CI action
bd50fb7
drop support for python 3.7 in integration tests
fb32960
dont cascade drop downstream views
3d3050e
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] 7dfd63b
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] 7e900be
overwrite for cascade exception
9818d69
Merge branch 'dev' of https://github.com/dbt-msft/dbt-sqlserver into dev
dae9e93
Merge branch 'dev' of https://github.com/cody-scott/dbt-sqlserver int…
dc22f68
try 3.7 unit tests again
2af0ce2
downgrade pre-commit
28e0cfb
revert 3.7 check
66fedda
restore pre-commit version
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 @@ | ||
| { | ||
| "features": { | ||
| "ghcr.io/devcontainers/features/docker-in-docker:2": { | ||
| "version": "2.7.1", | ||
| "resolved": "ghcr.io/devcontainers/features/docker-in-docker@sha256:f6a73ee06601d703db7d95d03e415cab229e78df92bb5002e8559bcfc047fec6", | ||
| "integrity": "sha256:f6a73ee06601d703db7d95d03e415cab229e78df92bb5002e8559bcfc047fec6" | ||
| } | ||
| } | ||
| } |
This file contains hidden or 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,11 @@ | ||
| { | ||
| "name": "Python 3", | ||
| "image": "mcr.microsoft.com/devcontainers/python:1-3.10-bookworm", | ||
| "features": { | ||
| "ghcr.io/devcontainers/features/docker-in-docker:2": {} | ||
| }, | ||
| "postStartCommand": "bash .devcontainer/setup_odbc.sh && bash .devcontainer/install_pyenv.sh && bash .devcontainer/setup_env.sh", | ||
| "runArgs": [ | ||
| "--env-file", "${localWorkspaceFolder}/.devcontainer/test.env" | ||
| ] | ||
| } | ||
This file contains hidden or 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,6 @@ | ||
| #/bin/bash | ||
| curl https://pyenv.run | bash | ||
|
|
||
| echo 'export PYENV_ROOT="$HOME/.pyenv" | ||
| [[ -d $PYENV_ROOT/bin ]] && export PATH="$PYENV_ROOT/bin:$PATH" | ||
| eval "$(pyenv init -)"' >> ~/.bashrc |
This file contains hidden or 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,6 @@ | ||
| pyenv install 3.10.7 | ||
| pyenv virtualenv 3.10.7 dbt-sqlserver | ||
| pyenv activate dbt-sqlserver | ||
|
|
||
| make dev | ||
| make server |
This file contains hidden or 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,18 @@ | ||
| curl https://packages.microsoft.com/keys/microsoft.asc | sudo tee /etc/apt/trusted.gpg.d/microsoft.asc | ||
|
|
||
| #Download appropriate package for the OS version | ||
| #Choose only ONE of the following, corresponding to your OS version | ||
|
|
||
| #Debian 12 | ||
| curl https://packages.microsoft.com/config/debian/12/prod.list | sudo tee /etc/apt/sources.list.d/mssql-release.list | ||
|
|
||
| sudo apt-get update | ||
| sudo ACCEPT_EULA=Y apt-get install -y msodbcsql18 | ||
| # optional: for bcp and sqlcmd | ||
| sudo ACCEPT_EULA=Y apt-get install -y mssql-tools18 | ||
| echo 'export PATH="$PATH:/opt/mssql-tools18/bin"' >> ~/.bashrc | ||
| source ~/.bashrc | ||
| # optional: for unixODBC development headers | ||
| sudo apt-get install -y unixodbc-dev | ||
| # optional: kerberos library for debian-slim distributions | ||
| sudo apt-get install -y libgssapi-krb5-2 |
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
|
|
@@ -95,3 +95,4 @@ venv/ | |
| ENV/ | ||
| env.bak/ | ||
| venv.bak/ | ||
| .mise.toml | ||
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.4.3" | ||
| version = "1.7.2" |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.