Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release note for 1.9 / versionless inferring primary key within manifest based on constraints #6217

Merged
merged 24 commits into from
Oct 2, 2024
Merged
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
49e0c87
add space
mirnawong1 Oct 1, 2024
b6a7308
Merge branch 'current' into add/new-snapshot-spec-main
mirnawong1 Oct 1, 2024
3e52968
add snapshot rn
mirnawong1 Oct 1, 2024
dcba81a
Update website/docs/docs/dbt-versions/release-notes.md
mirnawong1 Oct 1, 2024
396c170
Update website/docs/docs/dbt-versions/release-notes.md
mirnawong1 Oct 1, 2024
648afc0
Merge branch 'current' into add/new-snapshot-spec-main
mirnawong1 Oct 1, 2024
4ad11d7
Merge branch 'current' into add/new-snapshot-spec-main
mirnawong1 Oct 1, 2024
6de9454
Update release-notes.md
mirnawong1 Oct 1, 2024
4274930
Merge branch 'current' into add/new-snapshot-spec-main
mirnawong1 Oct 2, 2024
1b37fe9
Merge branch 'current' into add/new-snapshot-spec-main
mirnawong1 Oct 2, 2024
0402729
Merge branch 'current' into add/new-snapshot-spec-main
mirnawong1 Oct 2, 2024
776eaf9
Merge branch 'current' into add/new-snapshot-spec-main
mirnawong1 Oct 2, 2024
4e7e1d2
Merge branch 'current' into add/new-snapshot-spec-main
mirnawong1 Oct 2, 2024
9de1420
Merge branch 'current' into add/new-snapshot-spec-main
mirnawong1 Oct 2, 2024
be5a4ba
Merge branch 'current' into add/new-snapshot-spec-main
runleonarun Oct 2, 2024
3b2b654
addign release note
runleonarun Oct 2, 2024
3c06428
Merge branch 'add/new-snapshot-spec-main' into add-primary-key-constr…
runleonarun Oct 2, 2024
ead4c58
Update website/docs/docs/dbt-versions/release-notes.md
runleonarun Oct 2, 2024
8b4a3d1
Update website/docs/docs/dbt-versions/release-notes.md
runleonarun Oct 2, 2024
cbe9d93
Update release-notes.md
runleonarun Oct 2, 2024
1452251
Apply suggestions from code review
runleonarun Oct 2, 2024
6b00185
Update dbt-support.md (#6216)
lgreene27 Oct 2, 2024
6c64251
Merge branch 'current' into add-primary-key-constraints-rn
runleonarun Oct 2, 2024
9f4f25f
Update release-notes.md
runleonarun Oct 2, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions website/docs/docs/dbt-versions/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ Release notes are grouped by month for both multi-tenant and virtual private clo
## October 2024

- **Enhancement**: In dbt Cloud Versionless, snapshots defined in SQL files can now use `config` defined in `schema.yml` YAML files. This update resolves the previous limitation that required snapshot properties to be defined exclusively in `dbt_project.yml` and/or a `config()` block within the SQL file. This enhancement will be included in the upcoming dbt Core v1.9 release.
- **Enhancement**: In May 2024, dbt Cloud versionless began inferring a model's `primary_key` based on configured data tests and/or constraints within `manifest.json`. The inferred `primary_key` is visible in dbt Explorer and utilized by the dbt Cloud [compare changes](/docs/deploy/run-visibility#compare-tab) feature. This will also be released in dbt Core 1.9.
Read about the [order dbt infers columns can be used as primary key of a model](https://github.com/dbt-labs/dbt-core/blob/7940ad5c7858ff11ef100260a372f2f06a86e71f/core/dbt/contracts/graph/nodes.py#L534-L541).
- **New:** dbt Explorer now includes trust signal icons, which is currently available as a [Preview](/docs/dbt-versions/product-lifecycles#dbt-cloud). Trust signals offer a quick, at-a-glance view of data health when browsing your dbt models in Explorer. These icons indicate whether a model is **Healthy**, **Caution**, **Degraded**, or **Unknown**. For accurate health data, ensure the resource is up-to-date and has had a recent job run. Refer to [Trust signals](/docs/collaborate/explore-projects#trust-signals-for-resources) for more information.
- **New:** Auto exposures are now available in Preview in dbt Cloud. Auto-exposures helps users understand how their models are used in downstream analytics tools to inform investments and reduce incidents. It imports and auto-generates exposures based on Tableau dashboards, with user-defined curation. To learn more, refer to [Auto exposures](/docs/collaborate/auto-exposures).

Expand Down
Loading