Fork me on GitHub
#pedestal
<
2022-03-22
>
steffan17:03:35

Running a Pedestal service with Clojure 1.11.0 gives a number of warnings to console. Seems Pedestal has an outdated dependency on org.clojure/tools.analyzer.jvm https://github.com/pedestal/pedestal/blob/50fe5ea89108998ac5a79a02a44432fd111ea6f8/service/project.clj#L36

WARNING: update-vals already refers to: #'clojure.core/update-vals in namespace: clojure.tools.analyzer.utils, being replaced by: #'clojure.tools.analyzer.utils/update-vals
WARNING: update-keys already refers to: #'clojure.core/update-keys in namespace: clojure.tools.analyzer.utils, being replaced by: #'clojure.tools.analyzer.utils/update-keys

richiardiandrea19:03:48

probably tools.analyzer.jvm needs bumping...or removal if the only functions pedestal uses are those update-* ones

ddeaguiar16:03:59

Thanks @U0C8489U6, we'll take a look