Bazelbuild.vscode-bazel 0.14.0 is missing from Cursor's extension gallery

Where does the bug appear (feature/product)?

Cursor IDE

Describe the Bug

Version 0.14.0 of the Bazel extension (bazelbuild.vscode-bazel) is not available in Cursor’s extension gallery (marketplace.cursorapi.com). The newest version it serves is 0.13.2.

The same 0.14.0 build is already published on both the VS Code Marketplace and Open VSX, so this is a gallery sync gap on Cursor’s side, not a missing or incompatible release.

Steps to Reproduce

Query each gallery for the versions of bazelbuild.vscode-bazel.

Cursor gallery — newest is 0.13.2, no 0.14.0:

curl -sS -X POST \
  -H 'Content-Type: application/json' \
  -H 'Accept: application/json;api-version=3.0-preview.1' \
  --data '{"filters":[{"criteria":[{"filterType":7,"value":"bazelbuild.vscode-bazel"}]}],"flags":402}' \
  https://marketplace.cursorapi.com/_apis/public/gallery/extensionquery \
  | jq -r '.results[0].extensions[0].versions[].version'

VS Code Marketplace — has 0.14.0:

curl -sS -X POST \
  -H 'Content-Type: application/json' \
  -H 'Accept: application/json;api-version=3.0-preview.1' \
  --data '{"filters":[{"criteria":[{"filterType":7,"value":"bazelbuild.vscode-bazel"}]}],"flags":402}' \
  https://marketplace.visualstudio.com/_apis/public/gallery/extensionquery \
  | jq -r '.results[0].extensions[0].versions[].version'

Open VSX — has 0.14.0:

curl -sS https://open-vsx.org/api/bazelbuild/vscode-bazel/versions | jq -r '.versions | keys[]'

Expected Behavior

Cursor’s gallery serves 0.14.0, matching the VS Code Marketplace and Open VSX.

Operating System

MacOS

Version Information

Version: 3.7.36 (Universal)
VS Code Extension API: 1.105.1
Commit: 776d1f9d76df50a4e0aeca61819a88e7c1b861e0
Date: 2026-06-13T00:31:56.287Z
Layout: editor
Build Type: Stable
Release Track: Default
Electron: 39.8.1
Chromium: 142.0.7444.265
Node.js: 22.22.1
V8: 14.2.231.22-electron.0
xterm.js: 6.1.0-beta.256
OS: Darwin arm64 25.3.0

Does this stop you from using Cursor

No - Cursor works, but with this issue

This is a sync gap in our extension gallery (which mirrors Open VSX), not an engine-compatibility exclusion. I see the same thing on my end: marketplace.cursorapi.com tops out at 0.13.2 for bazelbuild.vscode-bazel, while both Open VSX and the VS Code Marketplace serve 0.14.0. Since 0.14.0 only needs VS Code ^1.88.0 (Cursor bundles 1.105.1), there’s no compatibility reason for it to be held back.

This is a known issue our team is tracking - our mirror can keep serving an older cached version of an extension even after a newer one is published upstream. You’re not the only one hitting it: a few others reported the same pattern on other extensions in this thread.

In the meantime, you can install 0.14.0 manually:

  1. Download the .vsix for 0.14.0 from Open VSX
  2. In Cursor, Cmd+Shift+P → Extensions: Install from VSIX…
  3. Select the downloaded file

One caveat worth flagging: extensions installed this way are marked as VSIX-sourced, so they show stale “last released” metadata and won’t auto-update - you’d have to repeat the manual step for future versions. It’s a stopgap, not a fix. I’ll follow up here once the mirror issue is resolved.