Skip to content

Commit

Permalink
chore(release): 1.29.0
Browse files Browse the repository at this point in the history
  • Loading branch information
agateau-gg committed Jun 25, 2024
1 parent f58c2da commit f842edc
Show file tree
Hide file tree
Showing 13 changed files with 41 additions and 103 deletions.
40 changes: 37 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,46 @@
# Changelog

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

## 1.29.0 — 2024-06-25

### Removed

- The `--all` option of the `ggshield sca scan ci` and `ggshield iac scan ci` commands has been removed.

### Added

- `ggshield secret scan path` now provides a `--use-gitignore` option to honor `.gitignore` and related files (#801).

- A new secret scan command, `ggshield secret scan changes`, has been added to scan changes between the current state of a repository checkout and its default branch.

- GGShield is now available as a standalone executable on Windows.

### Changed

- The behavior of the `ggshield sca scan ci` and `ggshield iac scan ci` commands have changed. These commands are now expected to run in merge-request CI pipelines only, and will compute the diff exactly associated with the merge request.

### Deprecated

- Running `ggshield sca scan ci` or `ggshield iac scan ci` outside of a merge request CI pipeline is now deprecated.

### Fixed

- Errors thrown during `ggshield auth login` flow with an invalid instance URL are handled and the stack trace is no longer displayed on the console.

- Patch symbols at the start of lines are now always displayed, even for single line secrets.

- The `ggshield auth login` command now respects the `--allow-self-signed` flag.

- GGShield now exits with a proper error message instead of crashing when it receives an HTTP response without `Content-Type` header.

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

## 1.28.0 — 2024-05-29

### Added

- The SCA config `ignored_vulnerabilities` option now supports taking a CVE id as identifier.
- The SCA config `ignored_vulnerabilities` option now supports taking a CVE ID as identifier.

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

Expand All @@ -22,7 +56,7 @@

- We now provide signed .pkg files for macOS.

- Add `This feature is still in beta, its behavior may change in future versions` warning to iac scan all
- Add a `This feature is still in beta, its behavior may change in future versions` warning to `ggshield iac scan all` command.

### Changed

Expand Down Expand Up @@ -238,7 +272,7 @@

### Removed

- ggshield now refuses to install on python < 3.8
- ggshield now refuses to install on python < 3.8.

### Added

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.28.0'
image: 'docker://gitguardian/ggshield:v1.29.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.28.0'
image: 'docker://gitguardian/ggshield:v1.29.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.28.0'
image: 'docker://gitguardian/ggshield:v1.29.0'
entrypoint: '/app/docker/actions-secret-entrypoint.sh'
args:
- ${{ inputs.args }}

This file was deleted.

41 changes: 0 additions & 41 deletions changelog.d/20240520_164203_samuel.guillaume_secret_scan_change.md

This file was deleted.

This file was deleted.

3 changes: 0 additions & 3 deletions changelog.d/20240604_110454_fnareoh_refacto_censor_lines.md

This file was deleted.

This file was deleted.

This file was deleted.

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.28.0"
__version__ = "1.29.0"

0 comments on commit f842edc

Please sign in to comment.