Commit ced611b3 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/aws/compare/5.5.0...6.0.0) (2025-08-13)

* feat(vault)!: enable certificate verification ([e9d8b780](https://gitlab.com/to-be-continuous/aws/commit/e9d8b7802cc216e9fcbef0b24b85f5694f827d8c))

### BREAKING CHANGES

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


* feat(vault)!: enable certificate verification ([e9d8b78](https://gitlab.com/to-be-continuous/aws/commit/e9d8b7802cc216e9fcbef0b24b85f5694f827d8c))


### 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/aws/compare/5.4.0...5.5.0) (2025-08-12)


+8 −8
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/aws/gitlab-ci-aws@5.5.0
  - component: $CI_SERVER_FQDN/to-be-continuous/aws/gitlab-ci-aws@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/aws'
    ref: '5.5.0'
    ref: '6.0.0'
    file: '/templates/gitlab-ci-aws.yml'

variables:
@@ -329,7 +329,7 @@ It enables review, staging and production environments.

```yaml
include:
  - component: $CI_SERVER_FQDN/to-be-continuous/aws/gitlab-ci-aws@5.5.0
  - component: $CI_SERVER_FQDN/to-be-continuous/aws/gitlab-ci-aws@6.0.0
    inputs:
      review-enabled: true
      staging-enabled: true
@@ -412,7 +412,7 @@ It enables review, staging and production environments.

```yaml
include:
  - component: $CI_SERVER_FQDN/to-be-continuous/aws/gitlab-ci-aws@5.5.0
  - component: $CI_SERVER_FQDN/to-be-continuous/aws/gitlab-ci-aws@6.0.0
    inputs:
      # use an image with both aws and sam CLI
      cli-image: "pahud/aws-sam-cli:latest"
@@ -512,9 +512,9 @@ The variant supports the following configuration:
```yaml
include:
  # main template
  - component: $CI_SERVER_FQDN/to-be-continuous/aws/gitlab-ci-aws@5.5.0
  - component: $CI_SERVER_FQDN/to-be-continuous/aws/gitlab-ci-aws@6.0.0
  # OIDC variant
  - component: $CI_SERVER_FQDN/to-be-continuous/aws/gitlab-ci-aws-oidc@5.5.0
  - component: $CI_SERVER_FQDN/to-be-continuous/aws/gitlab-ci-aws-oidc@6.0.0
    inputs:
      # audience claim for JWT
      oidc-aud: "https://gitlab.acme.com"
@@ -562,9 +562,9 @@ With:
```yaml
include:
  # main template
  - component: $CI_SERVER_FQDN/to-be-continuous/aws/gitlab-ci-aws@5.5.0
  - component: $CI_SERVER_FQDN/to-be-continuous/aws/gitlab-ci-aws@6.0.0
  # Vault variant
  - component: $CI_SERVER_FQDN/to-be-continuous/aws/gitlab-ci-aws-vault@5.5.0
  - component: $CI_SERVER_FQDN/to-be-continuous/aws/gitlab-ci-aws-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:
.aws-base:
  services:
    - name: "$TBC_TRACKING_IMAGE"
      command: ["--service", "aws", "5.5.0"]
      command: ["--service", "aws", "6.0.0"]
    - name: "$TBC_VAULT_IMAGE"
      alias: "vault-secrets-provider"
      variables:
+1 −1
Original line number Diff line number Diff line
@@ -565,7 +565,7 @@ stages:
    entrypoint: [""]
  services:
    - name: "$TBC_TRACKING_IMAGE"
      command: ["--service", "aws", "5.5.0"]
      command: ["--service", "aws", "6.0.0"]
  before_script:
    - !reference [.aws-scripts]
    - install_ca_certs "${CUSTOM_CA_CERTS:-$DEFAULT_CA_CERTS}"