@@ -21,8 +21,8 @@ dbt --version
2121
2222``` text
2323Core:
24- - installed: 1.3 .0
25- - latest: 1.3 .0 - Up to date!
24+ - installed: 1.12 .0
25+ - latest: 1.12 .0 - Up to date!
2626```
2727
2828### Check database connectivity
@@ -32,7 +32,7 @@ dbt debug --profiles-dir ./
3232```
3333
3434``` text
35- dbt version: 1.3 .0
35+ dbt version: 1.12 .0
3636python version: 3.8.13
3737..
3838..
@@ -65,12 +65,27 @@ After this, you can test various dbt features included in this project
6565| Generic Test - Accepted values | ` dbt test ` | [ schema.yml] ( ./models/schema.yml )
6666| Generic Test - Relationships | ` dbt test ` | [ schema.yml] ( ./models/schema.yml )
6767| Operations | ` dbt run-operation ` | Check [ macros] ( macros )
68+ | v1.12 ad hoc operation | ` dbt run-operation --sql "select 1 from dual" ` | Executes an Oracle statement without a macro |
69+ | v1.12 named selector composition | ` dbt ls --select selector:sample_models ` | [ selectors.yml] ( selectors.yml ) |
70+ | v1.12 downstream failure behavior | ` dbt run -s sales_cost_incremental+ ` | ` on_error: continue ` in [ properties.yml] ( models/properties.yml ) |
6871| Snapshots | ` dbt snapshot ` | Check [ snapshots] ( snapshots )
6972| Analyses | ` dbt compile ` | [ eu_customers.sql] ( ./analysis/eu_customers.sql )
7073| Exposures | ` dbt run ` or ` dbt test ` | [ exposures.yml] ( ./models/exposures.yml )
7174| Generate documentation | ` dbt docs generate ` |
7275| Serve project documentation on port 8080 | ` dbt docs serve `
7376
77+ ## dbt Core v1.12 compatibility
78+
79+ The project uses the v1.12 generic-test ` arguments ` syntax and validates the
80+ new ` run-operation --sql ` , ` selector: ` selection method, and ` on_error ` model
81+ configuration. The opt-in v2 parser is not currently usable with ` dbt-oracle ` :
82+ the bundled experimental parser does not yet recognize the Oracle adapter.
83+
84+ ` dbt_constraints ` 1.0.9 is the latest supported package release, but its
85+ published macro documentation does not match its macro signatures. With dbt
86+ 1.12's default macro-argument validation enabled, dbt therefore emits warnings
87+ for that dependency. They are not caused by this project's macros or schema.
88+
7489
7590## Tests [ TODO]
7691- Metrics - Experimental feature introduced in dbt-core==1.0.0
0 commit comments