Skip to content

Commit

Permalink
chore(release): 1.32.0
Browse files Browse the repository at this point in the history
  • Loading branch information
agateau-gg committed Sep 24, 2024
1 parent 600d576 commit 767ecca
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 16 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

<a id='changelog-1.32.0'></a>

## 1.32.0 — 2024-09-24

### Added

- When scanning a merge commit, `ggshield secret scan pre-commit` now skips files that merged without conflicts. This makes merging the default branch into a topic branch much faster. You can use the `--scan-all-merge-files` option to go back to the previous behavior.

- `ggshield secret scan` commands now provide the `--with-incident-details` option to output more information about known incidents (JSON and SARIF outputs only).

- It is now possible to ignore a secret manually using `ggshield secret ignore SECRET_SHA --name NAME`.

### Fixed

- The git commit parser has been reworked, fixing cases where commands scanning commits would fail.

<a id='changelog-1.31.0'></a>

## 1.31.0 — 2024-08-27
Expand Down
2 changes: 1 addition & 1 deletion actions/iac/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ branding:
color: 'blue'
runs:
using: 'docker'
image: 'docker://gitguardian/ggshield:v1.31.0'
image: 'docker://gitguardian/ggshield:v1.32.0'
entrypoint: '/app/docker/actions-iac-entrypoint.sh'
args:
- ${{ inputs.args }}
2 changes: 1 addition & 1 deletion actions/sca/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ branding:
color: 'blue'
runs:
using: 'docker'
image: 'docker://gitguardian/ggshield:v1.31.0'
image: 'docker://gitguardian/ggshield:v1.32.0'
entrypoint: '/app/docker/actions-sca-entrypoint.sh'
args:
- ${{ inputs.args }}
2 changes: 1 addition & 1 deletion actions/secret/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ inputs:

runs:
using: 'docker'
image: 'docker://gitguardian/ggshield:v1.31.0'
image: 'docker://gitguardian/ggshield:v1.32.0'
entrypoint: '/app/docker/actions-secret-entrypoint.sh'
args:
- ${{ inputs.args }}

This file was deleted.

This file was deleted.

3 changes: 0 additions & 3 deletions changelog.d/20240910_170441_aurelien.gateau_fix_git_parser.md

This file was deleted.

This file was deleted.

2 changes: 1 addition & 1 deletion ggshield/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.31.0"
__version__ = "1.32.0"

0 comments on commit 767ecca

Please sign in to comment.