Commit 012043cc authored by semantic-release-bot's avatar semantic-release-bot
Browse files

chore(release): 3.0.0 [skip ci]

# [3.0.0](https://gitlab.com/to-be-continuous/dbt/compare/2.1.1...3.0.0) (2023-08-28)

### Features

* **oidc:** OIDC authentication support now requires explicit configuration (see doc) ([a5e7fb66](https://gitlab.com/to-be-continuous/dbt/commit/a5e7fb664897b5d093588ddca51c17f12d6d7ea8))

### BREAKING CHANGES

* **oidc:** OIDC authentication support now requires explicit configuration (see doc)
parent f80c5b11
Loading
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
# [3.0.0](https://gitlab.com/to-be-continuous/dbt/compare/2.1.1...3.0.0) (2023-08-28)


### Features

* **oidc:** OIDC authentication support now requires explicit configuration (see doc) ([a5e7fb6](https://gitlab.com/to-be-continuous/dbt/commit/a5e7fb664897b5d093588ddca51c17f12d6d7ea8))


### BREAKING CHANGES

* **oidc:** OIDC authentication support now requires explicit configuration (see doc)

## [2.1.1](https://gitlab.com/to-be-continuous/dbt/compare/2.1.0...2.1.1) (2023-08-01)


+5 −5
Original line number Diff line number Diff line
@@ -39,7 +39,7 @@ In order to include this template in your project, add the following to your `gi
```yaml
include:
  - project: 'to-be-continuous/dbt'
    ref: '2.1.1'
    ref: '3.0.0'
    file: '/templates/gitlab-ci-dbt.yml'
```

@@ -181,11 +181,11 @@ If you wish to use it, add the following to your `gitlab-ci.yml`:
include:
  # main template
  - project: 'to-be-continuous/dbt'
    ref: '2.1.1'
    ref: '3.0.0'
    file: '/templates/gitlab-ci-dbt.yml'
  # GitLab pages variant
  - project: 'to-be-continuous/dbt'
    ref: '2.1.1'
    ref: '3.0.0'
    file: '/templates/gitlab-ci-dbt-pages.yml'
```

@@ -221,11 +221,11 @@ With a common default `GCP_OIDC_PROVIDER` and `GCP_OIDC_ACCOUNT` configuration f
include:
  # main template
  - project: 'to-be-continuous/dbt'
    ref: '2.1.1'
    ref: '3.0.0'
    file: '/templates/gitlab-ci-dbt.yml'
  # `Google Cloud` variant
  - project: 'to-be-continuous/dbt'
    ref: '2.1.1'
    ref: '3.0.0'
    file: '/templates/gitlab-ci-dbt-gcp.yml'

variables:
+1 −1
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@ variables:
.dbt-base:
  services:
    - name: "$TBC_TRACKING_IMAGE"
      command: ["--service", "dbt", "2.1.1" ]
      command: ["--service", "dbt", "3.0.0" ]
    - name: "$TBC_GCP_PROVIDER_IMAGE"
      alias: "gcp-auth-provider"
  variables:
+1 −1
Original line number Diff line number Diff line
@@ -335,7 +335,7 @@ stages:
  image: $DBT_IMAGE
  services:
    - name: "$TBC_TRACKING_IMAGE"
      command: ["--service", "dbt", "2.1.1"]
      command: ["--service", "dbt", "3.0.0"]
  before_script:
    - *dbt-scripts
    - install_ca_certs "${CUSTOM_CA_CERTS:-$DEFAULT_CA_CERTS}"