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

chore(release): 8.0.0 [skip ci]

# [8.0.0](https://gitlab.com/to-be-continuous/s3/compare/7.4.0...8.0.0) (2025-08-26)

* feat(vault)!: enable certificate verification ([8f13bcf6](https://gitlab.com/to-be-continuous/s3/commit/8f13bcf6b00a5a0b754fb94bed481208f4103bba))

### Bug Fixes

* **vault:** avoid nested variable for id_token ([886f6f4d](https://gitlab.com/to-be-continuous/s3/commit/886f6f4d94c639de43f6d3af5a6f06e869e66c4d))

### Features

* modular workflow rules ([79f59612](https://gitlab.com/to-be-continuous/s3/commit/79f59612488ad16566e7787fee00cb9ff4bb61fd))

### BREAKING CHANGES

* self-signed certificates must be declared in your GitLab DEFAULT_CA_CERTS or with VAULT_CA_CERTS variable
parent 886f6f4d
Loading
Loading
Loading
Loading
Loading
+20 −0
Original line number Diff line number Diff line
# [8.0.0](https://gitlab.com/to-be-continuous/s3/compare/7.4.0...8.0.0) (2025-08-26)


* feat(vault)!: enable certificate verification ([8f13bcf](https://gitlab.com/to-be-continuous/s3/commit/8f13bcf6b00a5a0b754fb94bed481208f4103bba))


### Bug Fixes

* **vault:** avoid nested variable for id_token ([886f6f4](https://gitlab.com/to-be-continuous/s3/commit/886f6f4d94c639de43f6d3af5a6f06e869e66c4d))


### Features

* modular workflow rules ([79f5961](https://gitlab.com/to-be-continuous/s3/commit/79f59612488ad16566e7787fee00cb9ff4bb61fd))


### BREAKING CHANGES

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

# [7.4.0](https://gitlab.com/to-be-continuous/s3/compare/7.3.2...7.4.0) (2025-07-24)


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

variables:
@@ -351,9 +351,9 @@ With:
```yaml
include:
  # main template
  - component: $CI_SERVER_FQDN/to-be-continuous/s3/gitlab-ci-s3@7.4.0
  - component: $CI_SERVER_FQDN/to-be-continuous/s3/gitlab-ci-s3@8.0.0
  # Vault variant
  - component: $CI_SERVER_FQDN/to-be-continuous/s3/gitlab-ci-s3-vault@7.4.0
  - component: $CI_SERVER_FQDN/to-be-continuous/s3/gitlab-ci-s3-vault@8.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:
.s3-base:
  services:
    - name: "$TBC_TRACKING_IMAGE"
      command: ["--service", "s3", "7.4.0"]
      command: ["--service", "s3", "8.0.0"]
    - name: "$TBC_VAULT_IMAGE"
      alias: "vault-secrets-provider"
      variables:
+1 −1
Original line number Diff line number Diff line
@@ -641,7 +641,7 @@ stages:
    entrypoint: [""]
  services:
    - name: "$TBC_TRACKING_IMAGE"
      command: ["--service", "s3", "7.4.0"]
      command: ["--service", "s3", "8.0.0"]
  before_script:
    - !reference [.s3-scripts]
    - install_ca_certs "${CUSTOM_CA_CERTS:-$DEFAULT_CA_CERTS}"