Commit 1f58060b authored by semantic-release-bot's avatar semantic-release-bot
Browse files

chore(release): 4.0.0 [skip ci]

# [4.0.0](https://gitlab.com/to-be-continuous/dbt/compare/3.3.0...4.0.0) (2024-07-14)

### Features

* **gcp:** switch to ADC google authentification ([b8af5544](https://gitlab.com/to-be-continuous/dbt/commit/b8af5544cf1b9e270214e06f0808f2f51a78aada))

### BREAKING CHANGES

* **gcp:** switch from GOOGLE_OAUTH_ACCESS_TOKEN to GOOGLE_APPLICATION_CREDENTIALS
In your dbt profiles.yml you have to:
    remove token: "{{ env_var('GOOGLE_OAUTH_ACCESS_TOKEN') }}"
    switch from method: oauth-secrets to method: oauth
parent b8af5544
Loading
Loading
Loading
Loading
+15 −0
Original line number Diff line number Diff line
# [4.0.0](https://gitlab.com/to-be-continuous/dbt/compare/3.3.0...4.0.0) (2024-07-14)


### Features

* **gcp:** switch to ADC google authentification ([b8af554](https://gitlab.com/to-be-continuous/dbt/commit/b8af5544cf1b9e270214e06f0808f2f51a78aada))


### BREAKING CHANGES

* **gcp:** switch from GOOGLE_OAUTH_ACCESS_TOKEN to GOOGLE_APPLICATION_CREDENTIALS
In your dbt profiles.yml you have to:
    remove token: "{{ env_var('GOOGLE_OAUTH_ACCESS_TOKEN') }}"
    switch from method: oauth-secrets to method: oauth

# [3.3.0](https://gitlab.com/to-be-continuous/dbt/compare/3.2.3...3.3.0) (2024-07-14)


+6 −6
Original line number Diff line number Diff line
@@ -44,7 +44,7 @@ Add the following to your `gitlab-ci.yml`:
```yaml
include:
  # 1: include the component
  - component: gitlab.com/to-be-continuous/dbt/gitlab-ci-dbt@3.3.0
  - component: gitlab.com/to-be-continuous/dbt/gitlab-ci-dbt@4.0.0
    # 2: set/override component inputs
    inputs:
      # ⚠ this is only an example
@@ -60,7 +60,7 @@ Add the following to your `gitlab-ci.yml`:
include:
  # 1: include the template
  - project: 'to-be-continuous/dbt'
    ref: '3.3.0'
    ref: '4.0.0'
    file: '/templates/gitlab-ci-dbt.yml'

variables:
@@ -206,9 +206,9 @@ If you wish to use it, add the following to your `gitlab-ci.yml`:

```yaml
  # main template
  - component: gitlab.com/to-be-continuous/dbt/gitlab-ci-dbt@3.3.0
  - component: gitlab.com/to-be-continuous/dbt/gitlab-ci-dbt@4.0.0
  # GitLab pages variant
  - component: gitlab.com/to-be-continuous/dbt/gitlab-ci-dbt-pages@3.3.0
  - component: gitlab.com/to-be-continuous/dbt/gitlab-ci-dbt-pages@4.0.0
```

### Google Cloud variant
@@ -242,9 +242,9 @@ With a common default `GCP_OIDC_PROVIDER` and `GCP_OIDC_ACCOUNT` configuration f

```yaml
  # main template
  - component: gitlab.com/to-be-continuous/dbt/gitlab-ci-dbt@3.3.0
  - component: gitlab.com/to-be-continuous/dbt/gitlab-ci-dbt@4.0.0
  # Google Cloud variant
  - component: gitlab.com/to-be-continuous/dbt/gitlab-ci-dbt-gcp@3.3.0
  - component: gitlab.com/to-be-continuous/dbt/gitlab-ci-dbt-gcp@4.0.0
    inputs:
      # common OIDC config for non-prod envs
      gcp-oidc-provider: "projects/<gcp_nonprod_proj_id>/locations/global/workloadIdentityPools/<pool_id>/providers/<provider_id>"
+1 −1
Original line number Diff line number Diff line
@@ -407,7 +407,7 @@ stages:
  image: $DBT_IMAGE
  services:
    - name: "$TBC_TRACKING_IMAGE"
      command: ["--service", "dbt", "3.3.0"]
      command: ["--service", "dbt", "4.0.0"]
  before_script:
    - !reference [.dbt-scripts]
    - install_ca_certs "${CUSTOM_CA_CERTS:-$DEFAULT_CA_CERTS}"