diff --git a/website/docs/docs/cloud/connect-data-platform/about-connections.md b/website/docs/docs/cloud/connect-data-platform/about-connections.md index 2a6f21d4437..1a2b2a7c5cf 100644 --- a/website/docs/docs/cloud/connect-data-platform/about-connections.md +++ b/website/docs/docs/cloud/connect-data-platform/about-connections.md @@ -10,7 +10,7 @@ dbt Cloud can connect with a variety of data platform providers including: - [AlloyDB](/docs/cloud/connect-data-platform/connect-redshift-postgresql-alloydb) - [Amazon Redshift](/docs/cloud/connect-data-platform/connect-redshift-postgresql-alloydb) - [Apache Spark](/docs/cloud/connect-data-platform/connect-apache-spark) -- [Azure Synapse Analytics](/docs/cloud/connect-data-platform/connect-azure-synapse-analytics) +- [Azure Synapse Analytics](/docs/cloud/connect-data-platform/connect-azure-synapse-analytics) - [Databricks](/docs/cloud/connect-data-platform/connect-databricks) - [Google BigQuery](/docs/cloud/connect-data-platform/connect-bigquery) - [Microsoft Fabric](/docs/cloud/connect-data-platform/connect-microsoft-fabric) diff --git a/website/docs/docs/cloud/connect-data-platform/connect-azure-synapse-analytics.md b/website/docs/docs/cloud/connect-data-platform/connect-azure-synapse-analytics.md index 6576a65c54a..d7b2d3ae47d 100644 --- a/website/docs/docs/cloud/connect-data-platform/connect-azure-synapse-analytics.md +++ b/website/docs/docs/cloud/connect-data-platform/connect-azure-synapse-analytics.md @@ -4,7 +4,7 @@ description: "Configure Azure Synapse Analytics connection." sidebar_label: "Connect Azure Synapse Analytics" --- -# Connect Azure Synapse Analytics +# Connect Azure Synapse Analytics ## Supported authentication methods The supported authentication methods are: diff --git a/website/docs/docs/dbt-versions/release-notes.md b/website/docs/docs/dbt-versions/release-notes.md index 404147eda96..2119559c8ad 100644 --- a/website/docs/docs/dbt-versions/release-notes.md +++ b/website/docs/docs/dbt-versions/release-notes.md @@ -36,9 +36,9 @@ The following features are new or enhanced as part of our [dbt Cloud Launch Show - **New:** [Unit tests](/docs/build/unit-tests) are now GA in dbt Cloud. Unit tests enable you to test your SQL model logic against a set of static inputs. -- +- - Native support in dbt Cloud for Azure Synapse Analytics is now available in [Public Preview](/docs/dbt-versions/product-lifecycles#dbt-cloud)! + Native support in dbt Cloud for Azure Synapse Analytics is now available as a [preview](/docs/dbt-versions/product-lifecycles#dbt-cloud)! To learn more, refer to [Connect Azure Synapse Analytics](/docs/cloud/connect-data-platform/connect-azure-synapse-analytics) and [Microsoft Azure Synapse DWH configurations](/reference/resource-configs/azuresynapse-configs). @@ -103,9 +103,7 @@ The following features are new or enhanced as part of our [dbt Cloud Launch Show ## April 2024 -- - - +- You can now set up a continuous deployment (CD) workflow for your projects natively in dbt Cloud. You can now access a beta release of [Merge jobs](/docs/deploy/merge-jobs), which is a new [job type](/docs/deploy/jobs), that enables you to trigger dbt job runs as soon as changes (via Git pull requests) merge into production. @@ -156,9 +154,7 @@ The following features are new or enhanced as part of our [dbt Cloud Launch Show -- - - +- Now available for dbt Cloud Team and Enterprise plans is the ability to trigger deploy jobs when other deploy jobs are complete. You can enable this feature [in the UI](/docs/deploy/deploy-jobs) with the **Run when another job finishes** option in the **Triggers** section of your job or with the [Create Job API endpoint](/dbt-cloud/api-v2#/operations/Create%20Job). @@ -170,9 +166,7 @@ The following features are new or enhanced as part of our [dbt Cloud Launch Show -- - - +- _Now available in the dbt version dropdown in dbt Cloud — starting with select customers, rolling out to wider availability through February and March._ diff --git a/website/snippets/_cloud-cli-flag.md b/website/snippets/_cloud-cli-flag.md index 523591a438c..cc048d526f4 100644 --- a/website/snippets/_cloud-cli-flag.md +++ b/website/snippets/_cloud-cli-flag.md @@ -1,5 +1,5 @@ -:::info Public preview functionality +:::info Preview functionality -The dbt Cloud CLI is currently in [public preview](/docs/dbt-versions/product-lifecycles#dbt-cloud). Share feedback or request features you'd like to see on the [dbt community Slack](https://getdbt.slack.com/archives/C05M77P54FL). +A [preview](/docs/dbt-versions/product-lifecycles#dbt-cloud) of the dbt Cloud CLI is currently available. Share feedback or request features you'd like to see on the [dbt community Slack](https://getdbt.slack.com/archives/C05M77P54FL). ::: diff --git a/website/src/components/expandable/index.js b/website/src/components/expandable/index.js index 1e971c1e182..3cf87b3cd34 100644 --- a/website/src/components/expandable/index.js +++ b/website/src/components/expandable/index.js @@ -2,6 +2,7 @@ import React, { useState, useEffect } from 'react'; import styles from './styles.module.css'; +import Lifecycle from '../lifeCycle'; function slugify(text) { return text.toString().toLowerCase() @@ -14,7 +15,7 @@ function slugify(text) { .replace(/-+$/, ''); // trim - from the end } -function Expandable({ children, alt_header = null }) { +function Expandable({ children, alt_header = null, lifecycle }) { if (!alt_header) { return null; } const [isOn, setOn] = useState(false); const anchorId = slugify(alt_header); @@ -74,7 +75,7 @@ useEffect(() => {   - {alt_header} + {alt_header} diff --git a/website/src/components/lifeCycle/index.js b/website/src/components/lifeCycle/index.js index d8abc142162..200c948109c 100644 --- a/website/src/components/lifeCycle/index.js +++ b/website/src/components/lifeCycle/index.js @@ -8,7 +8,7 @@ const statusColors = { new: '#047377', beta: '#047377', ga: '#047377', - 'public preview': '#047377', + preview: '#047377', }; const fontColors = {