Skip to content

Commit af61d7b

Browse files
committed
fix: tighten drift detection keywords to prevent false positives
"drift" alone matched VidaiMock's "framing drift" (SSE context). Use "drift detection", "drift test", "api drift" instead.
1 parent 2998472 commit af61d7b

2 files changed

Lines changed: 8 additions & 2 deletions

File tree

docs/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1808,7 +1808,7 @@ <h2 class="fade-in">How aimock compares</h2>
18081808
<td>Drift detection</td>
18091809
<td class="col-aimock"><span class="yes">&#10003;</span></td>
18101810
<td><span class="no">&#10007;</span></td>
1811-
<td><span class="yes">&#10003;</span></td>
1811+
<td><span class="no">&#10007;</span></td>
18121812
<td><span class="no">&#10007;</span></td>
18131813
<td><span class="no">&#10007;</span></td>
18141814
<td><span class="no">&#10007;</span></td>

scripts/update-competitive-matrix.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,13 @@ const FEATURE_RULES: FeatureRule[] = [
183183
},
184184
{
185185
rowLabel: "Drift detection",
186-
keywords: ["drift", "conformance", "schema validation"],
186+
keywords: [
187+
"drift detection",
188+
"drift test",
189+
"api drift",
190+
"conformance test",
191+
"schema validation",
192+
],
187193
},
188194
{
189195
rowLabel: "Request journal",

0 commit comments

Comments
 (0)