11# Changelog
22
3- ## 2018.3.0-beta (19 Mar 2018)
3+ ## 2018.3.0-rc (27 Mar 2018)
44
55### Enhancements
66
1212 ([ #1031 ] ( https://github.com/Microsoft/vscode-python/issues/1031 ) )
13131 . Add a Scrapy debug configuration for the experimental debugger.
1414 ([ #1032 ] ( https://github.com/Microsoft/vscode-python/issues/1032 ) )
15+ 1 . When using pipenv, install packages (such as linters, test frameworks) in dev-packages.
16+ ([ #1110 ] ( https://github.com/Microsoft/vscode-python/issues/1110 ) )
17+ 1 . Added commands translation for italian locale.
18+ (thanks [ Dotpys] ( https://github.com/Dotpys/ ) ) ([ #1152 ] ( https://github.com/Microsoft/vscode-python/issues/1152 ) )
19+ 1 . Add support for Django Template debugging in experimental debugger.
20+ ([ #1189 ] ( https://github.com/Microsoft/vscode-python/issues/1189 ) )
21+ 1 . Add support for Flask Template debugging in experimental debugger.
22+ ([ #1190 ] ( https://github.com/Microsoft/vscode-python/issues/1190 ) )
23+ 1 . Add support for Jinja template debugging. ([ #1210 ] ( https://github.com/Microsoft/vscode-python/issues/1210 ) )
15241 . When debugging, use ` Integrated Terminal ` as the default console.
1625 ([ #526 ] ( https://github.com/Microsoft/vscode-python/issues/526 ) )
26+ 1 . Disable the display of errors messages when rediscovering of tests fail in response to changes to files, e.g. don't show a message if there's a syntax error in the test code.
27+ ([ #704 ] ( https://github.com/Microsoft/vscode-python/issues/704 ) )
17281 . Bundle python depedencies (PTVSD package) in the extension for the experimental debugger.
1829 ([ #741 ] ( https://github.com/Microsoft/vscode-python/issues/741 ) )
19301 . Add support for expermental debugger when debugging Python Unit Tests.
2031 ([ #906 ] ( https://github.com/Microsoft/vscode-python/issues/906 ) )
21321 . Support ` Debug Console ` as a ` console ` option for the Experimental Debugger.
2233 ([ #950 ] ( https://github.com/Microsoft/vscode-python/issues/950 ) )
23341 . Enable syntax highlighting for ` requirements.in ` files as used by
24- e.g. [ pip-tools] ( https://github.com/jazzband/pip-tools ) .
35+ e.g. [ pip-tools] ( https://github.com/jazzband/pip-tools )
36+ (thanks [ Lorenzo Villani] ( https://github.com/lvillani ) )
2537 ([ #961 ] ( https://github.com/Microsoft/vscode-python/issues/961 ) )
26381 . Add support to read name of Pipfile from environment variable.
2739 ([ #999 ] ( https://github.com/Microsoft/vscode-python/issues/999 ) )
2840
2941### Fixes
3042
43+ 1 . Fixes issue that causes debugging of unit tests to hang indefinitely. ([ #1009 ] ( https://github.com/Microsoft/vscode-python/issues/1009 ) )
44+ 1 . Add ability to disable the check on memory usage of language server (Jedi) process.
45+ To turn off this check, add ` "python.jediMemoryLimit": -1 ` to your user or workspace settings (` settings.json ` ) file.
46+ ([ #1036 ] ( https://github.com/Microsoft/vscode-python/issues/1036 ) )
31471 . Ignore test results when debugging unit tests.
3248 ([ #1043 ] ( https://github.com/Microsoft/vscode-python/issues/1043 ) )
49+ 1 . Fixes auto formatting of conditional statements containing expressions with ` <= ` symbols.
50+ ([ #1096 ] ( https://github.com/Microsoft/vscode-python/issues/1096 ) )
33511 . Resolve debug configuration information in ` launch.json ` when debugging without opening a python file.
3452 ([ #1098 ] ( https://github.com/Microsoft/vscode-python/issues/1098 ) )
53+ 1 . Disables auto completion when editing text at the end of a comment string.
54+ ([ #1123 ] ( https://github.com/Microsoft/vscode-python/issues/1123 ) )
55+ 1 . Ensures file paths are properly encoded when passing them as arguments to linters.
56+ ([ #199 ] ( https://github.com/Microsoft/vscode-python/issues/199 ) )
35571 . Fix occasionally having unverified breakpoints
3658 ([ #87 ] ( https://github.com/Microsoft/vscode-python/issues/87 ) )
37591 . Ensure conda installer is not used for non-conda environments.
@@ -44,6 +66,7 @@ e.g. [pip-tools](https://github.com/jazzband/pip-tools).
44661 . Exclude 'news' folder from getting packaged into the extension.
4567 ([ #1020 ] ( https://github.com/Microsoft/vscode-python/issues/1020 ) )
46681 . Remove Jupyter commands.
69+ (thanks [ Yu Zhang] ( https://github.com/neilsustc ) )
4770 ([ #1034 ] ( https://github.com/Microsoft/vscode-python/issues/1034 ) )
48711 . Trigger incremental build compilation only when typescript files are modified.
4972 ([ #1040 ] ( https://github.com/Microsoft/vscode-python/issues/1040 ) )
@@ -52,22 +75,37 @@ e.g. [pip-tools](https://github.com/jazzband/pip-tools).
52751 . Enable unit testing of stdout and stderr redirection for the experimental debugger.
5376 ([ #1048 ] ( https://github.com/Microsoft/vscode-python/issues/1048 ) )
54771 . Update npm package ` vscode-extension-telemetry ` to fix the warning 'os.tmpDir() deprecation'.
78+ (thanks [ osya] ( https://github.com/osya ) )
5579 ([ #1066 ] ( https://github.com/Microsoft/vscode-python/issues/1066 ) )
56- 1 . Prevent debugger stepping into js code, when debugging async TypeScript code.
80+ 1 . Prevent the debugger stepping into JS code while developing the extension when debugging async TypeScript code.
5781 ([ #1090 ] ( https://github.com/Microsoft/vscode-python/issues/1090 ) )
58821 . Increase timeouts for the debugger unit tests.
5983 ([ #1094 ] ( https://github.com/Microsoft/vscode-python/issues/1094 ) )
60841 . Change the command used to install pip on AppVeyor to avoid installation errors.
6185 ([ #1107 ] ( https://github.com/Microsoft/vscode-python/issues/1107 ) )
86+ 1 . Check whether a document is active when detecthing changes in the active document.
87+ ([ #1114 ] ( https://github.com/Microsoft/vscode-python/issues/1114 ) )
88+ 1 . Remove SIGINT handler in debugger adapter, thereby preventing it from shutting down the debugger.
89+ ([ #1122 ] ( https://github.com/Microsoft/vscode-python/issues/1122 ) )
90+ 1 . Improve compilation speed of the extension's TypeScript code.
91+ ([ #1146 ] ( https://github.com/Microsoft/vscode-python/issues/1146 ) )
92+ 1 . Changes to how debug options are passed into the experimental version of PTVSD (debugger).
93+ ([ #1168 ] ( https://github.com/Microsoft/vscode-python/issues/1168 ) )
94+ 1 . Ensure file paths are not sent in telemetry when running unit tests.
95+ ([ #1180 ] ( https://github.com/Microsoft/vscode-python/issues/1180 ) )
96+ 1 . Change ` DjangoDebugging ` to ` Django ` in ` debugOptions ` of launch.json.
97+ ([ #1198 ] ( https://github.com/Microsoft/vscode-python/issues/1198 ) )
98+ 1 . Changed property name used to capture the trigger source of Unit Tests. ([ #1213 ] ( https://github.com/Microsoft/vscode-python/issues/1213 ) )
62991 . Enable unit testing of the experimental debugger on CI servers
63100 ([ #742 ] ( https://github.com/Microsoft/vscode-python/issues/742 ) )
641011 . Generate code coverage for debug adapter unit tests.
65102 ([ #778 ] ( https://github.com/Microsoft/vscode-python/issues/778 ) )
661031 . Execute prospector as a module (using -m).
67104 ([ #982 ] ( https://github.com/Microsoft/vscode-python/issues/982 ) )
68- 1 . Launch the unit tests in debug mode as opposed to running and attaching the debugger.
105+ 1 . Launch unit tests in debug mode as opposed to running and attaching the debugger to the already-running interpreter .
69106 ([ #983 ] ( https://github.com/Microsoft/vscode-python/issues/983 ) )
70107
108+
71109## 2018.2.1 (09 Mar 2018)
72110
73111### Fixes
0 commit comments