From 5c9c35b1f552a245b38bbee71eb6b650d4b6c469 Mon Sep 17 00:00:00 2001 From: Heejae Chang <1333179+heejaechang@users.noreply.github.com> Date: Thu, 16 Jan 2025 12:42:57 -0800 Subject: [PATCH] Update changelog 2025.1.100 (#6855) --- CHANGELOG.md | 16 ++++++++++++++++ README.md | 5 ++++- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ea4e72..55422cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## 2025.1.100 (15 January 2025) PreRelease + +Notable changes: + +- Bug fix: importing class from wrong module [pylance-release#6843](https://github.com/microsoft/pylance-release/issues/6843) +- Bug fix: "generateDocstring" in AI code action doesn't automatically pop [pylance-release#6766](https://github.com/microsoft/pylance-release/issues/6766) +- Bug fix: NewType is not indexed [pylance-release#6601](https://github.com/microsoft/pylance-release/issues/6601) +- Enhancement: Add semantic token modifiers to callable variables. [pylance-release#5841](https://github.com/microsoft/pylance-release/issues/5841) +- Enhancement: Syntax highlighting for PEP 695: Type Parameter Syntax [pylance-release#5541](https://github.com/microsoft/pylance-release/issues/5541) +- Enhancement: Improve semantic highlighting of `TypeAlias` [pylance-release#3100](https://github.com/microsoft/pylance-release/issues/3100) +- Bug fix: Final annotation is not recognized across notebook cells [pylance-release#6455](https://github.com/microsoft/pylance-release/issues/6455) + +Pylance's copy of Pyright has been updated from 1.1.390 to 1.1.392. + +- See Pyright's release notes for details: [1.1.391](https://github.com/microsoft/pyright/releases/tag/1.1.391), [1.1.392](https://github.com/microsoft/pyright/releases/tag/1.1.392) + ## 2024.12.100 (16 December 2024) PreRelease Notable changes: diff --git a/README.md b/README.md index a7c61b3..c163d74 100644 --- a/README.md +++ b/README.md @@ -362,7 +362,10 @@ Pylance provides users with the ability to customize their Python language suppo - `python.analysis.aiCodeActions` - Enable/disable AI-assisted code actions. Requires the Copilot Chat extension to be enabled. - This setting accepts objects where the keys are the available AI-assisted code actions, and the values are `true` or `false` to enable or disable each action. - - Available code actions to use as keys: `implementAbstractClasses`. + - Available code actions to use as keys: + - `implementAbstractClasses` + - `generateDocstring` + - `generateSymbol` - Example: ```json {