Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## 2018.12.1 (14 Dec 2018)

### Fixes

1. Lowering threshold for Language Server support on a platform.
([#3693](https://github.com/Microsoft/vscode-python/issues/3693))
1. Fix bug affecting multiple linters used in a workspace.
(thanks [Ilia Novoselov](https://github.com/nullie))
([#3700](https://github.com/Microsoft/vscode-python/issues/3700))

## 2018.12.0 (13 Dec 2018)

### Thanks
Expand Down
490 changes: 231 additions & 259 deletions ThirdPartyNotices-Distribution.txt

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion news/2 Fixes/3693.md

This file was deleted.

2 changes: 0 additions & 2 deletions news/2 Fixes/3700.md

This file was deleted.

2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "python",
"displayName": "Python",
"description": "Linting, Debugging (multi-threaded, remote), Intellisense, code formatting, refactoring, unit tests, snippets, and more.",
"version": "2018.12.0",
"version": "2018.12.1",
"languageServerVersion": "0.1.72",
"publisher": "ms-python",
"author": {
Expand Down
10 changes: 5 additions & 5 deletions src/test/common/platform/platformService.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,14 @@ suite('PlatformService', () => {
});

test('is64bit', async () => {
let expected = true;
if (os.arch() !== 'x64') {
expected = false;
}
// tslint:disable-next-line:no-require-imports
const arch = require('arch') as typeof import('arch');

const hostReports64Bit = arch() === 'x64';
const svc = new PlatformService();
const result = svc.is64bit;

expect(result).to.be.equal(expected, 'invalid value');
expect(result).to.be.equal(hostReports64Bit, `arch() reports '${arch()}', PlatformService.is64bit reports ${result}.`);
});

test('getVersion on Mac/Windows', async function () {
Expand Down