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
6 changes: 0 additions & 6 deletions .changeset/curvy-pets-eat.md

This file was deleted.

9 changes: 0 additions & 9 deletions .changeset/expired-token-precheck.md

This file was deleted.

10 changes: 10 additions & 0 deletions packages/mcp-server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @formio/mcp

## 0.4.1

### Patch Changes

- ae993dc: Fixed issues with baseURL not getting set correctly.
- 4237e6c: Check cached JWT expiry locally before use. The MCP server now decodes a cached
token's `exp` claim and clears expired tokens — both from the on-disk cache and
the in-process cache — before attempting any request, triggering re-auth instead
of thrashing on failing calls with a known-dead token.

## 0.4.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/mcp-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@formio/mcp",
"version": "0.4.0",
"version": "0.4.1",
"description": "Form.io MCP Server",
"type": "module",
"license": "MIT",
Expand Down
10 changes: 10 additions & 0 deletions plugin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @formio/ai

## 0.4.1

### Patch Changes

- ae993dc: Fixed issues with baseURL not getting set correctly.
- 4237e6c: Check cached JWT expiry locally before use. The MCP server now decodes a cached
token's `exp` claim and clears expired tokens — both from the on-disk cache and
the in-process cache — before attempting any request, triggering re-auth instead
of thrashing on failing calls with a known-dead token.

## 0.4.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@formio/ai",
"version": "0.4.0",
"version": "0.4.1",
"description": "Form.io Claude Code plugin — MCP server and skills library",
"type": "module",
"license": "MIT",
Expand Down
Loading