Commit 3ee3c43a authored by semantic-release-bot's avatar semantic-release-bot
Browse files

chore(release): 6.0.0 [skip ci]

# [6.0.0](https://gitlab.com/to-be-continuous/gcloud/compare/5.5.0...6.0.0) (2025-08-13)

* feat(vault)!: enable certificate verification ([0fa96a69](https://gitlab.com/to-be-continuous/gcloud/commit/0fa96a69739eecde16dc9e17f5fd57f7aac13691))

### BREAKING CHANGES

* self-signed certificates must be declared in your GitLab DEFAULT_CA_CERTS or with VAULT_CA_CERTS variable
parent 0fa96a69
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
# [6.0.0](https://gitlab.com/to-be-continuous/gcloud/compare/5.5.0...6.0.0) (2025-08-13)


* feat(vault)!: enable certificate verification ([0fa96a6](https://gitlab.com/to-be-continuous/gcloud/commit/0fa96a69739eecde16dc9e17f5fd57f7aac13691))


### BREAKING CHANGES

* self-signed certificates must be declared in your GitLab DEFAULT_CA_CERTS or with VAULT_CA_CERTS variable

# [5.5.0](https://gitlab.com/to-be-continuous/gcloud/compare/5.4.0...5.5.0) (2025-08-12)


+7 −7
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@ Add the following to your `.gitlab-ci.yml`:
```yaml
include:
  # 1: include the component
  - component: $CI_SERVER_FQDN/to-be-continuous/gcloud/gitlab-ci-gcloud@5.5.0
  - component: $CI_SERVER_FQDN/to-be-continuous/gcloud/gitlab-ci-gcloud@6.0.0
    # 2: set/override component inputs
    inputs:
      # ⚠ this is only an example
@@ -32,7 +32,7 @@ Add the following to your `.gitlab-ci.yml`:
include:
  # 1: include the template
  - project: 'to-be-continuous/gcloud'
    ref: '5.5.0'
    ref: '6.0.0'
    file: '/templates/gitlab-ci-gcloud.yml'

variables:
@@ -324,7 +324,7 @@ Let's imagine a backend service:

```yaml
include:
  - component: $CI_SERVER_FQDN/to-be-continuous/gcloud/gitlab-ci-gcloud@5.5.0
  - component: $CI_SERVER_FQDN/to-be-continuous/gcloud/gitlab-ci-gcloud@6.0.0
    inputs:
      base-app-name: coockedoodledoo
      review-project: "farm-12345" # enable review env
@@ -450,9 +450,9 @@ The variant supports the following configuration:
```yaml
include:
  # main template
  - component: $CI_SERVER_FQDN/to-be-continuous/gcloud/gitlab-ci-gcloud@5.5.0
  - component: $CI_SERVER_FQDN/to-be-continuous/gcloud/gitlab-ci-gcloud@6.0.0
  # OIDC variant
  - component: $CI_SERVER_FQDN/to-be-continuous/gcloud/gitlab-ci-gcloud-oidc@5.5.0
  - component: $CI_SERVER_FQDN/to-be-continuous/gcloud/gitlab-ci-gcloud-oidc@6.0.0
    inputs:
      # audience claim for JWT
      oidc-aud: "https://iam.googleapis.com"
@@ -502,9 +502,9 @@ With:
```yaml
include:
  # main template
  - component: $CI_SERVER_FQDN/to-be-continuous/gcloud/gitlab-ci-gcloud@5.5.0
  - component: $CI_SERVER_FQDN/to-be-continuous/gcloud/gitlab-ci-gcloud@6.0.0
  # Vault variant
  - component: $CI_SERVER_FQDN/to-be-continuous/gcloud/gitlab-ci-gcloud-vault@5.5.0
  - component: $CI_SERVER_FQDN/to-be-continuous/gcloud/gitlab-ci-gcloud-vault@6.0.0
    inputs:
      # audience claim for JWT
      vault-oidc-aud: "https://vault.acme.host"
+1 −1
Original line number Diff line number Diff line
@@ -24,7 +24,7 @@ variables:
.gcp-base:
  services:
    - name: "$TBC_TRACKING_IMAGE"
      command: ["--service", "gcloud", "5.5.0"]
      command: ["--service", "gcloud", "6.0.0"]
    - name: "$TBC_VAULT_IMAGE"
      alias: "vault-secrets-provider"
      variables:
+1 −1
Original line number Diff line number Diff line
@@ -580,7 +580,7 @@ stages:
  image: $GCP_CLI_IMAGE
  services:
    - name: "$TBC_TRACKING_IMAGE"
      command: ["--service", "gcloud", "5.5.0"]
      command: ["--service", "gcloud", "6.0.0"]
  before_script:
    - !reference [.gcp-scripts]
    - install_ca_certs "${CUSTOM_CA_CERTS:-$DEFAULT_CA_CERTS}"