Skip to content

Commit

Permalink
tests & ci: bump deps to current (#251)
Browse files Browse the repository at this point in the history
exception: leave lein at 2.10.0 for now to support refactor-nrepl lib test.
  • Loading branch information
lread authored Feb 11, 2024
1 parent 121e639 commit 08b7064
Show file tree
Hide file tree
Showing 4 changed files with 93 additions and 70 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/native-image-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
fail-fast: false
matrix:
os: [ windows, ubuntu, macos ]
java-version: [ '21.0.1' ]
java-version: [ '21.0.2' ]
test: [ native, native-sci ]
clojure-version: [ '1.11', '1.12' ]

Expand Down
16 changes: 9 additions & 7 deletions deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@
;;
;; ClojureScript version we test with (and support)
;;
:cljs {:extra-deps {org.clojure/clojurescript {:mvn/version "1.11.60"}}}
:cljs {:extra-deps {org.clojure/clojurescript {:mvn/version "1.11.132"}}}

;;
;; Linting
;;
:lint-cache {:replace-paths ["src"]} ;; when building classpath we want to exclude resources
;; so we do not pick up our own clj-kondo config exports
:clj-kondo {:extra-deps {clj-kondo/clj-kondo {:mvn/version "2023.10.20"}}
:clj-kondo {:extra-deps {clj-kondo/clj-kondo {:mvn/version "2023.12.15"}}
:override-deps {org.clojure/clojure {:mvn/version "1.11.1"}}
:main-opts ["-m" "clj-kondo.main"]}

Expand Down Expand Up @@ -85,7 +85,7 @@
:extra-paths ["target" "test"]
:main-opts ["-m" "figwheel.main" "-b" "fig" "-r"]}

:cljs-test {:extra-deps {olical/cljs-test-runner {:mvn/version "3.8.0"}}
:cljs-test {:extra-deps {olical/cljs-test-runner {:mvn/version "3.8.1"}}
:extra-paths ["test"]
:main-opts ["-m" "cljs-test-runner.main"]}

Expand All @@ -97,11 +97,11 @@
;;
:script {:extra-paths ["script"]
:override-deps {org.clojure/clojure {:mvn/version "1.11.1"}}
:extra-deps {org.clojure/tools.namespace {:mvn/version "1.4.4"}
:extra-deps {org.clojure/tools.namespace {:mvn/version "1.4.5"}
cli-matic/cli-matic {:mvn/version "0.5.4"}}}

:apply-import-vars {:override-deps {org.clojure/clojure {:mvn/version "1.11.1"}}
:extra-deps {metosin/malli {:mvn/version "0.13.0"}
:extra-deps {metosin/malli {:mvn/version "0.14.0"}
io.aviso/pretty {:mvn/version "1.4.4"}}
:ns-default lread.apply-import-vars}

Expand Down Expand Up @@ -144,13 +144,15 @@
;;
;; Maintenance support
;;
:outdated {:extra-deps {com.github.liquidz/antq {:mvn/version "2.7.1133"}
org.slf4j/slf4j-simple {:mvn/version "2.0.9"} ;; to rid ourselves of logger warnings
:outdated {:extra-deps {com.github.liquidz/antq {:mvn/version "2.8.1173"}
org.slf4j/slf4j-simple {:mvn/version "2.0.12"} ;; to rid ourselves of logger warnings
}
:override-deps {org.clojure/clojure {:mvn/version "1.11.1"}}
:main-opts ["-m" "antq.core"
"--ignore-locals"
"--exclude=lambdaisland/kaocha@1.0.829" ;; https://github.com/lambdaisland/kaocha/issues/208
"--exclude=com.bhauman/figwheel-main@0.2.15" ;; deployment was botched, some components missing
"--exclude=org.clojure/clojurescript@1.11.121" ;; no evidence yet that this is an official release
"--exclude=technomancy/leiningen@2.11.0" ;; exclude for refactor-nrepl lib test
"--exclude=technomancy/leiningen@2.11.1" ;; exclude for refactor-nrepl lib test
]}}}
143 changes: 82 additions & 61 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
"karma-cljs-test": "^0.1.0",
"karma-junit-reporter": "^2.0.0",
"karma-spec-reporter": "^0.0.36",
"shadow-cljs": "^2.26.2"
"shadow-cljs": "^2.27.3"
}
}

0 comments on commit 08b7064

Please sign in to comment.