-
Notifications
You must be signed in to change notification settings - Fork 147
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pre-release version of vscode extension update error #589
Comments
Thanks for this detailed bug report! IMHO, installing the pre-release version of the extension makes more sense than skipping it as it has already been installed by the user, which means that the user doesn't mind the fact that it is still in pre-release |
Could you please provide the output of: $ code --list-extensions --show-version | grep ms-python.debugpy And try: $ code --install-extension ms-python.debugpy --pre-release to see if this would work |
it works ➜ code --list-extensions --show-version | grep ms-python.debugpy
Warning: 'show-version' is not in the list of known options, but still passed to Electron/Chromium.
ms-python.debugpy
~
➜ code --install-extension ms-python.debugpy --pre-release
Installing extensions...
Extension 'ms-python.debugpy' v2023.3.12921009 is already installed. Use '--force' option to update to latest version or provide '@<version>' to install a specific version, for example: '[email protected]'.
|
I am sorry, it should be: $ code --list-extensions --show-versions | grep ms-python.debugpy |
➜ code --list-extensions --show-versions | grep python
[email protected]
[email protected]
[email protected]
[email protected]
[email protected] well, it seems vscode cli does not distinguish pre-release version and the release version. |
Yeah, this is unfortunate, I didn't see any options to do this from $ code --help
Visual Studio Code 1.83.1
Usage: code [options][paths...]
To read from stdin, append '-' (e.g. 'ps aux | grep code | code -')
Options
-d --diff <file> <file> Compare two files with each other.
-m --merge <path1> <path2> <base> <result> Perform a three-way merge by providing paths for two modified versions of a file, the common origin of both modified versions and the output file to save merge results.
-a --add <folder> Add folder(s) to the last active window.
-g --goto <file:line[:character]> Open a file at the path on the specified line and character position.
-n --new-window Force to open a new window.
-r --reuse-window Force to open a file or folder in an already opened window.
-w --wait Wait for the files to be closed before returning.
--locale <locale> The locale to use (e.g. en-US or zh-TW).
--user-data-dir <dir> Specifies the directory that user data is kept in. Can be used to open multiple distinct instances of Code.
--profile <profileName> Opens the provided folder or workspace with the given profile and associates the profile with the workspace. If the profile does not exist, a new empty one is created. A folder or workspace must be provided for the profile to take effect.
-h --help Print usage.
Extensions Management
--extensions-dir <dir> Set the root path for extensions.
--list-extensions List the installed extensions.
--show-versions Show versions of installed extensions, when using --list-extensions.
--category <category> Filters installed extensions by provided category, when using --list-extensions.
--install-extension <ext-id | path> Installs or updates an extension. The argument is either an extension id or a path to a VSIX. The identifier of an extension is '${publisher}.${name}'. Use '--force' argument to update to latest version. To install a specific version provide '@${version}'. For
example: '[email protected]'.
--pre-release Installs the pre-release version of the extension, when using --install-extension
--uninstall-extension <ext-id> Uninstalls an extension.
--enable-proposed-api <ext-id> Enables proposed API features for extensions. Can receive one or more extension IDs to enable individually.
Troubleshooting
-v --version Print version.
--verbose Print verbose output (implies --wait).
--log <level> Log level to use. Default is 'info'. Allowed values are 'critical', 'error', 'warn', 'info', 'debug', 'trace', 'off'. You can also configure the log level of an extension by passing extension id and log level in the following format:
'${publisher}.${name}:${logLevel}'. For example: 'vscode.csharp:trace'. Can receive one or more such entries.
-s --status Print process usage and diagnostics information.
--prof-startup Run CPU profiler during startup.
--disable-extensions Disable all installed extensions. This option is not persisted and is effective only when the command opens a new window.
--disable-extension <ext-id> Disable the provided extension. This option is not persisted and is effective only when the command opens a new window.
--sync <on | off> Turn sync on or off.
--inspect-extensions <port> Allow debugging and profiling of extensions. Check the developer tools for the connection URI.
--inspect-brk-extensions <port> Allow debugging and profiling of extensions with the extension host being paused after start. Check the developer tools for the connection URI.
--disable-gpu Disable GPU hardware acceleration.
--disable-chromium-sandbox Use this option only when there is requirement to launch the application as sudo user on Linux or when running as an elevated user in an applocker environment on Windows.
--telemetry Shows all telemetry events which VS code collects.
Subcommands
tunnel Make the current machine accessible from vscode.dev or other machines through a secure tunnel
serve-web Make the current machine accessible from vscode.dev or other machines through a secure tunnel |
Issue filed Before this gets fixed, I recommend disabling this step with the following configuration: [misc]
disable = ["vscode"] Since there is nothing we can do at Topgrade (at least for now), I will label this issue |
Some progress about this issue (and the partial duplicate issue #593 ) : Since I developped this VSCode upgrade in Topgrade, I recently filed the PR microsoft/vscode#197963 in VSCode to have a parsable output listing the origin of each extension (responding to the issue SteveLauC opened). It will allow a fix in Topgrade to correctly handle:
The PR is currently on debate phase about the precise scope of the issue. When eventually it will be merged and upstreamed in a monthly release, I will create a PR here to fix these extensions update. |
Erroneous Behavior
error when updating vscode extensions which are not released, such as debugpy
Expected Behavior
skip or update such extensions with preview
Steps to reproduce
install extensions without a release version, such as debugpy.
Possible Cause (Optional)
code
cli fails install such extensionProblem persists without calling from topgrade
Did you run topgrade through
Remote Execution
If yes, does the issue still occur when you run topgrade directlly in your
remote host
Configuration file (Optional)
Additional Details
topgrade -V
):13.0.0Verbose Output (
topgrade -v
)The text was updated successfully, but these errors were encountered: