📦 deps(thirdparty): update snapshots

This commit is contained in:
ci[bot]
2026-07-03 16:04:10 +00:00
parent 2bf579321a
commit b40381458b
482 changed files with 8324 additions and 2007 deletions
@@ -17,6 +17,19 @@ import sys
import time
from pathlib import Path
def safe_user_path(path_value, base_dir="."):
"""Resolve a CLI path under the current workspace."""
if base_dir != ".":
raise ValueError("Custom base directories are not supported for CLI paths")
base_path = Path.cwd().resolve()
resolved_path = Path(path_value).expanduser().resolve()
try:
resolved_path.relative_to(base_path)
except ValueError as exc:
raise ValueError(f"Path escapes allowed directory: {path_value}") from exc
return resolved_path
# ---------------------------------------------------------------------------
# Import from the 007 config hub (parent directory)
# ---------------------------------------------------------------------------
@@ -850,27 +863,26 @@ def discover_dependency_files(target: Path) -> list[Path]:
"""
found: list[Path] = []
for root, dirs, filenames in os.walk(target):
dirs[:] = [d for d in dirs if d not in config.SKIP_DIRECTORIES]
for fpath in safe_user_path(target).rglob("*"):
if not fpath.is_file() or any(part in config.SKIP_DIRECTORIES for part in fpath.parts):
continue
fname = fpath.name
fname_lower = fname.lower()
for fname in filenames:
fpath = Path(root) / fname
fname_lower = fname.lower()
# Exact name matches
if fname in ALL_DEP_FILES:
found.append(fpath)
continue
# Exact name matches
if fname in ALL_DEP_FILES:
found.append(fpath)
continue
# requirements*.txt variants
if _REQUIREMENTS_RE.match(fname):
found.append(fpath)
continue
# requirements*.txt variants
if _REQUIREMENTS_RE.match(fname):
found.append(fpath)
continue
# Docker files (prefix match)
if any(fname_lower.startswith(prefix.lower()) for prefix in DOCKER_PREFIXES):
found.append(fpath)
continue
# Docker files (prefix match)
if any(fname_lower.startswith(prefix.lower()) for prefix in DOCKER_PREFIXES):
found.append(fpath)
continue
return found
@@ -1158,7 +1170,7 @@ def run_scan(
config.ensure_directories()
target = Path(target_path).resolve()
target = safe_user_path(target_path).resolve()
if not target.exists():
logger.error("Target path does not exist: %s", target)
sys.exit(1)