-
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 'main' into mashumaro_fixes
- Loading branch information
Showing
49 changed files
with
1,222 additions
and
561 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
kind: Features | ||
body: Support "tags" in Saved Queries | ||
time: 2024-12-16T09:54:35.327675-08:00 | ||
custom: | ||
Author: theyostalservice | ||
Issue: "11155" |
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: Warn about invalid usages of `concurrent_batches` config | ||
time: 2024-12-12T11:36:11.451962-06:00 | ||
custom: | ||
Author: QMalcolm | ||
Issue: "11122" |
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: Error writing generic test at run time | ||
time: 2024-12-16T13:46:45.936573-05:00 | ||
custom: | ||
Author: gshank | ||
Issue: "11110" |
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: Run check_modified_contract for state:modified | ||
time: 2024-12-17T15:48:48.053054-05:00 | ||
custom: | ||
Author: gshank | ||
Issue: "11034" |
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: Fix unrendered_config for tests from dbt_project.yml | ||
time: 2024-12-18T11:26:40.270022-05:00 | ||
custom: | ||
Author: gshank | ||
Issue: "11146" |
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: Under the Hood | ||
body: Create a no-op exposure runner | ||
time: 2024-12-02T16:47:15.766574Z | ||
custom: | ||
Author: aranke | ||
Issue: ' ' |
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,50 @@ | ||
# **what?** | ||
# Check if the an issue is opened near or during an extended holiday period. | ||
# If so, post an automatically-generated comment about the holiday for bug reports. | ||
# Also provide specific information to customers of dbt Cloud. | ||
|
||
# **why?** | ||
# Explain why responses will be delayed during our holiday period. | ||
|
||
# **when?** | ||
# This will run when new issues are opened. | ||
|
||
name: Auto-Respond to Bug Reports During Holiday Period | ||
|
||
on: | ||
issues: | ||
types: | ||
- opened | ||
|
||
permissions: | ||
contents: read | ||
issues: write | ||
|
||
jobs: | ||
auto-response: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check if current date is within holiday period | ||
id: date-check | ||
run: | | ||
current_date=$(date -u +"%Y-%m-%d") | ||
start_date="2024-12-23" | ||
end_date="2025-01-05" | ||
if [[ "$current_date" < "$start_date" || "$current_date" > "$end_date" ]]; then | ||
echo "outside_holiday=true" >> $GITHUB_ENV | ||
else | ||
echo "outside_holiday=false" >> $GITHUB_ENV | ||
fi | ||
- name: Post comment | ||
if: ${{ env.outside_holiday == 'false' && contains(github.event.issue.labels.*.name, 'bug') }} | ||
run: | | ||
gh issue comment ${{ github.event.issue.number }} --repo ${{ github.repository }} --body "Thank you for your bug report! Our team is will be out of the office for [Christmas and our Global Week of Rest](https://handbook.getdbt.com/docs/time_off#2024-us-holidays), from December 25, 2024, through January 3, 2025. | ||
We will review your issue as soon as possible after returning. | ||
Thank you for your understanding, and happy holidays! 🎄🎉 | ||
If you are a customer of dbt Cloud, please contact our Customer Support team via the dbt Cloud web interface or email **[email protected]**." | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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
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
Large diffs are not rendered by default.
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
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
Oops, something went wrong.