Skip to content

Commit 1343d2b

Browse files
authored
maintenance (#407)
* dev: bump clj-kondo * dev: bump cider piggieback * dev: bump flowstorm * dev: bump nrepl * lib tests: bump cljfmt * lib tests: bump clojure-mcp * ci: test: bump GraalVM to 25 * ci: test-libs: bump lein
1 parent 422b9dc commit 1343d2b

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/workflows/libs-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
- name: Install Lein
5656
uses: DeLaGuardo/[email protected]
5757
with:
58-
lein: 2.11.2
58+
lein: 2.12.0
5959

6060
- name: Install Planck
6161
uses: ./.github/workflows/setup-planck

.github/workflows/native-image-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fail-fast: false
1818
matrix:
1919
os: [ windows, ubuntu, macos ]
20-
java-version: [ '24.0.2' ]
20+
java-version: [ '25' ]
2121
test: [ native, native-sci ]
2222
clojure-version: [ '1.12' ]
2323

deps.edn

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@
2828
;; REPL to support bb dev-jvm & dev-cljs tasks, see script/dev_repl.clj
2929
;;
3030
:nrepl
31-
{:extra-deps {nrepl/nrepl {:mvn/version "1.3.1"}
31+
{:extra-deps {nrepl/nrepl {:mvn/version "1.4.0"}
3232
cider/cider-nrepl {:mvn/version "0.57.0"}}
3333
:jvm-opts ["-XX:-OmitStackTraceInFastThrow"]}
3434

3535
:flowstorm
3636
{;; for disabling the official compiler
3737
:classpath-overrides {org.clojure/clojure nil}
3838
:extra-deps {com.github.flow-storm/clojure {:mvn/version "1.12.2"}
39-
com.github.flow-storm/flow-storm-dbg {:mvn/version "4.5.1"}}
39+
com.github.flow-storm/flow-storm-dbg {:mvn/version "4.5.5"}}
4040
:jvm-opts ["-Dclojure.storm.instrumentEnable=true"]}
4141

4242
:nrepl/jvm
@@ -48,7 +48,7 @@
4848

4949
:nrepl/cljs ;; note shadow-cljs does its own thing, this is for a REPL with
5050
;; support for plain old ClojureScript
51-
{:extra-deps {cider/piggieback {:mvn/version "0.6.0"}}
51+
{:extra-deps {cider/piggieback {:mvn/version "0.6.1"}}
5252
:jvm-opts ["-Djdk.attach.allowAttachSelf"]
5353
:main-opts ["-m" "nrepl.cmdline"
5454
"--middleware" "[cider.nrepl/cider-middleware cider.piggieback/wrap-cljs-repl]"
@@ -59,7 +59,7 @@
5959
;;
6060
:lint-cache {:replace-paths ["src"]} ;; when building classpath we want to exclude resources
6161
;; so we do not pick up our own clj-kondo config exports
62-
:clj-kondo {:extra-deps {clj-kondo/clj-kondo {:mvn/version "2025.07.28"}}
62+
:clj-kondo {:extra-deps {clj-kondo/clj-kondo {:mvn/version "2025.09.19"}}
6363
:override-deps {org.clojure/clojure {:mvn/version "1.12.2"}}
6464
:main-opts ["-m" "clj-kondo.main"]}
6565

doc/02-developer-guide.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ We make use of planck for cljs bootstrap (aka cljs self-hosted) testing.
1212
Planck is currently not available for Windows.
1313

1414
We test that rewrite-clj operates as expected when natively compile via GraalVM.
15-
Automated testing is setup using GraalVM for JDK 24.
15+
Automated testing is setup using GraalVM for JDK 25.
1616
At this time we only test against the Community Edition.
1717

1818
== Prerequisites
@@ -21,7 +21,7 @@ At this time we only test against the Community Edition.
2121
* Clojure v1.10.1.697 or above for `clojure` command
2222
** Note that rewrite-clj v1 itself supports Clojure v1.8 and above
2323
* Babashka v0.3.7 or above
24-
* Current release of GraalVM for JDK 24, if you want to run GraalVM native image tests
24+
* Current release of GraalVM for JDK 25, if you want to run GraalVM native image tests
2525

2626
=== Windows Notes
2727

script/test_libs.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@
299299
:show-deps-fn cli-deps-tree
300300
:test-cmds ["clojure -T:build ci"]}
301301
{:name "cljfmt"
302-
:version "0.13.1"
302+
:version "0.13.3"
303303
:platforms [:clj :cljs]
304304
:root "cljfmt"
305305
:github-release {:repo "weavejester/cljfmt"
@@ -325,7 +325,7 @@
325325
:test-cmds ["bb test"]}
326326
{:name "clojure-mcp"
327327
:platforms [:clj]
328-
:version "0.1.8-alpha"
328+
:version "0.1.9-alpha"
329329
:github-release {:repo "bhauman/clojure-mcp"
330330
:via :tag
331331
:version-prefix "v"}

0 commit comments

Comments
 (0)