Skip to content

Commit 577b225

Browse files
author
Esben Sparre Andreasen
committed
JS: sort change notes table
1 parent ce0dd24 commit 577b225

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

change-notes/1.19/analysis-javascript.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,19 +30,19 @@
3030

3131
| **Query** | **Expected impact** | **Change** |
3232
|--------------------------------|----------------------------|----------------------------------------------|
33-
| Useless assignment to local variable | Fewer false-positive results | This rule now recognizes additional ways default values can be set. |
33+
| Client side cross-site scripting | More results | This rule now also flags HTML injection in the body of an email. |
34+
| Information exposure through a stack trace | More results | This rule now also flags cases where the entire exception object (including the stack trace) may be exposed. |
35+
| Missing CSRF middleware | Fewer false-positive results | This rule now recognizes additional CSRF protection middlewares. |
3436
| Regular expression injection | Fewer false-positive results | This rule now identifies calls to `String.prototype.search` with more precision. |
35-
| Unbound event handler receiver | Fewer false-positive results | This rule now recognizes additional ways class methods can be bound. |
3637
| Remote property injection | Fewer results | The precision of this rule has been revised to "medium". Results are no longer shown on LGTM by default. |
37-
| Missing CSRF middleware | Fewer false-positive results | This rule now recognizes additional CSRF protection middlewares. |
38+
| Self assignment | Fewer false-positive results | This rule now ignores self-assignments preceded by a JSDoc comment with a `@type` tag. |
3839
| Server-side URL redirect | More results | This rule now recognizes redirection calls in more cases. |
40+
| Unbound event handler receiver | Fewer false-positive results | This rule now recognizes additional ways class methods can be bound. |
41+
| Unused import | Fewer false-positive results | This rule no longer flags imports used by the `transform-react-jsx` Babel plugin. |
3942
| Unused variable, import, function or class | Fewer false-positive results | This rule now flags fewer variables that may be used by `eval` calls. |
4043
| Unused variable, import, function or class | Fewer results | This rule now flags import statements with multiple unused imports once. |
44+
| Useless assignment to local variable | Fewer false-positive results | This rule now recognizes additional ways default values can be set. |
4145
| Whitespace contradicts operator precedence | Fewer false-positive results | This rule no longer flags operators with asymmetric whitespace. |
42-
| Unused import | Fewer false-positive results | This rule no longer flags imports used by the `transform-react-jsx` Babel plugin. |
43-
| Self assignment | Fewer false-positive results | This rule now ignores self-assignments preceded by a JSDoc comment with a `@type` tag. |
44-
| Client side cross-site scripting | More results | This rule now also flags HTML injection in the body of an email. |
45-
| Information exposure through a stack trace | More results | This rule now also flags cases where the entire exception object (including the stack trace) may be exposed. |
4646

4747
## Changes to QL libraries
4848

0 commit comments

Comments
 (0)