Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 4 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -319,15 +319,11 @@ jobs:
- name: Install MSVC
uses: ilammy/msvc-dev-cmd@v1

- name: Install GraalVM
uses: DeLaGuardo/setup-graalvm@master
- uses: graalvm/setup-graalvm@v1
with:
graalvm: 22.2.0
java: java17

- name: Install native-image component
run: |
gu.cmd install native-image
java-version: '24'
distribution: 'graalvm'
github-token: ${{ secrets.GITHUB_TOKEN }}

# see https://github.com/oracle/graal/issues/4340
- name: GraalVM workaround to support UPX compression
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## Unreleased

- Clarify Task tool prompt for task ordering, task granularity, concurrent starts, and clearing finished task lists.
- Replace MCP Java SDK with plumcp for MCP client communication. SSE transport is no longer supported (deprecated in MCP spec 2025-03-26).

## 0.112.1

Expand Down
30 changes: 30 additions & 0 deletions deps-lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -1052,6 +1052,26 @@
"mvn-repo": "https://repo.clojars.org/",
"hash": "sha256-RLTLjpPU9rJiwE7Qdx1w3WbnbUXX/HVYIGcaYmVcVDk="
},
{
"mvn-path": "io/github/plumce/plumcp.core-json-cheshire/0.2.0-beta3/plumcp.core-json-cheshire-0.2.0-beta3.jar",
"mvn-repo": "https://repo.clojars.org/",
"hash": "sha256-zv+Trbz3BWVF2jWgADInlyjqsDsanbWKVYGOceV+WnM="
},
{
"mvn-path": "io/github/plumce/plumcp.core-json-cheshire/0.2.0-beta3/plumcp.core-json-cheshire-0.2.0-beta3.pom",
"mvn-repo": "https://repo.clojars.org/",
"hash": "sha256-w6nOMod07L7uKT2Vl+Ici/Oonq3CvGCCrJix3f0y7Cs="
},
{
"mvn-path": "io/github/plumce/plumcp.core/0.2.0-beta3/plumcp.core-0.2.0-beta3.jar",
"mvn-repo": "https://repo.clojars.org/",
"hash": "sha256-M/6egOI3jY8hVnave6Cx12P5Hmd6M1J5QuZEszUx2nk="
},
{
"mvn-path": "io/github/plumce/plumcp.core/0.2.0-beta3/plumcp.core-0.2.0-beta3.pom",
"mvn-repo": "https://repo.clojars.org/",
"hash": "sha256-I6gSOKlouC7ZMoJYow4/XZEgwMeZYGLZwtj2oblpVoA="
},
{
"mvn-path": "io/methvin/directory-watcher/0.17.3/directory-watcher-0.17.3.jar",
"mvn-repo": "https://repo1.maven.org/maven2/",
Expand Down Expand Up @@ -3477,6 +3497,16 @@
"mvn-repo": "https://repo1.maven.org/maven2/",
"hash": "sha256-D1omWgYzGwBJ41K+MsoyLeGLF/PU27cGNdQNppLjWC8="
},
{
"mvn-path": "org/yaml/snakeyaml/2.4/snakeyaml-2.4.jar",
"mvn-repo": "https://repo1.maven.org/maven2/",
"hash": "sha256-73ea9dKand6MxwzgNB9cb3c14j7f+Whc6qnTU1m3u38="
},
{
"mvn-path": "org/yaml/snakeyaml/2.4/snakeyaml-2.4.pom",
"mvn-repo": "https://repo1.maven.org/maven2/",
"hash": "sha256-4VSjIxzWzeaKq/J0/RiWTUmpwaX16e079HHprnvfCOY="
},
{
"mvn-path": "progrock/progrock/0.1.2/progrock-0.1.2.jar",
"mvn-repo": "https://repo.clojars.org/",
Expand Down
3 changes: 2 additions & 1 deletion deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
org.clojure/core.async {:mvn/version "1.8.741"}
org.babashka/cli {:mvn/version "0.8.65"}
com.github.clojure-lsp/jsonrpc4clj {:mvn/version "1.0.2"}
io.modelcontextprotocol.sdk/mcp {:mvn/version "0.17.2"}
io.github.plumce/plumcp.core-json-cheshire {:mvn/version "0.2.0-beta3"}
org.yaml/snakeyaml {:mvn/version "2.4"} ;; used by eca.shared for YAML parsing
borkdude/dynaload {:mvn/version "0.3.5"}
selmer/selmer {:mvn/version "1.12.69"}
babashka/fs {:mvn/version "0.5.26"}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Args=-J-Dborkdude.dynaload.aot=true \
-J-Dclojure.spec.skip-macros=true \
--enable-url-protocols=jar,http,https \
--enable-all-security-services \
--add-modules=jdk.httpserver \
--initialize-at-build-time=com.fasterxml.jackson \
--initialize-at-build-time=org.yaml.snakeyaml \
--initialize-at-build-time=io.opentelemetry.api.common.AttributeType \
Expand Down
Loading
Loading