Skip to content

Commit 036723e

Browse files
authored
Merge pull request #862 from dbt-labs/version-update
Update Docusaurus Version
2 parents 9927a38 + 63a4fbd commit 036723e

File tree

23 files changed

+11007
-34939
lines changed

23 files changed

+11007
-34939
lines changed

website/docs/docs/dbt-cloud/access-control/cloud-seats-and-users.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The type of license a user is assigned controls which capabilities of dbt
1212
Cloud the user is permitted to access. Users with a Developer license can be
1313
granted access to the Deployment and [Development](the-dbt-ide) functionality
1414
in dbt Cloud, whereas users with Read Only licenses are intended to view the
15-
[artifacts](using-dbt-cloud/artifacts.md) created in a dbt Cloud account.
15+
[artifacts](docs/dbt-cloud/using-dbt-cloud/artifacts) created in a dbt Cloud account.
1616

1717
| Functionality | Developer User | Read Only Users |
1818
| ------------- | -------------- | --------------- |

website/docs/docs/dbt-cloud/cloud-configuring-dbt-cloud/cloud-upgrading-dbt-versions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Below we try to help you answer the question of whether a known breaking change
1616

1717
:::info An Important Note on Packages
1818

19-
If you use any packages from [dbt Hub]([https://hub.getdbt.com/](https://hub.getdbt.com/)), make sure you also upgrade to a version of the package that supports the dbt version you intend to upgrade to. You can see which dbt versions a package supports by checking on the `require-dbt-version:` in the package's dbt_project.yml file on GitHub.
19+
If you use any packages from [dbt Hub](https://hub.getdbt.com/), make sure you also upgrade to a version of the package that supports the dbt version you intend to upgrade to. You can see which dbt versions a package supports by checking on the `require-dbt-version:` in the package's dbt_project.yml file on GitHub.
2020

2121
As an example, dbt-utils version 0.7.1 supports dbt v0.20 and v0.21, as described in its [dbt_project.yml](https://github.com/dbt-labs/dbt-utils/blob/0.7.1/dbt_project.yml).
2222

website/docs/docs/dbt-cloud/cloud-quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Let's get started!
1717

1818
## Create a connection
1919

20-
dbt Cloud uses this connection to _connect_ to your database when running jobs and transformation queries. Depending on the type of data warehouse you're using, you'll need to supply [different configuration parameters](connecting-your-database.md). dbt Cloud natively supports connections to Snowflake, BigQuery, Redshift, Apache Spark, Databricks, and Postgres.
20+
dbt Cloud uses this connection to _connect_ to your database when running jobs and transformation queries. Depending on the type of data warehouse you're using, you'll need to supply [different configuration parameters](docs/dbt-cloud/cloud-configuring-dbt-cloud/connecting-your-database). dbt Cloud natively supports connections to Snowflake, BigQuery, Redshift, Apache Spark, Databricks, and Postgres.
2121

2222
After picking a data warehouse type, a form will be generated where you can populate your warehouse's credentials. These credentials are encrypted at rest, and dbt Cloud never stores credentials in plaintext.
2323

website/docs/docs/guides/migration-guide/upgrading-to-0-18-0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ can override schema test definitions
6363
- [list (ls)](commands/list)
6464
- [defer](defer)
6565
- [adapter.dispatch](adapter#dispatch)
66-
- [`asset-paths` config](asset-paths) (also updated [dbt_project.yml](dbt_project.yml.md) and [description](description))
66+
- [`asset-paths` config](asset-paths) (also updated [dbt_project.yml](reference/dbt_project.yml) and [description](description))
6767
- [flag for colorized logs](run#enable-or-disable-colorized-logs)
6868
- [`full_refresh` config](full_refresh)
6969

website/docs/learn/3-build-your-first-models.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ id: build-your-first-models
44
description: With our starter project setup, it's time to get to the fun part — building models!
55
---
66

7-
With our starter project setup, it's time to get to the fun part — building [models](/docs/building-models)! We're going to take the query from the [Setting up](/learn/setting-up) instructions, and turn it into a model in our dbt project.
7+
With our starter project setup, it's time to get to the fun part — building [models](/docs/building-a-dbt-project/building-models)! We're going to take the query from the [Setting up](/learn/setting-up) instructions, and turn it into a model in our dbt project.
88

99
## Checkout a new git branch
1010
### dbt Cloud

website/docs/learn/4-test-and-document-your-project.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Let's test and document our models to build trust in our data.
55
---
66

77
## Add tests to your models
8-
Adding [tests](/docs/testing) to a project helps validate that your models are working correctly. So let's add some tests to our project!
8+
Adding [tests](/docs/building-a-dbt-project/tests) to a project helps validate that your models are working correctly. So let's add some tests to our project!
99

1010
<CloudCore>
1111
<LoomVideo id="86a1e7ed19084810a7903bd31ebd83e0" />
@@ -78,7 +78,7 @@ When you run `dbt test`, dbt iterates through your YAML files, and constructs a
7878
<FAQ src="when-to-test" />
7979

8080
## Document your models
81-
Adding [documentation](/docs/documentation) to your project allows you to describe your models in rich detail, and share that information with your team. Here, we're going to add some basic documentation to our project.
81+
Adding [documentation](/docs/building-a-dbt-project/documentation) to your project allows you to describe your models in rich detail, and share that information with your team. Here, we're going to add some basic documentation to our project.
8282

8383
<CloudCore>
8484
<LoomVideo id="f946321f692747e59bec3b726eccbfd4" />
@@ -153,7 +153,7 @@ Great work ⭐️! You've just built your first dbt project that's tested and do
153153

154154
* Write a test that fails, for example, omit one of the order statuses in the `accepted_values` list. What does a failing test look like? Can you debug the failure?
155155
* Run the tests for one model only. If you grouped your `stg_` models into a directory, try running the tests for all the models in that directory.
156-
* Use a [docs block](/docs/documentation#using-docs-blocks) to add a Markdown description to a model.
156+
* Use a [docs block](/docs/building-a-dbt-project/documentation#using-docs-blocks) to add a Markdown description to a model.
157157

158158
## Commit your changes
159159
First off, we need to commit the changes we made to our project so that our repository has our latest code.

website/docs/reference/project-configs/profile.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The profile your dbt project should use to connect to your data warehouse.
1515
* If you are developing locally: This configuration is required, unless a command-line option (i.e. `--profile`) is supplied.
1616

1717
## Related guides
18-
* [Connecting to your warehouse](docs/dbt-cli/configure-your-profile.md)
18+
* [Connecting to your warehouse](dbt-cli/configure-your-profile)
1919

2020
## Recommendation
2121
Often an organization has only one data warehouse, so it is sensible to use your organization's name as a profile name, in `snake_case`. For example:

website/docs/reference/resource-configs/alias.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This is a work in progress document. While this configuration applies to multipl
1010

1111
## Definition
1212

13-
Optionally specify a custom alias for a [model](docs/docs/building-a-dbt-project/building-models.md) or [seed](docs/docs/building-a-dbt-project/seeds.md).
13+
Optionally specify a custom alias for a [model](docs/building-a-dbt-project/building-models) or [seed](docs/building-a-dbt-project/seeds).
1414

1515
When dbt creates a relation (table/view) in a database, it creates it as: `{{ database }}.{{ schema }}.{{ identifier }}`, e.g. `analytics.finance.payments`
1616

website/docs/reference/resource-configs/database.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This is a work in progress document. While this configuration applies to multipl
1010

1111
## Definition
1212

13-
Optionally specify a custom database for a [model](docs/docs/building-a-dbt-project/building-models.md) or [seed](docs/docs/building-a-dbt-project/seeds.md). (To specify a database for a [snapshot](snapshots), use the [`target_database` config](target_database)).
13+
Optionally specify a custom database for a [model](docs/building-a-dbt-project/building-models) or [seed](docs/building-a-dbt-project/seeds). (To specify a database for a [snapshot](snapshots), use the [`target_database` config](target_database)).
1414

1515
When dbt creates a relation (table/view) in a database, it creates it as: `{{ database }}.{{ schema }}.{{ identifier }}`, e.g. `analytics.finance.payments`
1616

website/docs/reference/resource-configs/pre-hook-post-hook.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ Pre- and post-hooks can also call macros that return SQL statements.
106106

107107
<Changelog>
108108

109-
* `v0.12.2`: The `post_hook` alias for config blocks was introduced. Prior to this, users needed to use the [alternative config syntax]() to apply pre- and post-hooks.
109+
* `v0.12.2`: The `post_hook` alias for config blocks was introduced. Prior to this, users needed to use the alternative config syntax to apply pre- and post-hooks.
110110

111111
</Changelog>
112112

0 commit comments

Comments
 (0)