Skip to content

Commit

Permalink
replace callout wtih component
Browse files Browse the repository at this point in the history
  • Loading branch information
mirnawong1 committed Dec 23, 2024
1 parent 702651b commit 7ff1078
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 18 deletions.
2 changes: 1 addition & 1 deletion website/docs/reference/resource-configs/batch_size.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ description: "dbt uses `batch_size` to determine how large batches are when runn
datatype: hour | day | month | year
---

Available in the [dbt Cloud "Latest" release track](/docs/dbt-versions/cloud-release-tracks) and dbt Core v1.9 and higher.
<VersionCallout version="1.9" />

## Definition

Expand Down
2 changes: 1 addition & 1 deletion website/docs/reference/resource-configs/begin.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ description: "dbt uses `begin` to determine when a microbatch incremental model
datatype: string
---

Available in the [dbt Cloud "Latest" release track](/docs/dbt-versions/cloud-release-tracks) and dbt Core v1.9 and higher.
<VersionCallout version="1.9" />

## Definition

Expand Down
2 changes: 1 addition & 1 deletion website/docs/reference/resource-configs/delimiter.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ datatype: <string>
default_value: ","
---

Supported in v1.7 and higher.
<VersionCallout version="1.7" />

## Definition

Expand Down
2 changes: 1 addition & 1 deletion website/docs/reference/resource-configs/event-time.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ description: "dbt uses event_time to understand when an event occurred. When def
datatype: string
---

Available in [the dbt Cloud "Latest" release track](/docs/dbt-versions/cloud-release-tracks) and dbt Core v1.9 and higher.
<VersionCallout version="1.9" />

<Tabs>
<TabItem value="model" label="Models">
Expand Down
3 changes: 1 addition & 2 deletions website/docs/reference/resource-configs/hard-deletes.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ id: "hard-deletes"
sidebar_label: "hard_deletes"
---

Available from dbt v1.9 or with [dbt Cloud "Latest" release track](/docs/dbt-versions/cloud-release-tracks).

<VersionCallout version="1.9" />

<File name='snapshots/schema.yml'>

Expand Down
3 changes: 1 addition & 2 deletions website/docs/reference/resource-configs/lookback.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ description: "dbt uses `lookback` to detrmine how many 'batches' of `batch_size`
datatype: int
---

Available in the [dbt Cloud "Latest" release track](/docs/dbt-versions/cloud-release-tracks) and dbt Core v1.9 and higher.

<VersionCallout version="1.9" />
## Definition

Set the `lookback` to an integer greater than or equal to zero. The default value is `1`. You can configure `lookback` for a [model](/docs/build/models) in your `dbt_project.yml` file, property YAML file, or config block.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,7 @@ datatype: model_name
description: "Learn about concurrent_batches in dbt."
---

:::note

Available in dbt Core v1.9+ or the [dbt Cloud "Latest" release tracks](/docs/dbt-versions/cloud-release-tracks).

:::
<VersionCallout version="1.9" />

<Tabs>
<TabItem value="Project file">
Expand Down
5 changes: 1 addition & 4 deletions website/docs/reference/resource-properties/unit-tests.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,8 @@ resource_types: [models]
datatype: test
---

:::note
<VersionCallout version="1.8" />

This functionality is available in dbt Core v1.8+ and [dbt Cloud release tracks](/docs/dbt-versions/cloud-release-tracks).

:::

Unit tests validate your SQL modeling logic on a small set of static inputs before you materialize your full model in production. They support a test-driven development approach, improving both the efficiency of developers and reliability of code.

Expand Down
2 changes: 1 addition & 1 deletion website/src/components/versionCallout/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const VersionCallout = ({ version }) => {
Available from dbt v{version} or with the{' '}
<a href="/docs/dbt-versions/cloud-release-tracks">
dbt Cloud "Latest" release track
</a>{' '}.
</a>{''}.
</span>
</Admonition>
</div>
Expand Down

0 comments on commit 7ff1078

Please sign in to comment.