From a0bb1ec3cb77b31fbcf35d1bc47b2e6662c0aeb4 Mon Sep 17 00:00:00 2001 From: trick77 Date: Wed, 9 Sep 2026 11:05:28 +0200 Subject: [PATCH] deps: bump lombok to 1.18.48 and @playwright/mcp to 0.0.80 check-pins reported both behind. lombok's jar was re-verified against projectlombok.org and Maven Central: byte-identical downloads, and Maven's published .sha1 matches, so the new sha256 is 85477a46. The lombok fetch dest carries the version, so the bump is not a no-op for fetchAsset. README rows, the @pins example and the test expectation table move with the two presets. --- README.md | 6 +++--- presets/jdtls-lombok.conf | 8 ++++---- presets/mcp-playwright.conf | 6 +++--- test/builtin-presets.test.ts | 4 ++-- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 53cf853..b7687ba 100644 --- a/README.md +++ b/README.md @@ -48,14 +48,14 @@ something outside your opencode config say so in their description. | `permissions-build-tools` | Permissions | merge | Not in the bundle. Build tools (node, npm, mvn, gradle, make, python, pip, cargo, go) | | `permissions-cluster-info` | Permissions | merge | Not in the bundle. Read-only `oc` (OpenShift) inspection — grants read access to whichever cluster you are logged into | | `permissions-webfetch-ask` | Permissions | merge | Not in the bundle. Requires approval before opencode uses the webfetch tool | -| `jdtls-lombok` | LSP | replace | Needs `jdtls` and a JDK 21+ on `PATH` already. Makes jdtls lombok-aware via a `-javaagent` flag (pins lombok 1.18.46, sha256-verified) | +| `jdtls-lombok` | LSP | replace | Needs `jdtls` and a JDK 21+ on `PATH` already. Makes jdtls lombok-aware via a `-javaagent` flag (pins lombok 1.18.48, sha256-verified) | | `jdtls-clean-workspace` | LSP | replace | Stops jdtls from writing `.project`/`.classpath`/etc. into your project root | | `mcp-http` | MCP | replace | Add an HTTP MCP server (localhost or remote) with one custom header (prompts for id, URL, header name, header value) | | `mcp-http-noauth` | MCP | replace | Add an HTTP MCP server (localhost or remote) without auth headers (prompts for id, URL) | | `mcp-intellij` | MCP | replace | Requires the official "MCP Server" plugin installed and enabled in the IDE first — this preset does not install it. Adds the JetBrains IDE MCP server (loopback HTTP, default port 64342) | | `mcp-litellm` | MCP | replace | Add a LiteLLM proxy's MCP gateway as a remote MCP server (prompts for gateway URL and LiteLLM key; auth via `x-litellm-api-key`, no login flow) | | `mcp-litellm-passthrough` | MCP | replace | Install `mcp-litellm` first — re-running it replaces `mcp.litellm` and drops these headers. Adds one `x-mcp--
` passthrough header to the `mcp.litellm` server so an upstream MCP server authenticates as you (run once per header) | -| `mcp-playwright` | MCP | replace | Add the Playwright MCP server (local stdio via npx; pins `@playwright/mcp` 0.0.79) | +| `mcp-playwright` | MCP | replace | Add the Playwright MCP server (local stdio via npx; pins `@playwright/mcp` 0.0.80) | | `mcp-vscode` | MCP | replace | Requires the `JuehangQin.vscode-mcp-server` extension installed, enabled and toggled active in VS Code first — this preset does not install it. Adds the VS Code MCP server via that extension (loopback HTTP, default port 3000) | | `plugin-litellm-pricing` | Plugin | append | Install `provider-litellm` too — without a `litellm` provider pointing at your proxy the plugin does nothing. Adds `opencode-plugin-litellm-pricing`: discovers a LiteLLM proxy's models at runtime and adds them to the picker with the proxy's own per-model pricing instead of `$0` (pins `opencode-plugin-litellm-pricing` 0.9.0) | | `provider-litellm` | Provider | replace | Point the `litellm` provider at your proxy URL and key for `plugin-litellm-pricing`, which prices the models against that same proxy (prompts for base URL and API key; no models list) | @@ -404,7 +404,7 @@ the install confirmation and in `list -l`, so you can see what a preset drags in before saying yes: ```jsonc -// @pins: @playwright/mcp 0.0.79 +// @pins: @playwright/mcp 0.0.80 ``` The version string must also appear in the body or `@fetch` line it diff --git a/presets/jdtls-lombok.conf b/presets/jdtls-lombok.conf index 1652174..ecaa93c 100644 --- a/presets/jdtls-lombok.conf +++ b/presets/jdtls-lombok.conf @@ -6,11 +6,11 @@ // Pinned to an exact lombok version and verified by sha256; bump the @pins // and @fetch lines and the -javaagent path here to update. // @author: Jan -// @version: 0.2.1 +// @version: 0.2.2 // @path: lsp.jdtls.command -// @pins: lombok 1.18.46 -// @fetch: https://projectlombok.org/downloads/lombok-1.18.46.jar -> {{cache}}/lombok-1.18.46.jar sha256=01f7b1a015e33e2b62d5f5f37053306357ab1415fd181fcba7794f5d198c1126 +// @pins: lombok 1.18.48 +// @fetch: https://projectlombok.org/downloads/lombok-1.18.48.jar -> {{cache}}/lombok-1.18.48.jar sha256=85477a4655ebb2c074a9099cfb749be454449fee564d4282610df1b85f7c508b [ "jdtls", - "--jvm-arg=-javaagent:{{cache}}/lombok-1.18.46.jar" + "--jvm-arg=-javaagent:{{cache}}/lombok-1.18.48.jar" ] diff --git a/presets/mcp-playwright.conf b/presets/mcp-playwright.conf index a87ec56..5d8baae 100644 --- a/presets/mcp-playwright.conf +++ b/presets/mcp-playwright.conf @@ -3,11 +3,11 @@ // opencode can drive a real browser: navigate, click, fill forms, screenshot. // Runs via npx and accepts Playwright MCP's defaults. // @author: Jan -// @version: 0.2.1 +// @version: 0.2.2 // @path: mcp.playwright -// @pins: @playwright/mcp 0.0.79 +// @pins: @playwright/mcp 0.0.80 { "type": "local", - "command": ["npx", "-y", "@playwright/mcp@0.0.79"], + "command": ["npx", "-y", "@playwright/mcp@0.0.80"], "enabled": true } diff --git a/test/builtin-presets.test.ts b/test/builtin-presets.test.ts index c3228b6..b164df0 100644 --- a/test/builtin-presets.test.ts +++ b/test/builtin-presets.test.ts @@ -197,8 +197,8 @@ test('ships a litellm passthrough-header preset that writes a single header valu test('records the pinned third-party version of every preset that installs one', async () => { const expected: Record> = { - 'jdtls-lombok': [{ name: 'lombok', version: '1.18.46' }], - 'mcp-playwright': [{ name: '@playwright/mcp', version: '0.0.79' }], + 'jdtls-lombok': [{ name: 'lombok', version: '1.18.48' }], + 'mcp-playwright': [{ name: '@playwright/mcp', version: '0.0.80' }], 'plugin-litellm-pricing': [{ name: 'opencode-plugin-litellm-pricing', version: '0.9.0' }], 'plugin-opencode-planify-german': [{ name: 'opencode-planify-german', version: '0.3.2' }], 'plugin-superpowers': [{ name: 'superpowers', version: '6.3.0' }],