diff --git a/change-notes/1.22/analysis-javascript.md b/change-notes/1.22/analysis-javascript.md index 08f3cc7df5f..6631f4a3262 100644 --- a/change-notes/1.22/analysis-javascript.md +++ b/change-notes/1.22/analysis-javascript.md @@ -29,6 +29,7 @@ | **Query** | **Expected impact** | **Change** | |--------------------------------|------------------------------|---------------------------------------------------------------------------| | Shift out of range | Fewer false positive results | This rule now correctly handles BigInt shift operands. | +| Conflicting HTML element attributes | Fewer results | Results are no longer shown on LGTM by default. | | Superfluous trailing arguments | Fewer false-positive results. | This rule no longer flags calls to placeholder functions that trivially throw an exception. | ## Changes to QL libraries diff --git a/javascript/ql/src/DOM/ConflictingAttributes.ql b/javascript/ql/src/DOM/ConflictingAttributes.ql index 44d29000fc4..58657da9693 100644 --- a/javascript/ql/src/DOM/ConflictingAttributes.ql +++ b/javascript/ql/src/DOM/ConflictingAttributes.ql @@ -8,7 +8,7 @@ * @tags maintainability * correctness * external/cwe/cwe-758 - * @precision very-high + * @precision medium */ import javascript