mirror of
https://github.com/dbt-labs/dbt-core
synced 2025-12-19 22:51:28 +00:00
Compare commits
2 Commits
enable-pos
...
er/test-1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3493fde98b | ||
|
|
431480ce21 |
37
.bumpversion.cfg
Normal file
37
.bumpversion.cfg
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
[bumpversion]
|
||||||
|
current_version = 1.10.0b2
|
||||||
|
parse = (?P<major>[\d]+) # major version number
|
||||||
|
\.(?P<minor>[\d]+) # minor version number
|
||||||
|
\.(?P<patch>[\d]+) # patch version number
|
||||||
|
(?P<prerelease> # optional pre-release - ex: a1, b2, rc25
|
||||||
|
(?P<prekind>a|b|rc) # pre-release type
|
||||||
|
(?P<num>[\d]+) # pre-release version number
|
||||||
|
)?
|
||||||
|
( # optional nightly release indicator
|
||||||
|
\.(?P<nightly>dev[0-9]+) # ex: .dev02142023
|
||||||
|
)? # expected matches: `1.15.0`, `1.5.0a11`, `1.5.0a1.dev123`, `1.5.0.dev123457`, expected failures: `1`, `1.5`, `1.5.2-a1`, `text1.5.0`
|
||||||
|
serialize =
|
||||||
|
{major}.{minor}.{patch}{prekind}{num}.{nightly}
|
||||||
|
{major}.{minor}.{patch}.{nightly}
|
||||||
|
{major}.{minor}.{patch}{prekind}{num}
|
||||||
|
{major}.{minor}.{patch}
|
||||||
|
commit = False
|
||||||
|
tag = False
|
||||||
|
|
||||||
|
[bumpversion:part:prekind]
|
||||||
|
first_value = a
|
||||||
|
optional_value = final
|
||||||
|
values =
|
||||||
|
a
|
||||||
|
b
|
||||||
|
rc
|
||||||
|
final
|
||||||
|
|
||||||
|
[bumpversion:part:num]
|
||||||
|
first_value = 1
|
||||||
|
|
||||||
|
[bumpversion:part:nightly]
|
||||||
|
|
||||||
|
[bumpversion:file:core/setup.py]
|
||||||
|
|
||||||
|
[bumpversion:file:core/dbt/version.py]
|
||||||
@@ -3,9 +3,6 @@
|
|||||||
For information on prior major and minor releases, see their changelogs:
|
For information on prior major and minor releases, see their changelogs:
|
||||||
|
|
||||||
|
|
||||||
* [1.10](https://github.com/dbt-labs/dbt-core/blob/1.10.latest/CHANGELOG.md)
|
|
||||||
* [1.9](https://github.com/dbt-labs/dbt-core/blob/1.9.latest/CHANGELOG.md)
|
|
||||||
* [1.8](https://github.com/dbt-labs/dbt-core/blob/1.8.latest/CHANGELOG.md)
|
|
||||||
* [1.7](https://github.com/dbt-labs/dbt-core/blob/1.7.latest/CHANGELOG.md)
|
* [1.7](https://github.com/dbt-labs/dbt-core/blob/1.7.latest/CHANGELOG.md)
|
||||||
* [1.6](https://github.com/dbt-labs/dbt-core/blob/1.6.latest/CHANGELOG.md)
|
* [1.6](https://github.com/dbt-labs/dbt-core/blob/1.6.latest/CHANGELOG.md)
|
||||||
* [1.5](https://github.com/dbt-labs/dbt-core/blob/1.5.latest/CHANGELOG.md)
|
* [1.5](https://github.com/dbt-labs/dbt-core/blob/1.5.latest/CHANGELOG.md)
|
||||||
|
|||||||
72
.changes/1.10.0-b1.md
Normal file
72
.changes/1.10.0-b1.md
Normal file
@@ -0,0 +1,72 @@
|
|||||||
|
## dbt-core 1.10.0-b1 - March 12, 2025
|
||||||
|
|
||||||
|
### Breaking Changes
|
||||||
|
|
||||||
|
- Add invocations_started_at field to artifact metadata ([#11272](https://github.com/dbt-labs/dbt-core/issues/11272))
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
- Add new hard_deletes="new_record" mode for snapshots. ([#10235](https://github.com/dbt-labs/dbt-core/issues/10235))
|
||||||
|
- Add `batch` context object to model jinja context ([#11025](https://github.com/dbt-labs/dbt-core/issues/11025))
|
||||||
|
- Ensure pre/post hooks only run on first/last batch respectively for microbatch model batches ([#11094](https://github.com/dbt-labs/dbt-core/issues/11094), [#11104](https://github.com/dbt-labs/dbt-core/issues/11104))
|
||||||
|
- Support "tags" in Saved Queries ([#11155](https://github.com/dbt-labs/dbt-core/issues/11155))
|
||||||
|
- Calculate source freshness via a SQL query ([#8797](https://github.com/dbt-labs/dbt-core/issues/8797))
|
||||||
|
- Add freshness definition on model for adaptive job ([#11123](https://github.com/dbt-labs/dbt-core/issues/11123))
|
||||||
|
- Meta config for dimensions measures and entities ([#None](https://github.com/dbt-labs/dbt-core/issues/None))
|
||||||
|
- Add doc_blocks to manifest for nodes and columns ([#11000](https://github.com/dbt-labs/dbt-core/issues/11000), [#11001](https://github.com/dbt-labs/dbt-core/issues/11001))
|
||||||
|
- Initial implementation of sample mode ([#11227](https://github.com/dbt-labs/dbt-core/issues/11227), [#11230](https://github.com/dbt-labs/dbt-core/issues/11230), [#11231](https://github.com/dbt-labs/dbt-core/issues/11231), [#11248](https://github.com/dbt-labs/dbt-core/issues/11248), [#11252](https://github.com/dbt-labs/dbt-core/issues/11252), [#11254](https://github.com/dbt-labs/dbt-core/issues/11254), [#11258](https://github.com/dbt-labs/dbt-core/issues/11258))
|
||||||
|
- Combine `--sample` and `--sample-window` CLI params ([#11299](https://github.com/dbt-labs/dbt-core/issues/11299))
|
||||||
|
- Allow for sampling of ref'd seeds ([#11300](https://github.com/dbt-labs/dbt-core/issues/11300))
|
||||||
|
- Enable sample mode for 'build' command ([#11298](https://github.com/dbt-labs/dbt-core/issues/11298))
|
||||||
|
- Allow sampling nodes snapshots depend on and of snapshots as a dependency ([#11301](https://github.com/dbt-labs/dbt-core/issues/11301))
|
||||||
|
|
||||||
|
### Fixes
|
||||||
|
|
||||||
|
- dbt retry does not respect --threads ([#10584](https://github.com/dbt-labs/dbt-core/issues/10584))
|
||||||
|
- update adapter version messages ([#10230](https://github.com/dbt-labs/dbt-core/issues/10230))
|
||||||
|
- Catch DbtRuntimeError for hooks ([#11012](https://github.com/dbt-labs/dbt-core/issues/11012))
|
||||||
|
- Access DBUG flag more consistently with the rest of the codebase in ManifestLoader ([#11068](https://github.com/dbt-labs/dbt-core/issues/11068))
|
||||||
|
- Improve the performance characteristics of add_test_edges() ([#10950](https://github.com/dbt-labs/dbt-core/issues/10950))
|
||||||
|
- Implement partial parsing for singular data test configs in yaml files ([#10801](https://github.com/dbt-labs/dbt-core/issues/10801))
|
||||||
|
- Fix debug log messages for microbatch batch execution information ([#11111](https://github.com/dbt-labs/dbt-core/issues/11111))
|
||||||
|
- Fix running of extra "last" batch when there is only one batch ([#11112](https://github.com/dbt-labs/dbt-core/issues/11112))
|
||||||
|
- Fix interpretation of `PartialSuccess` to result in non-zero exit code ([#11114](https://github.com/dbt-labs/dbt-core/issues/11114))
|
||||||
|
- Warn about invalid usages of `concurrent_batches` config ([#11122](https://github.com/dbt-labs/dbt-core/issues/11122))
|
||||||
|
- Error writing generic test at run time ([#11110](https://github.com/dbt-labs/dbt-core/issues/11110))
|
||||||
|
- Run check_modified_contract for state:modified ([#11034](https://github.com/dbt-labs/dbt-core/issues/11034))
|
||||||
|
- Fix unrendered_config for tests from dbt_project.yml ([#11146](https://github.com/dbt-labs/dbt-core/issues/11146))
|
||||||
|
- Make partial parsing reparse referencing nodes of newly versioned models. ([#8872](https://github.com/dbt-labs/dbt-core/issues/8872))
|
||||||
|
- Ensure warning about microbatch lacking filter inputs is always fired ([#11159](https://github.com/dbt-labs/dbt-core/issues/11159))
|
||||||
|
- Fix microbatch dbt list --output json ([#10556](https://github.com/dbt-labs/dbt-core/issues/10556), [#11098](https://github.com/dbt-labs/dbt-core/issues/11098))
|
||||||
|
- Fix for custom fields in generic test config for not_null and unique tests ([#11208](https://github.com/dbt-labs/dbt-core/issues/11208))
|
||||||
|
- Loosen validation on freshness to accomodate previously wrong but harmless config. ([#11123](https://github.com/dbt-labs/dbt-core/issues/11123))
|
||||||
|
- Handle `--limit -1` properly in `ShowTaskDirect` so that it propagates None instead of a negative int ([#None](https://github.com/dbt-labs/dbt-core/issues/None))
|
||||||
|
- _get_doc_blocks is crashing parsing if .format is called ([#11310](https://github.com/dbt-labs/dbt-core/issues/11310))
|
||||||
|
- Fix microbatch execution to not block main thread nor hang ([#11243](https://github.com/dbt-labs/dbt-core/issues/11243), [#11306](https://github.com/dbt-labs/dbt-core/issues/11306))
|
||||||
|
- Fixes parsing errors when using the new YAML format for snapshots ([#11164](https://github.com/dbt-labs/dbt-core/issues/11164))
|
||||||
|
|
||||||
|
### Under the Hood
|
||||||
|
|
||||||
|
- Create a no-op exposure runner ([#](https://github.com/dbt-labs/dbt-core/issues/), [#](https://github.com/dbt-labs/dbt-core/issues/))
|
||||||
|
- Improve selection peformance by optimizing the select_children() and select_parents() functions. ([#11099](https://github.com/dbt-labs/dbt-core/issues/11099))
|
||||||
|
- Change exception type from DbtInternalException to UndefinedMacroError when macro not found in 'run operation' command ([#11192](https://github.com/dbt-labs/dbt-core/issues/11192))
|
||||||
|
- Create LogNodeResult event ([#](https://github.com/dbt-labs/dbt-core/issues/), [#](https://github.com/dbt-labs/dbt-core/issues/))
|
||||||
|
- Fix error counts for exposures ([#](https://github.com/dbt-labs/dbt-core/issues/), [#](https://github.com/dbt-labs/dbt-core/issues/))
|
||||||
|
- Misc fixes for group info in logging ([#11218](https://github.com/dbt-labs/dbt-core/issues/11218))
|
||||||
|
- Add secondary profiles to profile.py ([#XPLAT-241](https://github.com/dbt-labs/dbt-core/issues/XPLAT-241))
|
||||||
|
|
||||||
|
### Dependencies
|
||||||
|
|
||||||
|
- Upgrading dbt-semantic-interfaces to 0.8.3 for custom grain support in offset windows ([#None](https://github.com/dbt-labs/dbt-core/issues/None))
|
||||||
|
- Bump codecov/codecov-action from 4 to 5 ([#11009](https://github.com/dbt-labs/dbt-core/issues/11009))
|
||||||
|
|
||||||
|
### Contributors
|
||||||
|
- [@DevonFulcher](https://github.com/DevonFulcher) ([#None](https://github.com/dbt-labs/dbt-core/issues/None))
|
||||||
|
- [@Threynaud](https://github.com/Threynaud) ([#11068](https://github.com/dbt-labs/dbt-core/issues/11068))
|
||||||
|
- [@WilliamDee](https://github.com/WilliamDee) ([#None](https://github.com/dbt-labs/dbt-core/issues/None), [#None](https://github.com/dbt-labs/dbt-core/issues/None))
|
||||||
|
- [@amardatar](https://github.com/amardatar) ([#11164](https://github.com/dbt-labs/dbt-core/issues/11164))
|
||||||
|
- [@d-cole](https://github.com/d-cole) ([#8872](https://github.com/dbt-labs/dbt-core/issues/8872))
|
||||||
|
- [@dave-connors-3](https://github.com/dave-connors-3) ([#10230](https://github.com/dbt-labs/dbt-core/issues/10230))
|
||||||
|
- [@donjin-master](https://github.com/donjin-master) ([#10584](https://github.com/dbt-labs/dbt-core/issues/10584))
|
||||||
|
- [@internetcoffeephone](https://github.com/internetcoffeephone) ([#10556](https://github.com/dbt-labs/dbt-core/issues/10556), [#11098](https://github.com/dbt-labs/dbt-core/issues/11098))
|
||||||
|
- [@theyostalservice](https://github.com/theyostalservice) ([#11155](https://github.com/dbt-labs/dbt-core/issues/11155))
|
||||||
20
.changes/1.10.0-b2.md
Normal file
20
.changes/1.10.0-b2.md
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
## dbt-core 1.10.0-b2 - April 02, 2025
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
- Add opt-in validation of macro argument names and types ([#11274](https://github.com/dbt-labs/dbt-core/issues/11274))
|
||||||
|
- Add support for Python 3.13! ([#11401](https://github.com/dbt-labs/dbt-core/issues/11401))
|
||||||
|
- Support artifact upload to dbt Cloud ([#11418](https://github.com/dbt-labs/dbt-core/issues/11418))
|
||||||
|
|
||||||
|
### Fixes
|
||||||
|
|
||||||
|
- Update ConfigFolderDirectory dir to use str. ([#9768](https://github.com/dbt-labs/dbt-core/issues/9768), [#11305](https://github.com/dbt-labs/dbt-core/issues/11305))
|
||||||
|
- Fix microbatch models couting as success when only having one batch (and that batch failing) ([#11390](https://github.com/dbt-labs/dbt-core/issues/11390))
|
||||||
|
|
||||||
|
### Under the Hood
|
||||||
|
|
||||||
|
- Add node_checksum to node_info on structured logs ([#11372](https://github.com/dbt-labs/dbt-core/issues/11372))
|
||||||
|
- Parse catalogs.yml ([#XPLAT-242](https://github.com/dbt-labs/dbt-core/issues/XPLAT-242))
|
||||||
|
|
||||||
|
### Contributors
|
||||||
|
- [@thorn14](https://github.com/thorn14) ([#9768](https://github.com/dbt-labs/dbt-core/issues/9768), [#11305](https://github.com/dbt-labs/dbt-core/issues/11305))
|
||||||
6
.changes/1.10.0/Breaking Changes-20250210-123306.yaml
Normal file
6
.changes/1.10.0/Breaking Changes-20250210-123306.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: Breaking Changes
|
||||||
|
body: Add invocations_started_at field to artifact metadata
|
||||||
|
time: 2025-02-10T12:33:06.722803-05:00
|
||||||
|
custom:
|
||||||
|
Author: gshank
|
||||||
|
Issue: "11272"
|
||||||
6
.changes/1.10.0/Dependencies-20241112-163815.yaml
Normal file
6
.changes/1.10.0/Dependencies-20241112-163815.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: Dependencies
|
||||||
|
body: Upgrading dbt-semantic-interfaces to 0.8.3 for custom grain support in offset windows
|
||||||
|
time: 2024-11-12T16:38:15.351519-05:00
|
||||||
|
custom:
|
||||||
|
Author: WilliamDee
|
||||||
|
Issue: None
|
||||||
6
.changes/1.10.0/Dependencies-20241118-001113.yaml
Normal file
6
.changes/1.10.0/Dependencies-20241118-001113.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: "Dependencies"
|
||||||
|
body: "Bump codecov/codecov-action from 4 to 5"
|
||||||
|
time: 2024-11-18T00:11:13.00000Z
|
||||||
|
custom:
|
||||||
|
Author: dependabot[bot]
|
||||||
|
Issue: 11009
|
||||||
6
.changes/1.10.0/Features-20241104-120053.yaml
Normal file
6
.changes/1.10.0/Features-20241104-120053.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: Features
|
||||||
|
body: Add new hard_deletes="new_record" mode for snapshots.
|
||||||
|
time: 2024-11-04T12:00:53.95191-05:00
|
||||||
|
custom:
|
||||||
|
Author: peterallenwebb
|
||||||
|
Issue: "10235"
|
||||||
6
.changes/1.10.0/Features-20241121-125630.yaml
Normal file
6
.changes/1.10.0/Features-20241121-125630.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: Features
|
||||||
|
body: Add `batch` context object to model jinja context
|
||||||
|
time: 2024-11-21T12:56:30.715473-06:00
|
||||||
|
custom:
|
||||||
|
Author: QMalcolm
|
||||||
|
Issue: "11025"
|
||||||
7
.changes/1.10.0/Features-20241206-195308.yaml
Normal file
7
.changes/1.10.0/Features-20241206-195308.yaml
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
kind: Features
|
||||||
|
body: Ensure pre/post hooks only run on first/last batch respectively for microbatch
|
||||||
|
model batches
|
||||||
|
time: 2024-12-06T19:53:08.928793-06:00
|
||||||
|
custom:
|
||||||
|
Author: MichelleArk QMalcolm
|
||||||
|
Issue: 11094 11104
|
||||||
6
.changes/1.10.0/Features-20241216-095435.yaml
Normal file
6
.changes/1.10.0/Features-20241216-095435.yaml
Normal file
@@ -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"
|
||||||
6
.changes/1.10.0/Features-20241217-171631.yaml
Normal file
6
.changes/1.10.0/Features-20241217-171631.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: Features
|
||||||
|
body: Calculate source freshness via a SQL query
|
||||||
|
time: 2024-12-17T17:16:31.841076-08:00
|
||||||
|
custom:
|
||||||
|
Author: ChenyuLInx
|
||||||
|
Issue: "8797"
|
||||||
6
.changes/1.10.0/Features-20241218-170729.yaml
Normal file
6
.changes/1.10.0/Features-20241218-170729.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: Features
|
||||||
|
body: Add freshness definition on model for adaptive job
|
||||||
|
time: 2024-12-18T17:07:29.55754-08:00
|
||||||
|
custom:
|
||||||
|
Author: ChenyuLInx
|
||||||
|
Issue: "11123"
|
||||||
6
.changes/1.10.0/Features-20250106-132829.yaml
Normal file
6
.changes/1.10.0/Features-20250106-132829.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: Features
|
||||||
|
body: Meta config for dimensions measures and entities
|
||||||
|
time: 2025-01-06T13:28:29.176439-06:00
|
||||||
|
custom:
|
||||||
|
Author: DevonFulcher
|
||||||
|
Issue: None
|
||||||
6
.changes/1.10.0/Features-20250122-170328.yaml
Normal file
6
.changes/1.10.0/Features-20250122-170328.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: Features
|
||||||
|
body: Add doc_blocks to manifest for nodes and columns
|
||||||
|
time: 2025-01-22T17:03:28.866522Z
|
||||||
|
custom:
|
||||||
|
Author: aranke
|
||||||
|
Issue: 11000 11001
|
||||||
6
.changes/1.10.0/Features-20250202-140054.yaml
Normal file
6
.changes/1.10.0/Features-20250202-140054.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: Features
|
||||||
|
body: Initial implementation of sample mode
|
||||||
|
time: 2025-02-02T14:00:54.074209-06:00
|
||||||
|
custom:
|
||||||
|
Author: QMalcolm
|
||||||
|
Issue: 11227 11230 11231 11248 11252 11254 11258
|
||||||
6
.changes/1.10.0/Features-20250212-155658.yaml
Normal file
6
.changes/1.10.0/Features-20250212-155658.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: Features
|
||||||
|
body: Combine `--sample` and `--sample-window` CLI params
|
||||||
|
time: 2025-02-12T15:56:58.546879-06:00
|
||||||
|
custom:
|
||||||
|
Author: QMalcolm
|
||||||
|
Issue: "11299"
|
||||||
6
.changes/1.10.0/Features-20250212-173743.yaml
Normal file
6
.changes/1.10.0/Features-20250212-173743.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: Features
|
||||||
|
body: Allow for sampling of ref'd seeds
|
||||||
|
time: 2025-02-12T17:37:43.554156-06:00
|
||||||
|
custom:
|
||||||
|
Author: QMalcolm
|
||||||
|
Issue: "11300"
|
||||||
6
.changes/1.10.0/Features-20250213-182932.yaml
Normal file
6
.changes/1.10.0/Features-20250213-182932.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: Features
|
||||||
|
body: Enable sample mode for 'build' command
|
||||||
|
time: 2025-02-13T18:29:32.238857-06:00
|
||||||
|
custom:
|
||||||
|
Author: QMalcolm
|
||||||
|
Issue: "11298"
|
||||||
6
.changes/1.10.0/Features-20250214-152957.yaml
Normal file
6
.changes/1.10.0/Features-20250214-152957.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: Features
|
||||||
|
body: Allow sampling nodes snapshots depend on and of snapshots as a dependency
|
||||||
|
time: 2025-02-14T15:29:57.118017-06:00
|
||||||
|
custom:
|
||||||
|
Author: QMalcolm
|
||||||
|
Issue: "11301"
|
||||||
6
.changes/1.10.0/Features-20250314-143157.yaml
Normal file
6
.changes/1.10.0/Features-20250314-143157.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: Features
|
||||||
|
body: Add opt-in validation of macro argument names and types
|
||||||
|
time: 2025-03-14T14:31:57.463865-04:00
|
||||||
|
custom:
|
||||||
|
Author: peterallenwebb
|
||||||
|
Issue: "11274"
|
||||||
6
.changes/1.10.0/Features-20250319-153356.yaml
Normal file
6
.changes/1.10.0/Features-20250319-153356.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: Features
|
||||||
|
body: Add support for Python 3.13!
|
||||||
|
time: 2025-03-19T15:33:56.641753-04:00
|
||||||
|
custom:
|
||||||
|
Author: peterallenwebb
|
||||||
|
Issue: "11401"
|
||||||
6
.changes/1.10.0/Features-20250323-151625.yaml
Normal file
6
.changes/1.10.0/Features-20250323-151625.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: Features
|
||||||
|
body: Support artifact upload to dbt Cloud
|
||||||
|
time: 2025-03-23T15:16:25.160263-07:00
|
||||||
|
custom:
|
||||||
|
Author: ChenyuLInx
|
||||||
|
Issue: "11418"
|
||||||
6
.changes/1.10.0/Fixes-20240822-122132.yaml
Normal file
6
.changes/1.10.0/Fixes-20240822-122132.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: Fixes
|
||||||
|
body: dbt retry does not respect --threads
|
||||||
|
time: 2024-08-22T12:21:32.358066+05:30
|
||||||
|
custom:
|
||||||
|
Author: donjin-master
|
||||||
|
Issue: "10584"
|
||||||
6
.changes/1.10.0/Fixes-20241025-104339.yaml
Normal file
6
.changes/1.10.0/Fixes-20241025-104339.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: Fixes
|
||||||
|
body: update adapter version messages
|
||||||
|
time: 2024-10-25T10:43:39.274723-05:00
|
||||||
|
custom:
|
||||||
|
Author: dave-connors-3
|
||||||
|
Issue: "10230"
|
||||||
6
.changes/1.10.0/Fixes-20241121-181739.yaml
Normal file
6
.changes/1.10.0/Fixes-20241121-181739.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: Fixes
|
||||||
|
body: Catch DbtRuntimeError for hooks
|
||||||
|
time: 2024-11-21T18:17:39.753235Z
|
||||||
|
custom:
|
||||||
|
Author: aranke
|
||||||
|
Issue: "11012"
|
||||||
6
.changes/1.10.0/Fixes-20241128-162936.yaml
Normal file
6
.changes/1.10.0/Fixes-20241128-162936.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: Fixes
|
||||||
|
body: Access DBUG flag more consistently with the rest of the codebase in ManifestLoader
|
||||||
|
time: 2024-11-28T16:29:36.236729+01:00
|
||||||
|
custom:
|
||||||
|
Author: Threynaud
|
||||||
|
Issue: "11068"
|
||||||
6
.changes/1.10.0/Fixes-20241204-100429.yaml
Normal file
6
.changes/1.10.0/Fixes-20241204-100429.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: Fixes
|
||||||
|
body: Improve the performance characteristics of add_test_edges()
|
||||||
|
time: 2024-12-04T10:04:29.096231-05:00
|
||||||
|
custom:
|
||||||
|
Author: peterallenwebb
|
||||||
|
Issue: "10950"
|
||||||
6
.changes/1.10.0/Fixes-20241205-145307.yaml
Normal file
6
.changes/1.10.0/Fixes-20241205-145307.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: Fixes
|
||||||
|
body: Implement partial parsing for singular data test configs in yaml files
|
||||||
|
time: 2024-12-05T14:53:07.295536-05:00
|
||||||
|
custom:
|
||||||
|
Author: gshank
|
||||||
|
Issue: "10801"
|
||||||
6
.changes/1.10.0/Fixes-20241209-113806.yaml
Normal file
6
.changes/1.10.0/Fixes-20241209-113806.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: Fixes
|
||||||
|
body: Fix debug log messages for microbatch batch execution information
|
||||||
|
time: 2024-12-09T11:38:06.972743-06:00
|
||||||
|
custom:
|
||||||
|
Author: MichelleArk QMalcolm
|
||||||
|
Issue: "11111"
|
||||||
6
.changes/1.10.0/Fixes-20241209-133317.yaml
Normal file
6
.changes/1.10.0/Fixes-20241209-133317.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: Fixes
|
||||||
|
body: Fix running of extra "last" batch when there is only one batch
|
||||||
|
time: 2024-12-09T13:33:17.253326-06:00
|
||||||
|
custom:
|
||||||
|
Author: QMalcolm
|
||||||
|
Issue: "11112"
|
||||||
6
.changes/1.10.0/Fixes-20241209-150711.yaml
Normal file
6
.changes/1.10.0/Fixes-20241209-150711.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: Fixes
|
||||||
|
body: Fix interpretation of `PartialSuccess` to result in non-zero exit code
|
||||||
|
time: 2024-12-09T15:07:11.391313-06:00
|
||||||
|
custom:
|
||||||
|
Author: QMalcolm
|
||||||
|
Issue: "11114"
|
||||||
6
.changes/1.10.0/Fixes-20241212-113611.yaml
Normal file
6
.changes/1.10.0/Fixes-20241212-113611.yaml
Normal file
@@ -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"
|
||||||
6
.changes/1.10.0/Fixes-20241216-134645.yaml
Normal file
6
.changes/1.10.0/Fixes-20241216-134645.yaml
Normal file
@@ -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"
|
||||||
6
.changes/1.10.0/Fixes-20241217-154848.yaml
Normal file
6
.changes/1.10.0/Fixes-20241217-154848.yaml
Normal file
@@ -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"
|
||||||
6
.changes/1.10.0/Fixes-20241218-112640.yaml
Normal file
6
.changes/1.10.0/Fixes-20241218-112640.yaml
Normal file
@@ -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"
|
||||||
6
.changes/1.10.0/Fixes-20250102-140543.yaml
Normal file
6
.changes/1.10.0/Fixes-20250102-140543.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: Fixes
|
||||||
|
body: Make partial parsing reparse referencing nodes of newly versioned models.
|
||||||
|
time: 2025-01-02T14:05:43.629959-05:00
|
||||||
|
custom:
|
||||||
|
Author: d-cole
|
||||||
|
Issue: "8872"
|
||||||
6
.changes/1.10.0/Fixes-20250107-173719.yaml
Normal file
6
.changes/1.10.0/Fixes-20250107-173719.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: Fixes
|
||||||
|
body: Ensure warning about microbatch lacking filter inputs is always fired
|
||||||
|
time: 2025-01-07T17:37:19.373261-06:00
|
||||||
|
custom:
|
||||||
|
Author: QMalcolm
|
||||||
|
Issue: "11159"
|
||||||
6
.changes/1.10.0/Fixes-20250109-123309.yaml
Normal file
6
.changes/1.10.0/Fixes-20250109-123309.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: Fixes
|
||||||
|
body: Fix microbatch dbt list --output json
|
||||||
|
time: 2025-01-09T12:33:09.958795+01:00
|
||||||
|
custom:
|
||||||
|
Author: internetcoffeephone
|
||||||
|
Issue: 10556 11098
|
||||||
6
.changes/1.10.0/Fixes-20250110-155824.yaml
Normal file
6
.changes/1.10.0/Fixes-20250110-155824.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: Fixes
|
||||||
|
body: Fix for custom fields in generic test config for not_null and unique tests
|
||||||
|
time: 2025-01-10T15:58:24.479245-05:00
|
||||||
|
custom:
|
||||||
|
Author: gshank
|
||||||
|
Issue: "11208"
|
||||||
6
.changes/1.10.0/Fixes-20250128-135509.yaml
Normal file
6
.changes/1.10.0/Fixes-20250128-135509.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: Fixes
|
||||||
|
body: Loosen validation on freshness to accomodate previously wrong but harmless config.
|
||||||
|
time: 2025-01-28T13:55:09.318833-08:00
|
||||||
|
custom:
|
||||||
|
Author: ChenyuLInx peterallenwebb
|
||||||
|
Issue: "11123"
|
||||||
6
.changes/1.10.0/Fixes-20250207-131424.yaml
Normal file
6
.changes/1.10.0/Fixes-20250207-131424.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: Fixes
|
||||||
|
body: Handle `--limit -1` properly in `ShowTaskDirect` so that it propagates None instead of a negative int
|
||||||
|
time: 2025-02-07T13:14:24.725503-05:00
|
||||||
|
custom:
|
||||||
|
Author: WilliamDee
|
||||||
|
Issue: None
|
||||||
6
.changes/1.10.0/Fixes-20250218-134745.yaml
Normal file
6
.changes/1.10.0/Fixes-20250218-134745.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: Fixes
|
||||||
|
body: _get_doc_blocks is crashing parsing if .format is called
|
||||||
|
time: 2025-02-18T13:47:45.659731Z
|
||||||
|
custom:
|
||||||
|
Author: aranke
|
||||||
|
Issue: "11310"
|
||||||
6
.changes/1.10.0/Fixes-20250303-131440.yaml
Normal file
6
.changes/1.10.0/Fixes-20250303-131440.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: Fixes
|
||||||
|
body: Fix microbatch execution to not block main thread nor hang
|
||||||
|
time: 2025-03-03T13:14:40.432874-06:00
|
||||||
|
custom:
|
||||||
|
Author: QMalcolm
|
||||||
|
Issue: 11243 11306
|
||||||
6
.changes/1.10.0/Fixes-20250305-110257.yaml
Normal file
6
.changes/1.10.0/Fixes-20250305-110257.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: Fixes
|
||||||
|
body: Fixes parsing errors when using the new YAML format for snapshots
|
||||||
|
time: 2025-03-05T11:02:57.829685Z
|
||||||
|
custom:
|
||||||
|
Author: amardatar
|
||||||
|
Issue: "11164"
|
||||||
6
.changes/1.10.0/Fixes-20250326-194259.yaml
Normal file
6
.changes/1.10.0/Fixes-20250326-194259.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: Fixes
|
||||||
|
body: Update ConfigFolderDirectory dir to use str.
|
||||||
|
time: 2025-03-26T19:42:59.335179-07:00
|
||||||
|
custom:
|
||||||
|
Author: thorn14 dbeatty10
|
||||||
|
Issue: 9768 11305
|
||||||
7
.changes/1.10.0/Fixes-20250328-170142.yaml
Normal file
7
.changes/1.10.0/Fixes-20250328-170142.yaml
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
kind: Fixes
|
||||||
|
body: Fix microbatch models couting as success when only having one batch (and that
|
||||||
|
batch failing)
|
||||||
|
time: 2025-03-28T17:01:42.342741-05:00
|
||||||
|
custom:
|
||||||
|
Author: QMalcolm
|
||||||
|
Issue: "11390"
|
||||||
6
.changes/1.10.0/Under the Hood-20241202-164715.yaml
Normal file
6
.changes/1.10.0/Under the Hood-20241202-164715.yaml
Normal file
@@ -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: ' '
|
||||||
7
.changes/1.10.0/Under the Hood-20241205-143144.yaml
Normal file
7
.changes/1.10.0/Under the Hood-20241205-143144.yaml
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
kind: Under the Hood
|
||||||
|
body: Improve selection peformance by optimizing the select_children() and select_parents()
|
||||||
|
functions.
|
||||||
|
time: 2024-12-05T14:31:44.584216-05:00
|
||||||
|
custom:
|
||||||
|
Author: peterallenwebb
|
||||||
|
Issue: "11099"
|
||||||
7
.changes/1.10.0/Under the Hood-20250107-123955.yaml
Normal file
7
.changes/1.10.0/Under the Hood-20250107-123955.yaml
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
kind: Under the Hood
|
||||||
|
body: Change exception type from DbtInternalException to UndefinedMacroError when
|
||||||
|
macro not found in 'run operation' command
|
||||||
|
time: 2025-01-07T12:39:55.234321-05:00
|
||||||
|
custom:
|
||||||
|
Author: michelleark
|
||||||
|
Issue: "11192"
|
||||||
6
.changes/1.10.0/Under the Hood-20250107-205838.yaml
Normal file
6
.changes/1.10.0/Under the Hood-20250107-205838.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: Under the Hood
|
||||||
|
body: Create LogNodeResult event
|
||||||
|
time: 2025-01-07T20:58:38.821036Z
|
||||||
|
custom:
|
||||||
|
Author: aranke
|
||||||
|
Issue: ' '
|
||||||
6
.changes/1.10.0/Under the Hood-20250110-202057.yaml
Normal file
6
.changes/1.10.0/Under the Hood-20250110-202057.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: Under the Hood
|
||||||
|
body: Fix error counts for exposures
|
||||||
|
time: 2025-01-10T20:20:57.01632Z
|
||||||
|
custom:
|
||||||
|
Author: aranke
|
||||||
|
Issue: ' '
|
||||||
6
.changes/1.10.0/Under the Hood-20250117-152215.yaml
Normal file
6
.changes/1.10.0/Under the Hood-20250117-152215.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: Under the Hood
|
||||||
|
body: Misc fixes for group info in logging
|
||||||
|
time: 2025-01-17T15:22:15.497485Z
|
||||||
|
custom:
|
||||||
|
Author: aranke
|
||||||
|
Issue: '11218'
|
||||||
6
.changes/1.10.0/Under the Hood-20250307-101758.yaml
Normal file
6
.changes/1.10.0/Under the Hood-20250307-101758.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: Under the Hood
|
||||||
|
body: Add node_checksum to node_info on structured logs
|
||||||
|
time: 2025-03-07T10:17:58.375007-05:00
|
||||||
|
custom:
|
||||||
|
Author: michelleark
|
||||||
|
Issue: "11372"
|
||||||
6
.changes/1.10.0/Under the Hood-20250321-155026.yaml
Normal file
6
.changes/1.10.0/Under the Hood-20250321-155026.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: Under the Hood
|
||||||
|
body: Parse catalogs.yml
|
||||||
|
time: 2025-03-21T15:50:26.845279Z
|
||||||
|
custom:
|
||||||
|
Author: MichelleArk aranke
|
||||||
|
Issue: XPLAT-242
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
kind: Dependencies
|
|
||||||
body: Use EventCatcher from dbt-common instead of maintaining a local copy
|
|
||||||
time: 2025-11-18T15:53:54.284561+05:30
|
|
||||||
custom:
|
|
||||||
Author: 3loka
|
|
||||||
Issue: "12124"
|
|
||||||
7
.changes/unreleased/Features-20250403-174659.yaml
Normal file
7
.changes/unreleased/Features-20250403-174659.yaml
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
kind: Features
|
||||||
|
body: Show summaries for deprecations and add ability to toggle seeing all deprecation
|
||||||
|
violation instances
|
||||||
|
time: 2025-04-03T17:46:59.684525-05:00
|
||||||
|
custom:
|
||||||
|
Author: QMalcolm
|
||||||
|
Issue: "11429"
|
||||||
6
.changes/unreleased/Features-20250410-111023.yaml
Normal file
6
.changes/unreleased/Features-20250410-111023.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: Features
|
||||||
|
body: Add behavior flag for handling all warnings via warn_error logic
|
||||||
|
time: 2025-04-10T11:10:23.344469-05:00
|
||||||
|
custom:
|
||||||
|
Author: QMalcolm
|
||||||
|
Issue: "11116"
|
||||||
6
.changes/unreleased/Features-20250414-171209.yaml
Normal file
6
.changes/unreleased/Features-20250414-171209.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: Features
|
||||||
|
body: Basic jsonschema validation of `dbt_project.yml`
|
||||||
|
time: 2025-04-14T17:12:09.351572-07:00
|
||||||
|
custom:
|
||||||
|
Author: QMalcolm
|
||||||
|
Issue: "11503"
|
||||||
6
.changes/unreleased/Features-20250415-133751.yaml
Normal file
6
.changes/unreleased/Features-20250415-133751.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: Freatures
|
||||||
|
body: Begin checking YAML files for duplicate keys
|
||||||
|
time: 2025-04-15T13:37:51.878256-04:00
|
||||||
|
custom:
|
||||||
|
Author: peterallenwebb QMalcolm
|
||||||
|
Issue: "11296"
|
||||||
6
.changes/unreleased/Features-20250416-144427.yaml
Normal file
6
.changes/unreleased/Features-20250416-144427.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: Features
|
||||||
|
body: Add deprecation warnings for unexpected blocks in jinja.
|
||||||
|
time: 2025-04-16T14:44:27.136199-04:00
|
||||||
|
custom:
|
||||||
|
Author: peterallenwebb
|
||||||
|
Issue: "11393"
|
||||||
6
.changes/unreleased/Features-20250416-151711.yaml
Normal file
6
.changes/unreleased/Features-20250416-151711.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: Features
|
||||||
|
body: Begin validating the jsonschema of resource YAML files
|
||||||
|
time: 2025-04-16T15:17:11.760509-07:00
|
||||||
|
custom:
|
||||||
|
Author: QMalcolm
|
||||||
|
Issue: "11504"
|
||||||
6
.changes/unreleased/Features-20250417-001347.yaml
Normal file
6
.changes/unreleased/Features-20250417-001347.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: Features
|
||||||
|
body: Add deprecation warning for custom top level keys in YAML files.
|
||||||
|
time: 2025-04-17T00:13:47.744191-04:00
|
||||||
|
custom:
|
||||||
|
Author: peterallenwebb
|
||||||
|
Issue: "11338"
|
||||||
6
.changes/unreleased/Features-20250417-114915.yaml
Normal file
6
.changes/unreleased/Features-20250417-114915.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: Features
|
||||||
|
body: Begin emitting deprecationw warnings for custom keys in config blocks
|
||||||
|
time: 2025-04-17T11:49:15.056242-07:00
|
||||||
|
custom:
|
||||||
|
Author: QMalcolm
|
||||||
|
Issue: "11337"
|
||||||
6
.changes/unreleased/Features-20250418-104210.yaml
Normal file
6
.changes/unreleased/Features-20250418-104210.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: Features
|
||||||
|
body: Begin emitting deprecation events for custom properties found in objects
|
||||||
|
time: 2025-04-18T10:42:10.048839-07:00
|
||||||
|
custom:
|
||||||
|
Author: QMalcolm
|
||||||
|
Issue: "11336"
|
||||||
6
.changes/unreleased/Features-20250424-153327.yaml
Normal file
6
.changes/unreleased/Features-20250424-153327.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: Features
|
||||||
|
body: Create a singular deprecations summary event
|
||||||
|
time: 2025-04-24T15:33:27.252763-05:00
|
||||||
|
custom:
|
||||||
|
Author: QMalcolm
|
||||||
|
Issue: "11536"
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
kind: Features
|
|
||||||
body: Support partial parsing for function nodes
|
|
||||||
time: 2025-10-06T14:03:52.258104-05:00
|
|
||||||
custom:
|
|
||||||
Author: QMalcolm
|
|
||||||
Issue: "12072"
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
kind: Features
|
|
||||||
body: Allow for defining funciton arguments with default values
|
|
||||||
time: 2025-11-17T14:10:53.860178-06:00
|
|
||||||
custom:
|
|
||||||
Author: QMalcolm
|
|
||||||
Issue: "12044"
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
kind: Features
|
|
||||||
body: Raise jsonschema-based deprecation warnings by default
|
|
||||||
time: 2025-12-01T16:52:09.354436-05:00
|
|
||||||
custom:
|
|
||||||
Author: michelleark
|
|
||||||
Issue: 12240
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
kind: Features
|
|
||||||
body: ':bug: :snowman: Disable unit tests whose model is disabled'
|
|
||||||
time: 2025-12-03T12:29:26.209248-05:00
|
|
||||||
custom:
|
|
||||||
Author: michelleark
|
|
||||||
Issue: "10540"
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
kind: Features
|
|
||||||
body: Implement config.meta_get and config.meta_require
|
|
||||||
time: 2025-12-10T20:20:01.354288-05:00
|
|
||||||
custom:
|
|
||||||
Author: gshank
|
|
||||||
Issue: "12012"
|
|
||||||
6
.changes/unreleased/Fixes-20240329-223653.yaml
Normal file
6
.changes/unreleased/Fixes-20240329-223653.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: Fixes
|
||||||
|
body: datetime.datetime.utcnow() is deprecated as of Python 3.12
|
||||||
|
time: 2024-03-29T22:36:53.504295426+01:00
|
||||||
|
custom:
|
||||||
|
Author: slothkong
|
||||||
|
Issue: "9791"
|
||||||
6
.changes/unreleased/Fixes-20250116-192616.yaml
Normal file
6
.changes/unreleased/Fixes-20250116-192616.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: Fixes
|
||||||
|
body: Allow copying asset when dbt docs command is run outside the dbt project
|
||||||
|
time: 2025-01-16T19:26:16.160976423Z
|
||||||
|
custom:
|
||||||
|
Author: cedric-orange
|
||||||
|
Issue: "9308"
|
||||||
6
.changes/unreleased/Fixes-20250414-170457.yaml
Normal file
6
.changes/unreleased/Fixes-20250414-170457.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: Fixes
|
||||||
|
body: Add pre-commit installation to Docker container for testing compatibility
|
||||||
|
time: 2025-04-14T17:04:57.692586656+09:00
|
||||||
|
custom:
|
||||||
|
Author: kato1208
|
||||||
|
Issue: "11498"
|
||||||
6
.changes/unreleased/Fixes-20250422-122835.yaml
Normal file
6
.changes/unreleased/Fixes-20250422-122835.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: Fixes
|
||||||
|
body: Fix duplicate macro error message with multiple macros and multiple patches
|
||||||
|
time: 2025-04-22T12:28:35.642843-04:00
|
||||||
|
custom:
|
||||||
|
Author: gshank
|
||||||
|
Issue: "4233"
|
||||||
6
.changes/unreleased/Fixes-20250428-141528.yaml
Normal file
6
.changes/unreleased/Fixes-20250428-141528.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: Fixes
|
||||||
|
body: Fix seed path for partial parsing if project directory name changes
|
||||||
|
time: 2025-04-28T14:15:28.720582-06:00
|
||||||
|
custom:
|
||||||
|
Author: aranke
|
||||||
|
Issue: "11550"
|
||||||
6
.changes/unreleased/Fixes-20250430-084512.yaml
Normal file
6
.changes/unreleased/Fixes-20250430-084512.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: Fixes
|
||||||
|
body: Add `pre-commit` installation to Docker container for testing compatibility
|
||||||
|
time: 2025-04-30T08:45:12.247827-06:00
|
||||||
|
custom:
|
||||||
|
Author: kato1208 dbeatty10
|
||||||
|
Issue: "11498"
|
||||||
6
.changes/unreleased/Fixes-20250502-131822.yaml
Normal file
6
.changes/unreleased/Fixes-20250502-131822.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: Fixes
|
||||||
|
body: Ensure the right key is associatd with the `CustomKeyInConfigDeprecation` deprecation
|
||||||
|
time: 2025-05-02T13:18:22.940373-05:00
|
||||||
|
custom:
|
||||||
|
Author: QMalcolm
|
||||||
|
Issue: "11576"
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
kind: Fixes
|
|
||||||
body: Address Click 8.2+ deprecation warning
|
|
||||||
time: 2025-09-22T15:17:26.983151-06:00
|
|
||||||
custom:
|
|
||||||
Author: edgarrmondragon
|
|
||||||
Issue: "12038"
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
kind: Fixes
|
|
||||||
body: Include macros in unit test parsing
|
|
||||||
time: 2025-11-17T14:06:49.518566-05:00
|
|
||||||
custom:
|
|
||||||
Author: michelleark nathanskone
|
|
||||||
Issue: "10157"
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
kind: Fixes
|
|
||||||
body: Allow dbt deps to run when vars lack defaults in dbt_project.yml
|
|
||||||
time: 2025-11-17T18:50:25.759091+05:30
|
|
||||||
custom:
|
|
||||||
Author: 3loka
|
|
||||||
Issue: "8913"
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
kind: Fixes
|
|
||||||
body: Restore DuplicateResourceNameError for intra-project node name duplication, behind behavior flag `require_unique_project_resource_names`
|
|
||||||
time: 2025-11-18T17:11:06.454784-05:00
|
|
||||||
custom:
|
|
||||||
Author: michelleark
|
|
||||||
Issue: "12152"
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
kind: Fixes
|
|
||||||
body: Allow the usage of `function` with `--exclude-resource-type` flag
|
|
||||||
time: 2025-11-19T19:50:34.703236-06:00
|
|
||||||
custom:
|
|
||||||
Author: QMalcolm
|
|
||||||
Issue: "12143"
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
kind: Fixes
|
|
||||||
body: Fix bug where schemas of functions weren't guaranteed to exist
|
|
||||||
time: 2025-11-24T15:56:29.467004-06:00
|
|
||||||
custom:
|
|
||||||
Author: QMalcolm
|
|
||||||
Issue: "12142"
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
kind: Fixes
|
|
||||||
body: Fix generation of deprecations summary
|
|
||||||
time: 2025-11-24T15:57:56.544123-08:00
|
|
||||||
custom:
|
|
||||||
Author: asiunov
|
|
||||||
Issue: "12146"
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
kind: Fixes
|
|
||||||
body: ':bug: :snowman: Correctly reference foreign key references when --defer and --state provided'
|
|
||||||
time: 2025-11-24T17:08:55.387946-05:00
|
|
||||||
custom:
|
|
||||||
Author: michellark
|
|
||||||
Issue: "11885"
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
kind: Fixes
|
|
||||||
body: ':bug: :snowman: Add exception when using --state and referring to a removed
|
|
||||||
test'
|
|
||||||
time: 2025-11-25T12:02:46.635026-05:00
|
|
||||||
custom:
|
|
||||||
Author: emmyoop
|
|
||||||
Issue: "10630"
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
kind: Fixes
|
|
||||||
body: ':bug: :snowman: Stop emitting `NoNodesForSelectionCriteria` three times during `build` command'
|
|
||||||
time: 2025-11-25T12:20:20.132379-06:00
|
|
||||||
custom:
|
|
||||||
Author: QMalcolm
|
|
||||||
Issue: "11627"
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
kind: Fixes
|
|
||||||
body: ":bug: :snowman: Fix long Python stack traces appearing when package dependencies have incompatible version requirements"
|
|
||||||
time: 2025-11-27T14:13:08.082542-05:00
|
|
||||||
custom:
|
|
||||||
Author: emmyoop
|
|
||||||
Issue: "12049"
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
kind: Fixes
|
|
||||||
body: ':bug: :snowman: Fixed issue where changing data type size/precision/scale (e.g.,
|
|
||||||
varchar(3) to varchar(10)) incorrectly triggered a breaking change error fo'
|
|
||||||
time: 2025-11-27T14:59:29.256274-05:00
|
|
||||||
custom:
|
|
||||||
Author: emmyoop
|
|
||||||
Issue: "11186"
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
kind: Fixes
|
|
||||||
body: ':bug: :snowman: Support unit testing models that depend on sources with the same name'
|
|
||||||
time: 2025-11-27T17:01:24.193516-05:00
|
|
||||||
custom:
|
|
||||||
Author: michelleark
|
|
||||||
Issue: 11975 10433
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
kind: Fixes
|
|
||||||
body: Fix bug in partial parsing when updating a model with a schema file that is referenced by a singular test
|
|
||||||
time: 2025-11-28T10:21:29.911147Z
|
|
||||||
custom:
|
|
||||||
Author: mattogburke
|
|
||||||
Issue: "12223"
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
kind: Fixes
|
|
||||||
body: ':bug: :snowman: Avoid retrying successful run-operation commands'
|
|
||||||
time: 2025-11-28T12:28:38.546261-05:00
|
|
||||||
custom:
|
|
||||||
Author: michelleark
|
|
||||||
Issue: "11850"
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
kind: Fixes
|
|
||||||
body: ':bug: :snowman: Fix `dbt deps --add-package` crash when packages.yml contains `warn-unpinned:
|
|
||||||
false`'
|
|
||||||
time: 2025-11-28T16:19:37.608722-05:00
|
|
||||||
custom:
|
|
||||||
Author: emmyoop
|
|
||||||
Issue: "9104"
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
kind: Fixes
|
|
||||||
body: ':bug: :snowman: Improve `dbt deps --add-package` duplicate detection with better
|
|
||||||
cross-source matching and word boundaries'
|
|
||||||
time: 2025-11-28T16:31:44.344099-05:00
|
|
||||||
custom:
|
|
||||||
Author: emmyoop
|
|
||||||
Issue: "12239"
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
kind: Fixes
|
|
||||||
body: ':bug: :snowman: Fix false positive deprecation warning of pre/post-hook SQL configs'
|
|
||||||
time: 2025-12-02T13:37:05.012112-05:00
|
|
||||||
custom:
|
|
||||||
Author: michelleark
|
|
||||||
Issue: "12244"
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
kind: Fixes
|
|
||||||
body: Ensure recent deprecation warnings include event name in message
|
|
||||||
time: 2025-12-09T17:50:31.334618-06:00
|
|
||||||
custom:
|
|
||||||
Author: QMalcolm
|
|
||||||
Issue: "12264"
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
kind: Fixes
|
|
||||||
body: Improve error message clarity when detecting nodes with space in name
|
|
||||||
time: 2025-12-10T14:39:35.107841-08:00
|
|
||||||
custom:
|
|
||||||
Author: michelleark
|
|
||||||
Issue: "11835"
|
|
||||||
6
.changes/unreleased/Under the Hood-20250411-021610.yaml
Normal file
6
.changes/unreleased/Under the Hood-20250411-021610.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: Under the Hood
|
||||||
|
body: Add package 'name' to lock file
|
||||||
|
time: 2025-04-11T02:16:10.314663+02:00
|
||||||
|
custom:
|
||||||
|
Author: jtcohen6
|
||||||
|
Issue: "11487"
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
kind: Under the Hood
|
|
||||||
body: Update jsonschemas for schema.yml and dbt_project.yml deprecations
|
|
||||||
time: 2025-11-19T11:01:10.616676-05:00
|
|
||||||
custom:
|
|
||||||
Author: michelleark
|
|
||||||
Issue: "12180"
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user