From 767ecca08e4cec0e1ffcdfb2d1c63a8fadc2454f Mon Sep 17 00:00:00 2001 From: Aurelien Gateau Date: Tue, 24 Sep 2024 11:08:46 +0200 Subject: [PATCH] chore(release): 1.32.0 --- CHANGELOG.md | 16 ++++++++++++++++ actions/iac/action.yml | 2 +- actions/sca/action.yml | 2 +- actions/secret/action.yml | 2 +- ...59_optimize_files_to_scan_on_merge_commits.md | 3 --- ...d_output_expose_incident_date_and_severity.md | 3 --- ...0910_170441_aurelien.gateau_fix_git_parser.md | 3 --- ...12_120216_salome.voltz_add_ignore_hash_cmd.md | 3 --- ggshield/__init__.py | 2 +- 9 files changed, 20 insertions(+), 16 deletions(-) delete mode 100644 changelog.d/20240819_162411_fnareoh_scrt_4759_optimize_files_to_scan_on_merge_commits.md delete mode 100644 changelog.d/20240906_141336_fnareoh_scrt_4693_ggshield_output_expose_incident_date_and_severity.md delete mode 100644 changelog.d/20240910_170441_aurelien.gateau_fix_git_parser.md delete mode 100644 changelog.d/20240912_120216_salome.voltz_add_ignore_hash_cmd.md diff --git a/CHANGELOG.md b/CHANGELOG.md index ac6d5c8dfd..a1e8c4145a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog + + +## 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. + ## 1.31.0 — 2024-08-27 diff --git a/actions/iac/action.yml b/actions/iac/action.yml index 2779812abc..b9efa86d2d 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.31.0' + image: 'docker://gitguardian/ggshield:v1.32.0' entrypoint: '/app/docker/actions-iac-entrypoint.sh' args: - ${{ inputs.args }} diff --git a/actions/sca/action.yml b/actions/sca/action.yml index 60240ee6e1..7d4314ae02 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.31.0' + image: 'docker://gitguardian/ggshield:v1.32.0' entrypoint: '/app/docker/actions-sca-entrypoint.sh' args: - ${{ inputs.args }} diff --git a/actions/secret/action.yml b/actions/secret/action.yml index 5163c353ba..c1577c1790 100644 --- a/actions/secret/action.yml +++ b/actions/secret/action.yml @@ -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 }} diff --git a/changelog.d/20240819_162411_fnareoh_scrt_4759_optimize_files_to_scan_on_merge_commits.md b/changelog.d/20240819_162411_fnareoh_scrt_4759_optimize_files_to_scan_on_merge_commits.md deleted file mode 100644 index c3275ad12d..0000000000 --- a/changelog.d/20240819_162411_fnareoh_scrt_4759_optimize_files_to_scan_on_merge_commits.md +++ /dev/null @@ -1,3 +0,0 @@ -### 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. diff --git a/changelog.d/20240906_141336_fnareoh_scrt_4693_ggshield_output_expose_incident_date_and_severity.md b/changelog.d/20240906_141336_fnareoh_scrt_4693_ggshield_output_expose_incident_date_and_severity.md deleted file mode 100644 index 57ee41e9c0..0000000000 --- a/changelog.d/20240906_141336_fnareoh_scrt_4693_ggshield_output_expose_incident_date_and_severity.md +++ /dev/null @@ -1,3 +0,0 @@ -### Added - -- Add `--with-incident-details` to output more information about known incidents (JSON and SARIF outputs only). diff --git a/changelog.d/20240910_170441_aurelien.gateau_fix_git_parser.md b/changelog.d/20240910_170441_aurelien.gateau_fix_git_parser.md deleted file mode 100644 index 0c5a8a48f9..0000000000 --- a/changelog.d/20240910_170441_aurelien.gateau_fix_git_parser.md +++ /dev/null @@ -1,3 +0,0 @@ -### Fixed - -- The git commit parser have been reworked, fixing cases where commands scanning commits would fail. diff --git a/changelog.d/20240912_120216_salome.voltz_add_ignore_hash_cmd.md b/changelog.d/20240912_120216_salome.voltz_add_ignore_hash_cmd.md deleted file mode 100644 index e28e518f6d..0000000000 --- a/changelog.d/20240912_120216_salome.voltz_add_ignore_hash_cmd.md +++ /dev/null @@ -1,3 +0,0 @@ -### Added - -- It is now possible to ignore a secret manually using `ggshield secret ignore SECRET_SHA --name NAME`. diff --git a/ggshield/__init__.py b/ggshield/__init__.py index ac4c64769c..8b5ae55d95 100644 --- a/ggshield/__init__.py +++ b/ggshield/__init__.py @@ -1 +1 @@ -__version__ = "1.31.0" +__version__ = "1.32.0"