From 209f7611ef183cc26b9bf1a204ccad8e76d5ec6a Mon Sep 17 00:00:00 2001 From: Mick Grove Date: Mon, 9 Feb 2026 12:14:50 -0800 Subject: [PATCH] v1.80.0 --- README.md | 4 ++++ docs/ADVANCED.md | 7 ++++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index edd8e9f..7c3aa29 100644 --- a/README.md +++ b/README.md @@ -370,6 +370,10 @@ kingfisher scan /path/to/repo --rule kingfisher.aws # Display rule performance statistics kingfisher scan /path/to/repo --rule-stats +# Include full validation response bodies (not truncated to 512 characters) +# Useful for parsing complete validation responses (e.g., GitHub token metadata) +kingfisher scan /path/to/repo --full-validation-response + # Exclude specific paths kingfisher scan ./my-project \ --exclude '*.py' \ diff --git a/docs/ADVANCED.md b/docs/ADVANCED.md index d01d2ba..8346010 100644 --- a/docs/ADVANCED.md +++ b/docs/ADVANCED.md @@ -171,14 +171,19 @@ kingfisher scan /path/to/code --validation-timeout 15 # Set number of retry attempts (default: 1, range: 0-5) kingfisher scan /path/to/code --validation-retries 2 +# Include full validation response bodies without truncation +kingfisher scan /path/to/code --full-validation-response + # Combine options kingfisher scan /path/to/code \ --validation-timeout 20 \ - --validation-retries 3 + --validation-retries 3 \ + --full-validation-response ``` - `--validation-timeout SECONDS`: per-request and per-match timeout for validation (default: 10, range: 1-60). - `--validation-retries N`: number of retry attempts for validation requests (default: 1, range: 0-5). +- `--full-validation-response`: include complete validation response bodies without truncation. By default, validation responses are truncated to 512 characters for readability. This flag is useful when you need to parse full validation responses (e.g., GitHub token validation responses that include user metadata beyond the first 512 characters). ## Scanning in CI Pipelines