Skip to content

Commit c5317b5

Browse files
committed
chore(release): 1.34.0
1 parent 746e3b6 commit c5317b5

15 files changed

+38
-152
lines changed

CHANGELOG.md

+34
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,39 @@
11
# Changelog
22

3+
<a id='changelog-1.34.0'></a>
4+
5+
## 1.34.0 — 2024-11-27
6+
7+
### Added
8+
9+
- `ggshield config list` command now supports the `--json` option, allowing output in JSON format.
10+
11+
- All `secret scan` commands as well as the `api-status` and `quota` commands now supports the `--instance` option to allow using a different instance.
12+
13+
- The `api-status` command now prints where the API key and instance used come from.
14+
15+
### Changed
16+
17+
- `ggshield api-status --json` output now includes the instance URL.
18+
19+
- `ggshield secret scan repo` now uses `git clone --mirror` to retrieve more git objects.
20+
21+
- `ggshield secret scan ci` now scans all commits of a Pull Request in the following CI environments: Jenkins, Azure, Bitbucket and Drone.
22+
23+
### Deprecated
24+
25+
- ggshield now prints a warning message when it is being run executed by Python 3.8.
26+
27+
### Fixed
28+
29+
- When running `ggshield secret scan ci` in a GitLab CI, new commits from the target branch that are not on the feature branch will no longer be scanned.
30+
31+
- Take into account the `--allow-self-signed` option at all levels in `ggshield secret scan` commands.
32+
33+
- When `ggshield secret scan` is called with `--with-incident-details` and the token does not have the required scopes, the command now fails and an error message is printed.
34+
35+
- ggshield no longer fails to report secrets for patches with content in hunk header lines.
36+
337
<a id='changelog-1.33.0'></a>
438

539
## 1.33.0 — 2024-10-29

actions/iac/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ branding:
1414
color: 'blue'
1515
runs:
1616
using: 'docker'
17-
image: 'docker://gitguardian/ggshield:v1.33.0'
17+
image: 'docker://gitguardian/ggshield:v1.34.0'
1818
entrypoint: '/app/docker/actions-iac-entrypoint.sh'
1919
args:
2020
- ${{ inputs.args }}

actions/sca/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ branding:
1414
color: 'blue'
1515
runs:
1616
using: 'docker'
17-
image: 'docker://gitguardian/ggshield:v1.33.0'
17+
image: 'docker://gitguardian/ggshield:v1.34.0'
1818
entrypoint: '/app/docker/actions-sca-entrypoint.sh'
1919
args:
2020
- ${{ inputs.args }}

actions/secret/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ inputs:
1616

1717
runs:
1818
using: 'docker'
19-
image: 'docker://gitguardian/ggshield:v1.33.0'
19+
image: 'docker://gitguardian/ggshield:v1.34.0'
2020
entrypoint: '/app/docker/actions-secret-entrypoint.sh'
2121
args:
2222
- ${{ inputs.args }}

changelog.d/20241028_145054_salome.voltz_refacto_json_output.md

-7
This file was deleted.

changelog.d/20241030_095506_guillaume.valadon_git_clone_mirror.md

-3
This file was deleted.

changelog.d/20241104_101412_jonathan.griffe_improve_scan_ci_commit_selection.md

-7
This file was deleted.

changelog.d/20241107_194448_pierrelalanne_fix_with_incident_details_option.md

-41
This file was deleted.

changelog.d/20241112_170752_jonathan.griffe_fix_secret_scan_option.md

-3
This file was deleted.

changelog.d/20241112_172503_jonathan.griffe_expand_instance_option.md

-3
This file was deleted.

changelog.d/20241113_152802_jonathan.griffe_improve_api_status_output_info.md

-3
This file was deleted.

changelog.d/20241120_160018_salome.voltz_scrt_4913_ggshield_with_incident_details_does_not_tell_about_required.md

-41
This file was deleted.

changelog.d/20241125_113845_severine.bonnechere_scrt_5123_before_next_ggshield_release.md

-37
This file was deleted.

changelog.d/20241126_160355_aurelien.gateau_fix_patch_parser.md

-3
This file was deleted.

ggshield/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.33.0"
1+
__version__ = "1.34.0"

0 commit comments

Comments
 (0)