Conversation
|
Welcome to Codecov 🎉Once you merge this PR into your default branch, you're all set! Codecov will compare coverage reports and display results in all future pull requests. Thanks for integrating Codecov - We've got you covered ☂️ |
baubakg
pushed a commit
that referenced
this pull request
Apr 21, 2026
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
baubakg
added a commit
that referenced
this pull request
Apr 22, 2026
* Align README MCP section with MCP.md - Fix tool discovery model: tools/list returns one tool (java_call with embedded catalog), not per-method named tools - Fix tools/call example to use java_call + callContent, not tool name - Rename "Fallback Tool" section — java_call is the only MCP tool - Add ibs_diagnostics, IBS.MCP.PRECHAIN, IBS.MCP.REQUIRE_JAVADOC - Fix dependency version 2.11.18 → 2.11.19 to match MCP.md - Update TOC Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * Update docs to version 3.11.0 Add 3.11.0 release notes entry covering MCP doc corrections, new env vars, dependency bumps, and CI GPG fix. Update version references in README and MCP.md from 2.11.19 to 3.11.0. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * Simplify 3.11.0 release notes to high-level summary Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * Add issue #12 reference to 3.11.0 MCP release note Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * Bump GitHub Actions to v5 to fix Node.js 20 deprecation warning actions/checkout, actions/setup-java, and actions/cache all moved from v4 (Node.js 20) to v5 (Node.js 24). Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * Bump actions/upload-artifact to v5 to fix Node.js 20 deprecation warning Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * [maven-release-plugin] prepare release parent-3.11.0 * [maven-release-plugin] prepare for next development iteration * Add missing Javadoc @param and @return to MCPRequestHandler#handle Fixes Javadoc warnings raised during the release build. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * Update version to 3.11.1 in docs and add Central promotion step - Bump all doc version references from 3.11.0 to 3.11.1 - Add POST /manual/upload step to release workflow to trigger Central Publisher Portal promotion after staging deploy Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * Add Central promotion step to deploy workflow Mirrors the same POST /manual/upload step added to the release workflow. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * Remove Central promotion step from deploy workflow Snapshot deploys go directly to the snapshot repository — no staging repository is created, so the promotion POST returns 400. The promotion step belongs only in the release workflow. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * [maven-release-plugin] prepare release parent-3.11.1 * [maven-release-plugin] prepare for next development iteration * Fix CI badge staleness for SonarCloud quality gate and codecov (#22) Trigger SonarCloud analysis on push to main (not just PRs) so the quality gate badge stays current after merges. Remove dead jacoco log step that referenced a non-existent step output. Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com> * Update dependency org.testng:testng to v7.12.0 (#21) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency org.mockito:mockito-core to v5.23.0 (#20) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update log4j2 monorepo to v2.25.4 (#23) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update actions/checkout action to v6 (#24) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Expose auto-discovered methods as individual MCP tools (hybrid approach) (#35) * Expose auto-discovered methods as individual MCP tools (hybrid approach) Previously all auto-discovered methods were embedded as plain text in java_call's description. With 2000+ methods this exceeded LLM context windows and got truncated, making method discovery impossible without trial-and-error 404 guessing. Each public static method is now exposed as its own tool in tools/list (name: ClassName_methodName, inputSchema with arg0/arg1/... params). Individual tool calls are routed through handleIndividualToolCall() which builds a synthetic single-step callContent and delegates to handleJavaCall() so PRECHAIN is applied automatically. java_call is retained for multi-step chains, overloaded/instance methods, and any case where step B needs the live Java object returned by step A. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * Add architecture diagram to MCP method discovery section Mermaid flowchart showing the startup package scan that populates tools/list, and the two per-call paths (individual tool and java_call) converging on handleJavaCall() through the isolated classloader. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * Fix coverage gap: replace JSON schema parsing with programmatic map builders The constructor's try-catch for JsonProcessingException was dead code — the schemas are hardcoded constants that never fail to parse. handleIndividualToolCall's catch was also dead code since handleJavaCall catches its own exceptions internally. Replaced both with no-exception-possible patterns to eliminate the uncovered lines. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> --------- Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com> * Prepare release 3.11.2 - Add 3.11.2 release notes entry (hybrid MCP tool discovery, dependency bumps, CI) - Update version references in README and docs/MCP.md from 3.11.1 to 3.11.2 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * Document release process in CLAUDE.md Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * Update README MCP section for hybrid tool discovery (3.11.2) The Discovering Tools and Calling a Discovered Tool sections still described the old single-java_call approach. Updated to reflect that tools/list now returns one named tool per auto-discovered method plus java_call and ibs_diagnostics, and that individual tools can be called directly for stateless single-method invocations. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * Fix stale version in /test endpoint response example (3.11.2) The health check response example still showed 2.11.16 instead of 3.11.2. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * [maven-release-plugin] prepare release parent-3.11.2 * [maven-release-plugin] prepare for next development iteration --------- Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com> Co-authored-by: adobe-bot <Grp-opensourceoffice@adobe.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



This PR contains the following updates:
2.24.1→2.25.42.24.1→2.25.4Configuration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about these updates again.
This PR was generated by Mend Renovate. View the repository job log.