-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Prepare 7.9.0 release * Put back the v7.8.0 version We need this to ensure the versioning used during testing on GitHub.com doesn't cause caching problems in future * fix errors on non-UTF-8 encodings Some files failed with "invalid byte sequence in UTF-8 (ArgumentError)" when BlobHelper#lines was called. Some problematic files include UTF-16LE samples such as test/fixtures/Data/utf16le. Errors were not present when computing stats from git repositories, since git blobs are always read as ASCII-8BIT and that was working correctly. However, when using FileBlob, encoding could be ASCII-8BIT, UTF-8 or other, depending on the runtime value of Encoding.external_encoding. Tests were not catching the error since they were forcing Encoding.external_encoding to be ASCII-8BIT (introduced in #1211). So the error would only be seen in wild usage (see issue #353). This commit forces ASCII-8BIT on File.read calls. The error is still present if using memory blobs with other encodings. * Decrease expected error count * Set version to 7.9.0 Co-authored-by: Rick Winfrey <rewinfrey@github.com> Co-authored-by: Santiago M. Mola <santi@mola.io>
- Loading branch information
1 parent
f5125ea
commit 40992ba
Showing
56 changed files
with
59 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
7.8.0 | ||
7.9.0 |
Submodule CodeMirror
updated
from 96d8d5 to 856c3a
Submodule MATLAB-Language-grammar
updated
35 files
Submodule MagicPython
updated
2 files
+1 −1 | grammars/MagicPython.tmLanguage | |
+1 −1 | grammars/MagicRegExp.tmLanguage |
Submodule atom-language-innosetup
updated
5 files
+4 −2 | lib/main.coffee | |
+0 −15 | lib/util.coffee | |
+318 −36 | package-lock.json | |
+1 −0 | package.json | |
+211 −5 | yarn.lock |
Submodule atom-language-julia
updated
2 files
+17 −17 | grammars/julia.cson | |
+20 −0 | spec/julia-spec.coffee |
Submodule d.tmbundle
updated
7 files
Submodule elixir-tmbundle
updated
from 69fdc7 to f7806b
Submodule lang-4d
updated
3 files
+ − | icon.png | |
+5 −0 | package.json | |
+129 −39 | syntaxes/4d.tmLanguage.json |
Submodule language-csound
updated
4 files
+1 −1 | appveyor.yml | |
+1 −1 | grammars/csound.cson | |
+1 −1 | package.json | |
+778 −41 | resources/opcode-completions.json |
Submodule language-haskell
updated
12 files
+8 −0 | CHANGELOG.md | |
+41 −0 | grammars/haskell autocompletion hint.cson | |
+41 −0 | grammars/haskell message hint.cson | |
+41 −0 | grammars/haskell type hint.cson | |
+41 −0 | grammars/haskell.cson | |
+41 −0 | grammars/liquid haskell.cson | |
+41 −0 | grammars/literate haskell.cson | |
+41 −0 | grammars/module signature.cson | |
+1 −1 | package-lock.json | |
+1 −1 | package.json | |
+13 −0 | spec/fixture/deriveStrategy.hs | |
+21 −0 | src/include/repository.coffee |
Submodule language-msl
updated
from 8418ec to 955e53
Submodule language-renpy
updated
from 8c6682 to b26c04
Submodule language-roff
updated
3 files
+5 −0 | CHANGELOG.md | |
+1 −1 | LICENSE.md | |
+2 −0 | settings/editor.cson |
Submodule vscode-codeql
updated
30 files
Submodule vscode-gcode-syntax
updated
6 files
+6 −0 | CHANGELOG.md | |
+1 −1 | README.md | |
+167 −40 | package-lock.json | |
+8 −8 | package.json | |
+1 −1 | src/manifest.json | |
+0 −4 | syntaxes/gcode.tmLanguage.json |
Submodule vscode-hack
updated
36 files
+23 −23 | .maintainers_guide.md | |
+11 −11 | .travis.yml | |
+44 −57 | .vscode/launch.json | |
+8 −8 | .vscode/settings.json | |
+17 −17 | .vscode/tasks.json | |
+48 −1 | CHANGELOG.md | |
+20 −17 | CONTRIBUTING.md | |
+33 −27 | README.md | |
+25 −20 | build/notice-file-generate.js | |
+3 −3 | docs/debugging.md | |
+29 −29 | hack.configuration.json | |
+1 −1 | package-lock.json | |
+1 −1 | package.json | |
+62 −28 | src/Config.ts | |
+36 −22 | src/HhvmDebugConfigurationProvider.ts | |
+71 −41 | src/LSPHHASTLint.ts | |
+89 −59 | src/LSPHackTypeChecker.ts | |
+143 −68 | src/LegacyHackTypeChecker.ts | |
+20 −15 | src/Utils.ts | |
+92 −74 | src/coveragechecker.ts | |
+633 −576 | src/debugger.ts | |
+33 −31 | src/main.ts | |
+321 −208 | src/providers.ts | |
+104 −59 | src/proxy.ts | |
+23 −23 | src/remote.ts | |
+18 −10 | src/suppressions.ts | |
+7 −8 | src/test/extension.test.ts | |
+3 −3 | src/test/index.ts | |
+67 −68 | src/types/hack.d.ts | |
+11 −11 | src/types/lsp.d.ts | |
+1 −1 | syntaxes/README.md | |
+54 −67 | syntaxes/hack.json | |
+1 −1 | syntaxes/test/README.md | |
+33 −0 | syntaxes/test/interpolation.hack | |
+16 −21 | tsconfig.json | |
+4 −13 | tslint.json |
Submodule vscode-lean
updated
19 files
+2 −1 | .gitignore | |
+22 −15 | README.md | |
+ − | media/continue.png | |
+ − | media/display-goal-light.png | |
+ − | media/display-list-light.png | |
+2 −2 | media/infoview.css | |
+ − | media/pause.png | |
+177 −189 | package-lock.json | |
+34 −9 | package.json | |
+3 −0 | release.sh | |
+11 −3 | src/diagnostics.ts | |
+7 −1 | src/extension.ts | |
+24 −11 | src/infoview.ts | |
+40 −22 | src/input.ts | |
+1 −1 | src/roi.ts | |
+166 −0 | src/tacticsuggestions.ts | |
+2,635 −0 | syntaxes/lean-markdown.json | |
+11 −3 | syntaxes/lean.json | |
+226 −154 | translations.json |
Submodule vscode-prisma
updated
from 22b1c9 to 9b4457
Submodule vscode-vlang
updated
from 8fd5e7 to 770d3e
Submodule zephir-sublime
updated
from 23e2db to 86d8d6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters