fix(vscode): DQS tooltip shows 🚨 SECURITY BREACH on Z201 status (LSP-FIX-015) - #62
Merged
Conversation
…on pattern Signed-off-by: PythonWoods <gianluca.catalano@gmail.com>
…sion baseline Signed-off-by: PythonWoods <gianluca.catalano@gmail.com>
Signed-off-by: PythonWoods <gianluca.catalano@gmail.com>
…st formatting Signed-off-by: PythonWoods <gianluca.catalano@gmail.com>
…FIX-015) When zenzic score --json returns status='security_breach' (Z201 — credential detected), the DQS status bar and tooltip now clearly communicate the breach: - Status bar: ' Zenzic DQS: SECURITY BREACH' (was: ' Zenzic DQS: 0/100') - Tooltip: 🚨 ZENZIC — SECURITY BREACH DETECTED 🚨 with remediation instructions instead of misleading green '✓' category checkmarks. Normal (non-breach) status bar and tooltip rendering is unchanged. Acceptance Criteria (LSP-FIX-015 Fix 3): - A workspace with a Z201 error displays a clear Security Breach warning in the DQS tooltip. Signed-off-by: PythonWoods <gianluca.catalano@gmail.com>
Signed-off-by: PythonWoods <gianluca.catalano@gmail.com>
Signed-off-by: PythonWoods <gianluca.catalano@gmail.com>
Signed-off-by: PythonWoods <gianluca.catalano@gmail.com>
…(LSP-FEAT-003) Signed-off-by: PythonWoods <gianluca.catalano@gmail.com>
Signed-off-by: PythonWoods <gianluca.catalano@gmail.com>
Signed-off-by: PythonWoods <gianluca.catalano@gmail.com>
PythonWoods-Dev
force-pushed
the
fix/lsp-state-and-dqs
branch
from
July 28, 2026 15:17
362b5c5 to
08e618b
Compare
|
You are seeing this message because GitHub Code Scanning has recently been set up for this repository, or this pull request contains the workflow file for the Code Scanning tool. What Enabling Code Scanning Means:
For more information about GitHub Code Scanning, check out the documentation. |
…release sequence Signed-off-by: PythonWoods <gianluca.catalano@gmail.com>
Signed-off-by: PythonWoods <gianluca.catalano@gmail.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Objective
Corrects the DQS tooltip rendering when
zenzic scorereturnsstatus: 'security_breach'(Z201 — credential detected).Root Cause
The tooltip showed category checkmarks (✓ links, ✓ credentials) even when Z201 forced the score to 0. This was misleading — a credential breach had been detected but the UI displayed green checkmarks.
Changes
src/extension.tsWhen
status === 'security_breach':Zenzic DQS: SECURITY BREACH🚨 ZENZIC — SECURITY BREACH DETECTED 🚨with rotation instructions and Z201 reference.Normal (non-breach) rendering is unchanged.
Acceptance Criteria
just verifypasses 100% (ESLint, tsc, REUSE).