Commit 24bc8c1d authored by semantic-release-bot's avatar semantic-release-bot
Browse files

chore(release): 3.0.0 [skip ci]

# [3.0.0](https://gitlab.com/to-be-continuous/azure/compare/2.5.0...3.0.0) (2025-08-13)

* feat(vault)!: enable certificate verification ([ca535c79](https://gitlab.com/to-be-continuous/azure/commit/ca535c79c764e1174f2f9e2c81d961ac507bc979))

### BREAKING CHANGES

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


* feat(vault)!: enable certificate verification ([ca535c7](https://gitlab.com/to-be-continuous/azure/commit/ca535c79c764e1174f2f9e2c81d961ac507bc979))


### BREAKING CHANGES

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

# [2.5.0](https://gitlab.com/to-be-continuous/azure/compare/2.4.0...2.5.0) (2025-08-12)


+6 −6
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/azure/gitlab-ci-azure@2.5.0
  - component: $CI_SERVER_FQDN/to-be-continuous/azure/gitlab-ci-azure@3.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/azure'
    ref: '2.5.0'
    ref: '3.0.0'
    file: '/templates/gitlab-ci-azure.yml'

variables:
@@ -357,9 +357,9 @@ The variant supports the following configuration:
```yaml
include:
  # main template
  - component: $CI_SERVER_FQDN/to-be-continuous/azure/gitlab-ci-azure@2.5.0
  - component: $CI_SERVER_FQDN/to-be-continuous/azure/gitlab-ci-azure@3.0.0
  # OIDC variant
  - component: $CI_SERVER_FQDN/to-be-continuous/azure/gitlab-ci-azure-oidc@2.5.0
  - component: $CI_SERVER_FQDN/to-be-continuous/azure/gitlab-ci-azure-oidc@3.0.0
    inputs:
      # common OIDC client ID & tenant ID for non-prod envs
      oidc-client-id: "<common client-id>"
@@ -406,9 +406,9 @@ With:
```yaml
include:
  # main template
  - component: $CI_SERVER_FQDN/to-be-continuous/azure/gitlab-ci-azure@2.5.0
  - component: $CI_SERVER_FQDN/to-be-continuous/azure/gitlab-ci-azure@3.0.0
  # Vault variant
  - component: $CI_SERVER_FQDN/to-be-continuous/azure/gitlab-ci-azure-vault@2.5.0
  - component: $CI_SERVER_FQDN/to-be-continuous/azure/gitlab-ci-azure-vault@3.0.0
    inputs:
      # audience claim for JWT
      vault-oidc-aud: "https://vault.acme.host"
+1 −1
Original line number Diff line number Diff line
@@ -23,7 +23,7 @@ variables:
.azure-base:
  services:
    - name: "$TBC_TRACKING_IMAGE"
      command: ["--service", "azure", "2.5.0"]
      command: ["--service", "azure", "3.0.0"]
    - name: "$TBC_VAULT_IMAGE"
      alias: "vault-secrets-provider"
      variables:
+1 −1
Original line number Diff line number Diff line
@@ -603,7 +603,7 @@ stages:
    entrypoint: [""]
  services:
    - name: "$TBC_TRACKING_IMAGE"
      command: ["--service", "azure", "2.5.0"]
      command: ["--service", "azure", "3.0.0"]
  before_script:
    - !reference [.azure-scripts]
    - install_ca_certs "${CUSTOM_CA_CERTS:-$DEFAULT_CA_CERTS}"