Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "bookstack-mcp",
"description": "BookStack wiki MCP server — search, read, create, and manage documentation",
"version": "5.2.2",
"version": "5.2.3",
"author": {
"name": "Tim Pearson"
},
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,16 @@ jobs:

- uses: actions/setup-node@v4
with:
node-version: 20
# Node 22: `npm install -g npm@latest` below pulls npm 12.x, which
# requires Node >= 22.22 — on Node 20 it failed with EBADENGINE and
# aborted the publish (the container image built regardless).
node-version: 22
cache: npm

- run: npm ci
- run: npm run build

# Trusted publishing (OIDC) requires npm >= 11.5.1; Node 20 ships with npm 10.x
# Trusted publishing (OIDC) requires npm >= 11.5.1; Node ships with npm 10.x
- run: npm install -g npm@latest

- name: Publish to npm with provenance
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bookstack-mcp",
"version": "5.2.2",
"version": "5.2.3",
"description": "MCP server for BookStack wiki — search, read, create, and manage documentation via AI assistants",
"type": "module",
"bin": {
Expand Down
Loading