Skip to content

Commit d4d4819

Browse files
authored
test & dev: bump deps (#380)
* test: bump shadow-cljs and clojurescript These seem to work fine with rewrite-clj locally, the buzz in the chats, is there might be more changes coming... * dev: bump deps * test libs: bump cljfmt, clojure-lsp * ci: adapt: new min jdk for cljs/shadow-cljs Allow test-doc to run only clj or cljs tests. cljs tests now run on jdk11 (was jdk8) shadow-cljs tests now run on jdk21 (was jdk11) * ci: lint with latest jdk Was linting with earliest supported jdk, but linting with latest is better because eastwood will find and report deprecations in latest jdk. * test: bump shadow-cljs to 3.0.3 * ci: use jdk11 for planck cljs-boostrap tests Was jdk8 but Clojurescript now requires jdk11.
1 parent 488edb5 commit d4d4819

File tree

7 files changed

+103
-1042
lines changed

7 files changed

+103
-1042
lines changed

bb.edn

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
version-clj/version-clj {:mvn/version "2.0.3"}
88
lread/status-line {:git/url "https://github.com/lread/status-line.git"
99
:sha "cf44c15f30ea3867227fa61ceb823e5e942c707f"}
10-
etaoin/etaoin {:mvn/version "1.1.42"}
10+
etaoin/etaoin {:mvn/version "1.1.43"}
1111
io.github.babashka/neil {:git/tag "v0.3.68", :git/sha "78ffab1"} }
1212
:tasks {;; setup
1313
:requires ([clojure.string :as string]
@@ -31,7 +31,7 @@
3131
test-clj-watch {:task test-clj-watch/-main :doc "[kaocha args]"}
3232
test-cljs-watch {:task test-cljs-watch/-main :doc "watch cljs test with fighweel main"}
3333
test-coverage {:task test-coverage/-main :doc "generate code coverage reports for Clojure tests"}
34-
test-doc {:task test-doc/-main :doc "test doc code blocks"}
34+
test-doc {:task test-doc/-main :doc "test doc code blocks [--platform (clj|cljs|all)]"}
3535
test-libs {:task test-libs/-main :doc "(list|run|outdated) - verify that libs using rewrite-clj* work with current rewrite-clj"}
3636
outdated {:task outdated/-main :doc "report on outdated Clojure and npm dependencies"}
3737
doc-update-readme {:task doc-update-readme/-main :doc "honour our contributors in README"}

deps.edn

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,21 +22,21 @@
2222
;;
2323
;; ClojureScript version we test with (and support)
2424
;;
25-
:cljs {:extra-deps {org.clojure/clojurescript {:mvn/version "1.11.132"}}}
25+
:cljs {:extra-deps {org.clojure/clojurescript {:mvn/version "1.12.35"}}}
2626

2727
;;
2828
;; REPL to support bb dev-jvm & dev-cljs tasks, see script/dev_repl.clj
2929
;;
3030
:nrepl
3131
{:extra-deps {nrepl/nrepl {:mvn/version "1.3.1"}
32-
cider/cider-nrepl {:mvn/version "0.54.0"}}
32+
cider/cider-nrepl {:mvn/version "0.55.3"}}
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.0-9"}
39-
com.github.flow-storm/flow-storm-dbg {:mvn/version "4.3.0"}}
39+
com.github.flow-storm/flow-storm-dbg {:mvn/version "4.4.0"}}
4040
:jvm-opts ["-Dclojure.storm.instrumentEnable=true"]}
4141

4242
:nrepl/jvm

0 commit comments

Comments
 (0)