Skip to content

Commit ff0b564

Browse files
committed
chore(release): 0.5.0
Signed-off-by: Adam Shedivy <ajshedivyaj@gmail.com>
1 parent 57b9401 commit ff0b564

5 files changed

Lines changed: 46 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,43 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
## [0.5.0](https://github.com/IBM/ibmi-mcp-server/compare/v0.4.5...v0.5.0) (2026-04-20)
6+
7+
This release splits the `ibmi` command-line tool into its own `@ibm/ibmi-cli` npm package, adds first-class JDBC connection tuning to YAML sources, introduces per-tool row-fetch controls, and extends the SQL security validator to cover `ibmi tool` execution.
8+
9+
10+
### ⚠ BREAKING CHANGES
11+
12+
* **CLI split into `@ibm/ibmi-cli`** — The `ibmi` binary no longer ships with `@ibm/ibmi-mcp-server`. Upgrading from 0.4.x requires installing both packages. Runtime MCP server usage (`npx -y @ibm/ibmi-mcp-server@latest ...`) is unchanged.
13+
14+
**Migration:**
15+
```bash
16+
# Before (v0.4.x) — one install, both binaries
17+
npm i -g @ibm/ibmi-mcp-server
18+
19+
# After (v0.5.0) — separate packages
20+
npm i -g @ibm/ibmi-mcp-server # provides `ibmi-mcp-server`
21+
npm i -g @ibm/ibmi-cli # provides `ibmi`
22+
```
23+
24+
`@ibm/ibmi-cli` exact-pins its `@ibm/ibmi-mcp-server` dependency, so installing `@ibm/ibmi-cli@0.5.0` always pulls in `@ibm/ibmi-mcp-server@0.5.0` — the two packages co-version on every release ([#144](https://github.com/IBM/ibmi-mcp-server/pull/144)).
25+
26+
27+
### Features
28+
29+
* **Monorepo split — `@ibm/ibmi-cli` ships as its own package.** The `ibmi` CLI is now a standalone npm package. `@ibm/ibmi-mcp-server` exposes a stable public API surface via subpath exports (`/tools`, `/services`, `/context`, `/formatting`) that downstream agents and the CLI import directly — treat these subpaths as the contract ([#144](https://github.com/IBM/ibmi-mcp-server/pull/144))
30+
31+
* **JDBC connection options on YAML sources.** Sources now accept a `jdbc-options` passthrough block mapped directly to Mapepire's `JDBCOptions` — naming convention, library list, transaction isolation, date format, and any other JDBC-level tunable. Options may also be supplied via the `DB2i_JDBC_OPTIONS` environment variable for containerized deployments (env overrides YAML on a per-key basis) ([#141](https://github.com/IBM/ibmi-mcp-server/pull/141))
32+
33+
* **Per-tool row fetch controls (`rowsToFetch` / `fetchAllRows`).** SQL tools can now decide per-tool whether a query caps at a fixed page size (`rowsToFetch: <n>`) or streams every matching row (`fetchAllRows: true`). When both are set, `rowsToFetch` takes precedence as the safer default and a warning is logged ([#142](https://github.com/IBM/ibmi-mcp-server/pull/142), precedence clarified in [#145](https://github.com/IBM/ibmi-mcp-server/pull/145))
34+
35+
* **SQL security validation on `ibmi tool` execution.** YAML tool runs now flow through the same `SqlSecurityValidator` used by the built-in `execute_sql` tool. Write statements in read-only contexts are rejected before they reach the database — an additional safety layer on top of existing `readOnlyHint` tool configuration ([#136](https://github.com/IBM/ibmi-mcp-server/pull/136))
36+
37+
38+
### Bug Fixes
39+
40+
* **Documentation:** Updated installation commands and paths in the getting-started guide and configuration docs to match the new two-package layout ([21a4c1c](https://github.com/IBM/ibmi-mcp-server/commit/21a4c1c72bcff8b025be9c4aa84a936f18eb2421), [955e71e](https://github.com/IBM/ibmi-mcp-server/commit/955e71eb1aea623319b0a01e794030ee5370d672))
41+
542
### [0.4.5](https://github.com/IBM/ibmi-mcp-server/compare/v0.4.4...v0.4.5) (2026-03-24)
643

744

package-lock.json

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ibmi-mcp-monorepo",
3-
"version": "0.4.5",
3+
"version": "0.5.0",
44
"description": "IBM i MCP Server - Monorepo containing server, tools, agents, and deployment configurations",
55
"private": true,
66
"type": "module",

packages/cli/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ibm/ibmi-cli",
3-
"version": "0.4.5",
3+
"version": "0.5.0",
44
"description": "Command-line interface for IBM i systems — query, explore, and manage over Db2 for i",
55
"type": "module",
66
"main": "dist/index.js",
@@ -32,7 +32,7 @@
3232
"prepublishOnly": "npm run typecheck && npm run lint && npm run test && npm run build"
3333
},
3434
"dependencies": {
35-
"@ibm/ibmi-mcp-server": "0.4.5",
35+
"@ibm/ibmi-mcp-server": "0.5.0",
3636
"commander": "^14.0.3",
3737
"js-yaml": "^4.1.0"
3838
},

packages/server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ibm/ibmi-mcp-server",
3-
"version": "0.4.5",
3+
"version": "0.5.0",
44
"description": "A production-grade MCP server for IBM i",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

0 commit comments

Comments
 (0)