2 Commits

Author SHA1 Message Date
e6393d9645 chore: bump version to 1.3.0 2026-02-06 21:09:04 -05:00
e9584929a4 docs: add CHANGELOG entry for version 1.3.0 2026-02-06 20:51:12 -05:00
4 changed files with 19 additions and 3 deletions

View File

@@ -6,6 +6,20 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
---
## [1.3.0] - 2026-02-06
### Added
- **Remote IP access**: New `allowedIPs` setting accepts comma-separated IPs and CIDR ranges (e.g., `100.64.0.0/10` for Tailscale) to allow non-localhost connections
- Server automatically binds to `0.0.0.0` when remote IPs are configured, otherwise stays on `127.0.0.1`
- Three-layer network validation: source IP check, CORS origin check, and host header validation
- Bearer token authentication remains mandatory for all connections
- Localhost is always implicitly allowed — cannot lock out local access
- IPv4-mapped IPv6 addresses (`::ffff:x.x.x.x`) handled transparently
- New `network-utils` module with CIDR parsing and IP matching (no external dependencies)
- Security warning displayed in settings when remote access is enabled
---
## [1.2.0] - 2026-01-31
### Added

View File

@@ -1,7 +1,7 @@
{
"id": "mcp-server",
"name": "MCP Server",
"version": "1.2.1",
"version": "1.3.0",
"minAppVersion": "0.15.0",
"description": "Exposes vault operations via Model Context Protocol (MCP) over HTTP.",
"author": "William Ballou",

View File

@@ -1,6 +1,6 @@
{
"name": "mcp-server",
"version": "1.2.1",
"version": "1.3.0",
"description": "MCP (Model Context Protocol) server plugin - exposes vault operations via HTTP",
"main": "main.js",
"scripts": {

View File

@@ -4,5 +4,7 @@
"1.1.0": "0.15.0",
"1.1.1": "0.15.0",
"1.1.2": "0.15.0",
"1.1.3": "0.15.0"
"1.1.3": "0.15.0",
"1.2.0": "0.15.0",
"1.3.0": "0.15.0"
}