diff --git a/CHANGELOG.md b/CHANGELOG.md index ca259a59e1..e7ceeb0375 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog + + +## 1.26.0 — 2024-03-27 + +### Added + +- `ggshield auth login` learned to create tokens with extra scopes using the `--scopes` option. Using `ggshield auth login --scopes honeytokens:write` would create a token suitable for the `ggshield honeytokens` commands. + ## 1.25.0 — 2024-02-27 diff --git a/actions/iac/action.yml b/actions/iac/action.yml index 1c46f81573..ba7cb36dee 100644 --- a/actions/iac/action.yml +++ b/actions/iac/action.yml @@ -14,7 +14,7 @@ branding: color: 'blue' runs: using: 'docker' - image: 'docker://gitguardian/ggshield:v1.25.0' + image: 'docker://gitguardian/ggshield:v1.26.0' entrypoint: '/app/docker/actions-iac-entrypoint.sh' args: - ${{ inputs.args }} diff --git a/actions/sca/action.yml b/actions/sca/action.yml index cc93ffb2c0..d25036d3da 100644 --- a/actions/sca/action.yml +++ b/actions/sca/action.yml @@ -14,7 +14,7 @@ branding: color: 'blue' runs: using: 'docker' - image: 'docker://gitguardian/ggshield:v1.25.0' + image: 'docker://gitguardian/ggshield:v1.26.0' entrypoint: '/app/docker/actions-sca-entrypoint.sh' args: - ${{ inputs.args }} diff --git a/actions/secret/action.yml b/actions/secret/action.yml index f13b5231e4..8689567c06 100644 --- a/actions/secret/action.yml +++ b/actions/secret/action.yml @@ -16,7 +16,7 @@ inputs: runs: using: 'docker' - image: 'docker://gitguardian/ggshield:v1.25.0' + image: 'docker://gitguardian/ggshield:v1.26.0' entrypoint: '/app/docker/actions-secret-entrypoint.sh' args: - ${{ inputs.args }} diff --git a/changelog.d/20240305_173920_aurelien.gateau_oauth_scopes.md b/changelog.d/20240305_173920_aurelien.gateau_oauth_scopes.md deleted file mode 100644 index ec2e2d58ee..0000000000 --- a/changelog.d/20240305_173920_aurelien.gateau_oauth_scopes.md +++ /dev/null @@ -1,3 +0,0 @@ -### Added - -- `ggshield auth login` learned to create tokens with extra scopes using the `--scopes` option. Using `ggshield auth login --scopes honeytokens:write` would create a token suitable for the `ggshield honeytokens` commands. diff --git a/ggshield/__init__.py b/ggshield/__init__.py index d1067bcb69..d00934fb77 100644 --- a/ggshield/__init__.py +++ b/ggshield/__init__.py @@ -1 +1 @@ -__version__ = "1.25.0" +__version__ = "1.26.0"