-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test & ci: bump deps, canary test clj-mergetool (#263)
Bump test and ci deps and tools to current releases. Skipped kaocha v1.88.1376 as it seems to break clojure v1.9 compatibility. We'll wait to see if that was intentional before upgrading. Add clj-mergetool to our lib canary tests. Closes #262.
- Loading branch information
Showing
9 changed files
with
48 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{:hooks {:analyze-call {taoensso.encore/defalias taoensso.encore/defalias}}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
(ns taoensso.encore | ||
(:require | ||
[clj-kondo.hooks-api :as hooks])) | ||
|
||
(defn defalias [{:keys [node]}] | ||
(let [[sym-raw src-raw] (rest (:children node)) | ||
src (if src-raw src-raw sym-raw) | ||
sym (if src-raw | ||
sym-raw | ||
(symbol (name (hooks/sexpr src))))] | ||
{:node (with-meta | ||
(hooks/list-node | ||
[(hooks/token-node 'def) | ||
(hooks/token-node (hooks/sexpr sym)) | ||
(hooks/token-node (hooks/sexpr src))]) | ||
(meta src))})) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -101,7 +101,7 @@ | |
cli-matic/cli-matic {:mvn/version "0.5.4"}}} | ||
|
||
:apply-import-vars {:override-deps {org.clojure/clojure {:mvn/version "1.11.2"}} | ||
:extra-deps {metosin/malli {:mvn/version "0.15.0"} | ||
:extra-deps {metosin/malli {:mvn/version "0.16.0"} | ||
io.aviso/pretty {:mvn/version "1.4.4"}} | ||
:ns-default lread.apply-import-vars} | ||
|
||
|
@@ -147,12 +147,13 @@ | |
;; | ||
;; Maintenance support | ||
;; | ||
:outdated {:extra-deps {com.github.liquidz/antq {:mvn/version "2.8.1185"} | ||
org.slf4j/slf4j-simple {:mvn/version "2.0.12"} ;; to rid ourselves of logger warnings | ||
:outdated {:extra-deps {com.github.liquidz/antq {:mvn/version "2.8.1194"} | ||
org.slf4j/slf4j-simple {:mvn/version "2.0.13"} ;; 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/[email protected]" ;; breaks clojure 1.9 compat, let's wait to see if that was intentional | ||
"--exclude=lambdaisland/[email protected]" ;; https://github.com/lambdaisland/kaocha/issues/208 | ||
"--exclude=com.bhauman/[email protected]" ;; deployment was botched, some components missing | ||
"--exclude=org.clojure/[email protected]" ;; no evidence yet that this is an official release | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters