Skip to content

Commit fa42a2a

Browse files
committed
chore(release): 1.14.5
1 parent 253ab4e commit fa42a2a

10 files changed

+22
-19
lines changed

CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# Changelog
22

3+
<a id='changelog-1.14.5'></a>
4+
5+
## 1.14.5 — 2023-03-29
6+
7+
### Changed
8+
9+
- `ggshield iac scan` can now be called without arguments. In this case it scans the current directory.
10+
11+
- GGShield now displays an easier-to-understand error message when no API key has been set.
12+
13+
### Fixed
14+
15+
- Fixed GGShield not correctly reporting misspelled configuration keys if the key name contained `-` characters (#480).
16+
17+
- When called without an image tag, `ggshield secret scan docker` now automatically uses the `:latest` tag instead of scanning all versions of the image (#468).
18+
19+
- `ggshield secret scan` now properly stops with an error message when the GitGuardian API key is not set or invalid (#456).
20+
321
<a id='changelog-1.14.4'></a>
422

523
## 1.14.4 — 2023-02-23

actions/iac/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ branding:
2121
color: 'blue'
2222
runs:
2323
using: 'docker'
24-
image: 'docker://gitguardian/ggshield:v1.14.4'
24+
image: 'docker://gitguardian/ggshield:v1.14.5'
2525
entrypoint: '/app/docker/actions-iac-entrypoint.sh'
2626
args:
2727
- ${{ inputs.args }}

actions/secret/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ inputs:
2121

2222
runs:
2323
using: 'docker'
24-
image: 'docker://gitguardian/ggshield:v1.14.4'
24+
image: 'docker://gitguardian/ggshield:v1.14.5'
2525
entrypoint: '/app/docker/actions-secret-entrypoint.sh'
2626
args:
2727
- ${{ inputs.args }}

changelog.d/20230223_123152_aurelien.gateau_import.md

-3
This file was deleted.

changelog.d/20230224_175647_aurelien.gateau_import.md

-3
This file was deleted.

changelog.d/20230307_105105_aurelien.gateau_import.md

-3
This file was deleted.

changelog.d/20230310_130923_aurelien.gateau_import.md

-3
This file was deleted.

changelog.d/20230315_090907_aurelien.gateau_import.md

-3
This file was deleted.

ggshield/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.14.4"
1+
__version__ = "1.14.5"

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ module = ["tests.*"]
5151
ignore_errors = true
5252

5353
[tool.scriv]
54-
version = "literal: pygitguardian/__init__.py: __version__"
54+
version = "literal: ggshield/__init__.py: __version__"
5555
format = "md"
5656
md_header_level = "2"
5757
insert_marker = "# Changelog"

0 commit comments

Comments
 (0)