Skip to content

Commit

Permalink
chore(release): 1.27.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fnareoh committed Apr 30, 2024
1 parent 184f689 commit b2bcfeb
Show file tree
Hide file tree
Showing 14 changed files with 36 additions and 31 deletions.
32 changes: 32 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,37 @@
# Changelog

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

## 1.27.0 — 2024-04-30

### Removed

- The `This feature is still in beta, its behavior may change in future versions` warning is no longer displayed for sca commands.

### Added

- It is now possible to customize the remediation message printed by GGShield pre-receive hook. This can be done by setting the message in the `secret.prereceive_remediation_message` configuration key. Thanks a lot to @Renizmy for this feature.

- 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

### Changed

- Linux .deb and .rpm packages now use the binaries produced by pyinstaller. They no longer depend on Python.

### Deprecated

- Dash-separated configuration keys are now deprecated, they should be replaced with underscore-separated keys. For example `show-secrets` should become `show_secrets`. GGShield still supports reading from dash-separate configuration keys, but it prints a warning when it finds one.

### Fixed

- GGShield commands working with commits no longer fail when parsing a commit without any author.

- Configuration keys defined in the global configuration file are no longer ignored if a local configuration file exists.

- The option `--exclude PATTERN` is no longer ignored by the command `ggshield secret scan repo`.

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

## 1.26.0 — 2024-03-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.26.0'
image: 'docker://gitguardian/ggshield:v1.27.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.26.0'
image: 'docker://gitguardian/ggshield:v1.27.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.26.0'
image: 'docker://gitguardian/ggshield:v1.27.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.

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.26.0"
__version__ = "1.27.0"

0 comments on commit b2bcfeb

Please sign in to comment.