Skip to content

Commit

Permalink
Merge branch 'current' into udpate-description
Browse files Browse the repository at this point in the history
  • Loading branch information
mirnawong1 authored Jan 9, 2025
2 parents ff2c6c4 + cfe595f commit 189dd57
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 3 deletions.
5 changes: 5 additions & 0 deletions website/docs/docs/dbt-versions/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ Release notes are grouped by month for both multi-tenant and virtual private clo

\* The official release date for this new format of release notes is May 15th, 2024. Historical release notes for prior dates may not reflect all available features released earlier this year or their tenancy availability.

## January 2025
- **Enhancement**: The [`dbt_version` format](/reference/commands/version#versioning) in dbt Cloud now better aligns with [semantic versioning rules](https://semver.org/). Leading zeroes have been removed from the month and day (`YYYY.M.D+<suffix>`). For example:
- New format: `2024.10.8+996c6a8`
- Previous format: `2024.10.08+996c6a8`

## December 2024

- **New**: Saved queries now support [tags](/reference/resource-configs/tags), which allow you to categorize your resources and filter them. Add tags to your [saved queries](/docs/build/saved-queries) in the `semantic_model.yml` file or `dbt_project.yml` file. For example:
Expand Down
2 changes: 1 addition & 1 deletion website/docs/guides/redshift-qs.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ In this quickstart guide, you'll learn how to use dbt Cloud with Redshift. It wi
- Document your models
- Schedule a job to run

:::tips Videos for you
:::tip Videos for you
Check out [dbt Fundamentals](https://learn.getdbt.com/courses/dbt-fundamentals) for free if you're interested in course learning with videos.
:::

Expand Down
2 changes: 1 addition & 1 deletion website/docs/reference/commands/version.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ The `--version` command-line flag returns information about the currently instal
## Versioning
To learn more about release versioning for dbt Core, refer to [How dbt Core uses semantic versioning](/docs/dbt-versions/core#how-dbt-core-uses-semantic-versioning).

If using a [dbt Cloud release track](/docs/dbt-versions/cloud-release-tracks), which provide ongoing updates to dbt, then `dbt_version` represents the release version of dbt in dbt Cloud. This also follows semantic versioning guidelines, using the `YYYY.MM.DD+<suffix>` format. The year, month, and day represent the date the version was built (for example, `2024.10.28+996c6a8`). The suffix provides an additional unique identification for each build.
If using a [dbt Cloud release track](/docs/dbt-versions/cloud-release-tracks), which provide ongoing updates to dbt, then `dbt_version` represents the release version of dbt in dbt Cloud. This also follows semantic versioning guidelines, using the `YYYY.M.D+<suffix>` format. The year, month, and day represent the date the version was built (for example, `2024.10.8+996c6a8`). The suffix provides an additional unique identification for each build.

## Example usages

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ The following example provides you with the SQL statements you can use to manage


```
grant usage on database database_name to user_name;
grant create schema on database database_name to user_name;
grant usage on schema database.schema_name to user_name;
grant create table on schema database.schema_name to user_name;
Expand All @@ -22,4 +21,6 @@ grant select on all tables in database database_name to user_name;
grant select on all views in database database_name to user_name;
```

To connect to the database, confirm with an admin that your user role or group has been added to the database.

Check out the [official documentation](https://docs.aws.amazon.com/redshift/latest/dg/r_GRANT.html) for more information.
Binary file not shown.
Binary file not shown.

0 comments on commit 189dd57

Please sign in to comment.