Skip to content

Commit

Permalink
chore(release): 1.24.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pierrelalanne committed Jan 30, 2024
1 parent 6a53f05 commit 278fdcc
Show file tree
Hide file tree
Showing 9 changed files with 26 additions and 22 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# Changelog

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

## 1.24.0 — 2024-01-30

### Added

- Adds two new flags for `ggshield sca scan` commands, `--ignore-fixable` and `--ignore-not-fixable` so that the user can filter the returned incidents depending on if incidents can be fixed or not. Both flags cannot be used simultaneously.

### Changed

- Number of documents in a chunk is now adapted to the server payload.
- Moved some property from Scannable children classes up to Scannbable itself.

### Fixed

- IAC/SCA scans will scan new commits as intended for CI jobs on newly pushed branches.
- IAC/SCA scans will scan new commits as intended for CI jobs on the first push to a new repository

- In CI jobs, IAC/SCA scans on forced pushs no longer trigger an error but perform a scan on all commits instead.

- Fixes `ggshield sca scan` commands not taking some user parameters into account.

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

## 1.23.0 — 2024-01-09
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.23.0'
image: 'docker://gitguardian/ggshield:v1.24.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.23.0'
image: 'docker://gitguardian/ggshield:v1.24.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.23.0'
image: 'docker://gitguardian/ggshield:v1.24.0'
entrypoint: '/app/docker/actions-secret-entrypoint.sh'
args:
- ${{ inputs.args }}

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.23.0"
__version__ = "1.24.0"

0 comments on commit 278fdcc

Please sign in to comment.