Rebrand Pinscope to Periscope across product and codebase.

Rename the core package to periscopex, update UI/docs/Docker/deploy defaults to periscope.michelebigi.it, and keep legacy version/storage key aliases so existing projects keep working.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-09-13 20:02:04 +02:00
co-authored by Cursor
parent 556306bf4d
commit 8d2b85600f
177 changed files with 869 additions and 766 deletions
+3 -3
View File
@@ -15,7 +15,7 @@ from __future__ import annotations
import json
from backend.pinscopex.models import Finding
from backend.periscopex.models import Finding
from backend.services.dedupe_findings import (
SUBMIT_DEDUPED_SCHEMA,
_build_deduped,
@@ -78,13 +78,13 @@ def test_dedupe_passthrough_keeps_cad_fields():
reference="ref 1",
net="USB_D+",
pins=["U2.1"],
rule_id="PS-USB-001",
rule_id="PE-USB-001",
)
]
groups = [{"member_indices": [1], "change_rationale": "passthrough"}]
built = _build_deduped(groups, originals)
assert built is not None
assert built[0].rule_id == "PS-USB-001"
assert built[0].rule_id == "PE-USB-001"
assert built[0].net == "USB_D+"
assert built[0].pins == ["U2.1"]