Commit 6bf2ba1e authored by semantic-release-bot's avatar semantic-release-bot
Browse files

chore(release): 1.6.0 [skip ci]

# [1.6.0](https://gitlab.com/to-be-continuous/gcloud/compare/1.5.2...1.6.0) (2022-01-10)

### Features

* Vault variant + non-blocking warning in case failed decoding [@url](https://gitlab.com/url)@ variable ([7e6123bc](https://gitlab.com/to-be-continuous/gcloud/commit/7e6123bc581335a15230d6f7d781d017675d3737))
parent 7e6123bc
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
# [1.6.0](https://gitlab.com/to-be-continuous/gcloud/compare/1.5.2...1.6.0) (2022-01-10)


### Features

* Vault variant + non-blocking warning in case failed decoding [@url](https://gitlab.com/url)@ variable ([7e6123b](https://gitlab.com/to-be-continuous/gcloud/commit/7e6123bc581335a15230d6f7d781d017675d3737))

## [1.5.2](https://gitlab.com/to-be-continuous/gcloud/compare/1.5.1...1.5.2) (2021-12-03)


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

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

@@ -375,11 +375,11 @@ With:
include:
  # main template
  - project: 'to-be-continuous/gcloud'
    ref: '1.5.2'
    ref: '1.6.0'
    file: '/templates/gitlab-ci-gcloud.yml'
  # Vault variant
  - project: 'to-be-continuous/gcloud'
    ref: '1.5.2'
    ref: '1.6.0'
    file: '/templates/gitlab-ci-gcloud-vault.yml'

variables:
+1 −1
Original line number Diff line number Diff line
@@ -9,6 +9,6 @@ variables:
.gcp-base:
  services:
    - name: "$CI_REGISTRY/to-be-continuous/tools/tracking:master"
      command: ["--service", "gcloud", "1.5.2" ]
      command: ["--service", "gcloud", "1.6.0" ]
    - name: "$CI_REGISTRY/to-be-continuous/tools/vault-secrets-provider:master"
      alias: "vault-secrets-provider"
+2 −2
Original line number Diff line number Diff line
@@ -331,7 +331,7 @@ stages:
    fi
  }

  if [[ "$TEMPLATE_CHECK_UPDATE_DISABLED" != "true" ]]; then check_for_update gcloud "1.5.2"; fi
  if [[ "$TEMPLATE_CHECK_UPDATE_DISABLED" != "true" ]]; then check_for_update gcloud "1.6.0"; fi

  # export tool functions (might be used in after_script)
  export -f log_info log_warn log_error assert_defined awkenvsubst
@@ -347,7 +347,7 @@ stages:
  image: $GCP_CLI_IMAGE
  services:
    - name: "$CI_REGISTRY/to-be-continuous/tools/tracking:master"
      command: ["--service", "gcloud", "1.5.2" ]
      command: ["--service", "gcloud", "1.6.0" ]
  before_script:
    - *gcp-scripts
    - install_ca_certs "${CUSTOM_CA_CERTS:-$DEFAULT_CA_CERTS}"