okstra 0.186.0 → 0.186.1
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/package.json
CHANGED
package/runtime/BUILD.json
CHANGED
|
@@ -4957,14 +4957,6 @@ def _validate_resolved_approval(
|
|
|
4957
4957
|
f"final-report data.json: resolved approval clarification `{row_id}` "
|
|
4958
4958
|
"requires non-empty resolution.checkRefs."
|
|
4959
4959
|
)
|
|
4960
|
-
if (
|
|
4961
|
-
context.get("classification") == "noncritical-dissent"
|
|
4962
|
-
and resolution.get("disposition") != "accept-risk"
|
|
4963
|
-
):
|
|
4964
|
-
failures.append(
|
|
4965
|
-
f"final-report data.json: resolved noncritical-dissent `{row_id}` "
|
|
4966
|
-
"requires an explicit accept-risk disposition."
|
|
4967
|
-
)
|
|
4968
4960
|
|
|
4969
4961
|
|
|
4970
4962
|
def _has_successful_targeted_reverification(item: dict) -> bool:
|
|
@@ -7245,6 +7237,7 @@ def _validate_unresolved_tie_was_reverified(
|
|
|
7245
7237
|
for item in pbv.get("planItems") or []
|
|
7246
7238
|
if isinstance(item, dict)
|
|
7247
7239
|
and not item.get("carriedForwardFromSeq")
|
|
7240
|
+
and _stage_scope_bucket(item, pbv) == "in-scope"
|
|
7248
7241
|
and _is_unsettled_tie(item)
|
|
7249
7242
|
})
|
|
7250
7243
|
if not unsettled:
|
|
@@ -7277,6 +7270,7 @@ def _validate_tie_received_extra_vote(
|
|
|
7277
7270
|
for item in pbv.get("planItems") or []
|
|
7278
7271
|
if isinstance(item, dict)
|
|
7279
7272
|
and not item.get("carriedForwardFromSeq")
|
|
7273
|
+
and _stage_scope_bucket(item, pbv) == "in-scope"
|
|
7280
7274
|
and _is_even_blocking_split(item)
|
|
7281
7275
|
and _distinct_verdict_workers(item) < 3
|
|
7282
7276
|
})
|