Skip to content

Commit

Permalink
Update changelog 2024.4.102 (#5779)
Browse files Browse the repository at this point in the history
  • Loading branch information
debonte committed Apr 18, 2024
1 parent 42f254e commit b0eec09
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 5 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## 2024.4.102 (17 April 2024) PreRelease

Notable changes:

- Bug fix: Should be able to disable auto-indent without setting `formatOnType` to `false` [pylance-release#5592](https://github.com/microsoft/pylance-release/issues/5592)

Pylance's copy of Pyright has been updated from 1.1.358 to 1.1.359.

- See Pyright's release notes for details: [1.1.359](https://github.com/microsoft/pyright/releases/tag/1.1.359)

## 2024.4.101 (10 April 2024) PreRelease

Notable changes:
Expand Down
15 changes: 10 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -227,18 +227,23 @@ def test_foo(my_fixture: str):...
- `true` (default)
- `false`

- `python.analysis.autoFormatStrings`
- When typing a `{` in a string, automatically puts an `f` on the front of the string.
- Accepted values:
- `true`
- `false` (default)
- `python.analysis.autoIndent`
- Automatically adjust indentation based on language semantics when typing Python code.
- Accepted values:
- `true` (default)
- `false`
- `python.analysis.autoFormatStrings`
- When typing a `{` in a string, automatically puts an `f` on the front of the string.
- `python.analysis.nodeExecutable`
- Path to a node executable to use to run Pylance. If this value is empty, Pylance uses VS Code's node executable.
- Set this value when you are having out of memory issues. Using a custom node executable allows Pylance to allocate more memory.
- Accepted values:
- `true`
- `false` (default)
- `any executable path`
# Semantic highlighting
Expand Down

0 comments on commit b0eec09

Please sign in to comment.