Commit 09bdf677 authored by semantic-release-bot's avatar semantic-release-bot
Browse files

chore(release): 6.2.0 [skip ci]

# [6.2.0](https://gitlab.com/to-be-continuous/aws/compare/6.1.1...6.2.0) (2026-03-29)

### Bug Fixes

* **unscope_vars:** replace glob pattern matching with regex matching ([fdb26a99](https://gitlab.com/to-be-continuous/aws/commit/fdb26a995ca3cd6ea475fb7e9adfe691fd3a6723))

### Features

* support CA certs provided as file ([8a1f96fd](https://gitlab.com/to-be-continuous/aws/commit/8a1f96fdd1a84f7501d749af2fa35accda3e010c))
parent 8a1f96fd
Loading
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
# [6.2.0](https://gitlab.com/to-be-continuous/aws/compare/6.1.1...6.2.0) (2026-03-29)


### Bug Fixes

* **unscope_vars:** replace glob pattern matching with regex matching ([fdb26a9](https://gitlab.com/to-be-continuous/aws/commit/fdb26a995ca3cd6ea475fb7e9adfe691fd3a6723))


### Features

* support CA certs provided as file ([8a1f96f](https://gitlab.com/to-be-continuous/aws/commit/8a1f96fdd1a84f7501d749af2fa35accda3e010c))

## [6.1.1](https://gitlab.com/to-be-continuous/aws/compare/6.1.0...6.1.1) (2026-02-22)


+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@6.1.1
  - component: $CI_SERVER_FQDN/to-be-continuous/aws/gitlab-ci-aws@6.2.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: '6.1.1'
    ref: '6.2.0'
    file: '/templates/gitlab-ci-aws.yml'

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

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

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