Commit 361b3705 authored by semantic-release-bot's avatar semantic-release-bot
Browse files

chore(release): 2.0.0 [skip ci]

# [2.0.0](https://gitlab.com/to-be-continuous/dbt/compare/1.3.0...2.0.0) (2023-04-05)

### Features

* **deploy:** redesign deployment strategy ([3d672ccb](https://gitlab.com/to-be-continuous/dbt/commit/3d672ccb39cd94f1f3411240e60b0c167f11cd15))

### BREAKING CHANGES

* **deploy:** $AUTODEPLOY_TO_PROD no longer supported (replaced by $DBT_PROD_DEPLOY_STRATEGY - see doc)
parent c2293c4f
Loading
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
# [2.0.0](https://gitlab.com/to-be-continuous/dbt/compare/1.3.0...2.0.0) (2023-04-05)


### Features

* **deploy:** redesign deployment strategy ([3d672cc](https://gitlab.com/to-be-continuous/dbt/commit/3d672ccb39cd94f1f3411240e60b0c167f11cd15))


### BREAKING CHANGES

* **deploy:** $AUTODEPLOY_TO_PROD no longer supported (replaced by $DBT_PROD_DEPLOY_STRATEGY - see doc)

# [1.3.0](https://gitlab.com/to-be-continuous/dbt/compare/1.2.0...1.3.0) (2023-03-21)


+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: '1.3.0'
    ref: '2.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: '1.3.0'
    ref: '2.0.0'
    file: '/templates/gitlab-ci-dbt.yml'
  # GitLab pages variant
  - project: 'to-be-continuous/dbt'
    ref: '1.3.0'
    ref: '2.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: '1.3.0'
    ref: '2.0.0'
    file: '/templates/gitlab-ci-dbt.yml'
  # `Google Cloud` variant
  - project: 'to-be-continuous/dbt'
    ref: '1.3.0'
    ref: '2.0.0'
    file: '/templates/gitlab-ci-dbt-gcp.yml'

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