nrepl

plexus 2026-06-29T16:09:39.009089Z

seems interruptible-eval dropped support for eval-fn... what's the reason for that?

plexus 2026-06-29T16:10:52.264759Z

this is breaking some custom middleware we have which dispatches to different evaluation logic based on the file extension... trying to see if I can work around it

plexus 2026-06-29T16:12:13.168899Z

seems this works, leaving both versions in since not all colleagues have upgraded

(ie/evaluator (assoc msg
                          :eval #'eval-fn
                          ::ie/eval-fn eval-fn))

oyakushev 2026-06-29T20:20:57.832289Z

Wasn't the intention, let me check.

oyakushev 2026-06-29T20:23:03.230829Z

:eval is still there but it is overridden by ::ie/eval-fn . If you don't pass the latter, the former should work

👍🏻 1