Skip to content

Commit 51255e9

Browse files
committed
chore(release): 0.5.1
Signed-off-by: Adam Shedivy <ajshedivyaj@gmail.com>
1 parent 3252c6b commit 51255e9

5 files changed

Lines changed: 19 additions & 11 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
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.1](https://github.com/IBM/ibmi-mcp-server/compare/v0.5.0...v0.5.1)
5+
## [0.5.1](https://github.com/IBM/ibmi-mcp-server/compare/v0.5.0...v0.5.1) (2026-04-20)
66

7-
Consolidates the fetch-limit UX introduced in 0.5.0 before downstream adoption locks in the current behavior.
7+
Consolidates the fetch-limit UX introduced in 0.5.0 before downstream adoption locks in the current behavior ([#146](https://github.com/IBM/ibmi-mcp-server/pull/146)). Ships CI reliability fixes and root-level README coverage for the new two-package layout.
88

99
### Changed
1010

@@ -22,6 +22,14 @@ Consolidates the fetch-limit UX introduced in 0.5.0 before downstream adoption l
2222

2323
* **CLI truncation display.** The `ibmi tool run` footer now shows `(result capped — raise IBMI_PAGINATION_MAX_ROWS or narrow the query)` when a paginated result hits the ceiling, so callers know the output was clipped.
2424

25+
### Fixed
26+
27+
* **Publish workflow is now idempotent.** The release workflow skips `npm publish` when the target version already exists in the registry, so re-running on a failed job won't collide with a successful upload. Adds a `workflow_dispatch` trigger for manual re-runs against an existing tag ([e265a65](https://github.com/IBM/ibmi-mcp-server/commit/e265a65e3567a4beee4208f086deb358ee1b39be)).
28+
29+
### Documentation
30+
31+
* **Root README rewritten for the two-package layout.** Top-level README now explains the split between `@ibm/ibmi-mcp-server` and `@ibm/ibmi-cli`, clarifies install paths for each, and links into Mintlify + package READMEs as the authoritative deep-dive sources ([c22ebf2](https://github.com/IBM/ibmi-mcp-server/commit/c22ebf2d27e14b57601779f296a93a4f7621c0aa)).
32+
2533
### Migration
2634

2735
No YAML changes required. Tools that set only `rowsToFetch` or only `fetchAllRows` behave as before. Tools that set **both** fields will now paginate with the custom page size instead of the previous "`rowsToFetch` wins" behavior — if that transition is undesirable, remove `fetchAllRows`. Callers relying on `execute_sql` to return up to ~100,000 rows should raise `IBMI_PAGINATION_MAX_ROWS` explicitly; otherwise the effective ceiling is now the documented 30,000.

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.5.0",
3+
"version": "0.5.1",
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.5.0",
3+
"version": "0.5.1",
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.5.0",
35+
"@ibm/ibmi-mcp-server": "0.5.1",
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.5.0",
3+
"version": "0.5.1",
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)