From 036a12fe85fe0638df2b58e48001d3c73da62189 Mon Sep 17 00:00:00 2001 From: mirnawong1 Date: Thu, 25 Jan 2024 12:28:44 +0000 Subject: [PATCH 01/24] add SL rn --- .../73-Jan-2024/jan-sl-updates.md | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md diff --git a/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md b/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md new file mode 100644 index 00000000000..3e60b2233b5 --- /dev/null +++ b/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md @@ -0,0 +1,33 @@ +--- +title: "dbt Semantic Layer updates and fixes for January 2024" +description: "January 2024: New Exports feature, Conversion Metrics, Enhanced metrics labels, Support for shorthand to create metrics and Tableau Parameter filters, and bug fixes." +sidebar_label: "Update and fixes: dbt Semantic Layer" +sidebar_position: 08 +date: 2024-01-31 +--- +The dbt Labs team continues to work on adding new features, fixing bugs, and increasing reliability for the [dbt Semantic Layer](/use-dbt-semantic-layer/dbt-sl). + +The following list explains the new features, updates, and fixes for January 2024 in more detail. + +## New features + +- **Introducing Conversion metrics** — This is a new metric type that allows you to easily measure conversions events, for example users who viewed a web page and then filled out a form. You can learn more about [conversion metrics in our docs](/docs/build/conversion). +- **Introducing Exports** — Use Exports to materialize saved queries within the data platform on a schedule. It uses the dbt Cloud job scheduler to execute saved queries for reliable and fast data reporting. +- **Simplified dimension resolution** — Instead of specifying the fully qualified dimension name (for example, `order__user__country`) in the group by or filter expression, you now only need to provide the primary entity and dimensions name, like `user__county`. +- **Query saved queries** — You can now query the [saved queries](/docs/build/saved-queries) you've defined in the dbt Semantic Layer in GraphQL, JDBC, and the [dbt Cloud CLI](/docs/cloud/cloud-cli-installation). + +## Updates + +- **Display `label` for dbt Semantic Layer metrics** — The YAML spec parameter `label` is now available for Semantic Layer metrics in [JDBC and GraphQL APIs](/docs/dbt-cloud-apis/sl-api-overview). This means you can conveniently use `label` as a display name for your metrics when exposing them. +- **Use shorthand to create metrics** — Added support for `create_metric=true` for a measure, which is a shorthand to quickly create metrics. This is especially useful in cases when metrics are only used to build other metrics. +- **Support for Tableau Parameter filters** — Added support for Tableau Parameter filters. You can use [our Tableau connector](docs/use-dbt-semantic-layer/tableau) to create and use parameters with your dbt Semantic Layer data. +- **Additional parameters for GraphQL API** — Added support to expose `expr` and `agg` for [Measures](/docs/build/measures) in the [GraphQL API](/docs/dbt-cloud-apis/sl-graphql). +- **Improved error messages** — When querying a dimension that is not reachable for a given metric, you now have improved error messages returned in the command line interface. + +## Bug fixes + +- **BigQuery numeric types** — Numeric types with precision greater than 38 (like `BIGDECIMAL`) in BigQuery are now supported and accepted. Previously, it was unsupported and would return an error. +- **Support for scientific notation** — Scientific notation for large numbers is displayed and correctly interpreted. Previously, they were unsupported. +- **Google Sheets dimension values** — Dimension values are now accurately preserved instead of being inadvertently converted into strings. Previously, dimension values were incorrectly converted into a string. +- **Multiple derived metrics resolution** — Resolved issues with naming collisions in queries involving multiple derived metrics using the same metric input. Previously, this could cause a naming collision. Input metrics are now deduplicated, ensuring each is referenced only once. +- **Deduplication of input measures** — Resolve warnings related to using 2 duplicate input measures in a derived metric. Previously, this would trigger a warning. Input measures are now deduplicated, enhancing query processing and clarity. From e6484e39de5e9b784fe46fdbb10262f7a6998c8d Mon Sep 17 00:00:00 2001 From: mirnawong1 Date: Thu, 25 Jan 2024 12:35:33 +0000 Subject: [PATCH 02/24] fix link --- .../dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md b/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md index 3e60b2233b5..03d79baa885 100644 --- a/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md +++ b/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md @@ -5,7 +5,7 @@ sidebar_label: "Update and fixes: dbt Semantic Layer" sidebar_position: 08 date: 2024-01-31 --- -The dbt Labs team continues to work on adding new features, fixing bugs, and increasing reliability for the [dbt Semantic Layer](/use-dbt-semantic-layer/dbt-sl). +The dbt Labs team continues to work on adding new features, fixing bugs, and increasing reliability for the [dbt Semantic Layer](/docs/use-dbt-semantic-layer/dbt-sl). The following list explains the new features, updates, and fixes for January 2024 in more detail. From 03849a1cafbc91f7ad7df7cb25715d94494664f9 Mon Sep 17 00:00:00 2001 From: mirnawong1 <89008547+mirnawong1@users.noreply.github.com> Date: Fri, 26 Jan 2024 12:36:47 +0000 Subject: [PATCH 03/24] Update website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md --- .../dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md b/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md index 03d79baa885..4e9719d1f20 100644 --- a/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md +++ b/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md @@ -11,7 +11,7 @@ The following list explains the new features, updates, and fixes for January 202 ## New features -- **Introducing Conversion metrics** — This is a new metric type that allows you to easily measure conversions events, for example users who viewed a web page and then filled out a form. You can learn more about [conversion metrics in our docs](/docs/build/conversion). +- **Introducing Conversion metrics** — This new metric type allows you to measure conversion events easily. For example, users who viewed a web page and then filled out a form. You can learn more about [conversion metrics in our docs](/docs/build/conversion). - **Introducing Exports** — Use Exports to materialize saved queries within the data platform on a schedule. It uses the dbt Cloud job scheduler to execute saved queries for reliable and fast data reporting. - **Simplified dimension resolution** — Instead of specifying the fully qualified dimension name (for example, `order__user__country`) in the group by or filter expression, you now only need to provide the primary entity and dimensions name, like `user__county`. - **Query saved queries** — You can now query the [saved queries](/docs/build/saved-queries) you've defined in the dbt Semantic Layer in GraphQL, JDBC, and the [dbt Cloud CLI](/docs/cloud/cloud-cli-installation). From 8e6557f913476ef8ea9adec9c7dbda6fa78d080c Mon Sep 17 00:00:00 2001 From: mirnawong1 <89008547+mirnawong1@users.noreply.github.com> Date: Fri, 26 Jan 2024 12:38:20 +0000 Subject: [PATCH 04/24] Update website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md --- .../dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md b/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md index 4e9719d1f20..c5e049d0ae0 100644 --- a/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md +++ b/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md @@ -14,7 +14,7 @@ The following list explains the new features, updates, and fixes for January 202 - **Introducing Conversion metrics** — This new metric type allows you to measure conversion events easily. For example, users who viewed a web page and then filled out a form. You can learn more about [conversion metrics in our docs](/docs/build/conversion). - **Introducing Exports** — Use Exports to materialize saved queries within the data platform on a schedule. It uses the dbt Cloud job scheduler to execute saved queries for reliable and fast data reporting. - **Simplified dimension resolution** — Instead of specifying the fully qualified dimension name (for example, `order__user__country`) in the group by or filter expression, you now only need to provide the primary entity and dimensions name, like `user__county`. -- **Query saved queries** — You can now query the [saved queries](/docs/build/saved-queries) you've defined in the dbt Semantic Layer in GraphQL, JDBC, and the [dbt Cloud CLI](/docs/cloud/cloud-cli-installation). +- **Query saved queries** — You can now query the [saved queries](/docs/build/saved-queries) you've defined in the dbt Semantic Layer using [GraphQL API](/docs/dbt-cloud-apis/sl-graphql), [JDBC API](docs/dbt-cloud-apis/sl-jdbc), and the [dbt Cloud CLI](/docs/cloud/cloud-cli-installation). ## Updates From 73d65a0e8d0af5939531d44bb3a704bb649434e7 Mon Sep 17 00:00:00 2001 From: rpourzand Date: Mon, 29 Jan 2024 22:09:26 -0800 Subject: [PATCH 05/24] Update jan-sl-updates.md Adding a few updates! --- .../dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md b/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md index c5e049d0ae0..6cf96e16c7e 100644 --- a/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md +++ b/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md @@ -14,7 +14,7 @@ The following list explains the new features, updates, and fixes for January 202 - **Introducing Conversion metrics** — This new metric type allows you to measure conversion events easily. For example, users who viewed a web page and then filled out a form. You can learn more about [conversion metrics in our docs](/docs/build/conversion). - **Introducing Exports** — Use Exports to materialize saved queries within the data platform on a schedule. It uses the dbt Cloud job scheduler to execute saved queries for reliable and fast data reporting. - **Simplified dimension resolution** — Instead of specifying the fully qualified dimension name (for example, `order__user__country`) in the group by or filter expression, you now only need to provide the primary entity and dimensions name, like `user__county`. -- **Query saved queries** — You can now query the [saved queries](/docs/build/saved-queries) you've defined in the dbt Semantic Layer using [GraphQL API](/docs/dbt-cloud-apis/sl-graphql), [JDBC API](docs/dbt-cloud-apis/sl-jdbc), and the [dbt Cloud CLI](/docs/cloud/cloud-cli-installation). +- **Query saved queries** — You can now query the [saved queries](/docs/build/saved-queries) you've defined in the dbt Semantic Layer using [Tableau](/docs/use-dbt-semantic-layer/tableau), [GraphQL API](/docs/dbt-cloud-apis/sl-graphql), [JDBC API](docs/dbt-cloud-apis/sl-jdbc), and the [dbt Cloud CLI](/docs/cloud/cloud-cli-installation). ## Updates @@ -23,6 +23,8 @@ The following list explains the new features, updates, and fixes for January 202 - **Support for Tableau Parameter filters** — Added support for Tableau Parameter filters. You can use [our Tableau connector](docs/use-dbt-semantic-layer/tableau) to create and use parameters with your dbt Semantic Layer data. - **Additional parameters for GraphQL API** — Added support to expose `expr` and `agg` for [Measures](/docs/build/measures) in the [GraphQL API](/docs/dbt-cloud-apis/sl-graphql). - **Improved error messages** — When querying a dimension that is not reachable for a given metric, you now have improved error messages returned in the command line interface. +- **Entities in Tableau** — We now surface entities in our Tableau integration and these can be queried like dimensions. +- **New Tableau Data Source** — We introduced a new data source in our Tableau integration called "ALL", which contains all semantic objects defined. This has the same information as "METRICS_AND_DIMENSIONS". In the future, we will deprecate "METRICS_AND_DIMENSIONS" in favor of "ALL" for clarity. ## Bug fixes From 5422ea98229bf1cc3fc6b5e51b71b9bd12ead31b Mon Sep 17 00:00:00 2001 From: mirnawong1 <89008547+mirnawong1@users.noreply.github.com> Date: Tue, 30 Jan 2024 18:34:19 +0000 Subject: [PATCH 06/24] Update website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md Co-authored-by: Ly Nguyen <107218380+nghi-ly@users.noreply.github.com> --- .../dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md b/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md index 6cf96e16c7e..903b66f36e6 100644 --- a/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md +++ b/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md @@ -1,6 +1,6 @@ --- title: "dbt Semantic Layer updates and fixes for January 2024" -description: "January 2024: New Exports feature, Conversion Metrics, Enhanced metrics labels, Support for shorthand to create metrics and Tableau Parameter filters, and bug fixes." +description: "January 2024: New Exports feature, conversion metrics, enhanced metrics labels, support for shorthand to create metrics and Tableau parameter filters, and bug fixes." sidebar_label: "Update and fixes: dbt Semantic Layer" sidebar_position: 08 date: 2024-01-31 From 268fc1ee07471d7bac4678e550929cadf6a53b4c Mon Sep 17 00:00:00 2001 From: mirnawong1 <89008547+mirnawong1@users.noreply.github.com> Date: Tue, 30 Jan 2024 18:34:46 +0000 Subject: [PATCH 07/24] Update website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md Co-authored-by: Ly Nguyen <107218380+nghi-ly@users.noreply.github.com> --- .../dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md b/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md index 903b66f36e6..358ecd3e452 100644 --- a/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md +++ b/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md @@ -14,7 +14,7 @@ The following list explains the new features, updates, and fixes for January 202 - **Introducing Conversion metrics** — This new metric type allows you to measure conversion events easily. For example, users who viewed a web page and then filled out a form. You can learn more about [conversion metrics in our docs](/docs/build/conversion). - **Introducing Exports** — Use Exports to materialize saved queries within the data platform on a schedule. It uses the dbt Cloud job scheduler to execute saved queries for reliable and fast data reporting. - **Simplified dimension resolution** — Instead of specifying the fully qualified dimension name (for example, `order__user__country`) in the group by or filter expression, you now only need to provide the primary entity and dimensions name, like `user__county`. -- **Query saved queries** — You can now query the [saved queries](/docs/build/saved-queries) you've defined in the dbt Semantic Layer using [Tableau](/docs/use-dbt-semantic-layer/tableau), [GraphQL API](/docs/dbt-cloud-apis/sl-graphql), [JDBC API](docs/dbt-cloud-apis/sl-jdbc), and the [dbt Cloud CLI](/docs/cloud/cloud-cli-installation). +- **Saved queries** — You can now query the [saved queries](/docs/build/saved-queries) you've defined in the dbt Semantic Layer using [Tableau](/docs/use-dbt-semantic-layer/tableau), [GraphQL API](/docs/dbt-cloud-apis/sl-graphql), [JDBC API](docs/dbt-cloud-apis/sl-jdbc), and the [dbt Cloud CLI](/docs/cloud/cloud-cli-installation). ## Updates From 6fd9b8959b80bc9b7c963ee2ff1fff12e06bd5e0 Mon Sep 17 00:00:00 2001 From: mirnawong1 <89008547+mirnawong1@users.noreply.github.com> Date: Tue, 30 Jan 2024 18:34:57 +0000 Subject: [PATCH 08/24] Update website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md Co-authored-by: Ly Nguyen <107218380+nghi-ly@users.noreply.github.com> --- .../dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md b/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md index 358ecd3e452..cb6f134a60d 100644 --- a/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md +++ b/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md @@ -32,4 +32,4 @@ The following list explains the new features, updates, and fixes for January 202 - **Support for scientific notation** — Scientific notation for large numbers is displayed and correctly interpreted. Previously, they were unsupported. - **Google Sheets dimension values** — Dimension values are now accurately preserved instead of being inadvertently converted into strings. Previously, dimension values were incorrectly converted into a string. - **Multiple derived metrics resolution** — Resolved issues with naming collisions in queries involving multiple derived metrics using the same metric input. Previously, this could cause a naming collision. Input metrics are now deduplicated, ensuring each is referenced only once. -- **Deduplication of input measures** — Resolve warnings related to using 2 duplicate input measures in a derived metric. Previously, this would trigger a warning. Input measures are now deduplicated, enhancing query processing and clarity. +- **Deduplication of input measures** — Resolved warnings related to using two duplicate input measures in a derived metric. Previously, this would trigger a warning. Input measures are now deduplicated, enhancing query processing and clarity. From d20a3cd85ea775a20aa19866d752f904415e3e6c Mon Sep 17 00:00:00 2001 From: mirnawong1 <89008547+mirnawong1@users.noreply.github.com> Date: Tue, 30 Jan 2024 18:35:10 +0000 Subject: [PATCH 09/24] Update website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md Co-authored-by: Ly Nguyen <107218380+nghi-ly@users.noreply.github.com> --- .../dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md b/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md index cb6f134a60d..e686f16acdf 100644 --- a/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md +++ b/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md @@ -30,6 +30,6 @@ The following list explains the new features, updates, and fixes for January 202 - **BigQuery numeric types** — Numeric types with precision greater than 38 (like `BIGDECIMAL`) in BigQuery are now supported and accepted. Previously, it was unsupported and would return an error. - **Support for scientific notation** — Scientific notation for large numbers is displayed and correctly interpreted. Previously, they were unsupported. -- **Google Sheets dimension values** — Dimension values are now accurately preserved instead of being inadvertently converted into strings. Previously, dimension values were incorrectly converted into a string. +- **Google Sheets dimension values** — We now preserve dimension values accurately instead of being inadvertently converted into strings. - **Multiple derived metrics resolution** — Resolved issues with naming collisions in queries involving multiple derived metrics using the same metric input. Previously, this could cause a naming collision. Input metrics are now deduplicated, ensuring each is referenced only once. - **Deduplication of input measures** — Resolved warnings related to using two duplicate input measures in a derived metric. Previously, this would trigger a warning. Input measures are now deduplicated, enhancing query processing and clarity. From 16c3a50ada1e5e597a4291701ed92b8a5f3fa5d1 Mon Sep 17 00:00:00 2001 From: mirnawong1 <89008547+mirnawong1@users.noreply.github.com> Date: Tue, 30 Jan 2024 18:35:31 +0000 Subject: [PATCH 10/24] Update website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md Co-authored-by: Ly Nguyen <107218380+nghi-ly@users.noreply.github.com> --- .../dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md b/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md index e686f16acdf..c6ec9052d04 100644 --- a/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md +++ b/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md @@ -28,7 +28,7 @@ The following list explains the new features, updates, and fixes for January 202 ## Bug fixes -- **BigQuery numeric types** — Numeric types with precision greater than 38 (like `BIGDECIMAL`) in BigQuery are now supported and accepted. Previously, it was unsupported and would return an error. +- **BigQuery numeric types** — Support for numeric types with precision greater than 38 (like `BIGDECIMAL`) in BigQuery is now available. Previously, it was unsupported so would return an error. - **Support for scientific notation** — Scientific notation for large numbers is displayed and correctly interpreted. Previously, they were unsupported. - **Google Sheets dimension values** — We now preserve dimension values accurately instead of being inadvertently converted into strings. - **Multiple derived metrics resolution** — Resolved issues with naming collisions in queries involving multiple derived metrics using the same metric input. Previously, this could cause a naming collision. Input metrics are now deduplicated, ensuring each is referenced only once. From 95c7e792f8b573da0b1bec72796df7ab921dd61d Mon Sep 17 00:00:00 2001 From: mirnawong1 <89008547+mirnawong1@users.noreply.github.com> Date: Tue, 30 Jan 2024 18:35:40 +0000 Subject: [PATCH 11/24] Update website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md Co-authored-by: Ly Nguyen <107218380+nghi-ly@users.noreply.github.com> --- .../dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md b/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md index c6ec9052d04..a30b872492e 100644 --- a/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md +++ b/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md @@ -24,7 +24,7 @@ The following list explains the new features, updates, and fixes for January 202 - **Additional parameters for GraphQL API** — Added support to expose `expr` and `agg` for [Measures](/docs/build/measures) in the [GraphQL API](/docs/dbt-cloud-apis/sl-graphql). - **Improved error messages** — When querying a dimension that is not reachable for a given metric, you now have improved error messages returned in the command line interface. - **Entities in Tableau** — We now surface entities in our Tableau integration and these can be queried like dimensions. -- **New Tableau Data Source** — We introduced a new data source in our Tableau integration called "ALL", which contains all semantic objects defined. This has the same information as "METRICS_AND_DIMENSIONS". In the future, we will deprecate "METRICS_AND_DIMENSIONS" in favor of "ALL" for clarity. +- **New Tableau data source** — A new data source is available in our Tableau integration called "ALL", which contains all semantic objects defined. This has the same information as "METRICS_AND_DIMENSIONS". In the future, we will deprecate "METRICS_AND_DIMENSIONS" in favor of "ALL" for clarity. ## Bug fixes From 1edc7909a5e5e902a80ee2c1ad7713278cead57d Mon Sep 17 00:00:00 2001 From: mirnawong1 <89008547+mirnawong1@users.noreply.github.com> Date: Tue, 30 Jan 2024 18:35:47 +0000 Subject: [PATCH 12/24] Update website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md Co-authored-by: Ly Nguyen <107218380+nghi-ly@users.noreply.github.com> --- .../dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md b/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md index a30b872492e..355dca8e5f0 100644 --- a/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md +++ b/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md @@ -1,7 +1,7 @@ --- title: "dbt Semantic Layer updates and fixes for January 2024" description: "January 2024: New Exports feature, conversion metrics, enhanced metrics labels, support for shorthand to create metrics and Tableau parameter filters, and bug fixes." -sidebar_label: "Update and fixes: dbt Semantic Layer" +sidebar_label: "Updates and fixes: dbt Semantic Layer" sidebar_position: 08 date: 2024-01-31 --- From dacfb934257d16b68194ac2a71b8c22a53b2de02 Mon Sep 17 00:00:00 2001 From: mirnawong1 <89008547+mirnawong1@users.noreply.github.com> Date: Tue, 30 Jan 2024 18:36:00 +0000 Subject: [PATCH 13/24] Update website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md Co-authored-by: Ly Nguyen <107218380+nghi-ly@users.noreply.github.com> --- .../dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md b/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md index 355dca8e5f0..e4adf988962 100644 --- a/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md +++ b/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md @@ -19,7 +19,7 @@ The following list explains the new features, updates, and fixes for January 202 ## Updates - **Display `label` for dbt Semantic Layer metrics** — The YAML spec parameter `label` is now available for Semantic Layer metrics in [JDBC and GraphQL APIs](/docs/dbt-cloud-apis/sl-api-overview). This means you can conveniently use `label` as a display name for your metrics when exposing them. -- **Use shorthand to create metrics** — Added support for `create_metric=true` for a measure, which is a shorthand to quickly create metrics. This is especially useful in cases when metrics are only used to build other metrics. +- **Use shorthand to create metrics** — Added support for `create_metric=true` for a measure, which is a shorthand to quickly create metrics. This is useful in cases when metrics are only used to build other metrics. - **Support for Tableau Parameter filters** — Added support for Tableau Parameter filters. You can use [our Tableau connector](docs/use-dbt-semantic-layer/tableau) to create and use parameters with your dbt Semantic Layer data. - **Additional parameters for GraphQL API** — Added support to expose `expr` and `agg` for [Measures](/docs/build/measures) in the [GraphQL API](/docs/dbt-cloud-apis/sl-graphql). - **Improved error messages** — When querying a dimension that is not reachable for a given metric, you now have improved error messages returned in the command line interface. From 616a26340913680bcef6d68478d9c87232040a03 Mon Sep 17 00:00:00 2001 From: mirnawong1 <89008547+mirnawong1@users.noreply.github.com> Date: Tue, 30 Jan 2024 18:36:22 +0000 Subject: [PATCH 14/24] Update website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md Co-authored-by: Ly Nguyen <107218380+nghi-ly@users.noreply.github.com> --- .../dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md b/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md index e4adf988962..dec0ce972fd 100644 --- a/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md +++ b/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md @@ -20,7 +20,7 @@ The following list explains the new features, updates, and fixes for January 202 - **Display `label` for dbt Semantic Layer metrics** — The YAML spec parameter `label` is now available for Semantic Layer metrics in [JDBC and GraphQL APIs](/docs/dbt-cloud-apis/sl-api-overview). This means you can conveniently use `label` as a display name for your metrics when exposing them. - **Use shorthand to create metrics** — Added support for `create_metric=true` for a measure, which is a shorthand to quickly create metrics. This is useful in cases when metrics are only used to build other metrics. -- **Support for Tableau Parameter filters** — Added support for Tableau Parameter filters. You can use [our Tableau connector](docs/use-dbt-semantic-layer/tableau) to create and use parameters with your dbt Semantic Layer data. +- **Support for Tableau parameter filters** — Added support for Tableau parameter filters. You can use the [Tableau connector](docs/use-dbt-semantic-layer/tableau) to create and use parameters with your dbt Semantic Layer data. - **Additional parameters for GraphQL API** — Added support to expose `expr` and `agg` for [Measures](/docs/build/measures) in the [GraphQL API](/docs/dbt-cloud-apis/sl-graphql). - **Improved error messages** — When querying a dimension that is not reachable for a given metric, you now have improved error messages returned in the command line interface. - **Entities in Tableau** — We now surface entities in our Tableau integration and these can be queried like dimensions. From bd0a97763289b28566d9f96930eadc106e7b4078 Mon Sep 17 00:00:00 2001 From: mirnawong1 <89008547+mirnawong1@users.noreply.github.com> Date: Tue, 30 Jan 2024 19:39:50 +0000 Subject: [PATCH 15/24] Update website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md Co-authored-by: Ly Nguyen <107218380+nghi-ly@users.noreply.github.com> --- .../dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md b/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md index dec0ce972fd..1365550f59d 100644 --- a/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md +++ b/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md @@ -29,7 +29,7 @@ The following list explains the new features, updates, and fixes for January 202 ## Bug fixes - **BigQuery numeric types** — Support for numeric types with precision greater than 38 (like `BIGDECIMAL`) in BigQuery is now available. Previously, it was unsupported so would return an error. -- **Support for scientific notation** — Scientific notation for large numbers is displayed and correctly interpreted. Previously, they were unsupported. +- **Support for scientific notation** — Scientific notation for large numbers is displayed and correctly interpreted. - **Google Sheets dimension values** — We now preserve dimension values accurately instead of being inadvertently converted into strings. - **Multiple derived metrics resolution** — Resolved issues with naming collisions in queries involving multiple derived metrics using the same metric input. Previously, this could cause a naming collision. Input metrics are now deduplicated, ensuring each is referenced only once. - **Deduplication of input measures** — Resolved warnings related to using two duplicate input measures in a derived metric. Previously, this would trigger a warning. Input measures are now deduplicated, enhancing query processing and clarity. From 54e9cda7c0b31419569be9a9630ca3c7ad009543 Mon Sep 17 00:00:00 2001 From: mirnawong1 <89008547+mirnawong1@users.noreply.github.com> Date: Tue, 30 Jan 2024 19:41:15 +0000 Subject: [PATCH 16/24] Update website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md Co-authored-by: Ly Nguyen <107218380+nghi-ly@users.noreply.github.com> --- .../dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md b/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md index 1365550f59d..267e72b2228 100644 --- a/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md +++ b/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md @@ -23,7 +23,7 @@ The following list explains the new features, updates, and fixes for January 202 - **Support for Tableau parameter filters** — Added support for Tableau parameter filters. You can use the [Tableau connector](docs/use-dbt-semantic-layer/tableau) to create and use parameters with your dbt Semantic Layer data. - **Additional parameters for GraphQL API** — Added support to expose `expr` and `agg` for [Measures](/docs/build/measures) in the [GraphQL API](/docs/dbt-cloud-apis/sl-graphql). - **Improved error messages** — When querying a dimension that is not reachable for a given metric, you now have improved error messages returned in the command line interface. -- **Entities in Tableau** — We now surface entities in our Tableau integration and these can be queried like dimensions. +- **Entities in Tableau** — You can now query entities using our Tableau integration (similar to querying dimensions). - **New Tableau data source** — A new data source is available in our Tableau integration called "ALL", which contains all semantic objects defined. This has the same information as "METRICS_AND_DIMENSIONS". In the future, we will deprecate "METRICS_AND_DIMENSIONS" in favor of "ALL" for clarity. ## Bug fixes From bedf4744748557db1b35820a77b2a35aadf01049 Mon Sep 17 00:00:00 2001 From: mirnawong1 <89008547+mirnawong1@users.noreply.github.com> Date: Tue, 30 Jan 2024 19:43:05 +0000 Subject: [PATCH 17/24] Update website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md Co-authored-by: Ly Nguyen <107218380+nghi-ly@users.noreply.github.com> --- .../dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md b/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md index 267e72b2228..df77240f7ad 100644 --- a/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md +++ b/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md @@ -11,7 +11,7 @@ The following list explains the new features, updates, and fixes for January 202 ## New features -- **Introducing Conversion metrics** — This new metric type allows you to measure conversion events easily. For example, users who viewed a web page and then filled out a form. You can learn more about [conversion metrics in our docs](/docs/build/conversion). +- **Conversion metrics** — New metric type that allows you to measure conversion events. For example, users who viewed a web page and then filled out a form. For more details, refer to [Conversion metrics](/docs/build/conversion). - **Introducing Exports** — Use Exports to materialize saved queries within the data platform on a schedule. It uses the dbt Cloud job scheduler to execute saved queries for reliable and fast data reporting. - **Simplified dimension resolution** — Instead of specifying the fully qualified dimension name (for example, `order__user__country`) in the group by or filter expression, you now only need to provide the primary entity and dimensions name, like `user__county`. - **Saved queries** — You can now query the [saved queries](/docs/build/saved-queries) you've defined in the dbt Semantic Layer using [Tableau](/docs/use-dbt-semantic-layer/tableau), [GraphQL API](/docs/dbt-cloud-apis/sl-graphql), [JDBC API](docs/dbt-cloud-apis/sl-jdbc), and the [dbt Cloud CLI](/docs/cloud/cloud-cli-installation). From 1f26acc019ca7849f167bf989b51f4725363e65c Mon Sep 17 00:00:00 2001 From: mirnawong1 <89008547+mirnawong1@users.noreply.github.com> Date: Wed, 31 Jan 2024 10:15:09 +0000 Subject: [PATCH 18/24] Update jan-sl-updates.md --- .../dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md b/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md index df77240f7ad..9d7fc1abc7d 100644 --- a/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md +++ b/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md @@ -19,7 +19,7 @@ The following list explains the new features, updates, and fixes for January 202 ## Updates - **Display `label` for dbt Semantic Layer metrics** — The YAML spec parameter `label` is now available for Semantic Layer metrics in [JDBC and GraphQL APIs](/docs/dbt-cloud-apis/sl-api-overview). This means you can conveniently use `label` as a display name for your metrics when exposing them. -- **Use shorthand to create metrics** — Added support for `create_metric=true` for a measure, which is a shorthand to quickly create metrics. This is useful in cases when metrics are only used to build other metrics. +- **Use shorthand to create metrics** — Added support for `create_metric: true` for a measure, which is a shorthand to quickly create metrics. This is useful in cases when metrics are only used to build other metrics. - **Support for Tableau parameter filters** — Added support for Tableau parameter filters. You can use the [Tableau connector](docs/use-dbt-semantic-layer/tableau) to create and use parameters with your dbt Semantic Layer data. - **Additional parameters for GraphQL API** — Added support to expose `expr` and `agg` for [Measures](/docs/build/measures) in the [GraphQL API](/docs/dbt-cloud-apis/sl-graphql). - **Improved error messages** — When querying a dimension that is not reachable for a given metric, you now have improved error messages returned in the command line interface. From 244e9be2717fff64d23857ca03cda63956f52fa7 Mon Sep 17 00:00:00 2001 From: mirnawong1 <89008547+mirnawong1@users.noreply.github.com> Date: Wed, 31 Jan 2024 10:16:45 +0000 Subject: [PATCH 19/24] Update website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md --- .../dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md | 1 - 1 file changed, 1 deletion(-) diff --git a/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md b/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md index 9d7fc1abc7d..ecae078cdc9 100644 --- a/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md +++ b/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md @@ -12,7 +12,6 @@ The following list explains the new features, updates, and fixes for January 202 ## New features - **Conversion metrics** — New metric type that allows you to measure conversion events. For example, users who viewed a web page and then filled out a form. For more details, refer to [Conversion metrics](/docs/build/conversion). -- **Introducing Exports** — Use Exports to materialize saved queries within the data platform on a schedule. It uses the dbt Cloud job scheduler to execute saved queries for reliable and fast data reporting. - **Simplified dimension resolution** — Instead of specifying the fully qualified dimension name (for example, `order__user__country`) in the group by or filter expression, you now only need to provide the primary entity and dimensions name, like `user__county`. - **Saved queries** — You can now query the [saved queries](/docs/build/saved-queries) you've defined in the dbt Semantic Layer using [Tableau](/docs/use-dbt-semantic-layer/tableau), [GraphQL API](/docs/dbt-cloud-apis/sl-graphql), [JDBC API](docs/dbt-cloud-apis/sl-jdbc), and the [dbt Cloud CLI](/docs/cloud/cloud-cli-installation). From e08d00f33ca5fc5865cf44f850317b454e6bdc5f Mon Sep 17 00:00:00 2001 From: mirnawong1 <89008547+mirnawong1@users.noreply.github.com> Date: Wed, 31 Jan 2024 10:18:01 +0000 Subject: [PATCH 20/24] Update website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md --- .../dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md b/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md index ecae078cdc9..635797f65d9 100644 --- a/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md +++ b/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md @@ -21,7 +21,7 @@ The following list explains the new features, updates, and fixes for January 202 - **Use shorthand to create metrics** — Added support for `create_metric: true` for a measure, which is a shorthand to quickly create metrics. This is useful in cases when metrics are only used to build other metrics. - **Support for Tableau parameter filters** — Added support for Tableau parameter filters. You can use the [Tableau connector](docs/use-dbt-semantic-layer/tableau) to create and use parameters with your dbt Semantic Layer data. - **Additional parameters for GraphQL API** — Added support to expose `expr` and `agg` for [Measures](/docs/build/measures) in the [GraphQL API](/docs/dbt-cloud-apis/sl-graphql). -- **Improved error messages** — When querying a dimension that is not reachable for a given metric, you now have improved error messages returned in the command line interface. +- **Improved error messages** — You have improved error messages in the command line interface when querying a dimension that is not reachable for a given metric. - **Entities in Tableau** — You can now query entities using our Tableau integration (similar to querying dimensions). - **New Tableau data source** — A new data source is available in our Tableau integration called "ALL", which contains all semantic objects defined. This has the same information as "METRICS_AND_DIMENSIONS". In the future, we will deprecate "METRICS_AND_DIMENSIONS" in favor of "ALL" for clarity. From ce83b7452f922ecf8a7bef10ca4c7c03bd2acb15 Mon Sep 17 00:00:00 2001 From: mirnawong1 <89008547+mirnawong1@users.noreply.github.com> Date: Wed, 31 Jan 2024 17:11:56 +0000 Subject: [PATCH 21/24] Update website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md --- .../dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md | 1 + 1 file changed, 1 insertion(+) diff --git a/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md b/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md index 635797f65d9..f29b43570f0 100644 --- a/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md +++ b/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md @@ -3,6 +3,7 @@ title: "dbt Semantic Layer updates and fixes for January 2024" description: "January 2024: New Exports feature, conversion metrics, enhanced metrics labels, support for shorthand to create metrics and Tableau parameter filters, and bug fixes." sidebar_label: "Updates and fixes: dbt Semantic Layer" sidebar_position: 08 +tags: [Jan-2024] date: 2024-01-31 --- The dbt Labs team continues to work on adding new features, fixing bugs, and increasing reliability for the [dbt Semantic Layer](/docs/use-dbt-semantic-layer/dbt-sl). From 28581a7873962fb4b761efe9d6ef2459a845169e Mon Sep 17 00:00:00 2001 From: Jordan Stein Date: Wed, 31 Jan 2024 09:36:37 -0800 Subject: [PATCH 22/24] add bug fix --- .../dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md | 1 + 1 file changed, 1 insertion(+) diff --git a/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md b/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md index f29b43570f0..20a1edb85ec 100644 --- a/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md +++ b/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md @@ -33,3 +33,4 @@ The following list explains the new features, updates, and fixes for January 202 - **Google Sheets dimension values** — We now preserve dimension values accurately instead of being inadvertently converted into strings. - **Multiple derived metrics resolution** — Resolved issues with naming collisions in queries involving multiple derived metrics using the same metric input. Previously, this could cause a naming collision. Input metrics are now deduplicated, ensuring each is referenced only once. - **Deduplication of input measures** — Resolved warnings related to using two duplicate input measures in a derived metric. Previously, this would trigger a warning. Input measures are now deduplicated, enhancing query processing and clarity. +- **Correctly refrence entities in filters using the object syntax** Resolved an error where refrencing an entity in a filter using the object syntax would fail. i.e {{Entity('entity_name')}} would fail to resolve. From ea1669cf8cbb7a88b2355b3e83bfc6f3d475edcc Mon Sep 17 00:00:00 2001 From: Jordan Stein Date: Wed, 31 Jan 2024 09:37:52 -0800 Subject: [PATCH 23/24] add bug fix --- .../dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md b/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md index 20a1edb85ec..c6d76a8c8fd 100644 --- a/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md +++ b/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md @@ -33,4 +33,4 @@ The following list explains the new features, updates, and fixes for January 202 - **Google Sheets dimension values** — We now preserve dimension values accurately instead of being inadvertently converted into strings. - **Multiple derived metrics resolution** — Resolved issues with naming collisions in queries involving multiple derived metrics using the same metric input. Previously, this could cause a naming collision. Input metrics are now deduplicated, ensuring each is referenced only once. - **Deduplication of input measures** — Resolved warnings related to using two duplicate input measures in a derived metric. Previously, this would trigger a warning. Input measures are now deduplicated, enhancing query processing and clarity. -- **Correctly refrence entities in filters using the object syntax** Resolved an error where refrencing an entity in a filter using the object syntax would fail. i.e {{Entity('entity_name')}} would fail to resolve. +- **Correctly reference entities in filters using the object syntax** — Resolved an error where referencing an entity in a filter using the object syntax would fail. i.e {{Entity('entity_name')}} would fail to resolve. From 884dd7ce6fbeb684e5ee718da2ad61d17b262c49 Mon Sep 17 00:00:00 2001 From: mirnawong1 <89008547+mirnawong1@users.noreply.github.com> Date: Wed, 31 Jan 2024 17:39:23 +0000 Subject: [PATCH 24/24] Update website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md --- .../dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md b/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md index c6d76a8c8fd..680b82e5c5b 100644 --- a/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md +++ b/website/docs/docs/dbt-versions/release-notes/73-Jan-2024/jan-sl-updates.md @@ -33,4 +33,4 @@ The following list explains the new features, updates, and fixes for January 202 - **Google Sheets dimension values** — We now preserve dimension values accurately instead of being inadvertently converted into strings. - **Multiple derived metrics resolution** — Resolved issues with naming collisions in queries involving multiple derived metrics using the same metric input. Previously, this could cause a naming collision. Input metrics are now deduplicated, ensuring each is referenced only once. - **Deduplication of input measures** — Resolved warnings related to using two duplicate input measures in a derived metric. Previously, this would trigger a warning. Input measures are now deduplicated, enhancing query processing and clarity. -- **Correctly reference entities in filters using the object syntax** — Resolved an error where referencing an entity in a filter using the object syntax would fail. i.e {{Entity('entity_name')}} would fail to resolve. +- **Correctly reference entities in filters using the object syntax** — Resolved an error where referencing an entity in a filter using the object syntax would fail. For example, `{{Entity('entity_name')}}` would fail to resolve.