|
17 | 17 | you know what to do).
|
18 | 18 | -->
|
19 | 19 |
|
| 20 | +## Release 2.5.7 (2021-07-02) |
| 21 | + |
| 22 | +- The bundled extractors are updated to match the versions currently |
| 23 | + used on LGTM.com. These are newer than the last release (1.27) of |
| 24 | + LGTM Enterprise. If you plan to upload databases to an LGTM |
| 25 | + Enterprise 1.27 instance, you need to create them with release |
| 26 | + 2.4.6. |
| 27 | + |
| 28 | +### New features |
| 29 | + |
| 30 | +- `codeql database create` and `codeql database init` can now |
| 31 | + automatically recognise the languages present in checkouts of GitHub |
| 32 | + repositories by making an API call to the GitHub server. This |
| 33 | + requires a PAT token to either be set in the `GITHUB_TOKEN` |
| 34 | + environment variable, or passed by stdin with the |
| 35 | + `--github-auth-stdin` argument. |
| 36 | + |
| 37 | +- Operations that make outgoing HTTP calls (that is, `codeql github |
| 38 | + upload-results` and the language-detection feature described above) |
| 39 | + now support the use of HTTP proxies. To use a proxy, specify an |
| 40 | + `$https_proxy` environment variable for HTTPS requests or a |
| 41 | + `$http_proxy` environment variable for HTTP requests. If the |
| 42 | + `$no_proxy` variable is also set, these variables will be ignored |
| 43 | + and requests will be made without a proxy. |
| 44 | + |
| 45 | +### New language features |
| 46 | + |
| 47 | +- The QL language now has a new method `toUnicode` on the `int` |
| 48 | + type. This method converts Unicode codepoint to a one-character string. |
| 49 | + For example, `65.toUnicode() = "A"`, `128512.toUnicode()` results in |
| 50 | + a smiley, and `any(int i | i.toUnicode() = "A") = 65`. |
| 51 | + |
20 | 52 | ## Release 2.5.6 (2021-06-22)
|
21 | 53 |
|
22 | 54 | - The bundled extractors are updated to match the versions currently
|
|
0 commit comments