Skip to content

Commit 87aaa91

Browse files
committed
chore: bump version to v1.8.10
1 parent f94d831 commit 87aaa91

4 files changed

Lines changed: 36 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,30 @@
11
# Changelog
22

3+
## v1.8.10 - 2026-06-30
4+
5+
### Added
6+
- feat(skills): add a "Browse skills online" section to the Skills settings page with curated, clickable links to where users can find and download `SKILL.md` skills — Anthropic Skills, the agentskills.io open standard, the Claude Code Marketplace and SkillsMP — each paired with a short description, plus a hint to drop a downloaded skill folder into a scanned directory and hit Reload. A lightweight first step toward in-plugin skill discovery (#1168)
7+
- feat(agent): raise the agent's max tool-calls ceiling from 100 to 500 and bump the default from 25 to 50 so discovery + implementation on larger codebases no longer stalls mid-run. The limit was already a soft stop (`AgentLoopTracker` returns a wrap-up message to the LLM rather than aborting); existing users keep their stored spinner value, only the selectable ceiling and the new-install default change (#1163)
8+
9+
### Fixed
10+
- fix(agent): dedupe agent tools by name in `CompositeToolProvider` so an explicitly enabled MCP tool now overrides a built-in tool of the same name instead of crashing. Enabling both the built-in `read_file` and the JetBrains MCP server's `read_file` blew up agent execution with `IllegalConfigurationException: Duplicated definition for tool: read_file`; the merge now keeps first-seen ordering, lets the later (MCP) provider win, and logs the clash at INFO (#1159)
11+
- fix(agent): classify a non-zero `run_command` exit as a tool error so the Activity panel renders a red ✗ instead of a green ✓. The icon is decided by `AgentLoopTracker.isErrorResult()` (results starting with `"Error:"`); a non-zero command returned `"Exit code: N"` and slipped through as success. Non-zero results are now prefixed `"Error: Command exited with code N"`, preserving the exit code for the LLM (#1164)
12+
13+
### Changed
14+
- refactor(models): drop the deprecated OpenAI models (GPT-4, GPT-4o, GPT-4o mini, GPT-4 Turbo, GPT-3.5 Turbo) from the model registry in favour of the newer GPT-4.1 family
15+
- build: pin the Gradle wrapper to 9.6.0 (later bumped to 9.6.1 by Dependabot, see Dependencies)
16+
17+
### Dependencies
18+
- chore(deps): bump the gradle-dependencies group — Langchain4J 1.16.3 → 1.17.0 (beta26 → beta27 for the chroma/mcp/web-search/reactor/skills modules), logback-classic 1.5.36 → 1.5.37, and JUnit 6.1.0 → 6.1.1 (#1162)
19+
- chore(deps): bump logback-classic 1.5.35 → 1.5.36 (#1161)
20+
- chore(deps): bump AWS SDK BOM 2.46.17 → 2.46.18 and the Gradle wrapper 9.6.0 → 9.6.1 (#1166)
21+
22+
### Documentation
23+
- docs(blog): add a DevoxxGenie plugin analytics post (#1167)
24+
25+
### Contributors
26+
- @stephanj
27+
328
## v1.8.9 - 2026-06-24
429

530
### Fixed

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ plugins {
1515
}
1616

1717
group = "com.devoxx.genie"
18-
version = "1.8.9"
18+
version = "1.8.10"
1919

2020
repositories {
2121
mavenCentral()

src/main/resources/META-INF/plugin.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,15 @@
6868
]]></description>
6969

7070
<change-notes><![CDATA[
71+
<h2>v1.8.10</h2>
72+
<UL>
73+
<LI>feat(skills): new "Browse skills online" section in Skills settings with curated links (Anthropic Skills, agentskills.io, Claude Code Marketplace, SkillsMP) for finding and downloading <code>SKILL.md</code> skills (#1168)</LI>
74+
<LI>feat(agent): raise the agent max tool-calls ceiling to 500 and the default to 50, so discovery + implementation on large codebases no longer stalls mid-run (#1163)</LI>
75+
<LI>fix(agent): enabling both a built-in tool and an MCP tool of the same name (e.g. <code>read_file</code>) no longer crashes the agent — the enabled MCP tool now wins (#1159)</LI>
76+
<LI>fix(agent): a non-zero <code>run_command</code> exit is now shown with a red ✗ in the Activity panel instead of a green ✓ (#1164)</LI>
77+
<LI>refactor(models): remove deprecated OpenAI models (GPT-4, GPT-4o, GPT-4o mini, GPT-4 Turbo, GPT-3.5 Turbo) in favour of the GPT-4.1 family</LI>
78+
<LI>chore(deps): Langchain4J 1.16.3 → 1.17.0 and assorted dependency bumps (#1161, #1162, #1166)</LI>
79+
</UL>
7180
<h2>v1.8.9</h2>
7281
<UL>
7382
<LI>fix(chat): the Compose chat no longer crashes with <code>NoSuchMethodError</code> after MCP or streamed responses — the markdown renderer is pinned to a coroutines-compatible version (#1158)</LI>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version=1.8.9
1+
version=1.8.10

0 commit comments

Comments
 (0)