@@ -54,6 +54,8 @@ part of!
54
54
55
55
### Enhancements
56
56
57
+ 1 . Adds support for code completion in the debug console window.
58
+ ([ #1076 ] ( https://github.com/Microsoft/vscode-python/issues/1076 ) )
57
59
1 . Auto activate Python Environment in terminals (disable with ` "python.terminal.activateEnvironment": false ` ).
58
60
([ #1387 ] ( https://github.com/Microsoft/vscode-python/issues/1387 ) )
59
61
1 . Add support for activation of ` pyenv ` environments in the Terminal.
@@ -79,22 +81,27 @@ part of!
79
81
([ #2630 ] ( https://github.com/Microsoft/vscode-python/issues/2630 ) )
80
82
1 . Language server now provides rename functionality.
81
83
([ #2650 ] ( https://github.com/Microsoft/vscode-python/issues/2650 ) )
84
+ 1 . Search for default known paths for conda environments on windows.
85
+ ([ #2794 ] ( https://github.com/Microsoft/vscode-python/issues/2794 ) )
82
86
83
87
### Fixes
84
88
85
89
1 . Improvements to the display format of interpreter information in the list of interpreters.
86
90
([ #1352 ] ( https://github.com/Microsoft/vscode-python/issues/1352 ) )
87
91
1 . Deprecate the use of the setting ` python.autoComplete.preloadModules ` . Recommendation is to utilize the new language server (change the setting ` "python.jediEnabled": false ` ).
88
92
([ #1704 ] ( https://github.com/Microsoft/vscode-python/issues/1704 ) )
89
- 1 . Add a new ` " python.condaPath" ` setting to use if conda is not found on ` PATH ` .
93
+ 1 . Add a new ` python.condaPath ` setting to use if conda is not found on ` PATH ` .
90
94
([ #1944 ] ( https://github.com/Microsoft/vscode-python/issues/1944 ) )
91
95
1 . Ensure code is executed when the last line of selected code is indented.
92
96
([ #2167 ] ( https://github.com/Microsoft/vscode-python/issues/2167 ) )
93
97
1 . Stop duplicate initializations of the Python Language Server's progress reporter.
94
98
([ #2297 ] ( https://github.com/Microsoft/vscode-python/issues/2297 ) )
95
- 1 . Fix the regex expression to match MyPy linter messages that expects the file name to have a .py extension, that isn't always the case, to catch any filename.
99
+ 1 . Fix the regex expression to match MyPy linter messages that expects the file name to have a ` .py ` extension, that isn't always the case, to catch any filename.
96
100
E.g., .pyi files that describes interfaces wouldn't get the linter messages to Problems tab.
97
101
([ #2380 ] ( https://github.com/Microsoft/vscode-python/issues/2380 ) )
102
+ 1 . Do not use variable substitution when updating ` python.pythonPath ` . This matters
103
+ because VS Code does not do variable substitution in settings values.
104
+ ([ #2459 ] ( https://github.com/Microsoft/vscode-python/issues/2459 ) )
98
105
1 . Use a python script to launch the debugger, instead of using ` -m ` which requires changes to the ` PYTHONPATH ` variable.
99
106
([ #2509 ] ( https://github.com/Microsoft/vscode-python/issues/2509 ) )
100
107
1 . Provide paths from ` PYTHONPATH ` environment variable to the language server, as additional search locations of Python modules.
@@ -107,15 +114,25 @@ part of!
107
114
([ #2563 ] ( https://github.com/Microsoft/vscode-python/issues/2563 ) )
108
115
1 . Use the environment folder name for environments without environment names in the Conda Environments list file.
109
116
([ #2577 ] ( https://github.com/Microsoft/vscode-python/issues/2577 ) )
117
+ 1 . Update environment variable naming convention for ` SPARK_HOME ` , when stored in ` settings.json ` .
118
+ ([ #2628 ] ( https://github.com/Microsoft/vscode-python/issues/2628 ) )
110
119
1 . Fix debug adapter ` Attach ` test.
111
120
([ #2655 ] ( https://github.com/Microsoft/vscode-python/issues/2655 ) )
121
+ 1 . Fix colon-triggered block formatting.
122
+ ([ #2714 ] ( https://github.com/Microsoft/vscode-python/issues/2714 ) )
123
+ 1 . Use full path to activate command in conda environments on windows when python.condaPath is set.
124
+ ([ #2753 ] ( https://github.com/Microsoft/vscode-python/issues/2753 ) )
112
125
113
126
### Code Health
114
127
115
128
1 . Fix broken CI on Azure DevOps.
116
129
([ #2549 ] ( https://github.com/Microsoft/vscode-python/issues/2549 ) )
117
130
1 . Upgraded our version of ` request ` to ` 2.87.0 ` .
118
131
([ #2621 ] ( https://github.com/Microsoft/vscode-python/issues/2621 ) )
132
+ 1 . Include the version of language server in telemetry.
133
+ ([ #2702 ] ( https://github.com/Microsoft/vscode-python/issues/2702 ) )
134
+ 1 . Update ` vscode-extension-telemetry ` to ` 0.0.22 ` .
135
+ ([ #2745 ] ( https://github.com/Microsoft/vscode-python/issues/2745 ) )
119
136
120
137
121
138
## 2018.8.0 (04 September 2018)
0 commit comments