Commit f5345a3f 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/gcloud/compare/3.2.0...4.0.0) (2023-08-28)

### Features

* **oidc:** OIDC authentication support now requires  explicit configuration (see doc) ([2e8032a3](https://gitlab.com/to-be-continuous/gcloud/commit/2e8032a310720fb66a46003aaca6d61d365639d3))
* support ID tokens instead of CI_JOB_JWT ([277a8754](https://gitlab.com/to-be-continuous/gcloud/commit/277a87549c91f14979ca943eaf7a556ae085d9ad))

### BREAKING CHANGES

* **oidc:** OIDC authentication support now requires explicit configuration (see doc)
parent 23681d53
Loading
Loading
Loading
Loading
Loading
+13 −0
Original line number Diff line number Diff line
# [4.0.0](https://gitlab.com/to-be-continuous/gcloud/compare/3.2.0...4.0.0) (2023-08-28)


### Features

* **oidc:** OIDC authentication support now requires  explicit configuration (see doc) ([2e8032a](https://gitlab.com/to-be-continuous/gcloud/commit/2e8032a310720fb66a46003aaca6d61d365639d3))
* support ID tokens instead of CI_JOB_JWT ([277a875](https://gitlab.com/to-be-continuous/gcloud/commit/277a87549c91f14979ca943eaf7a556ae085d9ad))


### BREAKING CHANGES

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

# [3.2.0](https://gitlab.com/to-be-continuous/gcloud/compare/3.1.0...3.2.0) (2023-08-07)


+4 −4
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@ In order to include this template in your project, add the following to your `gi
```yaml
include:
  - project: 'to-be-continuous/gcloud'
    ref: '3.2.0'
    ref: '4.0.0'
    file: '/templates/gitlab-ci-gcloud.yml'
```

@@ -309,7 +309,7 @@ Let's imagine a backend service:
include:
  # Include Google Cloud template
  - project: 'to-be-continuous/gcloud'
    ref: '3.2.0'
    ref: '4.0.0'
    file: '/templates/gitlab-ci-gcloud.yml'
  ...

@@ -526,11 +526,11 @@ The ID token can be configured as follows in your `.gitlab-ci.yml` file:
include:
  # main template
  - project: 'to-be-continuous/gcloud'
    ref: '3.2.0'
    ref: '4.0.0'
    file: '/templates/gitlab-ci-gcloud.yml'
  # Vault variant
  - project: 'to-be-continuous/gcloud'
    ref: '3.2.0'
    ref: '4.0.0'
    file: '/templates/gitlab-ci-gcloud-vault.yml'

variables:
+1 −1
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@ variables:
.gcp-base:
  services:
    - name: "$TBC_TRACKING_IMAGE"
      command: ["--service", "gcloud", "3.2.0" ]
      command: ["--service", "gcloud", "4.0.0" ]
    - name: "$TBC_VAULT_IMAGE"
      alias: "vault-secrets-provider"
  variables:
+1 −1
Original line number Diff line number Diff line
@@ -394,7 +394,7 @@ stages:
  image: $GCP_CLI_IMAGE
  services:
    - name: "$TBC_TRACKING_IMAGE"
      command: ["--service", "gcloud", "3.2.0" ]
      command: ["--service", "gcloud", "4.0.0" ]
  before_script:
    - *gcp-scripts
    - install_ca_certs "${CUSTOM_CA_CERTS:-$DEFAULT_CA_CERTS}"