Commit e83c5182 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/defectdojo/compare/2.9.0...3.0.0) (2025-08-13)

* feat(vault)!: enable certificate verification ([b86bbb2d](https://gitlab.com/to-be-continuous/defectdojo/commit/b86bbb2d60e9e7ae8a0d825ed2f5acf9c67450a4))

### Features

* modular workflow rules ([1599001e](https://gitlab.com/to-be-continuous/defectdojo/commit/1599001e737e03a49cd8230437fde02a0e571713))

### BREAKING CHANGES

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


* feat(vault)!: enable certificate verification ([b86bbb2](https://gitlab.com/to-be-continuous/defectdojo/commit/b86bbb2d60e9e7ae8a0d825ed2f5acf9c67450a4))


### Features

* modular workflow rules ([1599001](https://gitlab.com/to-be-continuous/defectdojo/commit/1599001e737e03a49cd8230437fde02a0e571713))


### BREAKING CHANGES

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

# [2.9.0](https://gitlab.com/to-be-continuous/defectdojo/compare/2.8.0...2.9.0) (2025-07-24)


+4 −4
Original line number Diff line number Diff line
@@ -47,7 +47,7 @@ Add the following to your `.gitlab-ci.yml`:
```yaml
include:
  # 1: include the component
  - component: $CI_SERVER_FQDN/to-be-continuous/defectdojo/gitlab-ci-defectdojo@2.9.0
  - component: $CI_SERVER_FQDN/to-be-continuous/defectdojo/gitlab-ci-defectdojo@3.0.0
    # 2: set/override component inputs
    inputs:
      server-url: "https://defectdojo.acme.host" # ⚠ this is only an example
@@ -61,7 +61,7 @@ Add the following to your `.gitlab-ci.yml`:
include:
  # 1: include the template
  - project: "to-be-continuous/defectdojo"
    ref: "2.9.0"
    ref: "3.0.0"
    file: "/templates/gitlab-ci-defectdojo.yml"

variables:
@@ -215,13 +215,13 @@ With:
```yaml
include:
  # main template
  - component: $CI_SERVER_FQDN/to-be-continuous/defectdojo/gitlab-ci-defectdojo@2.9.0
  - component: $CI_SERVER_FQDN/to-be-continuous/defectdojo/gitlab-ci-defectdojo@3.0.0
    inputs:
      server-url: "https://defectdojo.acme.host" # ⚠ this is only an example
      # Secrets managed by Vault
      api-key: "@url@http://vault-secrets-provider/api/secrets/b7ecb6ebabc231/defectdojo/credentials?field=token"
  # Vault variant
  - component: $CI_SERVER_FQDN/to-be-continuous/defectdojo/gitlab-ci-defectdojo-vault@2.9.0
  - component: $CI_SERVER_FQDN/to-be-continuous/defectdojo/gitlab-ci-defectdojo-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
@@ -22,7 +22,7 @@ variables:
defectdojo:
  services:
    - name: "$TBC_TRACKING_IMAGE"
      command: ["--service", "defectdojo", "2.9.0"]
      command: ["--service", "defectdojo", "3.0.0"]
    - name: "$TBC_VAULT_IMAGE"
      alias: "vault-secrets-provider"
      variables:
+1 −1
Original line number Diff line number Diff line
@@ -882,7 +882,7 @@ defectdojo:
    entrypoint: [""]
  services:
    - name: "$TBC_TRACKING_IMAGE"
      command: ["--service", "defectdojo", "2.9.0"]
      command: ["--service", "defectdojo", "3.0.0"]
  stage: .post
  before_script:
    - cd ${DEFECTDOJO_DIR}