arkaos 2.44.0 → 2.45.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.
|
|
1
|
+
2.45.0
|
|
Binary file
|
|
Binary file
|
|
@@ -106,21 +106,13 @@ def _format_leak_check_result(report) -> CheckResult:
|
|
|
106
106
|
reason=f"{report.files_scanned} file(s) scanned, no leaks",
|
|
107
107
|
)
|
|
108
108
|
first = report.hits[0]
|
|
109
|
-
# PR22 v2.44.0 introduces this check at WARNING severity to ship the
|
|
110
|
-
# scanner without blocking on pre-existing leaks in test fixtures
|
|
111
|
-
# (test_dreaming.py and siblings) + historical CHANGELOG/ADR
|
|
112
|
-
# references. PR23 cleans those up and flips severity to "blocking".
|
|
113
109
|
return CheckResult(
|
|
114
|
-
name="no-client-name-leaks", passed=False, severity="
|
|
110
|
+
name="no-client-name-leaks", passed=False, severity="blocking",
|
|
115
111
|
reason=(
|
|
116
112
|
f"{len(report.hits)} leak(s) — first: "
|
|
117
113
|
f"{first.path.name}:{first.line_number} matched `{first.matched_token}`"
|
|
118
114
|
),
|
|
119
|
-
remediation=
|
|
120
|
-
"move the literal to ~/.arkaos/ or sanitize before commit; "
|
|
121
|
-
"PR22 scope intentionally warning-only — PR23 will scrub "
|
|
122
|
-
"historical leaks and flip this check to blocking"
|
|
123
|
-
),
|
|
115
|
+
remediation="move the literal to ~/.arkaos/ or sanitize before commit",
|
|
124
116
|
)
|
|
125
117
|
|
|
126
118
|
|
package/package.json
CHANGED