Does this issue occur when all extensions are disabled?: Yes
- VS Code Version: Visual Studio Code 1.128
- OS Version: Ubuntu 24.04.4 LTS, Ubuntu 22.04, Windows 11
Problem: The extract-zip npm library, used by our extension for ZIP extraction, has stopped working after updating to VS Code 1.128. The extension downloads a server.zip file successfully, but the extraction process silently fails.It looks it goes a infinity loop. But This worked flawlessly in VS Code 1.127.
Steps to Reproduce:
- Install VS Code 1.128.
- Install the Tizen Extension from the marketplace.
- Trigger the extension setup — it will download
server.zip and attempt to extract it.
- Check the Tizen Log — the download completes, but no extraction log appears and the process hangs.
Expected Behavior
The server.zip file should be extracted successfully, as it was in VS Code 1.127.
Actual Behavior
The extraction process silently fails. The server.zip file is downloaded but never extracted.
Environment
- VS Code version: 1.128
- OS: Ubuntu 24.04.4 LTS, Ubuntu 22.04, Windows 11
extract-zip version: 2.0.1
Impact
This makes the extension completely non-functional for new users, as the server component cannot be installed.
2026-07-10 18:18:40.262 [info] [EXT] Activated
2026-07-10 18:18:40.262 [info] [EXT] registerViews executed.
2026-07-10 18:18:40.262 [info] [EXT] initializeExtensionConfig executed.
2026-07-10 18:18:40.262 [info] [EXT] Working project indicator initialized.
2026-07-10 18:18:40.262 [info] [EXT] [Flutter-Tizen] Commands registered
2026-07-10 18:18:40.302 [info] [EXT] [Context] Not in Tizen workspace - setting tizen.isTizenWorkspace to false
2026-07-10 18:18:40.431 [info] [EXT] [Extension] No SDK config - waiting for user to click Set Up button
2026-07-10 18:18:41.367 [info] [EXT] [Extension] Tizen Set Up sidebar assist completed (view visible).
2026-07-10 18:18:41.480 [info] [EXT] Showing path selection modal...
2026-07-10 18:18:42.334 [info] [EXT] Setting default Tizen SDK path: /home/rashed/.tizen-extension-platform
2026-07-10 18:18:42.334 [info] [EXT] Tizen path config file created at: /home/rashed/.tizen.path.config
2026-07-10 18:18:42.334 [info] [EXT] Tizen SDK path set successfully: /home/rashed/.tizen-extension-platform
2026-07-10 18:18:42.507 [info] [EXT] Checking server connection status...
2026-07-10 18:18:42.507 [info] [EXT] Starting local server...
2026-07-10 18:18:43.338 [info] [EXT] Completed Fetching from remote, text length: 11894 bytes, (proxy=true)
2026-07-10 18:18:43.339 [info] [EXT] Selected optimal server version: 10.3.9
2026-07-10 18:18:43.339 [info] [EXT] Found the latest server release: v10.3.9 (tizen-extension-server-10.3.9-linux-x64.zip)
2026-07-10 18:18:43.339 [info] [EXT] No server installed. Installing v10.3.9...
2026-07-10 18:18:43.340 [info] [EXT] Installing server v10.3.9 from remote repository...
2026-07-10 18:18:43.340 [info] [EXT] Downloading server from: https://download.tizen.org/sdk/tizen-extension/tizen-extension-server-10.3.9-linux-x64.zip
2026-07-10 18:18:43.340 [info] [EXT] Created temp directory: /home/rashed/.tizen-extension-platform/temp
2026-07-10 18:19:57.719 [info] [EXT] Downloaded server.zip to: /home/rashed/.tizen-extension-platform/temp/server.zip

Does this issue occur when all extensions are disabled?: Yes
Problem: The
extract-zipnpm library, used by our extension for ZIP extraction, has stopped working after updating to VS Code 1.128. The extension downloads aserver.zipfile successfully, but the extraction process silently fails.It looks it goes a infinity loop. But This worked flawlessly in VS Code 1.127.Steps to Reproduce:
server.zipand attempt to extract it.Expected Behavior
The
server.zipfile should be extracted successfully, as it was in VS Code 1.127.Actual Behavior
The extraction process silently fails. The
server.zipfile is downloaded but never extracted.Environment
extract-zipversion: 2.0.1Impact
This makes the extension completely non-functional for new users, as the server component cannot be installed.