forked from repo-mirrors/dbt-core
Compare commits
63 Commits
main
...
1.9.latest
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3e72a772ec | ||
|
|
e2f7a19786 | ||
|
|
3d6a743021 | ||
|
|
3f700a5550 | ||
|
|
b1e5417d5d | ||
|
|
7952252bcf | ||
|
|
3bffc843cd | ||
|
|
aa5c80cdb2 | ||
|
|
8d18fe040d | ||
|
|
a5a44fc236 | ||
|
|
9fdac8ab7d | ||
|
|
c20c71af35 | ||
|
|
27aa104082 | ||
|
|
46ed0ea882 | ||
|
|
ab93b10efa | ||
|
|
a9330b8e11 | ||
|
|
e192609708 | ||
|
|
3b92f6717c | ||
|
|
ecae0a6374 | ||
|
|
67afb9db54 | ||
|
|
941b4b7a09 | ||
|
|
1651bbd956 | ||
|
|
c5d8f64e87 | ||
|
|
df7790607d | ||
|
|
2f5b452fd5 | ||
|
|
52e3be3a05 | ||
|
|
9ed089a45f | ||
|
|
5d1e6c3045 | ||
|
|
c22e8f9f65 | ||
|
|
14e176bb69 | ||
|
|
b529d73e57 | ||
|
|
d6adb9d84b | ||
|
|
5e5d3bd367 | ||
|
|
cb9537330c | ||
|
|
d87b350528 | ||
|
|
47b5109f25 | ||
|
|
42a58bba9b | ||
|
|
6a9e35ae9f | ||
|
|
396fbe5f70 | ||
|
|
c6e447178b | ||
|
|
75aeafe75c | ||
|
|
cffe8a3136 | ||
|
|
7fdd92fec9 | ||
|
|
dbd8ef38f6 | ||
|
|
ff50d1d0f8 | ||
|
|
f7ab48759d | ||
|
|
92a55486e6 | ||
|
|
df2dd6dd42 | ||
|
|
26ed99e285 | ||
|
|
9f5f002e34 | ||
|
|
4e74e69497 | ||
|
|
34f92a831a | ||
|
|
a4b3085706 | ||
|
|
333d600a95 | ||
|
|
61b6cb3864 | ||
|
|
6a36444dbb | ||
|
|
65f05e0bd2 | ||
|
|
aceae51ffb | ||
|
|
a84a787eeb | ||
|
|
3d70e1b06f | ||
|
|
55872497bd | ||
|
|
d305137226 | ||
|
|
bda92e7312 |
@@ -1,5 +1,5 @@
|
||||
[bumpversion]
|
||||
current_version = 1.9.0b4
|
||||
current_version = 1.9.10
|
||||
parse = (?P<major>[\d]+) # major version number
|
||||
\.(?P<minor>[\d]+) # minor version number
|
||||
\.(?P<patch>[\d]+) # patch version number
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
## dbt-core 1.9.0-b2 - October 07, 2024
|
||||
@@ -1,38 +0,0 @@
|
||||
## dbt-core 1.9.0-b3 - October 30, 2024
|
||||
|
||||
### Features
|
||||
|
||||
- Add `order_by` and `limit` fields to saved queries. ([#10531](https://github.com/dbt-labs/dbt-core/issues/10531))
|
||||
- Enable specification of dbt_valid_to for current records ([#10187](https://github.com/dbt-labs/dbt-core/issues/10187))
|
||||
- Enable use of multi-column unique key in snapshots ([#9992](https://github.com/dbt-labs/dbt-core/issues/9992))
|
||||
- Ensure `--event-time-start` is before `--event-time-end` ([#10786](https://github.com/dbt-labs/dbt-core/issues/10786))
|
||||
- Ensure microbatch models use same `current_time` value ([#10819](https://github.com/dbt-labs/dbt-core/issues/10819))
|
||||
- Emit warning when microbatch model has no input with `event_time` config ([#10926](https://github.com/dbt-labs/dbt-core/issues/10926))
|
||||
|
||||
### Fixes
|
||||
|
||||
- Pass test user config to adapter pre_hook by explicitly adding test builder config to node ([#10484](https://github.com/dbt-labs/dbt-core/issues/10484))
|
||||
- Handle edge cases when a specified `--event-time-end` is equivalent to the batch size truncated batch start time ([#10824](https://github.com/dbt-labs/dbt-core/issues/10824))
|
||||
- Begin tracking execution time of microbatch model batches ([#10825](https://github.com/dbt-labs/dbt-core/issues/10825))
|
||||
- Allow instances of generic data tests to be documented ([#2578](https://github.com/dbt-labs/dbt-core/issues/2578))
|
||||
- Fix warnings for models referring to a deprecated model ([#10833](https://github.com/dbt-labs/dbt-core/issues/10833))
|
||||
- Change `lookback` default from `0` to `1` to ensure better data completeness ([#10867](https://github.com/dbt-labs/dbt-core/issues/10867))
|
||||
- Make `--event-time-start` and `--event-time-end` mutually required ([#10874](https://github.com/dbt-labs/dbt-core/issues/10874))
|
||||
- Exclude hook result from results in on-run-end context ([#7387](https://github.com/dbt-labs/dbt-core/issues/7387))
|
||||
- Implement partial parsing for all-yaml snapshots ([#10903](https://github.com/dbt-labs/dbt-core/issues/10903))
|
||||
- Restore source quoting behaviour when quoting config provided in dbt_project.yml ([#10892](https://github.com/dbt-labs/dbt-core/issues/10892))
|
||||
- Fix bug when referencing deprecated models ([#10915](https://github.com/dbt-labs/dbt-core/issues/10915))
|
||||
- Fix 'model' jinja context variable type to dict ([#10927](https://github.com/dbt-labs/dbt-core/issues/10927))
|
||||
- Take `end_time` for batches to the ceiling to handle edge case where `event_time` column is a date ([#10868](https://github.com/dbt-labs/dbt-core/issues/10868))
|
||||
|
||||
### Under the Hood
|
||||
|
||||
- Remove support and testing for Python 3.8, which is now EOL. ([#10861](https://github.com/dbt-labs/dbt-core/issues/10861))
|
||||
|
||||
### Dependencies
|
||||
|
||||
- Bump minimnum allowed dbt-adapters version to 1.8.0 ([#N/A](https://github.com/dbt-labs/dbt-core/issues/N/A))
|
||||
|
||||
### Contributors
|
||||
- [@danlsn](https://github.com/danlsn) ([#10915](https://github.com/dbt-labs/dbt-core/issues/10915))
|
||||
- [@plypaul](https://github.com/plypaul) ([#10531](https://github.com/dbt-labs/dbt-core/issues/10531))
|
||||
@@ -1,19 +0,0 @@
|
||||
## dbt-core 1.9.0-b4 - November 06, 2024
|
||||
|
||||
### Features
|
||||
|
||||
- Emit debug logging event whenever artifacts are written ([#10937](https://github.com/dbt-labs/dbt-core/issues/10937))
|
||||
- Support --empty for snapshots ([#10372](https://github.com/dbt-labs/dbt-core/issues/10372))
|
||||
|
||||
### Fixes
|
||||
|
||||
- Ensure KeyboardInterrupt/SystemExit halts microbatch model execution ([#10862](https://github.com/dbt-labs/dbt-core/issues/10862))
|
||||
- Handle exceptions in `get_execution_status` more broadly to better ensure `run_results.json` gets written ([#10934](https://github.com/dbt-labs/dbt-core/issues/10934))
|
||||
|
||||
### Under the Hood
|
||||
|
||||
- Behavior change for mf timespine without yaml configuration ([#10959](https://github.com/dbt-labs/dbt-core/issues/10959))
|
||||
- Behavior change for cumulative metric type param ([#10960](https://github.com/dbt-labs/dbt-core/issues/10960))
|
||||
|
||||
### Contributors
|
||||
- [@DevonFulcher](https://github.com/DevonFulcher) ([#10959](https://github.com/dbt-labs/dbt-core/issues/10959), [#10960](https://github.com/dbt-labs/dbt-core/issues/10960))
|
||||
@@ -1,4 +1,4 @@
|
||||
## dbt-core 1.9.0-b1 - October 01, 2024
|
||||
## dbt-core 1.9.0 - December 09, 2024
|
||||
|
||||
### Breaking Changes
|
||||
|
||||
@@ -6,6 +6,7 @@
|
||||
|
||||
### Features
|
||||
|
||||
- Parseable JSON and text output in quiet mode for `dbt show` and `dbt compile` ([#9840](https://github.com/dbt-labs/dbt-core/issues/9840))
|
||||
- serialize inferred primary key ([#9824](https://github.com/dbt-labs/dbt-core/issues/9824))
|
||||
- Add unit_test: selection method ([#10053](https://github.com/dbt-labs/dbt-core/issues/10053))
|
||||
- Maximally parallelize dbt clone in clone command" ([#7914](https://github.com/dbt-labs/dbt-core/issues/7914))
|
||||
@@ -19,7 +20,7 @@
|
||||
- Support standard schema/database fields for snapshots ([#10301](https://github.com/dbt-labs/dbt-core/issues/10301))
|
||||
- Support ref and source in foreign key constraint expressions, bump dbt-common minimum to 1.6 ([#8062](https://github.com/dbt-labs/dbt-core/issues/8062))
|
||||
- Support new semantic layer time spine configs to enable sub-daily granularity. ([#10475](https://github.com/dbt-labs/dbt-core/issues/10475))
|
||||
- Include models that depend on changed vars in state:modified, add state:modified.vars selection method ([#4304](https://github.com/dbt-labs/dbt-core/issues/4304))
|
||||
- Add `order_by` and `limit` fields to saved queries. ([#10531](https://github.com/dbt-labs/dbt-core/issues/10531))
|
||||
- Add support for behavior flags ([#10618](https://github.com/dbt-labs/dbt-core/issues/10618))
|
||||
- Enable `--resource-type` and `--exclude-resource-type` CLI flags and environment variables for `dbt test` ([#10656](https://github.com/dbt-labs/dbt-core/issues/10656))
|
||||
- Allow configuring snapshot column names ([#10185](https://github.com/dbt-labs/dbt-core/issues/10185))
|
||||
@@ -33,10 +34,22 @@
|
||||
- Support required 'begin' config for microbatch models ([#10701](https://github.com/dbt-labs/dbt-core/issues/10701))
|
||||
- Parse-time validation of microbatch configs: require event_time, batch_size, lookback and validate input event_time ([#10709](https://github.com/dbt-labs/dbt-core/issues/10709))
|
||||
- Added the --inline-direct parameter to 'dbt show' ([#10770](https://github.com/dbt-labs/dbt-core/issues/10770))
|
||||
- Enable specification of dbt_valid_to for current records ([#10187](https://github.com/dbt-labs/dbt-core/issues/10187))
|
||||
- Enable `retry` support for microbatch models ([#10715](https://github.com/dbt-labs/dbt-core/issues/10715), [#10729](https://github.com/dbt-labs/dbt-core/issues/10729))
|
||||
- Use unrendered database and schema source properties during state:modified, behind state_modified_compare_more_unrendered_values behavoiur flag ([#9573](https://github.com/dbt-labs/dbt-core/issues/9573))
|
||||
- Ensure microbatch models respect `full_refresh` model config ([#10785](https://github.com/dbt-labs/dbt-core/issues/10785))
|
||||
- Adds validations for custom_granularities to ensure unique naming. ([#9265](https://github.com/dbt-labs/dbt-core/issues/9265))
|
||||
- Enable use of multi-column unique key in snapshots ([#9992](https://github.com/dbt-labs/dbt-core/issues/9992))
|
||||
- Change gating of microbatch feature to be behind project flag / behavior flag ([#10798](https://github.com/dbt-labs/dbt-core/issues/10798))
|
||||
- Ensure `--event-time-start` is before `--event-time-end` ([#10786](https://github.com/dbt-labs/dbt-core/issues/10786))
|
||||
- Ensure microbatch models use same `current_time` value ([#10819](https://github.com/dbt-labs/dbt-core/issues/10819))
|
||||
- Emit warning when microbatch model has no input with `event_time` config ([#10926](https://github.com/dbt-labs/dbt-core/issues/10926))
|
||||
- Emit debug logging event whenever artifacts are written ([#10937](https://github.com/dbt-labs/dbt-core/issues/10937))
|
||||
- Support --empty for snapshots ([#10372](https://github.com/dbt-labs/dbt-core/issues/10372))
|
||||
- Add new hard_deletes="new_record" mode for snapshots. ([#10235](https://github.com/dbt-labs/dbt-core/issues/10235))
|
||||
- Allow microbatch batches to run in parallel ([#10853](https://github.com/dbt-labs/dbt-core/issues/10853), [#10855](https://github.com/dbt-labs/dbt-core/issues/10855))
|
||||
- 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))
|
||||
|
||||
### Fixes
|
||||
|
||||
@@ -79,8 +92,37 @@
|
||||
- Ignore --empty in unit test ref/source rendering ([#10516](https://github.com/dbt-labs/dbt-core/issues/10516))
|
||||
- Ignore rendered jinja in configs for state:modified, behind state_modified_compare_more_unrendered_values behaviour flag ([#9564](https://github.com/dbt-labs/dbt-core/issues/9564))
|
||||
- Improve performance of infer primary key ([#10781](https://github.com/dbt-labs/dbt-core/issues/10781))
|
||||
- Pass test user config to adapter pre_hook by explicitly adding test builder config to node ([#10484](https://github.com/dbt-labs/dbt-core/issues/10484))
|
||||
- Attempt to skip saved query processing when no semantic manifest changes ([#10563](https://github.com/dbt-labs/dbt-core/issues/10563))
|
||||
- Ensure dbt retry of microbatch models doesn't lose prior successful state ([#10800](https://github.com/dbt-labs/dbt-core/issues/10800))
|
||||
- override materialization python models ([#8520](https://github.com/dbt-labs/dbt-core/issues/8520))
|
||||
- Handle edge cases when a specified `--event-time-end` is equivalent to the batch size truncated batch start time ([#10824](https://github.com/dbt-labs/dbt-core/issues/10824))
|
||||
- Begin tracking execution time of microbatch model batches ([#10825](https://github.com/dbt-labs/dbt-core/issues/10825))
|
||||
- Support disabling unit tests via config. ([#9109](https://github.com/dbt-labs/dbt-core/issues/9109), [#10540](https://github.com/dbt-labs/dbt-core/issues/10540))
|
||||
- Allow instances of generic data tests to be documented ([#2578](https://github.com/dbt-labs/dbt-core/issues/2578))
|
||||
- Fix warnings for models referring to a deprecated model ([#10833](https://github.com/dbt-labs/dbt-core/issues/10833))
|
||||
- Change `lookback` default from `0` to `1` to ensure better data completeness ([#10867](https://github.com/dbt-labs/dbt-core/issues/10867))
|
||||
- Make `--event-time-start` and `--event-time-end` mutually required ([#10874](https://github.com/dbt-labs/dbt-core/issues/10874))
|
||||
- Ensure KeyboardInterrupt/SystemExit halts microbatch model execution ([#10862](https://github.com/dbt-labs/dbt-core/issues/10862))
|
||||
- Exclude hook result from results in on-run-end context ([#7387](https://github.com/dbt-labs/dbt-core/issues/7387))
|
||||
- unit tests with versioned refs ([#10880](https://github.com/dbt-labs/dbt-core/issues/10880), [#10528](https://github.com/dbt-labs/dbt-core/issues/10528), [#10623](https://github.com/dbt-labs/dbt-core/issues/10623))
|
||||
- Implement partial parsing for all-yaml snapshots ([#10903](https://github.com/dbt-labs/dbt-core/issues/10903))
|
||||
- Restore source quoting behaviour when quoting config provided in dbt_project.yml ([#10892](https://github.com/dbt-labs/dbt-core/issues/10892))
|
||||
- Fix bug when referencing deprecated models ([#10915](https://github.com/dbt-labs/dbt-core/issues/10915))
|
||||
- Fix 'model' jinja context variable type to dict ([#10927](https://github.com/dbt-labs/dbt-core/issues/10927))
|
||||
- Take `end_time` for batches to the ceiling to handle edge case where `event_time` column is a date ([#10868](https://github.com/dbt-labs/dbt-core/issues/10868))
|
||||
- Handle exceptions in `get_execution_status` more broadly to better ensure `run_results.json` gets written ([#10934](https://github.com/dbt-labs/dbt-core/issues/10934))
|
||||
- Fix 'no attribute .config' error when ref-ing a microbatch model from non-Model context ([#10928](https://github.com/dbt-labs/dbt-core/issues/10928))
|
||||
- Ensure inferred primary_key is a List[str] with no null values ([#10983](https://github.com/dbt-labs/dbt-core/issues/10983))
|
||||
- Correct when custom microbatch macro deprecation warning is fired ([#10994](https://github.com/dbt-labs/dbt-core/issues/10994))
|
||||
- Validate manifest has group_map during group_lookup init ([#10988](https://github.com/dbt-labs/dbt-core/issues/10988))
|
||||
- Fix plural of 'partial success' in log message ([#10999](https://github.com/dbt-labs/dbt-core/issues/10999))
|
||||
- Emit batch-level exception with node_info on microbatch batch run failure ([#10840](https://github.com/dbt-labs/dbt-core/issues/10840))
|
||||
- Fix restrict-access to not apply within a package ([#10134](https://github.com/dbt-labs/dbt-core/issues/10134))
|
||||
- Make microbatch models skippable ([#11021](https://github.com/dbt-labs/dbt-core/issues/11021))
|
||||
- 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))
|
||||
- Implement partial parsing for singular data test configs in yaml files ([#10801](https://github.com/dbt-labs/dbt-core/issues/10801))
|
||||
|
||||
### Docs
|
||||
|
||||
@@ -111,26 +153,38 @@
|
||||
- Replace `TestSelector` with `ResourceTypeSelector` ([#10718](https://github.com/dbt-labs/dbt-core/issues/10718))
|
||||
- Standardize returning `ResourceTypeSelector` instances in `dbt list` and `dbt build` ([#10739](https://github.com/dbt-labs/dbt-core/issues/10739))
|
||||
- Add group metadata info to LogModelResult and LogTestResult ([#10775](https://github.com/dbt-labs/dbt-core/issues/10775))
|
||||
- Remove support and testing for Python 3.8, which is now EOL. ([#10861](https://github.com/dbt-labs/dbt-core/issues/10861))
|
||||
- Behavior change for mf timespine without yaml configuration ([#10959](https://github.com/dbt-labs/dbt-core/issues/10959))
|
||||
- Behavior change for cumulative metric type param ([#10960](https://github.com/dbt-labs/dbt-core/issues/10960))
|
||||
- Upgrade protobuf ([#10658](https://github.com/dbt-labs/dbt-core/issues/10658))
|
||||
|
||||
### Dependencies
|
||||
|
||||
- Remove logbook dependency ([#8027](https://github.com/dbt-labs/dbt-core/issues/8027))
|
||||
- Increase supported version range for dbt-semantic-interfaces. Needed to support custom calendar features. ([#9265](https://github.com/dbt-labs/dbt-core/issues/9265))
|
||||
- Bump minimnum allowed dbt-adapters version to 1.8.0 ([#N/A](https://github.com/dbt-labs/dbt-core/issues/N/A))
|
||||
- Bump minimum dbt-adapters version to 1.9.0 ([#10996](https://github.com/dbt-labs/dbt-core/issues/10996))
|
||||
|
||||
### Security
|
||||
|
||||
- Explicitly bind to localhost in docs serve ([#10209](https://github.com/dbt-labs/dbt-core/issues/10209))
|
||||
|
||||
### Contributors
|
||||
- [@DevonFulcher](https://github.com/DevonFulcher) ([#10959](https://github.com/dbt-labs/dbt-core/issues/10959), [#10960](https://github.com/dbt-labs/dbt-core/issues/10960))
|
||||
- [@McKnight-42](https://github.com/McKnight-42) ([#10197](https://github.com/dbt-labs/dbt-core/issues/10197), [#10198](https://github.com/dbt-labs/dbt-core/issues/10198))
|
||||
- [@Threynaud](https://github.com/Threynaud) ([#11068](https://github.com/dbt-labs/dbt-core/issues/11068))
|
||||
- [@TowardOliver](https://github.com/TowardOliver) ([#10656](https://github.com/dbt-labs/dbt-core/issues/10656))
|
||||
- [@aliceliu](https://github.com/aliceliu) ([#10536](https://github.com/dbt-labs/dbt-core/issues/10536), [#10138](https://github.com/dbt-labs/dbt-core/issues/10138))
|
||||
- [@courtneyholcomb](https://github.com/courtneyholcomb) ([#10360](https://github.com/dbt-labs/dbt-core/issues/10360), [#10376](https://github.com/dbt-labs/dbt-core/issues/10376), [#10475](https://github.com/dbt-labs/dbt-core/issues/10475), [#9265](https://github.com/dbt-labs/dbt-core/issues/9265), [#9265](https://github.com/dbt-labs/dbt-core/issues/9265), [#9265](https://github.com/dbt-labs/dbt-core/issues/9265))
|
||||
- [@danlsn](https://github.com/danlsn) ([#10915](https://github.com/dbt-labs/dbt-core/issues/10915))
|
||||
- [@dave-connors-3](https://github.com/dave-connors-3) ([#9824](https://github.com/dbt-labs/dbt-core/issues/9824))
|
||||
- [@devmessias](https://github.com/devmessias) ([#8520](https://github.com/dbt-labs/dbt-core/issues/8520), [#10880](https://github.com/dbt-labs/dbt-core/issues/10880), [#10528](https://github.com/dbt-labs/dbt-core/issues/10528), [#10623](https://github.com/dbt-labs/dbt-core/issues/10623))
|
||||
- [@jeancochrane](https://github.com/jeancochrane) ([#5273](https://github.com/dbt-labs/dbt-core/issues/5273))
|
||||
- [@katsugeneration](https://github.com/katsugeneration) ([#10754](https://github.com/dbt-labs/dbt-core/issues/10754))
|
||||
- [@kevinneville](https://github.com/kevinneville) ([#7586](https://github.com/dbt-labs/dbt-core/issues/7586))
|
||||
- [@nakamichiworks](https://github.com/nakamichiworks) ([#10442](https://github.com/dbt-labs/dbt-core/issues/10442))
|
||||
- [@plypaul](https://github.com/plypaul) ([#10531](https://github.com/dbt-labs/dbt-core/issues/10531))
|
||||
- [@rariyama](https://github.com/rariyama) ([#8997](https://github.com/dbt-labs/dbt-core/issues/8997))
|
||||
- [@scottgigante,nevdelap](https://github.com/scottgigante,nevdelap) ([#8774](https://github.com/dbt-labs/dbt-core/issues/8774))
|
||||
- [@tsturge](https://github.com/tsturge) ([#9109](https://github.com/dbt-labs/dbt-core/issues/9109), [#10540](https://github.com/dbt-labs/dbt-core/issues/10540))
|
||||
- [@ttusing](https://github.com/ttusing) ([#10434](https://github.com/dbt-labs/dbt-core/issues/10434))
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Breaking Changes
|
||||
body: Fix changing the current working directory when using dpt deps, clean and init.
|
||||
time: 2023-12-06T19:24:42.575372+09:00
|
||||
custom:
|
||||
Author: rariyama
|
||||
Issue: "8997"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Dependencies
|
||||
body: Remove logbook dependency
|
||||
time: 2024-05-09T09:37:17.745129-05:00
|
||||
custom:
|
||||
Author: emmyoop
|
||||
Issue: "8027"
|
||||
@@ -1,7 +0,0 @@
|
||||
kind: Dependencies
|
||||
body: Increase supported version range for dbt-semantic-interfaces. Needed to support
|
||||
custom calendar features.
|
||||
time: 2024-08-20T13:19:09.015225-07:00
|
||||
custom:
|
||||
Author: courtneyholcomb
|
||||
Issue: "9265"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Dependencies
|
||||
body: Bump minimnum allowed dbt-adapters version to 1.8.0
|
||||
time: 2024-10-30T13:45:26.144328-05:00
|
||||
custom:
|
||||
Author: QMalcolm
|
||||
Issue: N/A
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Docs
|
||||
body: Enable display of unit tests
|
||||
time: 2024-03-11T14:03:44.490834-04:00
|
||||
custom:
|
||||
Author: gshank
|
||||
Issue: "501"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Docs
|
||||
body: Unit tests not rendering
|
||||
time: 2024-05-01T02:10:50.987412+02:00
|
||||
custom:
|
||||
Author: aranke
|
||||
Issue: "506"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Docs
|
||||
body: Add support for Saved Query node
|
||||
time: 2024-05-16T22:30:36.206492-07:00
|
||||
custom:
|
||||
Author: ChenyuLInx
|
||||
Issue: "486"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Docs
|
||||
body: Fix npm security vulnerabilities as of June 2024
|
||||
time: 2024-06-13T15:10:48.301989+01:00
|
||||
custom:
|
||||
Author: aranke
|
||||
Issue: "513"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Features
|
||||
body: serialize inferred primary key
|
||||
time: 2024-05-06T17:56:42.757673-05:00
|
||||
custom:
|
||||
Author: dave-connors-3
|
||||
Issue: "9824"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Features
|
||||
body: 'Add unit_test: selection method'
|
||||
time: 2024-05-07T16:27:17.047585-04:00
|
||||
custom:
|
||||
Author: michelleark
|
||||
Issue: "10053"
|
||||
@@ -1,7 +0,0 @@
|
||||
kind: Features
|
||||
body: Maximally parallelize dbt clone
|
||||
in clone command"
|
||||
time: 2024-05-22T00:03:09.765977-04:00
|
||||
custom:
|
||||
Author: michelleark
|
||||
Issue: "7914"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Features
|
||||
body: Add --host flag to dbt docs serve, defaulting to '127.0.0.1'
|
||||
time: 2024-05-27T12:44:05.040843-04:00
|
||||
custom:
|
||||
Author: michelleark
|
||||
Issue: "10229"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Features
|
||||
body: Update data_test to accept arbitrary config options
|
||||
time: 2024-05-31T15:08:16.431966-05:00
|
||||
custom:
|
||||
Author: McKnight-42
|
||||
Issue: "10197"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Features
|
||||
body: add pre_model and post_model hook calls to data and unit tests to be able to provide extra config options
|
||||
time: 2024-06-06T11:23:34.758675-05:00
|
||||
custom:
|
||||
Author: McKnight-42
|
||||
Issue: "10198"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Features
|
||||
body: add --empty value to jinja context as flags.EMPTY
|
||||
time: 2024-06-17T10:39:48.275801-04:00
|
||||
custom:
|
||||
Author: michelleark
|
||||
Issue: "10317"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Features
|
||||
body: Warning message for snapshot timestamp data types
|
||||
time: 2024-06-21T14:16:35.717637-04:00
|
||||
custom:
|
||||
Author: gshank
|
||||
Issue: "10234"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Features
|
||||
body: Support cumulative_type_params & sub-daily granularities in semantic manifest.
|
||||
time: 2024-06-25T09:51:07.983248-07:00
|
||||
custom:
|
||||
Author: courtneyholcomb
|
||||
Issue: "10360"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Features
|
||||
body: Add time_granularity to metric spec.
|
||||
time: 2024-06-27T16:29:53.500917-07:00
|
||||
custom:
|
||||
Author: courtneyholcomb
|
||||
Issue: "10376"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Features
|
||||
body: Support standard schema/database fields for snapshots
|
||||
time: 2024-07-12T21:45:46.06011-04:00
|
||||
custom:
|
||||
Author: gshank
|
||||
Issue: "10301"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Features
|
||||
body: Support ref and source in foreign key constraint expressions, bump dbt-common minimum to 1.6
|
||||
time: 2024-07-19T16:18:41.434278-04:00
|
||||
custom:
|
||||
Author: michelleark
|
||||
Issue: "8062"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Features
|
||||
body: Support new semantic layer time spine configs to enable sub-daily granularity.
|
||||
time: 2024-07-22T20:22:38.258249-07:00
|
||||
custom:
|
||||
Author: courtneyholcomb
|
||||
Issue: "10475"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Features
|
||||
body: Add `order_by` and `limit` fields to saved queries.
|
||||
time: 2024-08-06T14:48:59.035914-07:00
|
||||
custom:
|
||||
Author: plypaul
|
||||
Issue: "10531"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Features
|
||||
body: Add support for behavior flags
|
||||
time: 2024-08-29T13:53:20.16122-04:00
|
||||
custom:
|
||||
Author: mikealfare
|
||||
Issue: "10618"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Features
|
||||
body: Enable `--resource-type` and `--exclude-resource-type` CLI flags and environment variables for `dbt test`
|
||||
time: 2024-09-03T13:24:28.592837+01:00
|
||||
custom:
|
||||
Author: TowardOliver dbeatty10
|
||||
Issue: "10656"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Features
|
||||
body: Allow configuring snapshot column names
|
||||
time: 2024-09-03T15:41:33.167097-04:00
|
||||
custom:
|
||||
Author: gshank
|
||||
Issue: "10185"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Features
|
||||
body: Add custom_granularities to YAML spec for time spines.
|
||||
time: 2024-09-04T18:23:20.234952-07:00
|
||||
custom:
|
||||
Author: courtneyholcomb
|
||||
Issue: "9265"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Features
|
||||
body: Add basic functionality for creating microbatch incremental models
|
||||
time: 2024-09-11T12:10:29.822189-05:00
|
||||
custom:
|
||||
Author: MichelleArk QMalcolm
|
||||
Issue: 9490 10635 10637 10638 10636 10662 10639
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Features
|
||||
body: Execute microbatch models in batches
|
||||
time: 2024-09-13T23:21:11.935434-04:00
|
||||
custom:
|
||||
Author: michelleark
|
||||
Issue: "10700"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Features
|
||||
body: Create 'skip_nodes_if_on_run_start_fails' behavior change flag
|
||||
time: 2024-09-18T16:29:59.268422+01:00
|
||||
custom:
|
||||
Author: aranke
|
||||
Issue: "7387"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Features
|
||||
body: Allow snapshots to be defined in YAML.
|
||||
time: 2024-09-20T11:04:47.703117-04:00
|
||||
custom:
|
||||
Author: peterallenwebb
|
||||
Issue: "10246"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Features
|
||||
body: Write microbatch compiled/run targets to separate files, one per batch
|
||||
time: 2024-09-20T17:24:19.219556+01:00
|
||||
custom:
|
||||
Author: michelleark
|
||||
Issue: "10714"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Features
|
||||
body: Track incremental_strategy as part of model_run tracking event
|
||||
time: 2024-09-23T15:53:35.898928+01:00
|
||||
custom:
|
||||
Author: michelleark
|
||||
Issue: "10761"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Features
|
||||
body: Support required 'begin' config for microbatch models
|
||||
time: 2024-09-23T15:59:03.924079+01:00
|
||||
custom:
|
||||
Author: michelleark
|
||||
Issue: "10701"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Features
|
||||
body: Added the --inline-direct parameter to 'dbt show'
|
||||
time: 2024-09-24T15:29:22.874496-04:00
|
||||
custom:
|
||||
Author: aranke peterallenwebb
|
||||
Issue: "10770"
|
||||
@@ -1,7 +0,0 @@
|
||||
kind: Features
|
||||
body: 'Parse-time validation of microbatch configs: require event_time, batch_size,
|
||||
lookback and validate input event_time'
|
||||
time: 2024-09-24T15:46:39.83112+01:00
|
||||
custom:
|
||||
Author: michelleark
|
||||
Issue: "10709"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Features
|
||||
body: Enable specification of dbt_valid_to for current records
|
||||
time: 2024-09-25T12:08:55.926848-04:00
|
||||
custom:
|
||||
Author: gshank
|
||||
Issue: "10187"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Features
|
||||
body: Enable `retry` support for microbatch models
|
||||
time: 2024-09-25T16:50:02.105069-05:00
|
||||
custom:
|
||||
Author: QMalcolm MichelleArk
|
||||
Issue: 10715 10729
|
||||
@@ -1,7 +0,0 @@
|
||||
kind: Features
|
||||
body: Use unrendered database and schema source properties during state:modified,
|
||||
behind state_modified_compare_more_unrendered_values behavoiur flag
|
||||
time: 2024-09-26T14:02:06.732068+01:00
|
||||
custom:
|
||||
Author: michelleark
|
||||
Issue: "9573"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Features
|
||||
body: Adds validations for custom_granularities to ensure unique naming.
|
||||
time: 2024-09-26T15:10:57.907694-07:00
|
||||
custom:
|
||||
Author: courtneyholcomb
|
||||
Issue: "9265"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Features
|
||||
body: Ensure microbatch models respect `full_refresh` model config
|
||||
time: 2024-09-26T15:32:10.202789-05:00
|
||||
custom:
|
||||
Author: QMalcolm
|
||||
Issue: "10785"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Features
|
||||
body: Enable use of multi-column unique key in snapshots
|
||||
time: 2024-10-01T13:40:51.297529-04:00
|
||||
custom:
|
||||
Author: gshank
|
||||
Issue: "9992"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Features
|
||||
body: Ensure `--event-time-start` is before `--event-time-end`
|
||||
time: 2024-10-03T17:05:29.984398-05:00
|
||||
custom:
|
||||
Author: QMalcolm
|
||||
Issue: "10786"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Features
|
||||
body: Ensure microbatch models use same `current_time` value
|
||||
time: 2024-10-07T11:58:53.460941-05:00
|
||||
custom:
|
||||
Author: QMalcolm
|
||||
Issue: "10819"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Features
|
||||
body: Emit warning when microbatch model has no input with `event_time` config
|
||||
time: 2024-10-28T17:34:19.195209-04:00
|
||||
custom:
|
||||
Author: michelleark
|
||||
Issue: "10926"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Features
|
||||
body: Emit debug logging event whenever artifacts are written
|
||||
time: 2024-10-29T18:17:28.321188-05:00
|
||||
custom:
|
||||
Author: QMalcolm
|
||||
Issue: 10937
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Features
|
||||
body: Support --empty for snapshots
|
||||
time: 2024-10-31T16:31:49.926164-04:00
|
||||
custom:
|
||||
Author: gshank
|
||||
Issue: "10372"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Fixes
|
||||
body: Remove unused check_new method
|
||||
time: 2023-06-01T20:41:57.556342+02:00
|
||||
custom:
|
||||
Author: kevinneville
|
||||
Issue: "7586"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Fixes
|
||||
body: Test case for `merge_exclude_columns`
|
||||
time: 2023-08-01T09:46:26.829362-06:00
|
||||
custom:
|
||||
Author: dbeatty10
|
||||
Issue: "8267"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Fixes
|
||||
body: Convert "Skipping model due to fail_fast" message to DEBUG level
|
||||
time: 2024-01-13T07:36:15.836294-00:00
|
||||
custom:
|
||||
Author: scottgigante,nevdelap
|
||||
Issue: "8774"
|
||||
@@ -1,7 +0,0 @@
|
||||
kind: Fixes
|
||||
body: 'Restore previous behavior for --favor-state: only favor defer_relation if not
|
||||
selected in current command"'
|
||||
time: 2024-05-08T15:11:27.510912+02:00
|
||||
custom:
|
||||
Author: jtcohen6
|
||||
Issue: "10107"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Fixes
|
||||
body: Unit test fixture (csv) returns null for empty value
|
||||
time: 2024-05-09T09:14:11.772709-04:00
|
||||
custom:
|
||||
Author: michelleark
|
||||
Issue: "9881"
|
||||
@@ -1,7 +0,0 @@
|
||||
kind: Fixes
|
||||
body: Fix json format log and --quiet for ls and jinja print by converting print call
|
||||
to fire events
|
||||
time: 2024-05-16T15:39:13.896723-07:00
|
||||
custom:
|
||||
Author: ChenyuLInx
|
||||
Issue: "8756"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Fixes
|
||||
body: Add resource type to saved_query
|
||||
time: 2024-05-16T22:35:10.287514-07:00
|
||||
custom:
|
||||
Author: ChenyuLInx
|
||||
Issue: "10168"
|
||||
@@ -1,7 +0,0 @@
|
||||
kind: Fixes
|
||||
body: 'Fix: Order-insensitive unit test equality assertion for expected/actual with
|
||||
multiple nulls'
|
||||
time: 2024-05-22T18:28:55.91733-04:00
|
||||
custom:
|
||||
Author: michelleark
|
||||
Issue: "10167"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Fixes
|
||||
body: Renaming or removing a contracted model should raise a BreakingChange warning/error
|
||||
time: 2024-05-23T20:42:51.033946-04:00
|
||||
custom:
|
||||
Author: michelleark
|
||||
Issue: "10116"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Fixes
|
||||
body: prefer disabled project nodes to external node
|
||||
time: 2024-05-24T13:11:35.440443-04:00
|
||||
custom:
|
||||
Author: michelleark
|
||||
Issue: "10224"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Fixes
|
||||
body: Fix issues with selectors and inline nodes
|
||||
time: 2024-06-05T11:16:52.187667-04:00
|
||||
custom:
|
||||
Author: gshank
|
||||
Issue: 8943 9269
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Fixes
|
||||
body: Fix snapshot config to work in yaml files
|
||||
time: 2024-06-07T13:46:48.383215-04:00
|
||||
custom:
|
||||
Author: gshank
|
||||
Issue: "4000"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Fixes
|
||||
body: Improve handling of error when loading schema file list
|
||||
time: 2024-06-10T13:21:30.963371-04:00
|
||||
custom:
|
||||
Author: gshank
|
||||
Issue: "10284"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Fixes
|
||||
body: Use model alias for the CTE identifier generated during ephemeral materialization
|
||||
time: 2024-06-10T20:05:22.510814008Z
|
||||
custom:
|
||||
Author: jeancochrane
|
||||
Issue: "5273"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Fixes
|
||||
body: Saved Query node fail during skip
|
||||
time: 2024-06-12T12:42:56.329073-07:00
|
||||
custom:
|
||||
Author: ChenyuLInx
|
||||
Issue: "10029"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Fixes
|
||||
body: Implement state:modified for saved queries
|
||||
time: 2024-06-12T15:21:39.851426-04:00
|
||||
custom:
|
||||
Author: gshank
|
||||
Issue: "10294"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Fixes
|
||||
body: DOn't warn on `unit_test` config paths that are properly used
|
||||
time: 2024-06-13T18:31:17.486497-07:00
|
||||
custom:
|
||||
Author: QMalcolm
|
||||
Issue: "10311"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Fixes
|
||||
body: Fix setting `silence` of `warn_error_options` via `dbt_project.yaml` flags
|
||||
time: 2024-06-24T17:17:29.464865-07:00
|
||||
custom:
|
||||
Author: QMalcolm
|
||||
Issue: "10160"
|
||||
@@ -1,7 +0,0 @@
|
||||
kind: Fixes
|
||||
body: Attempt to provide test fixture tables with all values to set types correctly
|
||||
for comparisong with source tables
|
||||
time: 2024-06-25T17:17:37.514619-07:00
|
||||
custom:
|
||||
Author: versusfacit
|
||||
Issue: "10365"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Fixes
|
||||
body: Limit data_tests deprecation to root_project
|
||||
time: 2024-06-27T15:44:48.579869-04:00
|
||||
custom:
|
||||
Author: gshank
|
||||
Issue: "9835"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Fixes
|
||||
body: CLI flags should take precedence over env var flags
|
||||
time: 2024-07-09T17:24:40.918977-04:00
|
||||
custom:
|
||||
Author: gshank
|
||||
Issue: "10304"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Fixes
|
||||
body: Fix typing for artifact schemas
|
||||
time: 2024-07-14T10:02:54.452099+09:00
|
||||
custom:
|
||||
Author: nakamichiworks
|
||||
Issue: "10442"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Fixes
|
||||
body: Fix over deletion of generated_metrics in partial parsing
|
||||
time: 2024-07-16T13:37:03.49651-04:00
|
||||
custom:
|
||||
Author: gshank
|
||||
Issue: "10450"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Fixes
|
||||
body: Fix error constructing warn_error_options
|
||||
time: 2024-07-16T17:14:27.837171-04:00
|
||||
custom:
|
||||
Author: gshank
|
||||
Issue: "10452"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Fixes
|
||||
body: Do not update varchar column definitions if a contract exists
|
||||
time: 2024-07-28T22:14:21.67712-04:00
|
||||
custom:
|
||||
Author: gshank
|
||||
Issue: "10362"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Fixes
|
||||
body: fix all_constraints access, disabled node parsing of non-uniquely named resources
|
||||
time: 2024-07-31T09:51:52.751135-04:00
|
||||
custom:
|
||||
Author: michelleark gshank
|
||||
Issue: "10509"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Fixes
|
||||
body: Propagate measure label when using create_metrics
|
||||
time: 2024-08-06T17:21:10.265494-07:00
|
||||
custom:
|
||||
Author: aliceliu
|
||||
Issue: "10536"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Fixes
|
||||
body: respect --quiet and --warn-error-options for flag deprecations
|
||||
time: 2024-08-06T19:48:43.399453-04:00
|
||||
custom:
|
||||
Author: michelleark
|
||||
Issue: "10105"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Fixes
|
||||
body: Fix state:modified check for exports
|
||||
time: 2024-08-13T15:42:35.471685-07:00
|
||||
custom:
|
||||
Author: aliceliu
|
||||
Issue: "10138"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Fixes
|
||||
body: Filter out empty nodes after graph selection to support consistent selection of nodes that depend on upstream public models
|
||||
time: 2024-08-16T14:08:07.426235-07:00
|
||||
custom:
|
||||
Author: jtcohen6
|
||||
Issue: "8987"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Fixes
|
||||
body: Late render pre- and post-hooks configs in properties / schema YAML files
|
||||
time: 2024-08-24T21:09:03.252733-06:00
|
||||
custom:
|
||||
Author: dbeatty10
|
||||
Issue: "10603"
|
||||
@@ -1,7 +0,0 @@
|
||||
kind: Fixes
|
||||
body: Allow the use of env_var function in certain macros in which it was previously
|
||||
unavailable.
|
||||
time: 2024-08-29T10:57:01.160613-04:00
|
||||
custom:
|
||||
Author: peterallenwebb
|
||||
Issue: "10609"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Fixes
|
||||
body: 'Remove deprecation for tests: to data_tests: change'
|
||||
time: 2024-09-05T18:02:48.086421-04:00
|
||||
custom:
|
||||
Author: gshank
|
||||
Issue: "10564"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Fixes
|
||||
body: Fix `--resource-type test` for `dbt list` and `dbt build`
|
||||
time: 2024-09-17T17:44:46.121032-06:00
|
||||
custom:
|
||||
Author: dbeatty10
|
||||
Issue: "10730"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Fixes
|
||||
body: Fix unit tests for incremental model with alias
|
||||
time: 2024-09-22T13:35:27.991398741Z
|
||||
custom:
|
||||
Author: katsugeneration
|
||||
Issue: "10754"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Fixes
|
||||
body: Allow singular tests to be documented in properties.yml
|
||||
time: 2024-09-23T19:07:58.151069+01:00
|
||||
custom:
|
||||
Author: aranke
|
||||
Issue: "9005"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Fixes
|
||||
body: Ignore --empty in unit test ref/source rendering
|
||||
time: 2024-09-23T20:20:24.151285+01:00
|
||||
custom:
|
||||
Author: michelleark
|
||||
Issue: "10516"
|
||||
@@ -1,7 +0,0 @@
|
||||
kind: Fixes
|
||||
body: Ignore rendered jinja in configs for state:modified, behind state_modified_compare_more_unrendered_values
|
||||
behaviour flag
|
||||
time: 2024-09-25T13:10:28.490042+01:00
|
||||
custom:
|
||||
Author: michelleark
|
||||
Issue: "9564"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Fixes
|
||||
body: Pass test user config to adapter pre_hook by explicitly adding test builder config to node
|
||||
time: 2024-09-25T15:45:14.459598-07:00
|
||||
custom:
|
||||
Author: colin-rogers-dbt
|
||||
Issue: "10484"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Fixes
|
||||
body: Improve performance of infer primary key
|
||||
time: 2024-09-25T16:05:43.59536-04:00
|
||||
custom:
|
||||
Author: gshank
|
||||
Issue: "10781"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Fixes
|
||||
body: Attempt to skip saved query processing when no semantic manifest changes
|
||||
time: 2024-09-26T10:12:20.193453-04:00
|
||||
custom:
|
||||
Author: gshank
|
||||
Issue: "10563"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Fixes
|
||||
body: Ensure dbt retry of microbatch models doesn't lose prior successful state
|
||||
time: 2024-09-30T15:31:58.541656-05:00
|
||||
custom:
|
||||
Author: QMalcolm
|
||||
Issue: "10800"
|
||||
@@ -1,7 +0,0 @@
|
||||
kind: Fixes
|
||||
body: Handle edge cases when a specified `--event-time-end` is equivalent to the batch
|
||||
size truncated batch start time
|
||||
time: 2024-10-04T13:36:30.357936-05:00
|
||||
custom:
|
||||
Author: QMalcolm
|
||||
Issue: "10824"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Fixes
|
||||
body: Begin tracking execution time of microbatch model batches
|
||||
time: 2024-10-04T16:39:08.464064-05:00
|
||||
custom:
|
||||
Author: QMalcolm
|
||||
Issue: "10825"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Fixes
|
||||
body: Allow instances of generic data tests to be documented
|
||||
time: 2024-10-14T21:21:35.767115+01:00
|
||||
custom:
|
||||
Author: aranke
|
||||
Issue: "2578"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Fixes
|
||||
body: Fix warnings for models referring to a deprecated model
|
||||
time: 2024-10-15T12:18:25.14525-04:00
|
||||
custom:
|
||||
Author: gshank
|
||||
Issue: "10833"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Fixes
|
||||
body: Change `lookback` default from `0` to `1` to ensure better data completeness
|
||||
time: 2024-10-17T13:48:57.805205-07:00
|
||||
custom:
|
||||
Author: QMalcolm
|
||||
Issue: "10867"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Fixes
|
||||
body: Make `--event-time-start` and `--event-time-end` mutually required
|
||||
time: 2024-10-17T14:53:57.149238-07:00
|
||||
custom:
|
||||
Author: QMalcolm
|
||||
Issue: "10874"
|
||||
@@ -1,6 +0,0 @@
|
||||
kind: Fixes
|
||||
body: Ensure KeyboardInterrupt/SystemExit halts microbatch model execution
|
||||
time: 2024-10-17T15:30:22.781854-07:00
|
||||
custom:
|
||||
Author: QMalcolm
|
||||
Issue: "10862"
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user