Skip to content

Commit 62c1645

Browse files
committed
changelog for 2.5.7
1 parent 1c2a7ac commit 62c1645

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

CHANGELOG.md

+32
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,38 @@
1717
you know what to do).
1818
-->
1919

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+
2052
## Release 2.5.6 (2021-06-22)
2153

2254
- The bundled extractors are updated to match the versions currently

0 commit comments

Comments
 (0)