-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch '1.7.latest' into ADAP-9681/fix_renamed_relations_overri…
…de_pre_1.8
- Loading branch information
Showing
30 changed files
with
377 additions
and
60 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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
## dbt-core 1.7.10 - March 14, 2024 | ||
|
||
### Fixes | ||
|
||
- Do not add duplicate input_measures ([#9360](https://github.com/dbt-labs/dbt-core/issues/9360)) | ||
- Fix partial parsing `KeyError` on deleted schema files ([#8860](https://github.com/dbt-labs/dbt-core/issues/8860)) | ||
- Support saved queries in `dbt list` ([#9532](https://github.com/dbt-labs/dbt-core/issues/9532)) | ||
|
||
### Dependencies | ||
|
||
- Restrict protobuf to 4.* versions ([#9566](https://github.com/dbt-labs/dbt-core/pull/9566)) |
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,18 @@ | ||
## dbt-core 1.7.9 - February 28, 2024 | ||
|
||
### Fixes | ||
|
||
- Fix node_info contextvar handling so incorrect node_info doesn't persist ([#8866](https://github.com/dbt-labs/dbt-core/issues/8866)) | ||
- Add target-path to retry ([#8948](https://github.com/dbt-labs/dbt-core/issues/8948)) | ||
|
||
### Under the Hood | ||
|
||
- Make dbt-core compatible with Python 3.12 ([#9007](https://github.com/dbt-labs/dbt-core/issues/9007)) | ||
- Restrict protobuf to major version 4. ([#9566](https://github.com/dbt-labs/dbt-core/issues/9566)) | ||
|
||
### Security | ||
|
||
- Update Jinja2 to >= 3.1.3 to address CVE-2024-22195 ([#CVE-2024-22195](https://github.com/dbt-labs/dbt-core/pull/CVE-2024-22195)) | ||
|
||
### Contributors | ||
- [@l1xnan](https://github.com/l1xnan) ([#9007](https://github.com/dbt-labs/dbt-core/issues/9007)) |
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,6 @@ | ||
kind: Fixes | ||
body: Tighten exception handling to avoid worker thread hangs. | ||
time: 2024-02-16T14:56:32.858967-05:00 | ||
custom: | ||
Author: peterallenwebb | ||
Issue: "9583" |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -390,6 +390,7 @@ | |
[ | ||
"metric", | ||
"semantic_model", | ||
"saved_query", | ||
"source", | ||
"analysis", | ||
"model", | ||
|
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
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,43 @@ | ||
# Task README | ||
|
||
### Task Hierarchy | ||
``` | ||
BaseTask | ||
┣ CleanTask | ||
┣ ConfiguredTask | ||
┃ ┣ GraphRunnableTask | ||
┃ ┃ ┣ CloneTask | ||
┃ ┃ ┣ CompileTask | ||
┃ ┃ ┃ ┣ GenerateTask | ||
┃ ┃ ┃ ┣ RunTask | ||
┃ ┃ ┃ ┃ ┣ BuildTask | ||
┃ ┃ ┃ ┃ ┣ FreshnessTask | ||
┃ ┃ ┃ ┃ ┣ SeedTask | ||
┃ ┃ ┃ ┃ ┣ SnapshotTask | ||
┃ ┃ ┃ ┃ ┗ TestTask | ||
┃ ┃ ┃ ┗ ShowTask | ||
┃ ┃ ┗ ListTask | ||
┃ ┣ RetryTask | ||
┃ ┣ RunOperationTask | ||
┃ ┗ ServeTask | ||
┣ DebugTask | ||
┣ DepsTask | ||
┗ InitTask | ||
``` | ||
|
||
### Runner Hierarchy | ||
``` | ||
BaseRunner | ||
┣ CloneRunner | ||
┣ CompileRunner | ||
┃ ┣ GenericSqlRunner | ||
┃ ┃ ┣ SqlCompileRunner | ||
┃ ┃ ┗ SqlExecuteRunner | ||
┃ ┣ ModelRunner | ||
┃ ┃ ┣ SeedRunner | ||
┃ ┃ ┗ SnapshotRunner | ||
┃ ┣ ShowRunner | ||
┃ ┗ TestRunner | ||
┣ FreshnessRunner | ||
┗ SavedQueryRunner | ||
``` |
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
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 |
---|---|---|
|
@@ -16,12 +16,12 @@ FROM --platform=$build_for python:3.10.7-slim-bullseye as base | |
# N.B. The refs updated automagically every release via bumpversion | ||
# N.B. dbt-postgres is currently found in the core codebase so a value of dbt-core@<some_version> is correct | ||
|
||
ARG [email protected].8 | ||
ARG [email protected].8 | ||
ARG [email protected].8 | ||
ARG [email protected].8 | ||
ARG [email protected].8 | ||
ARG [email protected].8 | ||
ARG [email protected].10 | ||
ARG [email protected].10 | ||
ARG [email protected].10 | ||
ARG [email protected].10 | ||
ARG [email protected].10 | ||
ARG [email protected].10 | ||
# special case args | ||
ARG dbt_spark_version=all | ||
ARG dbt_third_party | ||
|
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.7.8" | ||
version = "1.7.10" |
Oops, something went wrong.