|
9 | 9 |
|
10 | 10 | * Imports that rely on path-mappings from a `tsconfig.json` file can now be resolved. |
11 | 11 |
|
| 12 | +* Export declarations of the form `export * as ns from "x"` are now analyzed more precisely. |
| 13 | + |
12 | 14 | * The analysis of sanitizer guards has improved, leading to fewer false-positive results from the security queries. |
13 | 15 |
|
| 16 | +* Calls can now be resolved to class members in more cases, leading to more results from the security queries. |
| 17 | + |
14 | 18 | * Support for the following frameworks and libraries has been improved: |
15 | | - - [react](https://www.npmjs.com/package/react) |
16 | | - - [typeahead.js](https://www.npmjs.com/package/typeahead.js) |
17 | | - - [Handlebars](https://www.npmjs.com/package/handlebars) |
18 | 19 | - [Electron](https://electronjs.org/) |
| 20 | + - [Handlebars](https://www.npmjs.com/package/handlebars) |
| 21 | + - [Koa](https://www.npmjs.com/package/koa) |
19 | 22 | - [Node.js](https://nodejs.org/) |
20 | 23 | - [Socket.IO](https://socket.io/) |
21 | | - - [ws](https://github.com/websockets/ws) |
22 | 24 | - [WebSocket](https://developer.mozilla.org/en-US/docs/Web/API/WebSockets_API) |
23 | | - - [Koa](https://www.npmjs.com/package/koa) |
24 | | - - [lazy-cache](https://www.npmjs.com/package/lazy-cache) |
| 25 | + - [chrome-remote-interface](https://www.npmjs.com/package/chrome-remote-interface) |
25 | 26 | - [for-in](https://www.npmjs.com/package/for-in) |
26 | 27 | - [for-own](https://www.npmjs.com/package/for-own) |
| 28 | + - [http2](https://nodejs.org/api/http2.html) |
| 29 | + - [lazy-cache](https://www.npmjs.com/package/lazy-cache) |
| 30 | + - [react](https://www.npmjs.com/package/react) |
27 | 31 | - [send](https://www.npmjs.com/package/send) |
28 | | - - [chrome-remote-interface](https://www.npmjs.com/package/chrome-remote-interface) |
| 32 | + - [typeahead.js](https://www.npmjs.com/package/typeahead.js) |
| 33 | + - [ws](https://github.com/websockets/ws) |
29 | 34 |
|
30 | 35 | ## New queries |
31 | 36 |
|
|
35 | 40 | | Regular expression always matches (`js/regex/always-matches`) | correctness, regular-expressions | Highlights regular expression checks that trivially succeed by matching an empty substring. Results are shown on LGTM by default. | |
36 | 41 | | Missing await (`js/missing-await`) | correctness | Highlights expressions that operate directly on a promise object in a nonsensical way, instead of awaiting its result. Results are shown on LGTM by default. | |
37 | 42 | | Prototype pollution in utility function (`js/prototype-pollution-utility`) | security, external/cwe/cwe-400, external/cwe/cwe-471 | Highlights recursive copying operations that are susceptible to prototype pollution. Results are shown on LGTM by default. | |
| 43 | +| Unsafe jQuery plugin (`js/unsafe-jquery-plugin`) | Highlights potential XSS vulnerabilities in unsafely designed jQuery plugins. Results are shown on LGTM by default. | |
38 | 44 |
|
39 | 45 | ## Changes to existing queries |
40 | 46 |
|
|
0 commit comments