|
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 |
|
14 | 16 | * 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 | 17 | - [Electron](https://electronjs.org/) |
| 18 | + - [Handlebars](https://www.npmjs.com/package/handlebars) |
| 19 | + - [Koa](https://www.npmjs.com/package/koa) |
19 | 20 | - [Node.js](https://nodejs.org/) |
20 | 21 | - [Socket.IO](https://socket.io/) |
21 | | - - [ws](https://github.com/websockets/ws) |
22 | 22 | - [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) |
| 23 | + - [chrome-remote-interface](https://www.npmjs.com/package/chrome-remote-interface) |
25 | 24 | - [for-in](https://www.npmjs.com/package/for-in) |
26 | 25 | - [for-own](https://www.npmjs.com/package/for-own) |
| 26 | + - [http2](https://nodejs.org/api/http2.html) |
| 27 | + - [lazy-cache](https://www.npmjs.com/package/lazy-cache) |
| 28 | + - [react](https://www.npmjs.com/package/react) |
27 | 29 | - [send](https://www.npmjs.com/package/send) |
| 30 | + - [typeahead.js](https://www.npmjs.com/package/typeahead.js) |
| 31 | + - [ws](https://github.com/websockets/ws) |
28 | 32 |
|
29 | 33 | ## New queries |
30 | 34 |
|
|
47 | 51 | | Use of call stack introspection in strict mode (`js/strict-mode-call-stack-introspection`) | Fewer false positive results | The query no longer flags expression statements. | |
48 | 52 | | Missing CSRF middleware (`js/missing-token-validation`) | Fewer false positive results | The query reports fewer duplicates and only flags handlers that explicitly access cookie data. | |
49 | 53 | | Uncontrolled data used in path expression (`js/path-injection`) | More results | This query now recognizes additional ways dangerous paths can be constructed. | |
| 54 | +| Uncontrolled command line (`js/command-line-injection`) | More results | This query now recognizes additional ways of constructing arguments to `cmd.exe` and `/bin/sh`. | |
50 | 55 |
|
51 | 56 | ## Changes to libraries |
52 | 57 |
|
|
0 commit comments